/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

/* Basic Styles */

nav {
    height: auto;
    width: 100%;
    position: relative;
}
nav ul {
	padding: 0;
	margin: 0 auto;
    width: 100%;
    height: auto;
}
nav li {
	float: left;
}


nav li:last-child a {
	border-right: 0;
}
nav a:hover, nav a:active {
	background-color: #8c99a4;
}
nav a#pull {
	display: none;
}

/*Styles for screen 600px and lower*/
@media screen and (max-width: 600px) {
	nav { 
  		height: auto;
  	}
  	nav ul {
  		width: 100%;
  		display: block;
  		height: auto;
  	}
  	nav li {
  		width: 50%;
  		float: left;
  		position: relative;
  	}
  	nav a {
	  	text-align: left;
	  	width: 100%;
  	}
}

/*Styles for screen 515px and lower*/
@media only screen and (max-width : 750px) {
	nav {
		border-bottom: 0;
	}
	nav ul {
		display: none;
		height: auto;
	}
	nav a#pull {
		background-image:url(menu_icon.png);
		background-repeat: no-repeat;
    	background-position: right center;
	    display: block;
		background-color: #283744;
		width: 100%;
		position: relative;
		color: #fff;
		font-size: 18px;
		text-decoration: none;
		margin:0 0 10px 0;
		font-family: MYRIADPROREGULAR;
		text-transform: uppercase;
		padding: 5px 0;
		line-height: normal;
		text-indent:20px;
	}
	nav a#pull:after {
		content:"";
		background: url('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 li {
		display: block;
		float: none;
		width: 100%;
	}
	
}