/* CSS Document */
body {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: bold;
	color: #FFFFF;
}

ul { /* all lists */
	padding: 2px;
	margin: 0;
	list-style: none;
}

li {
	float: left;
	position: relative;
	width: 11.12em;
	top: 0px;
	padding: 0px;
	z-index: 2;
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 27px;
	padding: 0px;
	left: 0;
}

li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}
ul li a {
	display: block;
	text-decoration: none;
	color:#FFFFFF; 
	background: #6F6E1D;
	padding: 5px;
	border: 2px solid #FFF;
	border-bottom: 0;
	}
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: down; }
* html ul li a { height: 1%; }
/* End */

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}
