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

#nav a {
	display: block;
	font-size:12px;
	text-decoration:none}

#nav li { /* all list items */
	float: left}

#nav li ul { /* second-level lists */
	position: absolute;
	top:24px;
	background:#f7fafc;
	width:160px;
	border:1px solid #cee5f3;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li li a {
	font-weight: bold;
	padding: 6px 9px;
	font-weight:normal;
	color:#395E87;
	border-bottom:1px dotted #cee5f3;
	width:142px}
	
#nav li li a:hover {
	background:#62b5e5;
	color:white;
}


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

#nav li li ul li a{width:207px}
#nav li ul ul{width:217px}

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

