@charset "utf-8";
/* The outermost container of the Menu Bar */
#header ul.MenuBarHorizontal{
	margin: 0;
	padding: 0;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
#header ul.MenuBarActive{
	z-index: 1000;
}
/* Primary List Items */
#header ul.MenuBarHorizontal li{
	list-style-type: none;
	float: left;
	margin-right:2px;
}
/* Submenus container. Appears below their parent list item with a higher z-index, but they are initially off the left side of the screen (-1000em) */
#header ul.MenuBarHorizontal li ul{
	z-index: 1020;
	position: absolute;
	left: -1000em;
	width: auto;
	margin:0;
	padding:0;
	background-color: #FFF;
}
/* This brings the submenu container onto the screen, cancelling th -1000em */
#header ul.MenuBarHorizontal li ul.MenuBarSubmenuVisible{
	left: auto;
}
/* Sebmenu list items. This will cancels out some of the variables set with the primary list items */
#header ul.MenuBarHorizontal li ul li{
	float: none;
	white-space: nowrap;
	margin-right:0;
}
/* Primary navigation links */
#header ul.MenuBarHorizontal li a{
	color: #FFF;
	text-decoration: none;
	display: block;
	padding:8px 14px 9px;
	background: #2659A6;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: bold;
}
/* Submenu links */
#header ul.MenuBarHorizontal li ul li a{
	text-transform: none;
	background: #FFF;
	color: #2659A6;
	padding:6px 14px 7px;
}
/* Highlighted primary navigation links. Links remain in hover state while the submenu is open */
#header ul.MenuBarHorizontal li a.MenuBarItemHover, #header ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, #header ul.MenuBarHorizontal a.MenuBarSubmenuVisible {
	background: #FFF;
	color: #2659A6;
}
/* Highlighted submenu links */
#header ul.MenuBarHorizontal li ul li a.MenuBarItemHover, #header ul.MenuBarHorizontal li ul li a.MenuBarItemSubmenuHover, #header ul.MenuBarHorizontal li ul li a.MenuBarSubmenuVisible{
	color: #FFF;
	background-color:#6A98DD;
}
/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
#header ul.MenuBarHorizontal iframe{
	position: absolute;
	z-index: 1010;
}
