@charset "UTF-8";

ul.MenuBarHorizontal2
{
	list-style-type: none;
	font-size: 12px;
	cursor: default;
	width: 395px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	color: #BCBCBC;
	padding-bottom: 0px;
	padding-right: 0px;
	padding-left: 353px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	letter-spacing: 0.05em;
	margin-top: 20px;
	padding-top: 0px;
}
/* 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;
	color: #AFCD2D;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal2 li
{
	margin: 0;
	list-style-type: none;
	position: relative;
	text-align: center;
	cursor: pointer;
	float: right;
	padding-top: 0px;
	padding-right: 0em;
	padding-bottom: 0px;
	padding-left: 0em;
}
/* 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.MenuBarHorizontal2 ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	cursor: default;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal2 ul li
{
	width: 8.2em;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal2 ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal2 ul
{
	border: 1px solid #CCC;
	width: auto;
}


ul.MenuBarHorizontal2 a
{
	display: block;
	cursor: pointer;
	text-decoration: none;
	color: #ACACAC;
	padding-right: 5px;
	padding-left: 5px;
	width: auto;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal2 a:hover, ul.MenuBarHorizontal2 a:focus
{
	color: #AFCD2D;

}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal2 a.MenuBarItemHover, ul.MenuBarHorizontal2 a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal2 a.MenuBarSubmenuVisible
{

}

/*******************************************************************************

 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.MenuBarHorizontal2 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.MenuBarHorizontal2 li.MenuBarItemIE
	{
	display: inline;
	padding-top: 0px;
	margin-top: 0px;
	}
