/* CSS Document for dropdown menus*/

#navigation {
	position:relative;
	z-index:2;			/* necessary for IE6 if you want dropdowns  */
	width:100%;
	
	float: left;
	margin: 10px 0px 0px -2px;	
}

#nav2, #nav2 ul { /* all lists */
	display:relative;
	z-index:5;
	padding: 0;
	margin: 0;
	list-style: none;
	
	font-family:Arial, Helvetica, sans-serif;
	line-height:1.2;
	font-weight: bold;
	font-size:12px;
}

#nav2 li ul { /* second-level lists */
	position: absolute;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border:solid 1px #999 ;
}

	
	
#nav2 li li ul { /* third level lists */
	margin: -1.7em 0 0 15.5em;
}
#nav2 li { /* all list items */
	float: left;
	border-right:solid 2px #fff;
}


#nav2 li li {		
	clear:both;
	width:auto;
	border-right:none;
}

#nav2 a {
	display: block;
	text-decoration:none;
	text-align:left;
	text-transform:none;
	padding:0.85em 1em;	

	color:#fff;
	background:#27d;			/* this is the default color for the nav. The code below overwrites this for each piece of the menu */
}

#nav2 a:hover {
	color:#333;
	background:#eee;
}

#nav2 li li a {
	width:15em;
	padding:0.5em 0.75em;
	text-align:left;
	text-transform:none;
}
#nav2 li li a:hover {
}	


/*colors for the different pieces of the menu */
#nav_home a 		{	background:#27d;	}
#nav_about_us a		{	background:#b37;	}
#nav_training a		{	background:#98e;	}
#nav_advocacy a		{	background:#fe4e5d;	}
#nav_funding a		{	background:#6c4;	}
#nav_resources a	{	background:#f91;	}
#nav_join_us a		{	background:#27d;	}
#nav_donate a		{	background:#3bb;	}


#nav2 li:hover ul ul, #nav2 li.sfhover ul ul {
	left: -999em;
}

#nav2 li:hover ul, #nav2 li li:hover ul, #nav2 li.sfhover ul, #nav2 li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

