@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 */
ul.MenuBarVertical
{
	padding: 0px;
	cursor: default;
	width: 182px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
/* 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 kb changed to be auto width, not fixed  */
ul.MenuBarVertical li
{
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 182px;
	/* [disabled]margin-left: 1px; */
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarVertical ul
{
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 182px;
	left: -1000em;
	top: 0px;
	background-color: #95240E;
	/* [disabled]border: thin solid #95240E; */
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, KB set this to determine location of sub nav box in relation to main nav box */
ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	left: 183px;
}
/* Menu item containers, KB sub menu containers, use this to color sub menu background colors*/
ul.MenuBarVertical ul li
{
	float: none;
	width: auto;
	margin-bottom: 1px;
	background-color: #95240E;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
{
	border: none;
}
/* Submenu containers*/
ul.MenuBarVertical ul
{
	background-color: #E6E4D5;
	color: #95240E;
}
/* Menu items styles. kb All sub menus inhereit these styles.  (background off for menu items without drop downs) */
ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	color: #FFF;
	text-decoration: none;
	padding: 6px;
	font-weight: normal;
	font-size: 12px;
}
/* Menu items that have mouse over or focus. all submenus   (kb background hover/rollover for menu items without drop downs)*/
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
	background-color: #E6E4D5;
	color: #95240E;
}
/* Menu items that are open with submenus (kb have drop downs incl. sub drop downs) are set to MenuBarItemHover*/
ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
{
	background-color: #E6E4D5;
	color: #95240E;
}

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

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

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

/* Menu items that have a submenu (main nav off) have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarVertical a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
	}

/* Menu items that have a submenu (sub nav off) have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarVertical a.MenuBarItemSubmenuHover
{
	background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus (main nav hover/rollovers) 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
{
	  
}
/* Menu items that are open with submenus (sub nav hover/rollovers) 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
{
	
}

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

 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;
	/* [disabled]background: #FFF; */
	}
}
