#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	z-index: 100;
	list-style: none;
	line-height: 20px;    }
#nav a {
	text-decoration: none;    } 
#nav li { /* all list items */
 	/* width needed or else Opera goes nuts */ 
	position: relative;   }
#nav li ul { /* second-level lists */
	position: absolute;
	top: 16px;
	left: -20px;
	width: 200px;
	padding-top: 9px;
	background: url('/view/img/arrow_gyf.gif') no-repeat left top #FFF; 	
	background-position: -20px 0px;
	border-bottom: 1px solid #CFCDE2;
	z-index: 1000; 
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */    }	
#nav li ul li{
	padding: 5px 15px;
	width: 168px;
	margin: 0px;
	background-color: #fff;
	position: relative; 
	z-index: 1001; 
	border-left: 1px solid #CFCDE2; 
	border-right: 1px solid #CFCDE2;	}		
#nav li.sfHover ul { /* lists nested under hovered list items */
	left: 0px;   }
#nav li.hide ul{
	position: absolute;
	left: -999em; }
#nav li.sfHover ul li {
	left: 0px; 
	margin: 0px;
	z-index: 1000; 
	line-height: 20px;   }
/* sfFocus Styles */
.sfFocus {
	background: blue;
	color: #fff;    }
/* sfActive Styles */
.sfActive {
	background: lime;
	color: #fff;    }
/* sfTarget Styles */
.sfTarget {
	background: black;
	color: #fff;    }

