#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 28px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	display: block;
}
#nav a {
	display: block;
	text-decoration:none;
	color:#5A6563;
	text-align:center;
line-height: 28px;
}
#nav a:hover {
	color:#FFF;
}
#nav li { /* all list items */
	float: left;
	height: 28px;
	margin-right: 0px;
	line-height: 28px;
	background: url(/sites/public/144/resources/images/homepage04.gif) no-repeat left top;
	text-decoration: none;
	text-transform: lowercase;
	color: #727272;
	width: 114px;/* width needed or else Opera goes nuts */
}
#nav li a { /* all list items */
	width:114px;
	background-image: url(/sites/public/144/resources/images/homepage04.gif); 
	background-repeat:no-repeat;
	color:#505050;
}
#nav li a:hover { /* all list items hover */
	background-image: url(/sites/public/144/resources/images/homepage05.gif); 
	background-repeat:no-repeat;
	color:#FFFFFF;
	
}
#nav li ul { /* second-level lists */
	width:114px;
	position: absolute;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li ul li {
	float: none;
	color:#FFF;
	width:114px;
}
#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 114px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#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;
}