@charset "UTF-8";

/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*
** Top Level Menu:
*/

/* The outermost container of the Menu Bar: */
ul.MenuBarHorizontal
{
	margin: 12px 0 0 2px;
	padding: 0 0 0 0;
	list-style-type: none;
	font-size: 11pt;
	cursor: default;
	width: auto;
	font-weight: bold;
	color: black;
}

/* 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: 200000;
}

/* Top-Level Menu item containers: */
ul.MenuBarHorizontal li
{
	margin: 0 0 0 8px;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 148px;
	float: left;
	text-align: center;
	border: none;
	outline: none;
}

/* Top Menu - No Hover or Click: */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	padding: 8px 0 8px 0;
	color: black;
	text-decoration: none;
	background: url(../images/bg_nav_normal.jpg);
}

/* Menu items that have mouse over or focus: */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus, ul.MenuBarHorizontal a:selected
{
	background: url(../images/bg_nav_hover.jpg);
	color: #FFFF7D;
	border: none;
	outline: none;
}

/* Menu items that are open with submenus: */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background: url(../images/bg_nav_hover.jpg);
	color: white;
	border: none;
	outline: none;
}

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu: */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	/* background-image: url(SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%; */
}

/*
** 2nd Level Menu:
*/

/* 2nd Level Menu: */
ul.MenuBarHorizontal ul
{
	margin-top: 0px;
	margin-left: 1px;
	padding: 4px 0 4px 0;
	list-style-type: none;
	font-size: 10pt;
	z-index: 200020;
	cursor: default;
	/* width: 200px; */
	position: absolute;
	left: -1000em;
	font-weight: normal;
	float: none;
	overflow: visible;
	width: auto;
	border-color: #000000;
	border-style: solid;
	border-width: 1px;
	min-width: 144px;
	
	-moz-border-radius:6px;  /* for Firefox */
	-webkit-border-radius:6px; /* for Webkit-Browsers */
	border-radius:6px;
	background-color: #0E46C1;
}

#IEroot ul.MenuBarHorizontal ul
{
	margin-top: 2px;
}

html[data-useragent*='MSIE 10'] ul.MenuBarHorizontal ul
{
	margin-top: 2px;
}

/* 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
{
	/* width: auto; */
	float: none;
	margin: 0px 5px 0px 5px;
	white-space:nowrap;
	width: auto;
}

/* A second-level menu link: */
ul.MenuBarHorizontal ul a {
	background: none;
	color: white;
	font-weight: bold;
	padding: 4px 4px 4px 4px;
}
/* Second-level menu link / hover and focus: */
ul.MenuBarHorizontal ul a:hover, ul.MenuBarHorizontal ul a:focus {
	background: none;
	color: #FFFF7D;
	font-weight: bold;
}
/* 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(SpryMenuBarRightWhite.gif);
	background-repeat: no-repeat;
	background-position: 100% 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.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	/* background-image: url(SpryMenuBarDownHover.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.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 100% 50%;
}

/*
** 3rd Level Menus:
*/

/* 3rd level menu container: */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: 0 0 0 104%;
}

#IEroot ul.MenuBarHorizontal ul ul
{
	margin: 0 0 0 98%;
}

html[data-useragent*='MSIE 10'] ul.MenuBarHorizontal ul ul
{
	margin: 0 0 0 99%;
}

/* 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;
}


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

 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: 200010;
	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 screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: transparent;
	}
}
*/

