#topnav {
	behavior:url(/css/csshover.htc);
	margin: 0; padding: 0;
	margin-left:auto;
	margin-right:auto;
	height:35px;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 11px;
	clear:both;
}

#topnav li {
	float: left;
	margin: 0; padding: 0;
	height:35px;
	border-right: 1px solid #555;/*--Divider for each parent level links--*/
	background: url(../images/backgrounds/topnav_active.jpg) repeat-x;
	list-style: none;

}

#topnav li a {
	padding: 10px 22px;
	display: block;
	color:#FFFFFF;
	text-decoration: none;
}

#topnav li a:hover {
	color: #000000;
	text-decoration: none;
}

#topnav li a:active {
	color: #000000;
	text-decoration: none;
	background-image:url(../images/backgrounds/topnav_stretch.jpg);
	background-repeat:repeat-x;
}

#topnav li:hover { background-image:url(../images/backgrounds/topnav_stretch.jpg); color:#000000;}
/*--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--*/

#topnav li span {
	float: left;
	padding-top:12px;
	padding-bottom:12px;
	padding-left:0;
	padding-right:0;
	position: absolute;
	left: 0; top:35px;
	height:30px;
	display: none; /*--Hide by default--*/
	width: 883px;
	color: #000000;
	/*--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;
}