@charset "UTF-8";

/* Styling for Main Navigation Horizontal Menu */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
#header ul.MenuBarHorizontal#MainNav
{
	margin: 0 0 0 -10px;
	padding: 0;
	list-style-type: none;
	cursor: default;
	width: auto;
	font: bold 1em Arial, Helvetica, sans-serif;
}
/* 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 */
#header ul.MenuBarActive#MainNav
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
#header ul.MenuBarHorizontal#MainNav li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: left;
	cursor: pointer;
	float: left;
}
/* Set the Font weight and text alignment for all menu entries */
#header ul.MenuBarHorizontal#MainNav ul, #header ul.MenuBarHorizontal#MainNav ul li
{
	font-weight: normal;
	text-align: 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) */
#header ul.MenuBarHorizontal#MainNav ul
{
	margin: 0px;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 12.495em;
	position: absolute;
	left: -1000em;
	border: 1px solid #5C127B;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
#header ul.MenuBarHorizontal#MainNav ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
#header ul.MenuBarHorizontal#MainNav ul li
{
	width: 100%;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal#MainNav ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
#header ul.MenuBarHorizontal#MainNav ul.MenuBarSubmenuVisible#MainNav
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Set background color for Submenu containers */
#header ul.MenuBarHorizontal#MainNav ul
{
	background-color: #94d860;
}
/* Set info for links in menu */
#header ul.MenuBarHorizontal#MainNav a
{
	display: block;
	cursor: pointer;
	padding: 0.25em 0.75em;
	color: #000000;
	text-decoration: none;
}

/* Set background-color for menu items that are open with submenus are set to MenuBarItemHover */
#header ul.MenuBarHorizontal#MainNav a.MenuBarItemHover, #header ul.MenuBarHorizontal#MainNav a.MenuBarItemSubmenuHover, #header ul.MenuBarHorizontal#MainNav a.MenuBarSubmenuVisible
{
	background-color: #94d860;
}
#header ul.MenuBarHorizontal#MainNav a.MenuBarItemSubmenu:hover
{
	text-decoration: underline;
	color: blue;
}

/* Highlight color when menu item is in focus */
#header ul.MenuBarHorizontal#MainNav ul a.MenuBarItemHover, #header ul.MenuBarHorizontal#MainNav ul a.MenuBarItemSubmenuHover, #header ul.MenuBarHorizontal#MainNav ul a.MenuBarSubmenuVisible
{
	background-color: #BEE38D;
	text-decoration: underline;
	color: blue;
}

/*******************************************************************************

 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 */
#header ul.MenuBarHorizontal#MainNav 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
{
	#header ul.MenuBarHorizontal#MainNav li.MenuBarItemIE
	{
	display: inline;
	f\loat: left;
	}
}
