/* Start of CMSMS style sheet 'sucker' */
#nav {
	width:1000px;
	margin:0 auto;
	height:25px;
	padding-left:20px;
} 

#nav ul { /* all lists */
		margin: 0;
}

#nav a {
	display: block;
	width: 196px;
	text-decoration:none;
	height:25px;
	text-align:center;
	font-size:.9em;
	padding-top:3px;
	
}
#nav a:hover {
background-color:#E4CC8A;
}

#nav li { /* all list items */
	float: left;
	width: 196px; /* width needed or else Opera goes nuts */
	list-style: none;
	border-right:1px solid #000;
	border-top:1px solid #000;
	border-left:1px solid #000;
	background-image:url(images/menu-item.jpg);
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 200px;
	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 196px;
}

#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;
}


/* End of 'sucker' */

