/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

/* Basic Styles */
nav {
	height: 30px;
	width: 100%;
	font-size: 14pt;
	font-weight: bold;
	position: relative;
	padding-left:5px;
}
nav ul {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	height: 30px;
}
nav li {
	display: inline;
	float: left;
	padding-top:5px;
	padding-top:5px;	
}
nav a {
	color: #fff;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	line-height: 30px;
	padding-left:15px;
	padding-right:15px;	
}
nav li a {
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
nav li:last-child a {
	border-right: 0;
}
	.menu_selected {
		border-radius:20px;
		background-color:#a16a09;
		color:#FFF;
	}	
	
	nav a:hover, nav a:active{
		border-radius:20px;
		background-color:#F8F8F8;
		color:#000;
	}		

nav a#pull {
	display: none;
}

.menu_button:hover,.menu_button:link
{
	background-color:#a16a09;
	border-radius:5px;
	color:#FFF !important;
	padding:10px;
}
	

/*Styles for screen 600px and lower*/
@media screen and (max-width: 800px) {
	nav { 
  		height: auto;
  	}
  	nav ul {
  		width: 100%;
  		display: block;
  		height: auto;
  	}
  	nav li {
  		width: 100%;
  		float: left;
  		position: relative;
  	}
  	nav li a {
	}
  	nav a {
	  	text-align: left;
	  	width: 100%;
	  	text-indent: 5px;
  	}
}

/*Styles for screen 515px and lower*/
@media only screen and (max-width : 800px) {
	nav {
		border-bottom: 0;
	}
	nav ul {
		display: none;
		height: auto;
	}
	nav a#pull {
		display: block;
		background-color:#d82b20;
		color:#FFF;
		width: 200px;
		text-align:center;
		position: relative;
	}
	
	.menu_selected {
		border-radius:5px;
		background-color:#a16a09;
		color:#FFF;
	}	
	
	nav a:hover, nav a:active{
		border-radius:5px;
		background-color:#F8F8F8;
		color:#000;
	}		
}