/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

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

 LAYOUT INFORMATION: describes box model, positioning, z-order

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

#menu	{
	width:665px;
	}

/* 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;
	cursor: pointer;
	width: 100%;
}
/* 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 13px 0 0px;
	padding:0 13px 0 0;
	list-style-type: none;
	font-size:15px;
	font-weight:bold;
	position:relative;
	text-align:center;
	width:auto;
	display:block;
	float:left;
	color:#574a20;
	border-right:solid 1px #b67f12;
	background:none !important;
}
ul.MenuBarHorizontal li.last {
	border-right:none;
}
ul.MenuBarHorizontal li a {
	color:#574a20;
	text-decoration:none;
}
ul.MenuBarHorizontal li a:hover {
	color:#b67f12;
	text-decoration:none;
}
ul.MenuBarHorizontal li a.selected {
	color:#b67f12;
	text-decoration:none;
}


/* 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: 10px 0 0 -13px;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: auto;
	position: absolute;
	top:30;
	left: -1000em;
	background:url(../images/dropdown-lst-bg.png) repeat-x;
	border-right:solid 1px #c5c5c5;
	border-bottom:solid 1px #c5c5c5;
	border-left:solid 1px #c5c5c5;
}

/* 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 */
html ul.MenuBarHorizontal ul li {
	display:block;
	clear:left;
	width:200px;
	padding:0;
	margin:0px 0 0 0;
	color:#574a20;
	text-align:left;
	border:none;
	font-size:14px;
	font-weight:normal;
}
ul.MenuBarHorizontal ul li a {
	color:#574a20;
	display:block;
	padding:3px 8px;
	margin:0 3px;
	border-bottom:solid 1px #e5e4b7;
/*	border-bottom:solid 1px #f0e1c5;  */
}
ul.MenuBarHorizontal ul li a.bottom {
	border-bottom:none;
}
ul.MenuBarHorizontal ul li a:hover {
	color:#b67f12;
}

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

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

 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;
}
/* 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;
		float: left;
		background: #fff;
	}
}
