
/* Menu CSS */ 

nav, nav > ul{
	font-family: 'Droid Serif', serif;
	font-weight: normal;
	text-transform: uppercase;	
}

nav:before, nav:after, nav > ul:before, nav > ul:after {
	content: '';
	display: table;
}


nav:after, nav > ul:after {
	clear: both;
}

nav {

	zoom:1;
	
}

nav > ul{
	margin: 0;
	padding: 0;
	position: relative;	
}

nav > ul li{
	
	margin: 0;
	padding: 0;
	list-style: none;
	
}

nav > ul > li{

	float: left;
	position: relative;
	
}

nav > ul > li > a{
	display: block;
	color: white;
	font-size: 13px;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 18px;
	padding: 15px 22px;
	-webkit-transition: background 1s ease;
  	-moz-transition: background 1s ease;
  	-ms-transition: background 1s ease;
  	-o-transition: background 1s ease;
  	transition: background 1s ease;

}


nav > ul > li:hover > a{
	background-color: white !important;	
	color: #000;
	-webkit-transition: background 1s ease;
  	-moz-transition: background 1s ease;
  	-ms-transition: background 1s ease;
  	-o-transition: background 1s ease;
  	transition: background 1s ease;
}

nav > ul > li > a > span{

	line-height: 18px;
	
}

nav > ul > li.active > a, nav > ul > li > a:active, nav li a:hover{
	
	background-color: white !important;
	color: #000;
	
}

nav .nav-selected, nav .nav-path-selected {
	background-color: white;
	color: #000;
}
nav ul li:nth-child(1){
	background: #C7B299;
}
nav ul li:nth-child(2){
	background: #E5592E;
}
nav ul li:nth-child(3){
	background: #F7931E;
}
nav ul li:nth-child(4){
	background: #998675;
}
nav ul li:nth-child(5){
	background: #736357;
}

