@font-face {
    font-family: 'texgyreadventorregular';
    src: url('texgyreadventor-regular-webfont.eot');
    src: url('texgyreadventor-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('texgyreadventor-regular-webfont.woff') format('woff'),
         url('texgyreadventor-regular-webfont.ttf') format('truetype'),
         url('texgyreadventor-regular-webfont.svg#texgyreadventorregular') format('svg');
  

}





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

/* Basic Styles */
body {
	background-color:none
}
nav {
	height: 50px;
	background: #a19d9d;
	font-size: 18px;
	font-family: texgyreadventorregular;
	font-weight: normal;
	position: relative;
	border: 0px solid red;
	 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
	   filter: alpha(opacity=90);
	   opacity:0.9;


}
nav ul {
	padding: 0;
	margin: 0 auto;
	width: 700px;
	height: 50px;
	border: 0px solid green;
	text-align:center;
}
nav li {
	display: inline;
	float: left;
}
nav a {
	color: #000000;
	display: inline-block;
	width: 170px;
	text-align: center;
	text-decoration: none;
	line-height: 50px;

}
nav li a {
	border-right: 1px solid #a19d9d;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
nav li:last-child a {
	border-right: 0;
}
nav a:hover, nav a:active {
	background-color: #a19d9d;
	color: white;
	outline: none;

	
}
nav a#pull {
	display: none;
	

}

/*Styles for screen 600px and lower*/
@media screen and (max-width: 600px) {
	nav { 
  		height: auto;
		
  	}
  	nav ul {
  		width: 70%;
  		display: block;
  		height: auto;
		border: 0px solid green;
	
		
  	}
  	nav li {
  		width: 100%;
  		float: left;
  		position: relative;
		border: 0px solid green;
		left:auto;
  	}
  	nav li a {
		border-bottom: 1px solid #a19d9d;
		border-right: 1px solid #a19d9d;
	}
  	nav a {
	left:0;
	  	text-align: left;
	  	width: 100%;
	  	text-indent: 25px;
  	}
}

/*Styles for screen 515px and lower*/
@media only screen and (max-width : 480px) {
	nav {
		border-bottom: 0;
	}
	nav ul {
		display: none;
		height: auto;
		float:left;
	}
	nav a#pull {
		display: block;
		background-color: #a19d9d;
		width: 100%;
		position: relative;
		float: left;
	}
	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: left;
		width: 100%;
		
	}
	nav li a {
		border-bottom:none;
		width:100%;
	}
}