@charset "UTF-8";
ul.MenuBarHorizontal{
	padding: 0 0 14px;
	font-size:11px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	height: 30px;
	margin: 0;
}
/* 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 a fixed width */
ul.MenuBarHorizontal li{
	padding:0;
	margin:0;
	width:80px;
	list-style-type: none;
	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 li ul{
	padding: 0;
	margin:0;
	z-index: 1020;
	position: absolute;
	left: -1000em;
	border: 1px solid #000;
	font-weight:normal;
	font-size:100%;
	clear:both;
}
/* 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 li ul.MenuBarSubmenuVisible{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal li ul li{
	float:none;
	width:auto;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal li a{
	color:#000;
	display: block;
	line-height:24px;
	padding:3px 0;
	text-decoration: none;
	background-color:#F7F08A;
	text-align: center;
	zoom:1;
}
ul.MenuBarHorizontal li a.doubleline {
	line-height:12px;
}
ul.MenuBarHorizontal li ul li a {
	width:auto;
	float:none;
	line-height:18px;
	padding:0 3px;
	text-align: left;
	white-space:nowrap;
}
ul.MenuBarHorizontal li a:hover,ul.MenuBarHorizontal li ul li a:hover{
	background-color: #FBF8CA;
}
ul.MenuBarHorizontal li.green a,ul.MenuBarHorizontal li.green ul li a {
	background-color:#D4DE80;
}
ul.MenuBarHorizontal li.green a:hover, ul.MenuBarHorizontal li.green ul li a:hover{
	background-color: #DFE4B6;
}

/*******************************************************************************

 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;
}
