@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#nav_dropdown_horizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: auto;
	float:right;
}
/* 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#nav_dropdown_horizontal li
{
	position: relative;
	display:block;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	text-align: left;
	cursor: pointer;
	float: left;
	border-left:#A9A9A9 1px solid;
}
/* 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#nav_dropdown_horizontal ul
{
	position: absolute;
	margin: 0;
	padding:0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 170px;
	left: -3000px;
	top:0;
	/*border:#A4C428 1px solid;*/
	border-top:0;
}

/* 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#nav_dropdown_horizontal ul.MenuBarSubmenuVisible
{
	/* xxx_ie6 this fix is needed for ie and should be part of the ie override margin-top:30px; */
	left: auto;
	margin-top:20px;	
}
/* Menu item containers are same fixed width as parent */
ul#nav_dropdown_horizontal ul li
{
	display:block;
	background-color:#fff;
	margin: 0;
	padding: 4px 0;
	width:100%;
	font-size:11px;
	border-bottom:#A9A9A9 1px solid;
	border-left:0;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul#nav_dropdown_horizontal ul ul
{
	display:inline;
	position: absolute;
	padding:0;
	margin: 0 0 0 100%;
	margin-top:0px !important;
}
ul#nav_dropdown_horizontal ul ul a {
	font-size:11px;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul#nav_dropdown_horizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul#nav_dropdown_horizontal ul
{}

/* Menu items are a light gray block with padding and no text decoration */
ul#nav_dropdown_horizontal a
{
	display: block;
	cursor: pointer;
	background-color:#fff;
	padding:0 5px 0 5px;
	color: #7c7c7c;
	/*xxx_ie6 width: 120px;
	height: 20px; */
	text-decoration: none;
}
ul#nav_dropdown_horizontal a.highlight {
	font-weight:bold;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul#nav_dropdown_horizontal a:hover, ul#nav_dropdown_horizontal a:focus
{
	color: #000;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul#nav_dropdown_horizontal a.MenuBarItemHover, ul#nav_dropdown_horizontal a.MenuBarItemSubmenuHover, ul#nav_dropdown_horizontal a.MenuBarSubmenuVisible
{
	color: #000;
}

/*******************************************************************************

 SUBMENU INDICATION: styles 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#nav_dropdown_horizontal a.MenuBarItemSubmenu
{
	/*background-image: url(../img/sub_nav_arrow.gif);*/
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* 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#nav_dropdown_horizontal ul a.MenuBarItemSubmenu
{
	background-image: url(../img/sub_nav_arrow.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul#nav_dropdown_horizontal a.MenuBarItemSubmenuHover
{
	/*ackground-image: url(../img/sub_nav_arrow.gif);*/
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul#nav_dropdown_horizontal ul a.MenuBarItemSubmenuHover
{
	/*background-image: url(../img/sub_nav_arrow.gif);*/
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/*******************************************************************************

 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#nav_dropdown_horizontal iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.9);
}
/* 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#nav_dropdown_horizontal li.MenuBarItemIE
	{
		display: block;
		float: left;
		background: #FFF;
		
	}
}
