/*@charset "UTF-8";*/

/* Category of main menu items */
.v-menu-title
{
  font-size: 14px;
  font-weight: normal;
  color: #FFFFFF;
  background-color: #CC0033;
  padding: 5px 0px 5px 10px;
}

/* 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;
	height: 0.01%;      /* Fix IE6 displaying bug. */
    /*width: 10em;*/
}

/* 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: 14em;
}

ul.MenuBarVertical ul
{
	margin: -5% 0 0 95%;
	padding: 0;
	list-style-type: none;
	font-size: 9pt;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 10em;
	left: -1000em;
	top: 0;
}

ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	left: 5px;
}

ul.MenuBarVertical ul li
{
	width: 10em;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Outermost menu container has no border on all sides */
ul.MenuBarVertical
{
	border-width: 0px;
	border-style: solid;
	border-color: #CC6600;
}

/* Submenu containers have noly bottom border */
ul.MenuBarVertical ul
{
	border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CC0033;
}

/* Menu items are a golden orange block with padding and no text decoration */
ul.MenuBarVertical a
{
	cursor: pointer;
	line-height: 9pt;
	letter-spacing: 0.1em;
	display: block;
	padding: 5px 6px 5px 15px;
	background-color: #FFFFFF;
	font: 9pt Taipei, Arial, Helvetica, sans-serif;
	color: #333333;
	text-decoration: none;
	border-top-width: 1px;
	border-top-color: #CC0033;
	border-top-style: solid;
}

/* Main Menu items */
ul.MenuBarVertical a:hover, ul.MenuBarVertivcal a:focus, ul.MenuBarVertical a.MenuBarItemSubmenuHover
{
	color: #FFFFFF;
	background-color: #6699CC;
}

/* Submenu items */
ul.MenuBarItemSubmenu a:hover, ul.MenuBarItemSubmenu a:focus
{
	color: #055D8A;
	background-color: #C7D5E3;
}

/*******************************************************************************

 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-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/* 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
{
	background-image: url(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 sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarVertical iframe
{
	position: absolute;
	z-index: 1010;
}

/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarVertical li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
        background: #FFF;
	}
}

