@charset "utf-8";
/* CSS Document */
/*** Nav bar styles ***/

ul.nav{
	display: table;
/*Just add the following properties and values*/
	width: 100%;
	table-layout: fixed;
}


ul.nav{
	display: table;
}
ul.nav>li{
	display: table-cell;
	position: relative;
	padding: 2px 6px;
	border-right: 2px solid #fff;
}
ul.nav li>ul{
/*Make the sub list items invisible*/
	display: none;
	position: absolute;
	margin-left: -6px;
	margin-top: 2px;
}

ul.nav li:hover>ul{
/*When hovered, make them appear*/
	display : block;
}

.nav ul li a{
/*Make the hyperlinks as a block element, sort of a hover effect*/
	display: block;
	padding: 2px 10px;
}

/*** Menu colors (customizable) ***/

ul.nav,
.nav ul,
.nav ul li a{
	background-color: #755931;
	color: #FFF;
}


ul.nav li:hover{
	background-color: #FBC200;
	color: #755931;
}

.nav a{
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFF;
	font-size: 90;
	font-weight: normal;
}

.nav a:hover {	background-color: #FBC200;
	color: #755931;}
