#hovermenu, #hovermenu ul { /* all lists */
	font-family: arial, helvetica, serif;
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1.5;
    font-size: 12px;
}

#hovermenu a {
	display: block;
	width: 10em;
}

#hovermenu li {
	background: url(images/menubg.gif);
	height: 1.5em;
	line-height: 1.5em;
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
	display: block;
	border: 0.2em solid #fff;
	color: #0d2474;
	text-decoration: none;
	text-align: left;
}

#hovermenu li a:link, #hovermenu li a:visited {
	color: #000;
	background: url(images/menubg.gif);
	padding: 0px 0 0 5px;
	text-decoration: none;
	font-weight: bold;
}
	
#hovermenu li a:hover {
	color: #fff;
	background: url(images/menubgon.gif);
	padding: 0px 0 0 5px;	
}
	
#hovermenu li a:active {
	color: #ffff00;
	background: url(images/menubgon.gif);
	padding: 0px 0 0 5px;	
}

#hovermenu li ul { /* second-level lists */
	position: absolute;
	width: 14em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#hovermenu li:hover ul ul, #hovermenu li.sfhover ul ul {
	left: -999em;
}

#hovermenu li:hover ul, #hovermenu li li:hover ul, #hovermenu li.sfhover ul, #hovermenu li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}