@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.MenuBarHorizontal1
{
	cursor: default;
	padding-top: 15px;
	float: right;
	height: auto;
	width: auto;
}
/* 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.MenuBarHorizontal1 li
{
	position: relative;
	cursor: pointer;
	float: left;
	position:relative;
	background-repeat: no-repeat;
}
/* 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.MenuBarHorizontal1 ul
{
	list-style-type: none;
	z-index: 1020;
	cursor: default;
	width: 154px;
	position: absolute;
	left: -1000em;
	height: auto;
}

/* 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.MenuBarHorizontal1 ul.MenuBarSubmenuVisible
{
	left: auto;
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal1 ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal1 ul
{
	border: 1px solid #fff;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	background:url(../images/body-tail.gif);
	margin: 1px 0 0 0;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal1 a
{
	display:inline-block;
	font-size:15px;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	line-height:2em;
	letter-spacing:normal;
	color:#000;
	text-transform:uppercase;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	text-decoration: none;
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	margin-right: 2px;
	margin-left: 2px;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal1 a:hover, ul.MenuBarHorizontal1 a:focus
{

}
.MenuBarHorizontal1 a.active,
.MenuBarHorizontal1 a:hover {background-position:0 0; background-color:#fff; color:#2ab5ba;}

/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal1 a.MenuBarItemHover, ul.MenuBarHorizontal1 a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal1 a.MenuBarSubmenuVisible
{
	background-color: #fff;
	color: #2ab5ba;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/*******************************************************************************

 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.MenuBarHorizontal1 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.MenuBarHorizontal1 li.MenuBarItemIE
	{
		display: inline;
		f\loat: right;
		background: #FFF;
	}
}
