ul#topnav {
	margin: 0; padding: 0;
	float: left;
	width: 760px;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	z-index:10;
	background-image:url(../images/blue_fade.png);
	background-repeat:repeat-x;
}

ul#topnav li {
	float: left;
	margin: 0; padding: 0;
	border-right: 1px solid #FFF; /*--Divider for each parent level links--*/
}

ul#topnav li.noborder {
	border-right: none; /*--Divider for each parent level links--*/
}

ul#topnav li a {
	padding: 8px 11px 8px 12px;
	display: block;
	color: #FF00FF;
	text-decoration: none;
}

ul#topnav li:hover { background-color:#F0FAFF; }

/*--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:30px;

	display: none; /*--Hide by default--*/

	/*width: 590px;*/
	background-color:#F0FAFF;

	color: #fff;

	z-index:11;



}

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;

	background-color:#F0FAFF;

}
