@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 {
	position: relative;
	list-style-type:none;
	width:436px;
	height:17px;
	margin:0;
	padding:3px 0 0 3px;
}
/* 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 {
	float: left;
	margin:0 0 0 0;
	padding:0;
	width:142px;
	height:17px;
	
}

ul.MenuBarHorizontal li a.main {
	display: block;
	overflow:hidden;
	height:0 !important;
	height:/**/:17px;
	padding-top:17px;
	margin:0;
	cursor:pointer;
	background:url(../_images/search_menu.png) left top no-repeat;
}
ul.MenuBarHorizontal li.Navi01 {margin:0 3px 0 0;}
ul.MenuBarHorizontal li.Navi02 {margin:0 3px 0 0;}
ul.MenuBarHorizontal li.Navi03 {margin:0 3px 0 0;}

ul.MenuBarHorizontal li.Navi01 a {background-position:0 0;}
ul.MenuBarHorizontal li.Navi02 a {background-position:-142px 0;}
ul.MenuBarHorizontal li.Navi03 a {background-position:-284px 0;}

/* 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 li {
position: relative;
}
ul.MenuBarHorizontal ul {
	margin: 0;
	padding: 0;
	background:#482819;
	list-style-type: none;
	z-index: 1020;
	cursor: default;
	width: 142px;
	position: absolute;
	left: -1000em;

}

/* 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:142px;
	background-image: none;
	padding: 3px 0 3px 0;
	
}
ul.MenuBarHorizontal ul li a {
	width:132px;
	padding: 3px 0 3px 10px;
	background-image: none;
	
}
ul.MenuBarHorizontal ul li a:hover {
	width:132px;
	background-image: none;
	padding: 3px 0 3px 10px;
	background:#764719;
}

/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul {
	clear:both;
	width:270px;
	position: absolute;
	margin: 0 0 0 142px;
	/*_margin: 0 0 0 67px;*/
	background:#482819;
	top:0;
}
ul.MenuBarHorizontal ul ul li {
	width:270px;
	background-image: none;
	padding: 3px 0 3px 0;
	
}
ul.MenuBarHorizontal ul ul li a {
	width:260px;
	padding: 3px 0 3px 10px;
	background-image: none;
	background:#764719;
}
ul.MenuBarHorizontal ul ul li a:hover {
	width:260px;
	background-image: none;
	padding: 3px 0 3px 10px;
	background:#764719;
}
/* 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: 0;
	top: 0;
	
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul {
	width:142px;
	border:none;
	background:#482819;
 	/*filter: alpha(Opacity=95);
	opacity: 0.95; */
}
ul.MenuBarHorizontal ul ul {
	border:none;
	background:#764719;
 	/*filter: alpha(Opacity=95);
	opacity: 0.95; */
}
/* Menu items are a light gray block with padding and no text decoration */

ul.MenuBarHorizontal a {
	display: block;
	cursor: pointer;
	background-color: #482819;
	padding:0;
	color: #FFFFFF;
	text-decoration: none;
}

/* Menu items that have mouse over or focus have a blue background and white text */

ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	width:142px;
	background-color: #764719;
	color: #FFF;
	text-decoration: none;
}
ul.MenuBarHorizontal ul ul li a:hover, ul.MenuBarHorizontal ul ul li a:focus
{
	width:auto;
	background-color: #956302;
	color: #FFF;
	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
{
	z-index: 100;
	background-color: #764719;
	color: #FFF;
	text-decoration: none;
}
ul.MenuBarHorizontal ul ul li a.MenuBarItemHover, ul.MenuBarHorizontal ul ul li a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal ul ul li a.MenuBarSubmenuVisible
{
	z-index: 100;
	width:auto;
	background-color: #956302;
	color: #FFF;
	text-decoration: none;
}


/* 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.5);
}
/* 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
	{
		width:142px;
		display: inline;
		f\loat: left;
		background: #482819;
	}
	ul.MenuBarHorizontal ul ul li.MenuBarItemIE
	{
		width:270px;
		display: inline;
		f\loat: left;
		background: #764719;
	}
}

