/* Basic Styles */
nav {
	height: 3.25em;
	width: 100%;
	background: #000;
	position: relative;
	clear: both;
}
nav ul {
	padding: 0;
	margin: 0 auto;
	padding-left: 1em;
}
nav li {
	display: inline;
	float: left;
}

nav a:link, nav a:visited, nava:hover, nav a:active {color: #fff;}

nav a {
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 3.25em;
	padding: 0 1em;
}
nav li:last-child a {
	margin-right: 0;
}

nav a:hover, nav a:active {
	background-color: #8c99a4;
}

nav .current {background: #06C;}

nav a#pull {
	display: none;
}


/*Styles for screen 600px and lower*/
@media screen and (max-width: 600px) {
	nav { 
  		height: auto;
		width:100%;
		padding: 0;
  	}
  	nav ul {
  		width: 100%;
  		display: block;
  		height: auto;
		padding-left: 0;
  	}
  	nav li {
  		width: 50%;
  		float: left;
  		position: relative;
	}
	
  	nav a {
	  	text-align: left;
	  	width: 100%;
		padding: 0 0 0 10px;
    box-sizing: border-box;
  	}
}

/*Styles for screen 515px and lower*/
@media only screen and (max-width : 480px) {
	nav {
		border-bottom: 0;
	}
	nav ul {
		display: none;
		height: auto;
		padding-left: 0;
	}
	
	nav a {padding: 0 0 0 10px;
    box-sizing: border-box;}
	
	nav a#pull {
	display: block;
	box-sizing: border-box;
	position: relative;
    padding-left: 10px;
	border-top: 1px solid #fff;		
	}
	nav a#pull:after {
		content:"";
		background: url('/assets/images/global/nav-icon.png') no-repeat;
		width: 30px;
		height: 30px;
		display: inline-block;
		position: absolute;
		right: 15px;
		top: 10px;
	}
}

/*Smartphone*/
@media only screen and (max-width : 320px) {
	
	nav ul {
		padding-left: 0;
	}
	
	nav li {
		display: block;
		float: none;
		width: 100%;
	}
	
	nav a {padding-right: 0;}
	
	nav li a {
		border-bottom: 1px solid #576979;	
	}
	nav li a {
	padding-left: 0;
	}
}