@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; cursor: default; width: 12em; font-family: Futura, Tahoma, Verdana, sans-serif; font-size: 12pt; font-style: normal; font-weight: normal; text-align: center; vertical-align: baseline; height: 18px; }
/* 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, note changed to bottom 0 to position to right corner */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	cursor: pointer;
	width: 12em;
	float: none;
	bottom: 0px;
}
/* Submenus changed to above their parent (bottom: 0) with a higher z-index, changed to initially off the right side of the screen (1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	z-index: 1020;
	cursor: default;
	width: 12em;
	position: absolute;
	right: 1000em;
	bottom: 0px;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, changed to right to auto so it comes onto the screen above its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	right: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 12em;
}
/* Submenus changed to appear slightly overlapping to the right (-90%) and up (5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: 5% 0 0 -90%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, changed to right to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	right: auto;
	top: 0;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	border: 1px solid #CCC;
}
/* Menu items changed to padding 2 px to narrow box and bg to orange */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	background-color: #ff0066;
	padding: 2px;
	color: #000;
	text-decoration: none;
}
/* Menu items changed to orange bg and pale grey text hover */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #ff0066;
	color: #ccc;
}
/* Menu items that are open with submenus are set to MenuBarItemHover changed to orange bg with pale grey text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #ff0066;
	color: #ccc;
}

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

 SUBMENU INDICATION: removed submenus, thus removed gif designators

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


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

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

