ul#topnav {
	margin: 0; padding: 0;
	padding-bottom: -10px;
	float: left;
	width: 760px;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 1em;
	background-color: #406679;
	opacity: .9;
	-moz-opacity:.9;
	-khtml-opacity: .9;
}
ul#topnav li {
	float: left;
	margin: 0; padding: 0;
	border-right: 1px solid #555; /*--Divider for each parent level links--*/
}
ul#topnav li a {
	padding: 10px 15px;
	display: block;
	color: #f0f0f0;
	text-decoration: none;
}

/*url(topnav_active.gif) repeat-x;*/

ul#topnav li:hover { background: #F07600 !important }
/*--Notice the hover color is on the list item itself, not on the link. This is so it can stay highlighted even when hovering over the subnav--*/
 
ul#topnav li span {
	display: none; /*--Hide by default--*/
}
 
ul#topnav li div, ul#topnav li span {
	float: left;
	padding: 10px 0;
	position: absolute;
	left: 0; top:35px;
	width: 760px;
	height: 15px;
	background: #F07600;
	opacity: .9;
	-moz-opacity:.9;
	-khtml-opacity: .9;
	color: #FFFFFF;
	/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
}
 
ul#topnav li:hover span, ul#topnav li:hover div { display: block; } /*--Show subnav on hover--*/
ul#topnav li span a, ul#topnav li div a { 
display: inline; 
font-size: 11px;
text-transform: uppercase;
font-weight: bold;
color: #F8F8F8;
padding: 10px;
} /*--Since we declared a link style on the parent list link, we will correct it back to its original state--*/


/* these are new */
ul#topnav li a:hover {
color: /* #333 */ #fff;
}

ul#topnav li span a:hover, ul#topnav li div a:hover {
color: #fff !important;
text-decoration: underline;
}