@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
 Note - don't have float on containing div

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
/* New - changed margin to auto and the width to fixed (XXXpx) to center the menu bar  */
ul.MenuBarHorizontal
{
	margin: auto;
	padding: 0;
	list-style-type: none;
	font-size: 10px;
	cursor: default;
	width: 710px;
}

/* 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;
}

/* Main Menu items */
/* New - changed width from 8em to auto to keep text on one line  */
/* New - changed background-color - no effect  */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: auto;
	float: left;	
}

/* SubMenu outer border/
/* 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) */
/* New - Submenus were (8.2em) | Made larger to fit text- set to 125 px*/
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 125px;
	position: absolute;
	left: -1000em;
}

/* Submenu that is below MainMenu */
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
/* New - added margin-top: 1px to bring it down (space between main menu & submenu */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
	margin-top: 1px;
	border-top-width: 0px;
	border-bottom-width: 0px;
	border-top-style: solid;
	border-bottom-color: #000;
}

/* SubMenu inner fill/
/* Menu item containers are same fixed width as parent */
/* New - Submenus were (8.2em) | Made larger to fit text- set to 125 px*/
/* New - Added padding-top: 1 px to put line between SubMenu items*/
ul.MenuBarHorizontal ul li
{
	width: 125px;
	padding-bottom: 0px;
	padding-top: 1px;
}

/* Position of Submenus that have Submenus */
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
/* New - Changed top from -5% to 0% to bring it down */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin-top: 0%;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
/* New - Set background-color to white for the lines between items of submenus of submenus in FireFox */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
	background-color: #FFF;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
/* New - set border: 0px to remove SubMenu border */
/* New - Set background-color to white for the lines between items of 1st level submenus in FireFox */
ul.MenuBarHorizontal ul
{
	border: 0px solid #CCC;
	background-color: #FFF;
}

/* Main & SubMenu items that don't have SubMenus*/
/* Menu items are a light gray block with padding and no text decoration */
/* New - changed background color from light gray for main items 
   (worked - changed submenu as well) */
/* New - changed padding from (0.5em 0.75em) to (top/bottom = 2, right/left = 2)
to put space between menu items (worked - changed submenu as well) */
/* Set (text-align: center) to center all main menu item links*/
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	background-color: #484E1E;
	color: #FFF;
	text-decoration: none;
	padding-top: 2px;
	padding-right: 3px;
	padding-bottom: 2px;
	padding-left: 3px;
	text-align: center;
}

/* Set the the alignment back to left for any menu item links that are in a sub menu.
 */
ul.MenuBarHorizontal ul a {
	text-align: left;
}

/* Menu items that have mouse over or focus have a blue background and white text */
/* New - changed background-color to NavBar color */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #484E1E;
	color: #FFF;
}

/* Menu items that have no submenu (hover property) */
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
/* New - set background-color to NavBar | Reversed color (text) */
/* New - when mouse hovers, background stays same colour as navbar, text turns from black to white */
ul.MenuBarHorizontal a.MenuBarItemHover 
{
	background-color: #484E1E;
	color: #FFF;
}

/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-color: #FF0;
	color: #00F;
}

/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #FF0;
	color: #F0F;
}



/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/
 
/* Main Menu that has a submenu - when mouse is not over */
/* 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%) */
/* New - changed background-image to none (removed arrow when mouse is not over)*/
/* New - changed background-color to NavBar color and color(text) to NavBar text color */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-image: none;
	background-repeat: no-repeat;
	background-position: 95% 50%;
	background-color: #484E1E;
	color: #FFF;
}

/* Submenu that has another submenu */
/* 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%) */
/* New - set background color to NavBar | Reverse color (text) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
	background-color: #484E1E;
	color: #FFF;
}

/* Main Menu Hover when it has a Submenu*/
/* 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%) */
/* New - changed background-image to none (removed arrow when mouse is over main menu)*/
/* New - changed background-color to NavBar | Reversed color (text) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-image: none;
	background-repeat: no-repeat;
	background-position: 95% 50%;
	background-color: #484E1E;
	color: #FFF;
}

/* 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%;
}

/*******************************************************************************

 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: #FFF;
	}
}



