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

#nav a {
	display: block;	
}

#nav li { /* all list items */
	float: left;
	/*width: 6em;  width needed or else Opera goes nuts */

}

#nav li ul {
	width: 165px;
	border: 1px solid #fff;
/*	margin-left: -10px;;*/
	padding-top: 0.4em;
	padding-bottom: 5px;
	margin:0px;
	text-align: left;
}

#nav li li {
	width: 149px;
	_width: 163px;
	background-color: #014B6E;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background-color: #014B6E;
	line-height: 1.6;
	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 10em;
}

#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 li:hover ul { left:0;display:block;}

blockquote {
font-style: italic; 
}
