


#menu2 {
	width: 900px;
	height: 42px;
	margin: 0px auto;
	padding: 16px 20px 0px 20px;
	border: 1px solid #FFFFFF;
}


#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	font-weight: bold;
	z-index: 3
}

#nav a {
	display: block;
	width: 12em;
	color: #fff; 
	margin-left: 3px;
  text-decoration: none;
}

#nav a:hover
{
 		color: #58ACFA;
}

#nav li { /* all list items */
	float: left;
	width: 12em; /* width needed or else Opera goes nuts */
	background: #32434b;
	color: #fff;
	line-height: 2;
  white-space: nowrap;
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 12em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#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;
}


#nav li:hover, nav li.hover {
    position: static;
}