body {
	font-family: arial, helvetica, serif;
}
#menuwrapper {
	background-color: #ca0000;
	background-repeat: repeat-x;
	font-size: 8pt;
	position:absolute; 
	left:50px; 
	top:57px; 
	width:750px; 
	height:15px;
  border-width:0px;
	margin: 0px;
	text-align: left;
	z-index:2;
}

#menuwrapperbanner {
	background-color: #ca0000;
	background-repeat: repeat-x;
	font-size: 8pt;
	position:absolute; 
	left:50px; 
	top:137px; 
	width:750px; 
	height:14px;
  border-width:0px;
	margin: 0px;
	text-align: left;
	z-index:2;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	width: 7.4em;
	color: white;
	font-weight: bold;
	font-size: 8pt;
	font-family: tahoma;
  padding: .2em;
	background: #ca0000;
	text-decoration: none;
}

#nav li { /* all list items */
	float: left;
	width: 7.5em; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #ca0000;
	width: 50px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li a:hover{
	position:relative;
	background-color:darkslategray;
	border-color:#ca0000;
	border-style:solid;
	border-width:0px;
	margin: 0px;
	}
	
#nav li ul ul { /* third-and-above-level lists */
	margin: -1.45em 0 0 74px;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

