@charset "utf-8";
/* CSS Document */
#menu_header {
	width: 100%; 
	height: 23px; 
	background-color: #0093D0; 
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 11px; 
	font-weight: bold; 
	color: #FFFFFF; 
	line-height: 23px; 
}

/* from Son of Suckerfish */
#nav {
	float: right;
}

#nav, #nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#nav li {
	float: left;
	width: 175px; /* width needed or else Opera goes nuts */
}

#nav a {
	display: block;
	color: #FFFFFF;
	width: 175px;
	text-align: center;
}

#nav li a:hover {
	background-color: #01628D;
	text-decoration: none;
}

#current_top_item {
	background-color: #01628D;
}



#nav li ul { /* second-level lists */
	position: absolute;
	background-color: #0093D0;
	width: 175px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	padding-left: 1px;
	padding-right: 1px;
	padding-bottom: 1px;
	font-size: 11px;
	font-weight: normal;
	margin-bottom: 1px;
}

#nav li ul li {
	margin-bottom: 1px;
	background-color: #FFFFFF;
}

#nav li ul li a {
	color: #000000;
	text-align: left;
	text-indent: 3px;
}

#nav li ul li a:hover {
	background-color: #DEDEDE;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#nav li:hover, #nav li.hover {
    position: static;
}