@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: 150px;
	height: 19px;
	font-family: Arial, Helvetica, sans-serif;
	padding: 0;
	position: absolute;
	z-index: 1000;
	margin: 0px;
	top: 1px;
}
/* Menu item containers, position children relative to this container and are same fixed width as parent */
ul.MenuBarVertical li
{
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	margin-bottom: 4px;
	width: 150px;
	height: 19px;
}
	ul.MenuBarVertical li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	color: #FFF;
	text-decoration: none;
	height: 19px;
	padding-top: 0px;
	font-size: 12px;
	padding-left: 6px;
	background-image: url(bg_on.png);
	font-weight: bold;
	-moz-box-shadow: 1px 5px 50px #000;
	box-shadow: 1px 5px 50px #000;
	-webkit-box-shadow: 1px 5px 50px #000;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{	
	
}
ul.MenuBarVertical a.ActiveMenu {
	display: block;
	cursor: pointer;
	color: #FFF;
	text-decoration: none;
	height: 19px;
	padding-top: 0px;
	font-size: 12px;
	padding-left: 6px;
	background-image: url(bg_over.png);
	font-weight: bold;
	-moz-box-shadow: 1px 5px 50px #000;
	box-shadow: 1px 5px 50px #000;
	-webkit-box-shadow: 1px 5px 50px #000;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
{
	color: #FFFFFF;
	background-image: url(bg_over.png);
	background-repeat: no-repeat;
	background-color: #069;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
}
