@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

 *******************************************************************************/

/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
ul.MenuBarHorizontal
{
	width: 882px;
	margin: auto; /* Give the menu bar a width and set the margins to "auto" so that the browser does the centering. */
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
}
/* 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
{
	margin: 0;
	padding: 0 2px 0 px;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	cursor: pointer;
	width: 147px; /* the width of menu options */
	float: left;

	/* changing the background image here changes it for all menus and sub-menus*/
}
/* 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: 1020;
	cursor: default;
	width: auto;
	position: absolute;
	left: -1000em;
	/* changing the background image here changes it for the first of all sub-menu items*/
}
/* 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;
	_left: inherit -50px;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li	
{
	width: 146px; /* width of sub-menu items needs to be same as parent */
}
	
/* Submenus appear directly to the right */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -1px 0 0 100%; /* -5% 0 0 95% if you want submenus to appear slightly overlapping to the right (95%) and up (-5%) ; */
}
/* 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;
	/* changing the background image here changes it for the first sub sub-menu item */
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on 3 sides */
ul.MenuBarHorizontal ul
{
	border: 1px solid #DDD;
	margin: -1px 0 0 0;
	background: #FFF; /* solid white so text under menu items doesn't show through */
	opacity: 1.0; /* change to less than 1 (e.g. 0.9) to make more transparent menu */
	/* changing stuff here changes the first sub-menu item (the top of the drop down list) */
}
/* Sub-menu items */
ul.MenuBarHorizontal a
{
	text-align: center;
	display: block;
	cursor: pointer;
	padding: 6px; /* 0.5em 0.75em; */
	color: #001B37; /* color of text in menu boxes */
	text-decoration: none;
	/* changing background image here changes it for the lowest in the hierarchy of menus */
}
/* Menu items that have mouse over or focus have a blue background and navy text lowest in hierarchy of menus*/
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus, ul.MenuBarHorizontal 
{
	/* putting stuff here doesn't change anything? */
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and navy text */
ul.MenuBarHorizontal a.MenuBarItemHover /*ul.MenuBarHorizontal a.MenuBarSubmenuVisible */
{
	background-color: #EEEEEE; /* background when mouse hovers over submenu item, formerly light light blue: #f3f6f8 */
	color: #001B37; /* text color when mouse hovers over submenu item */
}
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	font-weight:bold;
}
ul.MenuBarHorizontal ul:MenuBarItemSubmenuHover
{
	/* putting stuff here doesn't change anything? */
}
/*******************************************************************************

 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%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	/* background-image: url(SpryMenuBarDown.gif);
	background-repeat: no-repeat; */
	/* background-position: 95% 50%; */
	/* background-image: url(../Images/NavButton.gif); make new image for background later */
	/* background: #548FFE; */
	background: #FFF;
	color: #001B37; /* color of text in top menu boxes */
	/* background-repeat: repeat-x; */
	height: auto; /* height of the highlighting on the top menu items */
}
/* 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%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	/* background-image: url(SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%; */
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%; */
}
<!-- text styling -->
.style1 {
	font: "Myriad Pro", Verdana, Tahoma, sans-serif;
	text-align: center;
}
.style4 {
	font: "Myriad Pro", Verdana, Tahoma, sans-serif;
	font-size: 80%
}
/*******************************************************************************

 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;
		background: #FFF;
	}
}
