@charset "utf-8";

/*  The width for the li, li a, and li;hover need to be the same to get the drop downs vertical */
#navdiv {
	font-weight: bold;
	font-size: large;
	height: 30px;
	padding-left: 160px;
	padding-top: 10px;
	font-family: Cambria, "Trebuchet MS", Tahoma;
	background-color: #060;
}
#navdiv ul {
	list-style-type: none;
	display: inline;
	margin-top: 0px;
}
#navdiv  li {
	padding-right: 5px;
	padding-left: 10px;						/* Size must be defined, if to big list will wrap */
	float: left;					/* Float to create horizontal list                */
	padding-top: -15px;
	margin-top: 0px;
}
#navdiv ul .curPage {
	background-color: #8AFFD9;
}

#navdiv 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 */
	width: 8em;
	text-align: left;
	font-weight: bold;
	padding-left: 2px;
	padding-top: -5px;
	margin-top: -5px;
	border-top-width: medium;
	border-right-width: medium;
	border-bottom-width: medium;
	border-left-width: medium;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	background-color: #060;
}
#navdiv ul .about { 		/* About specific drop down size 		*/
	width: 250px;
}
#navdiv li ul.support {
	width: 180px;
}
#navdiv li ul.newsletters {
	width: 250px;
}
#navdiv li ul.meetings {
	width: 330px;
	background-repeat: no-repeat;
}
/* Remember the order, link, visit, active, hover  	*/
#navdiv a,
#navdiv a:link,					/* Default state.	*/
#navdiv a:visited,				/* Been there..    	*/
#navdiv a:active {				/* Link selected.  	*/
	display: block;
	text-decoration: none;
	color: #FFF;
	font-weight: bold;
}
#navdiv a:hover {
	color: #F00;
}
#navdiv li a.nocolor,
#navdiv li a:hover.nocolor {
	color:#000;
}
	
#navdiv li:hover ul, #navdiv li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

