@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
{
	width: 429px;
	height: 27px;
	position: absolute;
	left: 141px;
	top: 116px;
	cursor: default;
}
/* 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: 2000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	cursor: pointer;
	float: left;
}
ul.MenuBarHorizontal li a
{
	display: block;
	width: 143px;
	height: 23px;
	padding-top: 4px;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
	color: #FFF;
	text-align: center;
	text-decoration: none;
}
ul.MenuBarHorizontal li a:hover, ul.MenuBarHorizontal li a.highlight, ul.MenuBarHorizontal li a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li a.MenuBarSubmenuVisible

{
	background: url(../images/pnav-bg.gif) no-repeat 1px 0;
}

/* 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.MenuBarHorizontal ul
{
	width: 144px;
	z-index: 2020;
	cursor: default;
	position: absolute;
	left: -1000em;
	border-top: 1px solid #89C67F;
}

/* 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;
}
ul.MenuBarHorizontal li ul li
{
	height: auto;
	float: none;
	margin: 0;
	border-left: 1px solid #89C67F;
	border-right: 1px solid #89C67F;
	border-bottom: 1px solid #89C67F;
}

ul.MenuBarHorizontal li ul li a
{
	display: block;
	width: 130px;
	height: auto;
	padding: 4px 6px 5px 6px;
	font-size: 11px;
	font-weight: normal;
	line-height: 13px;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	background: url(../images/pulldown-bg-off.gif) repeat-y 0 0;
}

ul.MenuBarHorizontal li ul li a:hover
{
	background: url(../images/pulldown-bg-on.gif) repeat-y 0 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: 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;
	}
}
