@charset "UTF-8";

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

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

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

 THIS STYLESHEET HAS BEEN MODIFIED FROM ORIGINAL.

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

/* 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: default;
	text-align: center;
}
/* 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;
}

/****************************KEEP ABOVE ITEMS***************************/

/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 1em;
	position: relative;
	cursor: pointer;
	/*width: 6.5em;the main nav items*/
}
/* 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) */
/*behind dropdown links*/
ul.MenuBarHorizontal ul {
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 12.5em;/*width of submenu list*/
	position: absolute;
	left: -1000em;
	z-index: 1020;
	margin: 10px 0 0 -90px;
	padding: 0;
	border: 1px solid #4369B2;
	background: #a1a179;
	/*border-radius: 10px;*/
	box-shadow: 2px 2px 2px 2px rgba(0,0,0,.3);
	-moz-box-shadow: 2px 2px 2px 2px rgba(0,0,0,.3);
	-webkit-box-shadow: 2px 2px 2px 2px rgba(0,0,0,.3);
}
ul.MenuBarHorizontal ul li {
	width: 12.5em;/* same fixed width as parent submenu li*/
	text-align: left;
	float: none;
}
/* Basic static Menu items */
ul.MenuBarHorizontal a {
	display: block;
	cursor: pointer;
	font-family: 'Century Gothic', 'Muli', sans-serif;
	font-size: 0.9em;
	letter-spacing: .15em;
	margin: 0;
	padding: 0;
	color: #000;
	text-decoration: none;/*keep*/
}
ul.MenuBarHorizontal a:active {
	background: #6E6D2D;	
}
/* Main Menu items that have mouse over or focus have a white background and black underlined text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus {
	/*works on right side*/
	background-color: #fff;
	color: #000;
	text-decoration: underline;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a white background and black underlined text
ul.MenuBarHorizontal a.MenuBarItemHover, 
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, 
ul.MenuBarHorizontal a.MenuBarSubmenuVisible {
	/*works on left side
	background-color: #fff;
	color: #000;
	text-decoration: underline;
}*/
ul.MenuBarHorizontal li.MenuBarItemSubmenu a:MenuBarItemHover {
	text-decoration: none;	
}
/***************the actual dropdown li's********************/
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible a {
	letter-spacing: .1em;
	text-decoration: none;/*keep*/
	color: #000;
	display: block;
	background: #a1a179;	
}
ul.MenuBarSubmenuVisible li a {
	margin-left: 0;	
}
/* Sub Menu items that have mouse over or focus */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible a:hover,
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible a:focus {
	text-decoration: underline;/*keep*/
}



/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul {
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing (has class MenuBarSubmenuVisible) we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible {
	left: auto;
	/*width: 4em; part of original code*/
}
/* Submenu that is showing (has class MenuBarSubmenuVisible) we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible {
	left: auto;
	top: 0;
}
/*******************************************************************************

 SUBMENU ICON 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 a.MenuBarItemSubmenu, ul.MenuBarHorizontal p.MenuBarItemSubmenu
{
	background-image: url(down_arrow.png);
	background-repeat: no-repeat;
	background-position: 99% 55%;
}
/* 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(down_arrow.png);
	background-repeat: no-repeat;
	background-position: 99% 55%;
}
/* 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(down_arrow.png);
	background-repeat: no-repeat;
	background-position: 99% 55%;
}
/* 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(down_arrow.png);
	background-repeat: no-repeat;
	background-position: 99% 55%;
}

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

 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: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: #FFF;
	}
}
