body
{
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
}
#nav .mainmenu
{
	height: 41px;
	display: block;
	margin: 0px;
	padding: 0px;
	background-color:#000000;
	color: #FFFFFF;
}
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 2;
	font-size: 12px;
}
#nav .submenu {
	display: block;
	width: 14em;
	text-decoration: none;
	color: #FFFFFF;
	border-bottom: 1px solid #8e2f28;
}
#nav .submenu:hover {
	background-color: #8e2f28;
}
ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav li { /* all list items */
	float: left;
	width: 14em; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #5d0000;
	width: 14em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	
	border-bottom: 1px solid #8e2f28;
	border-left: 1px solid #8e2f28;
	border-right: 1px solid #8e2f28;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -2em 0 0 14em;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

.showMenu {
	left: 500;
	border: 10px solid #FF0000;
}
.hideMenu {
	left: -999em;
}
#content {
	clear: left;
	color: #ccc;
}
