@charset "UTF-8";

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

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

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

ul.MenuBarHorizontal {
	margin: 0;
	padding: 0;
	list-style-type: none;
	cursor: default;
	width: auto;
}

/* 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;
	margin: 0px;
	padding: 0px;
}

/* Menu item containers, position children relative to this container and are a fixed width */

ul.MenuBarHorizontal li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	position: relative;
	text-align: left;


/*This needs to text align left for submenus dropdown-*/
	cursor: pointer;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	float: left;
	line-height: 14px;
}

/* 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.MenuBarHorizontal ul {
	margin: 0 0 0 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 170px;
	position: absolute;
	left: -1000em;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */

ul.MenuBarHorizontal ul.MenuBarSubmenuVisible {
	left: auto;
}

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

ul.MenuBarHorizontal ul li {
	width: 170px;
	text-align: left;
}

/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */

ul.MenuBarHorizontal ul ul {
	position: absolute;
	margin: 0 0 0 0;
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */

ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible {
	left: auto;
	top: 0;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Submenu containers */

ul.MenuBarHorizontal ul {
	color: #899DB6;
}

/* Menu items and no text decoration */

ul.MenuBarHorizontal a {
	display: block;
	cursor: pointer;
	padding: 0.3em 0.75em 0.4em;
	color: #003E8C;
	text-decoration: none;
	background-color: #E8E8E8;
	border-bottom-style: solid;
	border-left-width: 6px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-left-color: #C3C3C3;
	border-bottom-width: 1px;
	border-bottom-color: #C3C3C3;
	border-right-width: 1px;
	border-right-color: #C3C3C3;
	margin: 0px;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	border-top-width: 1px;
	border-top-color: #D7D7D7;
	line-height: 14px;
}

/* Menu items that have mouse over or focus */

ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus {
	
}

/* Menu items that are open with submenus are set to MenuBarItemHover */

ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible {
	background-color: #F9AE1A;
	color: #FFFFFF;
	border-left-width: 6px;
	border-left-style: solid;
	border-left-color: #D79813;
	background-image: url(../images/backg-topmenu.gif);
	background-repeat: repeat;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #D79813;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #D79813;
	border-bottom-color: #D79813;
}

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

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

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

ul.MenuBarHorizontal a.MenuBarItemSubmenu {
	color: #FFFFFF;
	padding-right: 15px;
	padding-left: 15px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: none;
	border-right-width: 1px;
	border-right-color: #666666;
	padding-top: 6px;
	padding-bottom: 6px;
	background-color: #00387F;
}

ul.MenuBarHorizontal a.MenuBarItemSubmenu-HOME {
	padding: 6px 15px;
	color: #FFFFFF;
	background-color: #004CAC;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #999999;
	border-top-style: none;
	border-bottom-style: none;
	border-left-style: none;
}


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

 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;
}

}
