#topnav-container
{
	margin: 0px;
	background-color: #000;
	height: 20px;
}
/* Top level menu */
#topnav, #topnav li ul
{
	z-index: 1000; /* Allows display on top of absolute positioned content */
	list-style: none;
	margin: 0px;
	padding: 0px;
}
#topnav li
{
	float: left;
	width: 75px;
	text-align: center;
	position: relative;
	z-index: 1000; /* IE fix */
	color: #fff;
	height: 20px;
	font-size: 12px;
}
#topnav li:hover
{
	position: relative;
}
#topnav li a
{
	position: relative;
	color: #fff;
	text-decoration: none;
	/* Win., Mac*/
	font-family: Monotype Corsiva, ITC Zapf Chancery Medium Italic;
	font-size: 18px;
	display: block;
	padding-left: 5px;
	padding-right: 5px;
}
/* Second level menus */
#topnav li ul
{
	position: absolute;
	z-index: 1000;
	left: -999em;
	/* Required, or IE will position the dropdown next to the menu item */
	top: 18px;
	border: 1px solid #eee;
	background-color: #000;
	width: auto;
}
#topnav li.sfhover ul
{
	/*left: 0px;*/
	left: auto;
	/* Fixes issue with IE, but doesn't seem to affect FireFox. . . Amazing. . .   */
	margin-left: -30px;
}
#topnav ul li
{
	position: relative;
	z-index: 1000;
	height: 20px;
	width: 100px;
	text-align: left;
}
#topnav ul li:hover
{
	border: 0px;
	background-color: #666;
}
#topnav li:hover ul
{
	left: auto;
}
	/* For IE */
#topnav ul a
{
	border-right: 0px;
	border-top: 0px;
	/*display: block;*/
	padding: 2px 0px 0px 2px;
	color: #fff;
}
#topnav ul a:hover
{

}
