.nav-button { display: none; } 

@media only screen and (min-width: 0px) and (max-width: 600px) {

	

	.nav-button {
		display: block;
		position: absolute;
		top: 3px;
		right: 7px;
		width: 50px;
		height: 35px;
		background: url('../images/menu-icon-large.png');
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 21px, 100%;
		cursor: pointer;
		border: 0 none;
		z-index: 999;
		text-indent: -9999px;
	}
	.nav-button:hover { 
		background-color: rgba(0,0,0,.1); 
	}
	.nav-button.open {
		background: url('../images/close-icon-large.png');
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 21px, 100%;
	}
	
	

	
	
	#nav {
		clear: none;
		overflow: inherit;
	}
	
	#nav-top {
		width: 100%;
		float: none;
		display: block;
		height: 50px;
		margin: 0;
		padding: 0;
		overflow: hidden;
		position: relative;
		top: 0px;
		left: 0px;
		z-index: 998;
		clear: both;
	}
	#nav-top li {
		display: none;
		width: 100%;
		font-family: 'SportingGrotesque', 'Open Sans', sans-serif;
	}
	#nav-top li a, #nav-top li .unlinked-parent {
		display: block;
		width: 100%;
		padding: 10px 5%;
		font-size: 20px;
		font-weight: bold;
		color: #000;
		text-decoration: none;
		cursor: pointer;
		text-align: center;
	}
	#nav-top li a:hover, #nav-top li a:focus {
		color: #FFF;
	}
	#nav-top li.active .top-level, #nav-top li ul li.active a {
		color: #FFF;
		text-decoration: underline;
	}
	#nav-top li.parent .top-level span:after {
		content: '';
   		border: 4px solid transparent;
		border-top: 4px solid #000;
		margin-left: 10px;
		margin-bottom: 3px;
		display: inline-block;
		vertical-align: bottom;
	}
	
	
	
	

	#nav-top.open { 
		height: auto; 
		padding-top: 50%;
	}
	#nav-top.open li { 
		display: block; 
	}

	

	
	#nav-top li ul {
		display: none;
		border-top: 0 none;
		
		padding: 0;
		margin-bottom: 20px;
	}
	#nav-top li ul a {
		display: block;
		width: 100%;
		padding: 10px 5%;
		font-size: 18px;
		font-weight: bold;
		color: #333;
		text-decoration: none;
		cursor: pointer;
		text-align: center;
	}
	#nav-top li:hover ul {
		display: block;
		border-top: 0 none;
	}
	#nav-top li ul li:last-child span {
		border-bottom: 1px solid rgba(10, 10, 10, 0.2);
	}

	#nav-top li li li {
		margin: 0 0 0 20px;	
	}
} 