@charset "UTF-8";

/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/


/* Orange box for menu */
.orangeBox
{
	background-color: #FB4D00;
	height: 33px;
	padding: 0px;
	margin: 0px;
}
/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	padding: 0;
	list-style-type: none;
	cursor: default;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 6px;
}
/* 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-family: "Arial Narrow", Helvetica, sans-serif;
	font-size: 1.3em;
	position: relative;
	text-align: center;
	cursor: pointer;
	float: left;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	margin-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	text-transform: uppercase;
	display: block;
	vertical-align: middle;
}

ul.MenuBarHorizontal ul li
{
	width: 8em;
}

ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
	background-color: #FB4D00;
    padding-top: 6px;
	padding-right: 8px;
	padding-left: 8px;
	margin: 0px;
	height: 27px;
	vertical-align: middle;
	background-position: center;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	color: #FFFFFF;
	background-color: #0168B3;
	margin: 0px;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */

ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	color: #FFFFFF;
	background-color: #0168B3;
}


/*******************************************************************************

 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
{
	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.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
	}
}
