/* CSS Document */
ul#topnav {
	margin: 0; padding: 0;
	float: left;
	width: 601px;
	height:26px;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 10px;
	background: url(../menu/bg-out.gif) repeat-x;
	font-family:Tahoma;
	font-weight:bold;
}
ul#topnav li {
	float: left;
	margin: 0; padding: 0;
	border-right: 1px solid #0aa9b4; /*--Divider for each parent level links--*/
	height:26px;
}
ul#topnav li a {
	padding: 5px 30px;
	display: block;
	color: #ffffff;
	text-decoration: none;
	height:26px;
}
ul#topnav li:hover a{ 
	color:#000000;
	background: url(../menu/bg-hover.gif) repeat-x; 
	height:26px;
}

/*--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{
	float: left;
	padding: 5px 0;
	position: absolute;
	left: 0; top:26px;
	display: none; /*--Hide by default--*/
	width: 601px;
	background: #eee8d2;
	color: #000000;
	background: url(../menu/bg-hover.gif) repeat-x; 

}
ul#topnav li:hover span { display: block; } /*--Show subnav on hover--*/
ul#topnav li span a { display: inline; } /*--Since we declared a link style on the parent list link, we will correct it back to its original state--*/
ul#topnav li span a:hover {text-decoration: underline;}