@charset "UTF-8";

ul.MenuBarHorizontal{
	margin: 0;
	list-style-type: none;
	font-size: 10px;
	font-weight:bold;
	text-transform:uppercase;
	cursor: default;
	width: 698px;
	padding-top: 0px;
	padding-right: 5;
	padding-bottom: 2;
	padding-left: 0px;
}
ul.MenuBarActive{z-index:1000;}

/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li{
	margin: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: pointer;
	width: 85px;
	height:10px;
	float: left;
	text-align:center;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}

/* 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{
	padding:0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 130px;
	position: absolute;
	left: -1000em;
	background-color:#FFFFFF;
	margin-top: 4px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
/* 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;}

/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li{
border:2px solid #000;
text-transform:capitalize;
text-align:left;
text-indent:4px;
border:1px solid #999999;
border-top:none;
padding:2px 0;
width: 126px;
height:16px;
}

/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul{position: absolute; margin: -3% 0 0 90%;}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible{left: auto; top: 0;}

ul.MenuBarHorizontal ul a{width:130px;}

ul.MenuBarHorizontal a{
display: block;
cursor: pointer;
color: #666;
text-decoration: none;
}
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus, ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible{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
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
/* 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;
	}
}
