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

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/
ul.MenuBarVertical
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	cursor: default;
	width: 115px;
}
ul.MenuBarActive
{
	z-index: 1000;
}
ul.MenuBarVertical li
{
	margin: 0;
	line-height:1.6em;
	list-style-type: none;
	font-size: 150%;
	position: relative;
	text-align: right;
	cursor: pointer;
	width: 115px;
	height:35px;
}
ul.MenuBarVertical ul
{
	margin: 0 0 0 100%;
	padding: 0;
	list-style-type: none;
	line-height:normal;
	font-size: 50%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	left: -1000em;
	top: 0;
}
ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	left: 0;
}
ul.MenuBarVertical ul li
{
	line-height: normal;
	background: #FFF;
	background-image:none;
	border: 1px solid #CCC;
	text-align:left;
	margin: 1px;
	padding: 3px;
	height:1.2em;
}
/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
{
}
/* Submenu containers have borders on all sides */
ul.MenuBarVertical ul
{
	border: 1px solid #CCC;
	background-color:#FFF;
	border-left:0;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
{
	background: transparent url(../images/tpl/nav_bg.gif) right no-repeat;
	display:block;
	height:35px;
	cursor: pointer;
	margin:0;
	padding: 0 14px 0 0;
	color: #999;
	text-decoration: none;
}
ul.MenuBarVertical a:hover{
	background: transparent url(../images/tpl/nav_bg_h.gif) right no-repeat;
}
ul.MenuBarVertical ul li a{
	background-image:none;
}
ul.MenuBarVertical ul li a:hover{
	background-image:none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
	color: #AE8800;
}
/* 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: #AE8800;
}

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

 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
{
	
}

/* 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;
}
/* 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;
	}
}
