@charset "UTF-8";

/* outermost container of Menu Bar*/
ul.MenuBarVertical
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 148px;
}

ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers */
ul.MenuBarVertical li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 148px;
}

ul.MenuBarVertical ul
{
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 148px;
	left: -1000em;
	top: 0;
}

ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	left: 0;
}
/* Menu item containers width */
ul.MenuBarVertical ul li
{
	width: 148px;
}



/* Submenu containers */
ul.MenuBarVertical ul
{
	border: 1px solid #FFFFFF;
}
/* Menu items */
ul.MenuBarVertical li a 
{
display: block;
	cursor: pointer;
	background-image:url(../images/menu_item_bg.gif);
	background-repeat:no-repeat;
	background-color:#289925;
	width:123px;
	height:22px;
	color: #FFF;
	font-weight:bold;
	text-decoration: none;
	padding-left:25px;
	padding-top:4px
}

ul.MenuBarVertical li a:visited
{
display: block;
	cursor: pointer;
	background-image:url(../images/menu_item_bg.gif);
	background-repeat:no-repeat;
	background-color:#289925;
	width:123px;
	height:22px;
	color: #FFF;
	font-weight:bold;
	text-decoration: none;
	padding-left:25px;
	padding-top:4px
}

ul.MenuBarVertical li a:hover
{
display: block;
	cursor: pointer;
	background-image:url(../images/menu_item_over.gif);
	background-repeat:no-repeat;
	background-color:#289925;
	width:123px;
	height:22px;
	color: #FFF;
	font-weight:bold;
	text-decoration: none;
	padding-left:25px;
	padding-top:4px
}



/* ------------------------ submenu ---------------------------------- */

ul.MenuBarVertical li ul {
margin-top:-1px;
margin-left:150px;
 }

 
ul.MenuBarVertical li ul li a 
{
	display: block;
	cursor: pointer;
	background-color:#289925;
	width:123px;
	height:20px;
	color: #FFF;
	font-weight:bold;
	text-decoration: none;
	padding-top:4px;
	border-bottom:solid 2px #FFF;
}

ul.MenuBarVertical li ul li a:visited
{
display: block;
	cursor: pointer;
	background-color:#289925;
	width:123px;
	height:20px;
	color: #FFF;
	font-weight:bold;
	text-decoration: none;
	padding-top:4px;
	border-bottom:solid 2px #FFF;
}

ul.MenuBarVertical li ul li a:hover
{
display: block;
	cursor: pointer;
	background-color:#a10082;
	width:123px;
	height:20px;
	color: #FFF;
	font-weight:bold;
	text-decoration: none;
	padding-top:4px;
	border-bottom:solid 2px #FFF;
}


/*******************************************************************************

 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;
	}
}
