@charset "UTF-8";

ul.MenuBarVertical
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 11em;
}
/* 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: 11em;
}

/* 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) */
ul.MenuBarVertical ul
{
	margin: -5% 0 0 95%;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 8.2em;
	left: -1000em;
	top: 0;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	left: 0;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
{
	width: 8.2em;
}

ul.MenuBarVertical
{
	border: 1px solid #aaaaaa;
}

ul.MenuBarVertical ul
{
	border: 1px solid #aaaaaa;
}

ul.MenuBarVertical a
{
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	display: block;
	cursor: pointer;
	padding: 0.3em 0.55em;
	color: #000;
	text-decoration: none;
	background-color:#d5d5d5;
	background-image: url(level_0bg.gif);
}


ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
	background-color: #74a702;
	color: #ffffff;
	text-decoration:none;
}

ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
{
	background-color: #74a702;
	color: #ffffff;
	text-decoration:none;
}


ul.MenuBarVertical a.MenuBarItemSubmenu
{
	background-color:#d5d5d5;
	background-image: url(SpryMenuBarRight.gif);
}


ul.MenuBarVertical a.MenuBarItemSubmenuHover
{
	background-color: #2a83a1;
	background-image: url(SpryMenuBarRightHover.gif);
}

ul.MenuBarVertical iframe
{
	position: absolute;
	z-index: 1010;
}

@media screen, projection
{
	ul.MenuBarVertical li.MenuBarItemIE
	{
		display: inline;
		float: left;
		background: #FFF;
	}
}
