@charset "UTF-8";

/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */

/* 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;
	font-size: 96%; letter-spacing: .01em;
	cursor: default;
	width: auto; 
	background-image: none;
}


/* 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
PADDING TOP NAV*/


ul.MenuBarHorizontal ul {
	margin: 0;
	padding: 0; 
}

ul.MenuBarHorizontal ul lI {
	margin: 0;
	padding: 0;
}

ul.MenuBarHorizontal li
{
	font-weight: bold;
	margin: 0px 5px 0 5px;
	padding: 0;
	list-style-type: none;
	font-size: 95%;  letter-spacing: .01em;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: auto;
	padding: 0px;
	float: left; 
}
ul.MenuBarHorizontal li li {
	font-weight: normal; 
}
/* 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;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 990;
	cursor: default;
	position: absolute;
	left: -1000em;
	background-color: #e5ecf7; 
		
		}
	
	

/* SSubmenu MAIN BOX SET WIDTH HERE */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto; 
	border: none; 
	min-width: 14.5em; max-width: 17.1em;
	
		
	/* safari (existing support) */
	-webkit-box-shadow: 0px 5px 6px 5px #0066a4;
	

	/* mozilla/firefox 3.1 (beta) */
	-moz-box-shadow: 0px 5px 6px 5px #0066a4;


	/* CSS 3 */
	box-shadow: 0px 5px 6px 5px #0066a4;
	
	
}
/* Menu SUB HIGHLIGHT COLORSul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible */
ul.MenuBarHorizontal ul li
{
	min-width: 14.1em; max-width: 17.1em;
	border: none;

}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;

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

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

/* EDIT Submenu containers NO BORDERS */
ul.MenuBarHorizontal ul
{
	border: NONE;
}




/* EDIT MASTER HOT LINK COLOR review this */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: default;
	padding: .5em 0.5em;
	color: #0E489E;
	text-decoration: none;
	width: 101%;
	margin: 0 px;
	padding: 0 px;
	white-space:nowrap;
}



/* submenu ACTIVE COLOR ONLY */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
		background-image: url(hd_gradation_nav.gif);
		
	
}

/*TOP TIER BACKGROUND COLOR ROLLOVER*/
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	color: #000000; 
	font-weight: bold;
	
	
}

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

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

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

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%)
TOP MENU HIGHLIGHT ACTIVE COLOR*/
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 140% 50%; 
	
	
}






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

 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;
	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.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #e5ecf7;
		_width: 0px;
	
	}
}
