#topnav-container
{
	margin: 0px;
	background-color: #c90035;
	border-top: 4px solid #ff9c39;
	height: 18px;
}
/* Top level menu */
#topnav, #topnav ul
{
	z-index: 1000; /* Allows display on top of absolute positioned content */
	list-style: none;
	margin: 0px;
	padding: 0px;
}
#topnav li
{
	float: left;
	width: 11em;
	position: relative;
	z-index: 1000; /* Friggin IE again.... */
	/* Keeps alignment right from container border */
	border-top: 4px solid #ff9c39;
	top: -4px;

	height: 18px;	
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
}
#topnav li:hover
{
	position: relative;
	border-top: 4px solid #000;
}
#topnav li a
{
	position: relative;
	color: #fff;
	text-decoration: none;
	display: block;
	text-align: center;
}
/* Second level menus */
#topnav li ul
{
	position: absolute;
	left: -999em;
	top: 22px;
}
#topnav ul li
{
	border: 0px;
	border-top: 1px solid #fff;
	height: 20px;
	background-color: #c90035;
	text-align: center;
	padding-top: 2px;
}
#topnav ul li:hover
{
	border: 0px;
	border-top: 1px solid #fff;
	background-color: #f03;
}
#topnav li:hover ul
{
	left: auto;
}
	/* For IE */
#topnav li:hover ul, #topnav li.sfhover ul
{
	left: auto;
}
#topnav ul a
{
	border-right: 0px;
	border-top: 0px;
	display: block;
	padding-left: 3px;
}
#topnav ul a:hover
{

}