#menu{
width: 698px;
margin: auto;
color: #000;
height: 22px;
text-align: center;
background-color:#104372;
font-family: arial, sans-serif;
font-size: 10px;
text-transform: uppercase;
font-weight: bold;
border-top: 1px solid white;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
    text-decoration: none;
    color: #FFF;
    width: 95px;
    padding: 6px;
}

#nav a:hover {
    background-color:#7AAFD9;
}

#nav li { /* all list items */
	float: left;
	border-right: 1px solid white;
}

#nav li ul { /* second-level lists */
	background: #104372;
	z-index:100;
	position: absolute;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
    text-align: left;
    width: 95px;
    font-size: 11px;
	text-transform: none;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
width: 107px;
}

