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

nav {
	display: block;
	float:left;
	margin:7px 0 0;
    padding:0;
	width:100%;
}

.nav_shadow {
	float:left;
	margin:0;
    padding:0;
	width:100%;
	height:35px;
	top:212px;
	z-index:-1px;
	position:absolute;
	background:url(../images/nav_shadow.png) center bottom no-repeat;
}

nav ul {
	float: left;
    font: bold 12px/25px tahoma;
	height: auto;
    letter-spacing: 0.02em;
    margin: 0;
    width:100%!important;
}
nav li {
	float: left;
    margin:0;
	list-style:none;
    padding:9px 40px;
	background:url(../images/top-link-seprator.png) no-repeat right top;
}

nav li:last-child {
	background:none;
}

nav a {
	color:#918277;
	font-size:15px;
	font-weight:normal;
    text-decoration: none;
	text-shadow:0 0 1px #ccc;
	 -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}

nav a:hover, nav a:active {
	color:#92bb05!important;
    text-decoration:none;
	background:none;
}
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;
		background:#e7dfd9;
  	}
  	nav li {
  		width: 50%;
  		float: left;
  		position: relative;
  	}

  	nav a {
	  	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;
	}
	nav li {
  		width: 30%;
  		float: left;
		background:none;
  		position: relative;
  	}
	nav a#pull {
		display: block;
		width: 100%;
		position: relative;
	}
	nav a#pull:after {
		content:"";
		background: url('../images/nav-icon.png') no-repeat;
		width: 30px;
		height: 30px;
		display: inline-block;
		position: absolute;
		right: 15px;
		top:-31px;
	}
}

/*Smartphone*/
@media only screen and (max-width : 320px) {
	nav li {
		display: block;
		float: none;
		width:73.3%;
		background:none;
		border-bottom:1px solid #d5c7bd !important;
	}
}