/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	font-family: Calibri, Arial, Helvetica, sans-serif;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 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 a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	list-style-type: none;
	font-size: 1em;
	position: relative;
	text-align: left;
	cursor: pointer;
	float: left;
	padding-top: 3px;
	padding-right: 0.1em;
	padding-bottom: 0;
	padding-left: 0.1em;
}
/* 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: 0;
	padding-top: 0.5em;
	padding-left: 1em;
	padding-right: 1em;
	list-style-type: none;
	font-size: 80%;
	z-index: 1020;
	cursor: default;
	position: absolute;
	left: -1000em;
	min-width: 10em;
	background-color: #3366CC;
	filter: alpha(opacity=95);
	opacity: 0.95;
	-moz-opacity: 0.95;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;	
}
/* 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;
	margin-top: -2px;
	width: 25em;
	padding-bottom: 1.5em;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	background-image: none;
	float: none;
	clear: both;
	padding-right: 0.25em;
	padding-left: 0.25em;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin-top: -5%;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 95%;
}
/* 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.MenuBarSubmenuVisible a {
	font-weight: normal;
	padding-top: 0.4em;
	padding-right: 0.25em;
	padding-bottom: 0.4em;
	padding-left: 0.25em;
}
/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{

}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a, ul.MenuBarHorizontal a:link, ul.MenuBarHorizontal a:visited
{
	display: block;
	cursor: pointer;
	color: #CCCCCC;
	text-decoration: none;
	padding-top: 8px;
	padding-right: 0.6em;
	padding-bottom: 0.5em;
	padding-left: 0.6em;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	color: #FFFFFF;
	text-decoration: underline;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	color: #FFFFFF;
	font-weight: normal;
}

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

 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;
		/* background: #FFF; */
	}
}
#MenuBox #MenuBar1 #Green {
	color: #00CC00;
}
#MenuBox #MenuBar1 #Green #Leaf {
	margin-bottom: -5px;
	margin-right: 3px;
}
#MenuBox #MenuBar1 {
	width: 57em;
}
#MenuBox #MenuBar1 .MenuBarSubmenuVisible p {
	color: #FFFFFF;
	margin-bottom: 0.3em;
	padding-bottom: 1em;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #9AB3E3;
	margin-right: 0px;
	margin-left: 0.3em;
	margin-top: 0em;
	padding-top: 1em;
}
#Products ul {
	/* Mozilla requires explicit call for width, rather than allowable max-width, when using floats. */
}
ul.MenuBarHorizontal #Products ul li {
	float: left;
	clear: none;
	width: 12em;
}
ul.MenuBarHorizontal #CustomerService ul li {
	float: left;
	clear: none;
	width: 12em;
}
