/* CSS Document */
#menubarholder {
	height: 27px;
	width: 976px;
	background-image: url(/img/menubar/bg__menubar.png);
	background-repeat: no-repeat;
	background-position: left top;
}
ul.MenuBarHorizontal
{
	list-style-type: none;
	font-size: 11px;
	cursor: default;
	width: 976px;
	font-family: Arial, Helvetica, sans-serif;
	padding: 0;
	margin: 0px;
	
}
/* 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: 122px;
	float: left;
	display: inline;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
/* 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
{
	list-style-type: none;
	font-size: 11px;
	z-index: 1020;
	cursor: pointer;
	width: 166px;
	height: auto;
	display: block;
	left: -1000em;
	position: absolute;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
	padding: 0;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #000000;
}

/* 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;
	position: absolute;
	clear: both;

}

/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 166px;
	padding: 0px;
	display: block;
	text-align: left;
	height: auto;
}

ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	top:0px;
	left: auto;

}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	color: #FFFFFF;
	text-align: center;
	width: 122px;
	height: 27px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
}
ul.MenuBarHorizontal /* Menu items are a light gray block with padding and no text decoration */
 a:visited
{
	color: #FFFFFF;
}
ul.MenuBarHorizontal a span {
	display: block;
	width: 122px;
	text-decoration: underline;
	margin: 0px;
	height: 21px;
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	color: #FFFFFF;
	font-weight: bold;
}
ul.MenuBarHorizontal li ul li {
	width: 166px;
	padding-bottom: 0px;
	text-align: left;
}
ul.MenuBarHorizontal li ul a {
	display: block;
	width: 154px;
	font-size: 11px;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	height: auto;
	color: #FFFFFF;
	background-image: url(/img/menubar/submenu_bg.png);
	text-align: left;
	padding-right: 0px;
	padding-left: 12px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-bottom: 6px;
	padding-top: 6px;
	font-weight: normal;
	background-repeat: repeat-x;
	background-position: right top;
	line-height: 13px;
}
#menubarholder   li  ul  li  a.admin {
	background-image: url(/img/menubar/submenu_bg_admin.png);
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover 
{
	color: #FFFF00;
	background-image: url(/img/menubar/menu_bg.gif);
	background-repeat: no-repeat;
	background-position: left top;

}

ul.MenuBarHorizontal a.MenuBarItemHover span, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover span {
	color: #FFFF00;
}

/* 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: #FFFF00;
	text-decoration: none;
	background-image: url(/img/menubar/submenu_bg.png);
	background-repeat: repeat-x;
	background-position: right -86px;
	font-weight: normal;
	font-size: 11px;
}

/*******************************************************************************

 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;

}
ul.MenuBarHorizontal  /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
li.MenuBarItemIE 
	{
	display: inline;
	f\loat: left;
	color: #FFFFFF;
	}
