#nav {
	text-align:center;
	float:right;
	margin:30px;
	padding-right:24px;
	background-color:#fff
}
#nav ul { /* all lists */
	margin:0;
	padding:0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	width: 12em;
	padding: 8px 4px 8px 6px;
	margin-right:0px;
	border-left: 1px solid black;
	
	border-top: none
	
}
#nav a:visited, #nave a:active{
	text-decoration:none
}
#nav a:hover{
	color:white
}
#nav li { /* all list items */
	float: left;
	width: 12em; /* width needed or else Opera goes nuts */
	padding-right:0px;
	background-color:#CCCCCC
}

#nav li ul { /* second-level lists */

	text-align:left;
	position: absolute;
/*	background: #4b95db;*/
	width: 12em;
	margin:0;
	padding:0;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li ul a{
	padding-left:10px;
	font-size:.8em;
	color:#823229
}
#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	
}
#nav li:hover ul li a:hover, #nav li.sfhover ul li a:hover { /* lists nested under hovered list items */
	color:white
	
}