

/* 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 */
.MenuBarFixedBox
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 16px;
	cursor: default;
	width: 8em;
	font-family: Arial, Helvetica, sans-serif;
	color: #9a9a9a;
	font-weight: lighter;	
	float: left;	
	background-color: #E6E6E6;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #8F8F8F;
	margin-top: 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 */
.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are same fixed width as parent */
.MenuBarVerticalChild
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 14em;
	background-color: Fuchsia;
}
/* 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) */
.MenuBarSubmenu
{
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 14em;
	left: -1000em;
	top: 0;
	margin-top: -1px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 100%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
.MenuBarSubmenuVisible
{
	left: 0;
}
/* Menu item containers are same fixed width as parent */
.MenuBarVerticalSubMenuSameWidth
{
	width: 13em;
}


/* Submenu containers have borders on all sides */
.MenuBarVerticalWithBorder
{
	border: 1px solid #666;
	width: 13em;
}
/* Menu items are a light gray block with padding and no text decoration */
.MenuBarVerticalLink
{
	margin: 0px;
	display: block;
	cursor: pointer;
	background-color: #E6E6E6;
	/* padding: 0.25em 0.5em 0.25em 0.25em; */
	color: #000;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-color: #8F8F8F;
	border-bottom-style: solid;
	border-right-style: solid;
	border-right-color: #8F8F8F;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	border-left-color: #8F8F8F;
	border-top-width: 0px;
	border-top-style: solid;
	border-top-color: #8f8f8f;
	border-right-width: 0px;	
	clip: rect(0px, auto, auto, 0px);
	font-style: normal;
    list-style-type: none;
	position: relative;
}

.MenuBarItemSubmenu
{
	border: 1px solid #8F8F8F;
	font-family: Verdana;
	color: #000;
	background-color: #E6E6E6;
	cursor: default;
	padding: 0;
	list-style-type: none;
	font-size: 10px;
	cursor: default;
	position: relative;
	z-index: 1010;
}

.MenuBarItemLegend
{
	margin: 15px;
	border: medium solid #800080;
	font-family: Verdana, Geneva, sans-serif;
	color: #000;
	background-color: #E6E6E6;
	cursor: default;
	/*padding: 15px;*/
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	top: 500px;
	position: relative;
	z-index: 1010;
}

/* Menu items that have mouse over or focus have a grey background and white text */
.MenuBarFocus
{
	background-color: #F0F0F0;
	color: #FFF;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
.MenuBarItemHover
{
	background-color: #96C;
	color: #FFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background ima~/Images/Icons/ge positioned on the far left (95%) and centered vertically (50%) */
.MenuBarItemSubmenuHover
{
	background-image: url('../Images/Icons/SpryMenuBarRightHover.gif');
	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 s-ms-filter: sub menus show above form controls, we underlay each submenu with an iframe */
.MenuBarIFrame
{
	position: absolute;
	z-index: 1010;
	-ms-filter:alpha(opacity:0.1);
}
/* HACK FOR IE: to stabilize appearancfof menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{

	.MenuBarItemIE
	{
		display: inline;
		float: left;
		background: #FFF;
	}
}
#wrapper #bodydiv #sprymenudiv #MenuBar1 li 
{
	font-family: Verdana, Geneva, sans-serif;
}

