@charset "UTF-8";


/* 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: 75%;
	cursor: default;
}
/* 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
{	
	width:16em;
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: pointer;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}


/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
{
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 2px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: double;
	border-left-style: none;
	border-top-color: #CCC;
	border-right-color: #99CC33;
	border-bottom-color: #99CC33;
	border-left-color: #CCC;
}


/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
{
	display:block;
	cursor: pointer;
	background-color: #E9FDB0;
	padding: 0.5em 0.75em;
	color: #666666;
	text-decoration: none;
}


ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
	background-color: #99CC33;
	color: #FFFFFF;
}


ul.MenuBarVertical iframe
{
	position: absolute;
	z-index: 1010;
}

@media screen, projection
{
	ul.MenuBarVertical li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}
