/* CSS Document */


#nav, #nav ul { /* all lists */
	
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	font-family: Arial Black, Arial, Helvetica, sans-serif;
	font-color: #FFFFFF;
	font-size: 10px;
	text-decoration:none;
}

#nav a {
	display: block;
	width: 15em;
	font-color: #466F82;
	font-size:10px;
	text-decoration:none;
}

#nav li { /* all list items */
	float: left;
	width: 15em; /* width needed or else Opera goes nuts */
	line-height: 18px;
	vertical-align: middle;
	position: relative;
	border:thin #FFFFFF;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: none;
	width: 15em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	display: inline;
	background-image:url(../images/menu_test_5.png);
	background-repeat:no-repeat;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	position:absolute;
}

#nav li:visited ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	font-family: Arial Black, Arial, Helvetica, sans-serif;
	font-color: #FFFFFF;
	font-size: 10px;
	text-decoration:none;
}


#content {
	clear: left;
	color: #B8B866;
}