@charset "UTF-8";
/* CSS Document */


#nav {
	background: #015A9C;
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	width: 780px;
	height: 24px; /* [101608] this height will determine vertical spacing of main navigation link */
	margin: 0;
	padding: 10px 10px 0 10px;
	list-style: none;
}
/* LINK STYLES */

#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}
#nav li { /* all list items */
	padding: 0;
	margin: 0;
	float: left;
	position: relative;
	width: auto; /* [101608] size of each main nav text .. increase/decrease by tenth at a time */
}
#nav li a, nav li a:visited {
	 color: #fff;
}
#nav li a:hover, nav li a:active {
	color: #FCB946;
}

/* [101608] added nav_title class to control all main nav links .. or can specify for each by its id (see below) */
.nav_title {
	text-align: center;
	padding: 2px 15px 2px 10px;
	font-size: 11px;
	text-transform: uppercase; /* [101608] capitalizing in css rather than using CF's uCase() */
}
#who-we-are, #what-we-do, #giving, #get-involved, #news-and-info, #careers, #contact-us  {
	background: url(../../images/img_site/nav_divider.gif) no-repeat 100% 50%; 
}
#nav li ul { /* second-level lists */
	background: #015A9C; 
	display: none;
	position: absolute;
	top: 1.3em;
	left: 0px;
	padding-top: 0px;
	padding-bottom: 10px;
}
#nav li ul li {
	padding: 7px 10px 0 10px;
	width: 150px;
}

/* [101608] example of overriding width of particular sub nav dropdown */
#drop_who-we-are { width: 175px; }
#drop_what-we-do { width: 175px; }
#drop_giving { width: 175px; }
#drop_getinvolved { width: 175px; }
#drop_news-and-info { width: 175px; }
#drop_careers { width: 175px; }
#drop_contact-us { width: 175px; }
#drop_for-employees { width: 175px; }

#droplinks {
	display: inline;
}

#nav  li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

#nav li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}
