@charset "UTF-8";

/* SpryMenuBarVertical.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, a fixed width box with no margin or padding */
ul.MenuBarVertical 
{
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 165px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	margin-left: 35px;
	line-height: normal;
	padding-left: 10px;
}
/* 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;
}

/* 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 a {
	display: block;
	cursor: pointer;
	color: #FFF;
	text-decoration: none;
	font-family: verdana, arial, helvetica, sans-serif;
	background-color:#336;
	font-size: 12px;
	font-weight: bold;
	padding-top: 0.5em;
	padding-right: 0.75em;
	padding-bottom: 0.5em;
	padding-left: .75em;	
 }

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
{
	border: none;
}
/* Submenu styling */
.MenuBarVertical ul 
{
	font-family: verdana, arial, helvetica, sans-serif;
	cursor: default;
	color: #FFF;
	list-style-type: none;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 8px;
	padding-left: 8px;
	width: auto;
	font-weight: normal;
}
.MenuBarVertical ul a
{
	font-size: 75%;
	cursor: default;
	color: #FFF;
	font-weight: normal;
}
.MenuBarVertical ul a:hover {
	display: block;
	background-color:#06C; 
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
	background-color: #06C;
	color: #FFF;
}

/*******************************************************************************

 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;
	filter:	alpha(opacity:0.1);
}
