/* -----------------------------------------------------------------------
		NAVIGATION BAR CONTAINER
------------------------------------------------------------------------*/
.navbar { 
	background-color: #BB2E01;	
	width: 800px;
	height: 32px;	
	margin: 0px;
	padding: 0px;
	list-style: none;
}

/* -----------------------------------------------------------------------
		TOP-LEVEL MENUS
------------------------------------------------------------------------*/
a.nav {
	float: left;
	font-weight: bold;
	text-decoration: none;
	color: #FFF;
	text-align: center;
	line-height:19px;
	padding: 7px 18px 6px 17px;
	font-size: 14px;
	text-shadow: 0px 2px 5px #000;
}
li.menu_item {
	float: left;
	position: relative;
}
a.nav span {
	display: block;
}
a.nav:hover {
	background-color: #FFCC00;
	color: #000;
	text-shadow:none;
}
#nav1 a.nav { /* increases the left indent of the home button, to make the contact hover flush on right */
	padding-left:19px;
	}

/* Determines what button to highlight based on the pagetype */
#pagetype01 #nav_home,
#pagetype02 #nav_about,
#pagetype03 #nav_wwd,
#pagetype04 #nav_projects,
#pagetype05 #nav_people,
#pagetype06 #nav_news,
#pagetype07 #nav_volunteer,
#pagetype08 #nav_donate,
#pagetype09 #nav_contact {
	background-color: #FC0;
	color: #000;
	text-shadow:none;
}

/* -----------------------------------------------------------------------
		DROP-DOWN MENUS
------------------------------------------------------------------------*/

.dropdown_menu { /* Container for the submenus, hidden by default */
	background: url(../images/shared/dropdown-bg.png) repeat left 0px; /* Use a PNG 24 for transparency */
	padding: 0px 10px;
	border:none;
	list-style: none;
	position: absolute;
	top: 32px;
	left: 0px;
	display: none;
}
.dropdown_menu a { /* Styles the looks of the submenu individual links */
	color: #FEC700;
	font-weight:bold;
	text-decoration: none;
	padding: 0px 15px;
	margin: 0px -10px;
	display: block;
}
.dropdown_menu a:hover {
	color: #000;
	background: #FFCC00;
}
li.menu_item:hover ul.dropdown_menu { /* What happens to a submenu list (ul.dropdown_menu) when a top-level menu (li.menu_item) is hovered */
	display: block; /* Activates the display of the submenu container */
	margin: 0px;
	line-height: 200%;
	font-size: 14px;
}

/* Additional info for width of specific dropdown menus */
li#nav2 ul{
	width: 150px;
}
li#nav4 ul{
	width: 270px;
}
li#nav5 ul{
	width: 140px;
}
li#nav6 ul{
	width: 120px;
}
li#nav7 ul {
	width: 150px;
}