
/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0px;padding: 0px;list-style-type: none;width: auto;align:center
}

/* 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;
	position: relative;
	cursor: pointer;
	width: 8em;
	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 ul
{
	margin: 0px;padding: 0px;list-style-type: none;z-index: 1020;position: absolute;left: -1000em;
}
/* 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;
}

/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: 0% 0 0 100%;
	_margin: 0% 0 0 105%;  /* For IE version above 7 */
	*margin: 0% 0 0 100%; /* For IE version below 7 */
}
/* 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;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/


/* Menu items are a light gray block with padding and no text decoration */

ul.MenuBarHorizontal
{
	display: block;
	cursor: pointer;
	background-image: url(hmenubg01.png);
	background-repeat: repeat-X;
	padding:0.1em 0.200em;

}

ul.MenuBarHorizontal li a:link, ul.MenuBarHorizontal li a:visited
{
	background-image: url(hmenubg.jpg);
	background-repeat: repeat-X;
	background-position:left top;
	display: block;
	cursor: pointer;
	padding: 0.9em 0.75em;
	color: #3e79d7;
	text-decoration: none;
	text-align:center;
}
ul.MenuBarHorizontal li a:hover
{
	background-image: url(hmenubg-hover.jpg);
	background-repeat: repeat-X;
	background-position:left top;
	display: block;
	cursor: pointer;
	/*background-color: #eee;*/
	padding: 0.9em 0.75em;
	color: #3e79d7;
	text-decoration: none;
	text-align:center;
}


/* Menu item containers are same fixed width as parent */

ul.MenuBarHorizontal ul li
{
	width:12.4em;
	white-space:normal;
}

ul.MenuBarHorizontal ul li  a:link, ul.MenuBarHorizontal ul li  a:visited
{
	background-image: url(hmenubg01.png);
	background-repeat: repeat-X;
	background-position:left top;
	*background:none transparent;
	//filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale src='../SpryAssets/hmenubg01.png');
	display: block;
	cursor: pointer;
	padding: 0.8em 0.75em;
	/*background-color: #e3e3e3;*/
	color: #333;
	text-decoration: none;
	text-align:left;
}
ul.MenuBarHorizontal ul li a:hover
{
	background-image: url(hmenubg-hover01.png);
	background-repeat: repeat-X;
	background-position:left top;
	*background:none transparent;
	//filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale src='../SpryAssets/hmenubg-hover01.png');
	display: block;
	cursor: pointer;
	padding: 0.8em 0.75em;
	/*background-color: #d4d4d4;*/
	color: #3e79d7;
	text-decoration: none;
	text-align:left;
}


/*******************************************************************************

 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;
}
/* 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 ul li, li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		
		
		/*_background:#e5e5e5 url(hmenubg01.png) left top repeat-x;
		display:inline;
		filter: alpha(opacity=50);*/
	}
}

