@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 */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	cursor: default;
	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: 9000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	cursor: pointer;
	float: left;
	text-align: left;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 2px;
}
ul.MenuBarHorizontal   /* Menu items are a light gray block with padding and no text decoration */
a:link,ul.MenuBarHorizontal  li  a:visited 
{
	display: block;
	cursor: pointer;
	color: #355528;
	text-decoration: none;
	text-align: center;
	width: 136px;
	padding-top: 4px;
	padding-bottom: 4px;
	font-weight: bold;
	background-image: url(../images/tab.gif);
	background-repeat: no-repeat;
	background-position: right top;
}
ul.MenuBarHorizontal    /* Menu items that have mouse over or focus have a blue background and white text */
li  a:hover       
{
	background-color: #77993e;
	text-decoration: none;
	background-image: url(../images/tab_hover.gif);
	background-repeat: no-repeat;
	background-position: top;
}
ul.MenuBarHorizontal   a#current, ul.MenuBarHorizontal  a#current:hover {
	background-color: #FFFFFF;
	background-image: url(../images/tab_current.gif);
	background-repeat: no-repeat;
	color: #217bc9;
}
ul.MenuBarHorizontal     li     a.MenuBarItemSubmenu#current, ul.MenuBarHorizontal li a.MenuBarItemSubmenu#current:hover    {
	background-color: #FFFFFF;
	background-image: url(../images/tab_w_submenu_current.gif);
	background-repeat: no-repeat;
}
ul.MenuBarHorizontal          /*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/
li  a.MenuBarItemSubmenu:link, ul.MenuBarHorizontal li a.MenuBarItemSubmenu:visited  /* 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%) */
  
{
	background-image: url(../images/tab_w_submenu.gif);
	background-repeat: no-repeat;
	background-position: top right;
}
ul.MenuBarHorizontal   li a.MenuBarItemSubmenu:hover  {
	background-image: url(../images/tab_w_submenu_hover.gif);
	background-repeat: no-repeat;
	background-position: right;
}
ul.MenuBarHorizontal /* 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) */
 li ul
{
	padding: 0;
	list-style-type: none;
	
	cursor: default;
	width: 175px;
	position: absolute;
	z-index: 9020;
	left: -1000em;
	background-color: #47c9ff;
	margin: 0;
	background-image: url(../images/tab_submenu_bg.jpg);
	background-repeat: repeat-x;
	background-position: bottom;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #0794FC;
	border-left-color: #FFFFFF;
}
ul.MenuBarHorizontal  li  ul li {
	display: block;
	float: none;
	width: 100%;
	background-image: none;
	margin: 0px;
	padding: 0px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #66FFFF;
	border-bottom-color: #0794FC;
}
ul.MenuBarHorizontal    li    ul  li  a:link, ul.MenuBarHorizontal   li  ul li a:visited {
	background-image: none;
	width: auto;
	padding-left: 10px;
	text-align: left;
	color: #054274;
}
ul.MenuBarHorizontal       li      ul     li   a:hover {
	background-image: none;
	background-color: #0587E7;
	color: #FFFFFF;
}
ul.MenuBarHorizontal  li  ul  li  a.MenuBarItemSubmenu:link, ul.MenuBarHorizontal li ul li a.MenuBarItemSubmenu:visited {
	background-image: url(../images/tab_submenu_arrow.gif);
	background-repeat: no-repeat;
	background-position: 160px center;
}
ul.MenuBarHorizontal li ul li a.MenuBarItemSubmenu:hover {
	background-image: url(../images/tab_submenu_arrow_hover.gif);
	background-position: 160px center;
}

/* 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;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: 5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

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

 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: 9010;
}
/* 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;
	}
}
ul.MenuBarHorizontal li a:hover {
	color: #FFFFFF;
}
