@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
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 8em;
	/* [disabled]height: 25px; */
	/* [disabled]color: #FFF; */
}
/* 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;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 8em;
	/* [disabled]background-color: #3F6; */
	/* [disabled]height: 25px; */
	/* [disabled]color: #FFF; */
}

/* Menu item containers, position children relative to this container and are same fixed width as parent */
ul.MenuBarSubmenuItem a.focus
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 8em;
	/* [disabled]background-color: #FF0; */
	/* [disabled]height: 25px; */
}
/* 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
{
	margin: -5% 0 0 95%;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 8.2em;
	left: -1000em;
	top: 0;
	/* [disabled]height: 25px; */
}
/* 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;
	/* [disabled]background-color: #F00; */
	/* [disabled]background-repeat: repeat-y; */
	width: 5em;
	/* [disabled]background-image: url(../images/button1.png); */
	/* [disabled]color: #C30; */
}
/* Menu item containers are same fixed width as parent */
/*This is the item that controls the general look of submenu items*/
ul.MenuBarVertical ul li
{
	width: 13em;
	background-color: #374B73;
	font-size: x-small;
	/* [disabled]height: 25px; */
}


/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
{
	/* [disabled]border: 1px solid #CCC; */
	height: inherit;
	/* [disabled]margin-top: 120px; */
	/* [disabled]background-image: url(../images/side_grad.png); */
}
/* Submenu containers have borders on all sides */
ul.MenuBarVertical ul
{
	/* [disabled]border: 1px solid #CCC; */
	height: 40px;
}
/* Menu items are a light gray block with padding and no text decoration */
/*This the default look for all buttons unless overridden below.  I have it set to invisible background so the wallpaper shows through*/
ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	/* [disabled]background-color: #036; */
	padding: 0.5em 0.75em;
	color: #FFF;
	text-decoration: none;
	/* [disabled]background-image: url(../images/side_grad.png); */
}
/* Menu items that have mouse over or focus have a blue background and white text */
/*This is for non-flyout buttons for when you hover over them*/
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
	/* [disabled]background-color: #33C; */
	color: #FFF;
	/* [disabled]height: 25px; */
	background-image: url(../images/button_click.png);
	background-position: 95% 50%;
}
/* 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
{
	/* [disabled]background-color: #FF6; */
	color: #FFF;
	/* [disabled]height: 10px; */
	/* [disabled]background-image: url(../images/button_hover.png); */
}



/*******************************************************************************

 SUBMENU 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%) */
/*this is the menu option for the buttons that would fly out to the right, but you haven't done anything to them yet*/
ul.MenuBarVertical a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
	/* [disabled]background-color: #0F0; */
}

/* 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%) */
/*This is the controls for hovering over 
a menu option that will fly out a submenu*/
ul.MenuBarVertical a.MenuBarItemSubmenuHover
{
	background-image: url(../images/button_click.png);
	background-repeat: no-repeat;
	/*background-position: 95% 50%;*/
}

/*******************************************************************************

 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);
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
/*If This section isn't set right, the background will override when it is rendered in IE*/
@media screen, projection
{
	ul.MenuBarVertical li.MenuBarItemIE
	{
	display: inline;
	f\loat: left;
	/* [disabled]background: #FFF; */
	}
}
