#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	color: white;
	height: 40px;
	line-height: 40px;
	font-weight: bold;
	font-size: 110%;
	text-transform: uppercase;
	}

#nav li { /* all list items */
	float: left;
	margin: 0 2em 0 0;
}
	#nav li.active a {
		font-size: 125%;
	}

#nav li ul { /* second-level lists */
	position: absolute;
	background: lightblue;
	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 20em;
}

#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;
}

#navigation #homeLink {
	float:left;
	margin-right:2em;
	font-size:110%;
	color:white;
	font-weight:bold;
	text-transform: uppercase;
	line-height:40px;
	height:40px;
	display:block;
}
#navigation #homeLink.active {
	font-size:125%;
}
