@charset "utf-8";
/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
#header ul.MenuBarHorizontal{
	margin:0;
	padding: 6px 0 0 0;
	height:36px;
	font: 15px Arial, Helvetica, sans-serif;
	font-weight:bold;
	background: url(../images/nav-bg.jpg) repeat-x;
}
/* 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{
	list-style-type: none;
	position: relative;
	text-align: left;
	cursor: pointer;
	float: left;
	background-image: none;
	width: auto;
	margin:0;
	padding:0;
}
/* 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: #000;
	border-top:none;
	margin:0 0px 0px -1px;
	line-height:29px;
}
/* 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: #fff;
	display: block;
/*	padding: 0 10px;
	line-height: 29px;
*/	margin: 0;
	padding:6px 20px 6px;
	border-right:1px solid #333;
}

/* submenu link */
#header ul.MenuBarHorizontal ul a{
	white-space: nowrap;
	text-transform: none;
	line-height: 34px;
	padding: 0 10px;
	border-top: 1px solid #666;
	border-right-style: none;
	border-left-style: none;
	color: #fff;
}
/* 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: #000;
	margin:0;
	color:#fff;
}
/* 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: #E10D23;
	color: #fff;
	margin:0;
	padding:0 10px;
	border-top: 1px solid #666;
	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;
}
}
