@charset "utf-8";
/* CSS Document */
/* class for the menu bar */
.menu {
	clear:both;
	width:950px;
	color:#CCCCCC;
	background-color:#000033;
	margin:0px;
	padding:0px;
	margin-bottom:2px;
	margin-top:2px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	position:relative;
	z-index:100;
	height:18px;
}
/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
color:#fff; 
background:#000033;
}
.menu :hover > a, .menu ul ul :hover > a {
color:#fff;
background:#000033;
}

.menu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu li { /* all list items */
	float: left;
	position: relative;
	width: 12em;
	text-align:left;
}

.menu li ul { /* second-level lists */
	display: none;
	position: absolute;
	top:100%;
	left:0; 
	background-color:#000033;
	padding:0.5em 0 1em 0;
}

.menu 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: 12px;
	left: 10px;
}

.menu li:hover ul, .menu li.over ul { /* lists nested under hovered list items */
	display: block;
}
