@charset "utf-8";
/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
#header ul.MenuBarHorizontal{
	margin: 0px 0px 30px;
	padding: 1px 0px 0px;
	height:34px;
	clear: both;
	font: 14px Verdana, Geneva, sans-serif;
	border-right: 1px solid #FFF;
	border-left: 1px solid #B6B6B6;
	width: 884px;
}
/* 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;
}
/* Menu item containers, position children relative to this container and are a fixed width */
#header ul.MenuBarHorizontal li{
	padding:0px;
	list-style-type: none;
	position: relative;
	text-align: left;
	cursor: pointer;
	float: left;
	background-image: none;
	width: auto;
	margin: 0px;
	border-left: 1px solid #FFF;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
#header ul.MenuBarHorizontal ul{
	padding: 6px;
	list-style-type: none;
	font-size: 12px;
	z-index: 1020;
	position: absolute;
	left: -1000em;
	width: auto;
	background: #FFF;
	border: 1px solid #B6B6B6;
	border-top:none;
	margin:-5px 0px 0px -2px;
	line-height:24px;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
#header ul.MenuBarHorizontal ul.MenuBarSubmenuVisible{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
#header ul.MenuBarHorizontal ul li{
	display: block;
	float: none;
	width: auto;
	white-space: nowrap;
	margin:0;
	padding:0;
	border:none;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Menu items are a light gray block with padding and no text decoration */
#header ul.MenuBarHorizontal a{
	text-decoration: none;
	color: #666;
	display: block;
	padding: 0px 24px;
	text-transform: uppercase;
	line-height: 34px;
	margin: 0px;
	border-right: 1px solid #B6B6B6;
}
/* submenu link */
#header ul.MenuBarHorizontal ul a{
	white-space: nowrap;
	text-transform: none;
	font-weight: bold;
	line-height: 32px;
	padding: 0px 8px;
	border-top: 1px solid #D7D7D7;
	border-right-style: none;
	border-left-style: none;
	color: #999;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a background and white text */
#header ul.MenuBarHorizontal a.MenuBarItemHover, #header ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, #header ul.MenuBarHorizontal a.MenuBarSubmenuVisible, #header ul.MenuBarHorizontal a.current{
	background: url(../images/tab-bg.jpg) repeat-x #FFF;
	margin-top:-7px;
	padding: 5px 23px 6px 22px;
	border:#FFF solid 2px;
	border-bottom:none;
	color:#333;
}
/* Highlighted submenu item */
#header ul.MenuBarHorizontal ul li a.MenuBarItemHover, #header ul.MenuBarHorizontal ul li a.MenuBarItemSubmenuHover, #header ul.MenuBarHorizontal ul li a.MenuBarSubmenuVisible{
	background: #EEE;
	color: #999;
	margin:0;
	padding:0 8px;
	border-top: 1px solid #D7D7D7;
	border-right-style: none;
	border-left-style: none;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* 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;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
#header ul.MenuBarHorizontal li.MenuBarItemIE{
	display: inline;
	white-space: nowrap;
}
}

