@charset "UTF-8";


ul.MenuBarHorizontal
{
	list-style-type: none;
	width: auto;
}

ul.MenuBarActive
{
	z-index: 1000;
}

ul.MenuBarHorizontal li
{
	position: relative;
	float: left;
}

/* 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) */
ul.MenuBarHorizontal ul
{
	list-style-type: none;
	font-size: 11px;
	font-family: Arial, Verdana, sans-serif;
	z-index: 1020;
	cursor: default;
	width: 135px;
	text-align: left;
	position: absolute;
	left: -1000em;
	background: #32302e;
	filter:alpha(opacity=90); 
	-moz-opacity: 0.9; 
	opacity: 0.9;
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: 15px;
}



/* Fixes dropdown placement in IE 7 */ html > body ul.MenuBarHorizontal ul.MenuBarSubmenuVisible { *position: relative; } 


/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
*html ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
	position: absolute;
	z-index: 2000;
	margin-left: -135px;
	top: 63px;
}


/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 135px;
}

ul.MenuBarHorizontal ul a
{
	display: block;
	padding-left: 18px;
	text-decoration: none;
	color: #c6bcaf;
	cursor: pointer;
	border-bottom: 1px solid #3e3b37;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{

}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
background: #131313;
color: #FFF;
}



/*

 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 */
ul.MenuBarHorizontal iframe
{
	display: none;
	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
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
	}
}
