@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, a defined-width box with margins for spacing in sidebar*/
ul.MenuBarHorizontal
{
	list-style-type: none;
	cursor: default;
	width: 170px;
	color: #000;
	padding-left:15px;
}
/* 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 
z-index set to 1060 so will show up over menu bar settings
orange font on purple background NOT WORKING */
ul.MenuBarActive
{
	z-index: 1060;
	color: #FC9;
	background-color: #969;
}
/* 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;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 170px;
	float: left;
	white-space: nowrap;
}
/* 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) Odette-This left -1000 is overwritten by margin left 40px in second ul.MenuBarHorizontal ul below 
Set z-index to 1080 so would show up over active menu items set at 1060*/
ul.MenuBarHorizontal ul
{
	padding: 0;
	list-style-type: none;
	z-index: 1080;
	cursor: default;
	width: 170px;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item
background color is set here to almost white, as is set in ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible as well, and neither are working due to problem with IE; had to keep other settings so that IE would still show background on all menus.*/
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
	background-color: #FFF5EA;
}
/* Menu item containers are a fixed width, wider than parent due to longer text in menu items*/
ul.MenuBarHorizontal ul li
{
	width: 180px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) 
Odette - removed this because couldn't get it to work...instead */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	width: 180px;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible*/
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: 50%;
	top: 0;
	background-color: #FFF5EA;
	right: 50%;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Submenu containers have purple borders on all sides */
ul.MenuBarHorizontal ul
{
	border: 1px solid #969;
	margin-left: 40px;
}
/* Menu items are an orange block with dark grey text with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	background-color: #FC9;
	padding: 0.5em 0.75em;
	color: #333;
	text-decoration: none;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.7em;
}
/* Menu items that have mouse over or focus have a lavendar background and white text NOT WORKING
I created a:visited with same settings which works, but shows all pages ever visited*/
ul.MenuBarHorizontal a:active 
{
	background-color: #C9F;
	color: #FFF;
	z-index: 1040;
}
/* Menu items that have mouse over or focus have a lavendar background and white text 
Odette - maybe a:focus refers to viewing current page??? If so, it should keep the same*/
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #C9F;
	color: #FFF;
	font-weight: normal;
}
/* Menu items that are open with submenus and hovered are set to MenuBarItemHover with a lavendar background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #C9C;
	color: #FFF;
}

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

 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-color: #FC9;
	font-weight: normal;
}
/* 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-color: #FFF5EA;
	background-position: 95% 50%;
	border: 1px solid #969;
}
/* 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;
}
/* 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%;
	background-color: #969;
}

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

 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;
		float: left;
		background: #FFF;
	}
}
