@charset "UTF-8";

/* SpryMenuHorizontal.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.MainMenu
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	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.MainMenu
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MainMenu li
{
	margin: 0;
	padding: 0;
	background-color:#99CCFF;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 180px;
	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.MainMenu ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 160px;
	float: left;
	
}
/* Submenu that is showing with class designation MenuSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuHorizontal ul.MenuSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MainMenu ul li
{
	width: 158;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuHorizontal ul.MenuSubmenuVisible ul.MenuSubmenuVisible
{
	left: auto;
	top: 0;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Submenu containers have borders on all sides */
ul.MainMenu ul
{
	border: none;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MainMenu li a
{
	display: block;
	cursor: pointer;
	background-color:#F9F9A3;
	padding: 0.5em 0.75em;
	color: #003366;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
}
ul.MainMenu ul a
{
	display: block;
	cursor: pointer;
	background-color:#FFFFFF;
	padding: 0.5em 0.75em;
	color: #000000;
	text-decoration: none;
	font-size: 12px;
	font-weight: normal;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MainMenu a:hover, ul.MainMenu a:focus
{
	background-color: #33C;
	color: #FFF;
}
/* Menu items that are open with submenus are set to MenuItemHover with a blue background and white text */
ul.MainMenu a.MenuItemHover, ul.MenuHorizontal a.MenuItemSubmenuHover, ul.MenuHorizontal a.MenuSubmenuVisible
{
	background-color: #33C;
	color: #FFF;
}

