@charset "UTF-8";

/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.5 */

/* 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;
	width:auto;
}
 /* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	list-style-type: none;
	text-align: center;
	float: left;
	padding:1px;
	padding-left:1px;
}
/* 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
{
	margin: 0;
	padding: 0px;
	list-style-type: none;
	position: relative;
	text-align: center;
	width: 30px;
	float: left;
}

/* Submenus should appear slightly overlapping to the right (95%) and up (-5%)
ul.MenuBarHorizontal ul ul
{
	position: absolute;
}
 */
/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	border: 2px;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight: bold;
	text-decoration:none;
	display: block;
	cursor: pointer;
	padding-bottom:3px;
	padding-top:4px;
	padding-left:2px;
	width: 84px;
	color: #ffffff; //28Feb2008 ffffff x FFB122
	
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-image:url(../images/fonmenu2.png);
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight: bold;
	text-decoration:none;
	display: block;
	cursor: pointer;
	padding-bottom:3px;
	padding-top:4px;c
	width: 84px;
	color: #000000; //28Feb2008 000000 x FFB122; 
	}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text 
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
background-image:url(../images/fonmenu.png);
	color: #000000;
}*/

/*******************************************************************************

 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: 100%;
	
}
/* 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;
		background: #FFF; //28Feb2008 FFF x F4872E
	}
}

