@charset "UTF-8";



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



 LAYOUT INFORMATION: describes box model, positioning, z-order



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



/* The outermost container of the Menu Bar, an auto width box with no margin or padding */

ul.MenuBarHorizontal

{
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 866px;
	position: absolute;
	margin-top: 133px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: 12px;
	height: auto;
	float: none;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0;
	z-index: 300;
}

/* 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

{

	list-style-type: none;

	font-size: 12px;

	position: relative;

	text-align: center;

	cursor: pointer;

	float: left;

	font-family: Arial, Helvetica, sans-serif;

	color: #FFFFFF;

	margin-top: 0px;

	margin-bottom: 0;

	width: auto;

	white-space: nowrap;

	font-weight: bold;

	border-left-width: 1px;

	border-left-style: solid;

	border-left-color: #5C5A80;

}



/* Menu item containers are same fixed width as parent */

ul.MenuBarHorizontal ul li

{

	width: auto;

}





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



 DESIGN INFORMATION: describes color scheme, borders, fonts



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

/* Submenu containers have borders on all sides */

ul.MenuBarHorizontal ul

{

	border: 1px solid #CCC;

}

/* Menu items are a light gray block with padding and no text decoration */

ul.MenuBarHorizontal a

{

	display: block;

	cursor: pointer;

	background-color: #7B7AAC;

	color: #FFF;

	text-decoration: none;

	padding-top: .7em;

	padding-right: 0.7em;

	padding-bottom: 0.7em;

	padding-left: 0.6em;

	width: auto;

	position: relative;

}



/* Menu items that have mouse over or focus have a blue background and white text */

ul.MenuBarHorizontal a:hover

{

	background-color: #FFF;

	color: #22327A;

}



#MenuBar1 .active a {

	background-color: #FFF;

	color: #22327A;

}







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



 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

{

	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.MenuBarHorizontal li.MenuBarItemIE

	{

	display: inline;

	f\loat: none;

	background: #FFF;

	}

}

