@charset "UTF-8";

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	cursor: default;
	width: auto;
	width:520px;
	
}
/* 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 */
ul.MenuBarHorizontal li
{
	margin-top: -5px;
	padding:0;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 11px;
    font-weight:bold;
	position: relative;
	cursor: pointer;
	float: left;
	border-right:1px solid #669933;
}

ul.MenuBarHorizontal li ul li
{
	margin: 0;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 11px;
    font-weight:bold;
	position: relative;
	text-align: left;
	cursor: pointer;
	float: left;
	border-right:none;

}


/* 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-left:0px;
	margin:0px;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 130px;
	position: absolute;
	left: -1000em;
	margin-top:4px;
}

/* 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;
	width: 130px;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
text-align:left;
background-color:#FFF;
width: 130px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: 0 0 0 100%;
}


	

/* 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  */
ul.MenuBarHorizontal li a
{
display: block;
cursor: pointer;
color: #FFF;
text-decoration: none;
padding: 0px 10px 0px 10px; /*   top right btm left */
}

/* Menu items  */
ul.MenuBarHorizontal li a:link 
{
display: block;
color: #502805;
background-image:none;
padding: 0px 10px 0px 10px; /*   top right btm left */
}

ul.MenuBarHorizontal li a:visited
{
display: block;
color: #502805;
background-image:none;
padding: 0px 10px 0px 10px; /*   top right btm left */
}

ul.MenuBarHorizontal li a:hover, ul.MenuBarHorizontal li a:focus
{
display: block;
color: #669933;
padding: 0px 10px 0px 10px; /*   top right btm left */
}

ul.MenuBarHorizontal li ul li a:link 
{
display: block;
color: #502805;
background-color:#FFF;
padding: 0px 10px 0px 10px; /*   top right btm left */
}

ul.MenuBarHorizontal li ul li a:visited
{
display: block;
color: #502805;
background-color:#FFF;
padding: 0px 10px 0px 10px; /*   top right btm left */
}

ul.MenuBarHorizontal li ul li a:hover, ul.MenuBarHorizontal li ul li a:focus
{
display: block;
color: #669933;
background-color:#FFF;
padding: 0px 10px 0px 10px; /*   top right btm left */
}


ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
color: #669933;
padding: 0px 10px 0px 10px; /*   top right btm 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;
	/*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;
	}
}
