@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: 100%;
	cursor: default;
	width: auto;
	position:absolute;
	float:right;
	right: 0px;
	bottom: 68px;
}
/* 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
{
	margin: 0 0 0 5px;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align:left;
	cursor: pointer;
	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
{
	margin: 0;
	padding: 0;
	list-style-type:none;
	font-size:100%;
	z-index: 1020;
	cursor: default;
	position: absolute;
	left: -1000em;
	width: 185px;
}
/* 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;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	margin: 0;
	width:185px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: 0 0 0 100%;
}
/* 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;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	background: #003e71; /* for non-css3 browsers */
	filter:
		progid:DXImageTransform.Microsoft.gradient(startColorstr='#005c8f', endColorstr='#003e71'), 
		progid:DXImageTransform.Microsoft.Shadow(color='black', Direction=135, Strength=2); /* for IE */
	-ms-filter:
		"progid:DXImageTransform.Microsoft.gradient(startColorstr='#005c8f', endColorstr='#003e71'),
		progid:DXImageTransform.Microsoft.Shadow(color='black', Direction=135, Strength=2)"; /* for IE8 */
	background: -webkit-gradient(linear, left top, left bottom, from(#005c8f), to(#003e71)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #005c8f,  #003e71); /* for firefox 3.6+ */
	
	-webkit-border-radius: 0 7px 7px 7px;
	-moz-border-radius: 0 7px 7px 7px;
	border-radius: 0 7px 7px 7px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;	
	color: #fff;
	text-decoration: none;
	background-color:trasparent;
	padding: 7px 20px;
	font: bold 17px/100% Georgia, "Times New Roman", Times, serif;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #ddd;
	color: #333;
	text-decoration:none;
}
/* 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-color: #ddd;
	color: #333;
}
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background: #00366a url(images/bgnav.png) repeat-x top;
}
ul.MenuBarHorizontal ul li
{
	background:url(images/menu-arrow.png) left center no-repeat;
}
ul.MenuBarHorizontal ul a
{
	font:normal 13px/100% "Trebuchet MS", Arial, Helvetica, sans-serif;
	padding:5px 5px 5px 20px;
}
ul.MenuBarHorizontal ul a:hover {
	background: #ddd !important; /* for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cfcfcf'); /* for IE */
	-ms-filter:  "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cfcfcf')"; /* for IE8 */
	background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cfcfcf)) !important; /* for webkit browsers */
	background: -moz-linear-gradient(top,  #ffffff,  #cfcfcf) !important; /* for firefox 3.6+ */

	color: #333 !important;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .1);
}
ul.MenuBarHorizontal a.MenuBarItemSubmenu, ul.MenuBarHorizontal a.MenuBarItemSubmenuLink
{
	color:#fff;
}
/* rounded corners for first and last child */
ul.MenuBarHorizontal ul li:first-child > a {
	-webkit-border-top-right-radius: 7px;
	-moz-border-radius-topright: 7px;
	border-top-right-radius: 7px;
}
ul.MenuBarHorizontal ul li:last-child > a {
	-webkit-border-bottom-left-radius: 7px;
	-moz-border-radius-bottomleft: 7px;
	-webkit-border-bottom-right-radius: 7px;
	-moz-border-radius-bottomright: 7px;
	border-bottom-right-radius: 7px;
	border-bottom-left-radius: 7px;
}

/*******************************************************************************

 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.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-image: url(images/SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
	background-color:#00376a;
}
/* 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.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(images/SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
	background-color:#f30;
}

/*******************************************************************************

 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=10);
}
/* 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;
	}
}
