@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, an auto width box with no margin or padding */
/*Menu Bar styling classes*/
ul.MenuBarHorizontal{
	margin: 0;
	padding: 0px;
	list-style-type: none;
	width: auto;
	font-family: "Microsoft Sans Serif", "MS Sans Serif", Arial, Tahoma;
	font-size: 13px;
	height: 18px;
	margin-top: 2px;
	background-color: #619AB6;
	cursor:pointer;
}
/*Submenus should be below their parent (top:0) with a higher z-index, but the are initially off the left side of the screen (-1000em)*/

ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0px;
	list-style-type: none;
	font-family: "Microsoft Sans Serif", "MS Sans Serif", Arial, Tahoma;
	z-index: 1020;
	width: 0px;
	position: absolute;
	left: -1000em;
	border: 0px;
	visibility: visible;
	cursor:pointer;

}
/*Menu item containers, position children relative to this container and are a fixed width*/
ul.MenuBarHorizontal li
{
	list-style-type: none;
	float: left;
	font-family: "Microsoft Sans Serif", "MS Sans Serif", Arial, Tahoma;
	z-index:auto;
	font-size: 13px;
	cursor:pointer;
}
/*Menu item containers are same fixed with as parent*/
ul.MenuBarHorizontal ul li{
	width: 140px;
	margin: 0px;
	text-align: left;
	list-style-type: none;
	font-size: 11px;
	height: auto;
	list-style-position: inherit;
	padding: 0px;
	white-space: nowrap;
	background-color: #dddddf;
	border:0px;
	cursor:pointer;

}
/*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;
	position:absolute;
	text-decoration: none;
	background-repeat: repeat;
	text-align: left;
	line-height: 150%;
	width: 140px;
	top: auto;
	cursor:pointer;
}
ul.MenuBarHorizontal iframe{
	background-color: #99bed0;
	z-index: 1010;
	visibility: visible;
	height:20px;
	cursor:pointer;
}
/*Menu items are a light gray block with padding and no text decoration*/
ul.MenuBarHorizontal a
{
	display: block;
	cursor: auto;
	text-decoration: none;
	padding: 0px;
	margin: 0px;
	border:0px;
	cursor:pointer;

}
/*Menu items that have mouse over or focus have blue background and white text*/
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #99bed0;
	background-position: 100% 50%;
	width: auto;
	height: 1005%;
	cursor:pointer;
}
/*Menu items that are open with submenus are set to MenuBarHover with a blue background and white text*/
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	color: #214161;
	width: auto;
	cursor:pointer;

}

/*******************************************************************************
SUBMENU INDICATION: style 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 ul.MenuBarSubmenu
{
	position: absolute;
}

/*******************************************************************************
BROWSER HACKS
*******************************************************************************/

/*HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe*/
ul.MenuBarHorizontal iframe
{
	z-index: 1010;
	position: absolute;
}

/*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;
	position: absolute;
	padding: 0px;
	background-attachment: inherit;
	background-position: left top;
	border:0px;
	cursor:pointer;

}
}

