/*entire list*/
#nav, #nav ul { 
	font-family: Arial, Helvetica, sans-serif;
	list-style: none;
	margin: 0px;
	padding: 0px;
	z-index: 10;}
	
/*main dropdown menu without a dropdown list*/	
#nav a.noList {
	background: #004B85 url("../images/gradient_sNav.gif") repeat-y;
	background-position: top right;	
	border: 0px;
	border-color: #004B85;
	color: white;
	display: block;
	font-size: 12px;
	font-weight: bold;
	line-height: 28px;
	padding: 0px 5px 0px 5px;
	text-decoration: none;
	width: auto;}
	
#nav a.noList:hover {
	background: #004B85 url("../images/gradient_sNav.gif") repeat-y;
	background-position: top right;	
	color: gold;}

/*main dropdown menu items*/	
#nav a.main {
	background: #004B85 url("../images/gradient_sNav.gif") repeat-y;
	background-position: top right;	
	border: 0px;
	color: white;
	display: block;
	line-height: 28px;
	font-size: 12px;
	font-weight: bold;
	padding: 0px 5px 0px 5px;
	text-decoration: none;
	width: auto;}
	
#nav a.main:hover {
	background: none;
	background-color: #ce1126;
	color: white;}

/*drop down list items*/
#nav a {
	background-color: white;
	border-bottom: 1px solid gray;	
	color: gray;
	display: block;
	font-size: 11px;	
	padding-left: 5px;
	text-decoration: none;
	width: 140px;} /*width of drop down list options only, not main list*/

#nav a:hover {
	background-color: #ce1126;
	color: white;}

/* all list items */
#nav li { 
    background-color: #00386B;
	color: white;
	line-height: 20px;
	float: left;}

/* second-level lists */
#nav li ul { 
	border: 1px solid gray;
	border-bottom: none; /*when I did this it removed the right border from all dropdowns*/
	color: white;
	left: -999em; /*using left instead of display to hide menus because display: none isn't read by screen readers */
	position: absolute;
	width: 145px;}

/* third-and-above-level lists */
#nav li ul ul { 
	color: white;
	margin: -25px 0px 0px 150px;}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	color: white;
	left: -999em;}

/* lists nested under hovered list items */
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { 
	color: white;
	left: auto;}