@charset "UTF-8";

/* SpryMenuBarVertical.css - Revision: Spry Preview Release 1.4 */

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

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

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

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

/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
ul.MenuBarVertical
{
	margin: 3px 0 0px 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 185px;
}
/* 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 same fixed width as parent */
ul.MenuBarVertical li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
/*	text-indent: -6000px;  */
	position: relative;
	cursor: pointer;
	width: 185px;
	line-height: 20px;
	
}
ul.MenuBarVertical li a span {
	visibility: hidden;
}


/* Submenus offsets.  initially off the left side of the screen (-1000em) */
ul.MenuBarVertical ul
{
	margin: -2% 0 0 100%;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 152px;
	left: -1000em;
	position: absolute;
	top: 0;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	left: 0;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
{
	text-indent: 0px;
	width: 152px;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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


/* Submenu containers have borders on all sides */
ul.MenuBarVertical ul
{
	border: 1px solid #f1cf95;
}

/* Menu items  */
ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	padding: 6px 15px 3px 10px;
	text-decoration: none;
}



ul.MenuBarVertical ul li a
{
	margin: 0;
	padding: 4px 15px 4px 10px;
	font: normal 11px arial, helvetica, sans-serif;
	text-decoration: none;
	text-transform: none;
	color: #fdd093;
	background-color: #A34A11;
}

ul.MenuBarVertical ul li a:hover
{
	color: #fff;
	background-color: #A34A11;
}

ul.MenuBarVertical ul li.top a
{
	padding-top: 9px;
}

ul.MenuBarVertical ul li.bottom a
{
	padding-bottom: 9px;
}

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

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

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



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

 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.MenuBarVertical 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.MenuBarVertical li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}

