ul.MenuBarHorizontal
{
	list-style-type: none;
	font-size: 11px;
	cursor: default;
	width: 558px;
	font-family: Arial, Helvetica, sans-serif;
	display: inline;
	float: left;
	padding: 0;
	margin: 0px;
	height: auto;
	
}
/* 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 */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are same fixed width as parent */
ul.MenuBarHorizontal li
{
	padding: 0;
	list-style-type: none;
	font-size: 11px;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 134px;
	float: left;
	margin-top: 0px;
	margin-right: 4px;
	margin-bottom: 0px;
	margin-left: 0px;
	display: inline;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	padding: 0;
	list-style-type: none;
	font-size: 11px;
	z-index: 1020;
	cursor: pointer;
	width: 134px;
	position: absolute;
	left: -1000em;
	margin: 0px;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;

}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 134px;
	margin: 0px;
	padding: 0px;
}
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top:0px;

}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	color: #FFFFFF;
	text-decoration: none;
	background: url(/img/menubar/bg_menu_top.gif) no-repeat 0 0;
	overflow: hidden;
	text-align: center;
	width: 134px;
}
ul.MenuBarHorizontal a span {
	background: url(/img/menubar/bg_menu_bottom.gif) no-repeat 0 bottom;
	display: block;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 6px;
	padding-left: 5px;
	width: 124px;
	font-weight: bold;
	text-decoration: none;
	height: 14px;
}
ul.MenuBarHorizontal a span span {
	background: none;
	padding: 0;
	text-decoration: none;
}
ul.MenuBarHorizontal li ul li {
	width: 134px;
	background-color: #000000;
	background-image: none;
}
ul.MenuBarHorizontal li ul a {
	background-color: #000000;
	background-image: url(/img/menubar/bg_submenu.gif);
	display: block;
	width: 126px;
	font-size: 11px;
	padding-top: 8px;
	padding-right: 4px;
	padding-bottom: 8px;
	padding-left: 4px;
	text-decoration: none;
	background-repeat: repeat-x;
	font-family: Arial, Helvetica, sans-serif;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover 
{
	background: url(/img/menubar/bg_menu_top_hover.gif) no-repeat 0 0;
}
ul.MenuBarHorizontal a.MenuBarItemHover span, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover span {
	background-image: url(/img/menubar/bg_menu_bottom_hover.gif);
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal ul a.MenuBarItemHover, ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal ul a.MenuBarSubmenuVisible
{
	color: #FFF;
	background-image: url(/img/menubar/bg_submenu_hover.gif);
	background-repeat: repeat-x;
	background-position: 0 0;
}
/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered Horizontally (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu span
{



}
ul.MenuBarHorizontal a.MenuBarItemSubmenu span span {
	display: block;
	background-image: url(/img/menubar/bg_indicator_hover.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}

/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered Horizontally (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover span span
{
	background-image: url(/img/menubar/bg_indicator.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: 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 */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
	background-color: #000000;

}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
	display: inline;
	f\loat: left;
	background-color: #000000;
	}

