@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  {
	margin : 0;
	padding : 0;
	list-style-type : none;
	font-size : 80%;
	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 : 1000;
} 
/* Menu item containers, position children relative to this container and are a fixed width */
 ul.MenuBarHorizontal li  {
	list-style-type : none;
	font-size : 100%;
	position : relative;
	text-align : left;
	width : auto;
	float : left;
} 
/* 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  {
	opacity: .92;
	padding : 0;
	list-style-type : none;
	font-size : 100%;
	z-index : 1020;
	cursor : default;
	width : 11em;
	position : absolute;
	left : -1000em;
} 

ul.MenuBarHorizontal ul.MenuBarSubmenuVisible  {
left : 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.MenuBarHorizontal ul li  {
	width : 10.25em;
} 
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul  {
	position : absolute;
	margin : -5% 0 0 95%;
}

/*******************************************************************************
 DESIGN INFORMATION: describes color scheme, borders, fonts
 *******************************************************************************/

/* Submenu that drops down - grey background*/
 ul.MenuBarHorizontal ul a {
	
	padding: 5px 3px 2px 12px;
	font-size: 100%;
	text-transform: lowercase;
	text-decoration: none;
	background: #555F55;
	letter-spacing: normal;
	width: auto;
	font-family: Georgia, "Times New Roman", Times, serif;
	height: 20px;
	display: block;
	text-align: left;
	color: #FFF;
}

/* styling of main menu */
ul.MenuBarHorizontal > li > a{
	display : block;
	padding : 7px 12px 7px 12px;
	text-decoration : none;
	font-size : 100%;
	text-transform : uppercase;
	letter-spacing : 0.32em;
	text-align : center;
	font-family : Georgia, "Times New Roman", Times, serif;
	color: #ff7f00;
	cursor: auto;
} 
/* div for page header to show up black */
ul.MenuBarHorizontal #pageheader a {
	display : block;
	padding : 7px 12px 7px 12px;
	text-decoration : none;
	font-size : 100%;
	text-transform : uppercase;
	letter-spacing : 0.32em;
	text-align : center;
	font-family : Georgia, "Times New Roman", Times, serif;
	color: #000000;
	cursor: auto;
}
/* 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;
} 

/* Menu items that are open with submenus are set to MenuBarItemHover with a orange background white text */
ul.MenuBarHorizontal a:hover, 
ul.MenuBarHorizontal a:focus ul.MenuBarHorizontal a.MenuBarItemHover, 
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, 
ul.MenuBarHorizontal a.MenuBarSubmenuVisible,

ul.MenuBarHorizontal #pageheader a:hover, 
ul.MenuBarHorizontal #pageheader a:focus ul.MenuBarHorizontal #pageheader a.MenuBarItemHover, 
ul.MenuBarHorizontal #pageheader a:focus ul.MenuBarHorizontal a.MenuBarItemHover, 
ul.MenuBarHorizontal #pageheader a.MenuBarItemSubmenuHover, 
ul.MenuBarHorizontal #pageheader a.MenuBarSubmenuVisible  {
color : #fff;
background : #ff7f00;
} 

/*******************************************************************************
 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 projection, screen  {
ul.MenuBarHorizontal li.MenuBarItemIE {
	display : inline;
	float : left;
}
}
