@charset "UTF-8";
/* nav.css */
/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
ul.NavH
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	list-style-type: none;
	cursor: default;
	width: 930px;
	border: none;
	font-family: Tahoma, Geneva, sans-serif;
	text-decoration: none;
	color: #FFFFFF;
	font-weight: normal;
	display: block;
	background-image: url(images/menu-bkd.png);
	background-repeat: repeat-x;
	height: 31px;
	background-position: top left;
	font-size: 10px;
}
/* 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.NavActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.NavH li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 10px;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 101px;
	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.NavH ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 10px;
	z-index: 1020;
	cursor: default;
	width: 16em;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation NavSubVis, we set left to auto so it comes onto the screen below its parent menu item */
ul.NavH ul.NavSubVis
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.NavH ul li
{
	width: 16em;
	border: 1px solid #FFFFFF;
	border-top: none;
	text-align: left;
}
/* Submenus should appear slightly overlapping to the right and up */
ul.NavH ul ul
{
	position: absolute;
}
/* Submenu that is showing with class designation NavSubVis, we set left to 0 so it comes onto the screen */
ul.NavH ul.NavSubVis ul.NavSubVis
{
	left: auto;
	top: 0;
}
/* DESIGN INFORMATION: describes color scheme, borders, fonts */
/* Submenu containers have no top borders */
ul.NavH ul
{
	border: 1px solid #FFFFFF;
}
/* Menu items are a black block with padding and no text decoration */
ul.NavH a
{
	display: block;
	cursor: pointer;
	padding: 10px 0 9px 0;
	color: #FFFFFF;
	text-decoration: none;
	background-color: #000000;
}
/* Menu items that have mouse over or focus have a red background and white text */
ul.NavH a:hover, ul.NavH a:focus
{
	color: #FFFFFF;
	background-color: #CC3000;
}
/* Menu items that are open with submenus are set to NavItemHover with a black background and white text */
ul.NavH a.NavItemHover, ul.NavH a.NavItemSubHover, ul.NavH a.NavSubVis
{
	color: #FFFFFF;
}
/* Menu items that do not have a submenu have the class designation NavItemHover and are set to use a background image */
ul.NavH a.NavItemHover
{

}
/* Menu items that have a submenu have the class designation NavItemSub and are set to use a background image */
ul.NavH a.NavItemSub
{
	background-image: url(images/nav-button-up.png);
	background-repeat: no-repeat;
	background-position: top left;
}
/* Menu items that have a submenu have the class designation NavItemSub and are set to use a background image */
ul.NavH ul a.NavItemSub
{

}
/* Menu items that are open with submenus have the class designation NavItemSubHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.NavH a.NavItemSubHover
{
	background-image: url(images/nav-button-dn.png);
	background-repeat: no-repeat;
	background-position: top left;
}
/* Menu items that are open with submenus have the class designation NavItemSubHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.NavH ul a.NavItemSubHover
{

}

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

 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.NavH 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.NavH li.NavItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}

