
/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.NaviBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 8pt;
	cursor: default;
	width: auto;
	font-family: Verdana, Geneva, 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 */
ul.NaviBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.NaviBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: auto;
	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.NaviBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	width: 20em; 
	z-index: 1020;
	cursor: default;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation NaviBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.NaviBarHorizontal ul.NaviBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.NaviBarHorizontal ul li
{
	width: 20em; 
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.NaviBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation NaviBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.NaviBarHorizontal ul.NaviBarSubmenuVisible ul.NaviBarSubmenuVisible
{
	left: auto;
	top: 0;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Submenu containers have borders on all sides */
ul.NaviBarHorizontal ul
{
	border: 1px 1px 1px 1px solid #FEFEFE;
}

ul.NaviBarHorizontal a
{
	display: block;
	cursor: pointer;
	text-decoration: none;
	color: #FFFFFF;
	border-top: 0px solid #b0c5d2;
	padding: 0.4em 1em 0.5em 1em; 
}

ul.NaviBarHorizontal a:hover, ul.NaviBarHorizontal a:focus
{
	background-color: #FFFFFF;
	color: #000000;
}

ul.NaviBarHorizontal a.NaviBarItemHover, ul.NaviBarHorizontal a.NaviBarItemSubmenuHover, ul.NaviBarHorizontal a.NaviBarSubmenuVisible
{
	background-color: #E8F2F8;
	color: #000000;


}

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

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

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

/* Menu items that have a submenu have the class designation NaviBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.NaviBarHorizontal a.NaviBarItemSubmenu
{
	background-image: url(NaviBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 96% 50%;
		padding: -0.4em -1em -0.5em -1em; 

}
/* Menu items that have a submenu have the class designation NaviBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.NaviBarHorizontal ul a.NaviBarItemSubmenu
{
	background-image: url(NaviBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 96% 50%;
}
/* Menu items that are open with submenus have the class designation NaviBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.NaviBarHorizontal a.NaviBarItemSubmenuHover
{
	background-image: url(NaviBarDown.gif);
	background-repeat: no-repeat;
	background-position: 96% 50%;
}
/* Menu items that are open with submenus have the class designation NaviBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.NaviBarHorizontal ul a.NaviBarItemSubmenuHover
{
	background-image: url(NaviBarRight.gif);
	background-repeat: no-repeat;
	background-position: 96% 50%;
}

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

 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.NaviBarHorizontal 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.NaviBarHorizontal li.NaviBarItemIE
	{
	display: inline;
	float: left;
	}
}











