/*Menu Bar styling classes*/
ul.MenuBarHorizontal{
	margin: 0px 0px 0px 0px;
	padding: 0px;
	list-style-type: none;
	font-size: 13px;
	cursor: default;
	width: auto;
	border: 0px;
	font-family: "Microsoft Sans Serif", "MS Sans Serif", Arial, Tahoma;
	height: 19px;
}
/*Submenus should be below their parent (top:0) with a higher z-index, but the are initially off the left side of the screen (-1000em)*/

ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 14px;
	z-index: 1020;
	cursor: default;
	width: 0;
	position: absolute;
	left: -1000em;
	border: 0px;
}
/*Menu item containers, position children relative to this container and are a fixed width*/
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
	float: left;
	font-size: 14px;




	font-family:"Microsoft Sans Serif", "MS Sans Serif", Arial, Tahoma
	border: 0px;
	background-color: #6e615e
	width: 0;
	position: relative;
	z-index:1060;
	height: 19;
	width: auto;
}
/*Menu item containers are same fixed with as parent*/
ul.MenuBarHorizontal ul li{
	width: inherit;
}
/*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: auto;
	font-size:10px;
	background-color:#619AB6;
	border: 0px;
	position:absolute
}
/*Submenus should appear slightly overlapping to the right (95%) and up (-5%)*/
ul.MenuBarHorizontal a.MenuBarItemSubmenu{
	background-repeat: no-repeat;
	background-position: 95% 50%;
	visibility: visible;
}
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu{
	background-repeat: no-repeat;
	background-position: 95% 50%;
	visibility: visible;
}
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover{
	background-repeat: no-repeat;
	background-position: 95% 50%;
	visibility: visible;

}
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover{
	background-repeat: no-repeat;
	background-position: 95% 50%;
	visibility: visible;
}
/*******************************************************************************
DESIGN INFORMATION: Describes Color Scheme, borders, fonts
********************************************************************************/
/*Submenu containers have borders on all sides*/

ul.MenuBarHorizontal ul
{
	border:0px 1px 1px 0px solid #ffffff;
	position:absolute;
}
/*Menu items are a light gray block with padding and no text decoration*/
ul.MenuBarHorizontal a
{
	display: block;
	cursor: auto;
	padding: 0;
	color: ffffff;
	text-decoration: none;
}
/*Menu items that have mouse over or focus have blue background and white text*/
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{

	background-color: 
	color: #FFF

}
/*Menu items that are open with submenus are set to MenuBarHover with a blue background and white text*/
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
background-color:dfdad8;
color: #FFF;
}
/*******************************************************************************
SUBMENU INDICATION: style 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 vertically (%50) */
ul.MenuBarHorizontal ul.MenuBarSubmenu
{
position: absolute;
}

/*******************************************************************************
BROWSER HACKS
*******************************************************************************/

/*HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe*/
ul.MenuBarHorizontal iframe
{
	z-index: 1010;
	position: absolute;
}
/*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;
	position: absolute;
}
}

