@charset "utf-8";
/* CSS Document */

/*****************************************************************************************************
Main Styles - Apply to all and are primarily used for the top level links which display the dropdown
			  menus.
*****************************************************************************************************/
#nav { /* main navigation block */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	font-size: .79em;
	width: 960px;
	width: 960px;
	height: 40px;
	background-color: #006699;
	border-bottom: 4px solid #3399cc;
	font-family: arial, helvitica, san-serif;

	

}
#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1.2;
	background-color: #006699;
	height: 40px;
	z-index: 10000;
}

#nav a { /* all links */
	display: block;
	width: 78px;
	text-decoration: none;
	height: 38px;
	padding: 3px 3px 3px 0px;
	color: #FFFFFF;
	background-color: #003366;
	text-align: center;

}

#nav a:hover, #nav a:active {/*  all links */
	color: #003366;
	background-color: #fffee6;
	border-left: 2px solid #003366;
	text-align: center;
}

#nav li { /* all list items */
	float: left;
	width: 78px;
	background-color: #003399;
	height: 40px;
	border-left: 1px solid #99CCCC;
	border-right: 1px solid #99CCCC;
}
#nav li#first_nav { /*This styles the first nav item of the list link to not have a left border*/
	border-left: none;	
}
/*****************************************************************************************************
Dropdown Styles - Apply to the dropdown menus (i.e. second level lists)
*****************************************************************************************************/
#nav li li {
      font-size:104%
}
#nav li li li {
      font-size:111%
}




#nav li li a { /* thus code styles the links in dropdown menus*/
	height: auto;
	padding: 0px;
	width: 260px;
	height: 27px;
	padding-left: 4px;
	padding-top: 4px;
	width: 256px;
	color: #003366;
	background-color: #FFFFFF;
	text-align: left;
}
#nav li li a:hover, #nav li li a:active{ /* thus code styles the links in dropdown menus when the user hovers over them */
	font-weight: bold;
	text-decoration: underline;
	border-left: 0px solid #003366;
	text-vertical: top;
	text-align: left;

}
#nav li ul { /* this code hides the dropdown lists */
	position: absolute;
	background: #FFFFFF;
	width: 260px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li li { /* this code styles the dropdown lists */
	width: 260px;
	height: auto;
	border-left: 2px solid #d9e1ee;
	border-right: 2px solid #d9e1ee;
	border-bottom: 1px solid #d9e1ee;
}

#nav li .lastLink { /* this is necessary for making the bottom border of the last link look like the side borders*/
	border-bottom: 2px solid #d9e1ee;
}

#nav li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* this is used for showing the dropdown menus */
	left: auto;
	background-color: #FFFFFF;
}
/*****************************************************************************************************
Dropdown Description Styles - Apply to all the dropdown descriptions (i.e. third level lists) 
*****************************************************************************************************/
#nav li li li { /* dropdown menu descriptions */
	width: 259px;
	color: #003366;
	background-color: #fffee6;	
	padding-left: 6px;
	padding-right: 6px;
	padding-top: 4px;
	padding-bottom: 8px;
}

#nav li ul ul { /* this positions the dropdown link descriptions relative to the link itself */
	margin: -32px 0 0 261px;
	width: 259px;
	border: 1px solid #003366;
	height: auto;
	min-height: 26px;
}

#nav li ul ul li { /* this sets the color and size of the description list items */
	width: 247px;
	color: #003366;
	background-color: fffee6#;
	height: auto;
	border: none;
}

#nav li:hover ul ul, #nav li.sfhover ul ul { /* this is used for hiding the dropdown menu descriptions */
	left: -999em;
}

#nav li li:hover ul, #nav li li.sfhover ul, #nav li li.sfhover ul li { /* this is used for showing the dropdown menu descriptions */
	left: auto;
	background-color: #fffee6;
}
/*****************************************************************************************************
****************************************************************************************************
Floaters - Applicable to the dropdowns which are too close to the left side of the screen
****************************************************************************************************
*****************************************************************************************************/
#menuContainer {
	max-width: 960px;
	width: 960px;
}
#nav .showLeft { /* aligns the dropdown items to the left */
	margin: 0px 0px 0px -181px;
}
#nav .showLeft UL { /* aligns the dropdown descriptions to the left */
	margin: -32px 0px 0px -263px;
}

#nav li:hover, #nav li.hover { /* This stops the menus from sticking in IE 7 and 8 */
    position: static;
}