#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav a {
	display: block;
	width: 140px;
	text-decoration: none;
	color: #320a7a;
}

#nav img {display:block;}

#nav a:hover, #nav a:active {
text-decoration: underline; 
color: #320a7a;
}

#nav ul a:hover {
background-color: #DEE9ED;
}

#nav li { /* all list items */
	float: left;
	width: 140px; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #adc8d1;
	width: 140px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border: 1px solid #320a7a;
}

#nav li ul div a{
 padding-right: 20px;
 width: 116px;
 background-image: url(images/arrow.gif);
 background-position: 124px 55%;
 background-repeat: no-repeat;	
}

#nav li ul a {
	width: 132px;
	padding:4px;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1.9em 0 0 136px;
	width: 150px;
}

#nav li ul ul a { /* third-and-above-level lists */
	width: 142px;
}

#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 img {border: none;}

#nav {font-family: verdana, arial, helvetica; font-size: 11px;}