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

/* commented backslash hack v2 \*/
#nav a {
	display: block;
	text-decoration: none;
	border: 0px;
}
#nav li {float: left; width: auto;}

#nav ul a{padding: 3px; background-color: #FFFFFF; border: 1px solid #1c2674;}
#nav ul a:hover{background-color: #1D2675; color: #FFFFFF;}

#nav li li{width: 20em;}
#nav li ul { /* second-level lists */
	position: absolute;
	width: 20em;
	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: -1.5em 0 0 20em;	
}
#nav li ul ul a{}
#nav li ul ul a:hover{}
#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
	/*display: none;*/
}

#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;
	/*display: block;*/
	
}

#content {
	clear: left;
	color: #ccc;
}

