@charset "UTF-8";
/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
{
	float: right;
	text-align: right;
	padding-right: 10px;
	padding-top: 0px;
	list-style-image: none;
	list-style-type: none;
}
/* Submenu containers have borders on all sides */
ul.MenuBarVertical ul
{
	font-family: Arial, Helvetica, sans-serif;
	text-align: right;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
{
	color: #000000;
	font-size: 9px;
	font-weight: bolder;
	font-family: Arial, Helvetica, sans-serif;
	text-align: right;
	list-style-image: none;
	line-height: 26px;
	white-space: normal;
}
/* 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: #660000;
}

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

 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%) */
ul.MenuBarVertical a.MenuBarItemSubmenu
{
	background-position: 95% 50%;
	float: left;
}

/* 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%) */
ul.MenuBarVertical 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;
	filter:alpha(opacity:0.1);
}
	ul.MenuBarVertical li.MenuBarItemIE
	{
	cursor: pointer;
	}
