/* start of added stuff - sjr */
/* MenuBar9 is the top maroon menu bar */
ul#MenuBar9 a{
	background-color:transparent;
}
ul#MenuBar9 li{
	background-image: url(../images/btn-maroon-level1-off.gif);
}
ul#MenuBar9 li a{
	color:#FFF;	
}
ul#MenuBar9 li li{
	background-image: url(../images/btn-maroon-level1-sub-off.gif);
}
ul#MenuBar9 li li a{
	color:#FFF;
	background-image: url(../images/btn-maroon-level2-off.gif); /* turns level 2 menus dark maroon */
}
ul#MenuBar9 li li li{
	background-image: url(../images/btn-maroon-level2-on.gif);
}
ul#MenuBar9 li li li a{
	color:#FFF;	
	background-image: url(../images/btn-maroon-level2-on.gif);
}
ul#MenuBar9 a.MenuBarItemHover, ul#MenuBar9 a.MenuBarItemSubmenuHover, ul#MenuBar9 a.MenuBarSubmenuVisible{
	color:#FFF;
	background-image: url(../images/btn-maroon-level2-on.gif); /* turns level 2 menus color when hovered */
	}
#MenuBar9 a.MenuBarItemSubmenu {
	background-image: url(../images/btn-maroon-level1-sub-off.gif);
}
/* MenuBar10 is the bottom white menu bar */
ul#MenuBar10 a{
	background-color:transparent;
}
ul#MenuBar10 li{
	background-image: url(../images/btn-white-level1-off.gif);
}
ul#MenuBar10 li a{
	color:#4d0505;	
}
ul#MenuBar10 li li{
	background-image: url(../images/btn-white-level1-sub-off.gif);
}
ul#MenuBar10 li li a{
	color:#4d0505;
	background-image: url(../images/btn-white-level2-off.gif);
}
ul#MenuBar10 li li li{
	background-image: url(../images/btn-white-level2-off.gif);
}
ul#MenuBar10 li li li a{
	color:#4d0505;	
	background-image: url(../images/btn-white-level2-on.gif);
}
ul#MenuBar10 a.MenuBarItemHover, ul#MenuBar10 a.MenuBarItemSubmenuHover, ul#MenuBar10 a.MenuBarSubmenuVisible{
	color:#4d0505;
	background-image: url(../images/btn-white-level2-on.gif);
}
#MenuBar10 a.MenuBarItemSubmenu {
	background-image: url(../images/btn-white-level1-sub-off.gif);
}
/* end of added stuff - sjr */
/* SpryMenuBarVertical.css - version 0.6 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/
/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
ul.MenuBarVertical
{
	/*display:block;*/
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 85%; /* this sets the main font size - all others below are relative to this */
	cursor: default;
	width: 219px; /* absolutely required for IE to work */
}
/* 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
{
	/*display: block;*/
	z-index: 1000;
	color:#fff;
	width:219px;
	height:31px;
	/*background-image:url(../images/btn-maroon-level1-off.gif);*/
}
/* Menu item containers, position children relative to this container and are same fixed width as parent */
ul.MenuBarVertical li
{
	/*display:block;*/
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 219px; /* this changes the width the top level menu */
	height:31px; /* this makes the background image display the proper height */
	/*background-image:url(../images/btn-maroon-level1-off.gif);*/
	/*background-repeat:no-repeat;*/
}
/* 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
{
	/*display:block;*/	
	margin: 3% 0 0 95%; /* this determines the position of the submenus relative to the top menu */
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width:219px; /* pushes submenu items over but doesn't change width of menu  */
	/*height:31px;*/
	left: -1000em;
	top: 0;
	/*background-repeat:no-repeat;*/
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	/*display:block;*/
	left: 0;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
{
	/*display:block;*/ /* need this to reduce space beneath items with submenus in IE */
	width:219px; /* changes width of submenu items */
	/*height:31px;*/
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
{
	display: inline; /* absolute required to keep menus from collapsing in Firefox */
	border: 0px solid #CCC; 
	/*height:31px;*/
}
/* Submenu containers have borders on all sides */
ul.MenuBarVertical ul
{
	/*display:inline;*/
	/*display:block;*/
	border: 0px solid #CCC; 
	/*height:31px;*/
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
{
	display:block; /* this is absolutely required for firefox and IE or buttons collapse */
	cursor: pointer;
	padding: 0.5em 1.75em; /* positions text on background image */
	color: #FFF;
	text-decoration: none;
	/*background-image: url(../images/btn-maroon-level1-off.gif);*/
	background-repeat:no-repeat;
	height:31px;
}
/* Menu items that have mouse over or focus have a maroon background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
	/*display:block;*/	
	color: #FFF;
	/*background-image: url(../images/btn-maroon-level1-off.gif);*/
	/*background-repeat:no-repeat;*/
	/*width:219px;*/
	height:31px;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a maroon background and white text */
ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical, a.MenuBarSubmenuVisible
{
	/*display:block;*/
	/*color: #FFF;*/
	/*background-image: url(../images/btn-maroon-level1-on.gif);*/
	/*background-repeat:no-repeat;*/
	/*width:219px;*/
	height:31px;
}

/*******************************************************************************

 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 
{
	/*display: block;*/
	/*float:none;
	background-color:transparent;*/
	/*background-image: url(../images/btn-maroon-level1-sub-off.gif);*/
	/*background-repeat:no-repeat;*/
	/*height:31px;*/
	/*background-position: 95% 50%;*/ /* causes background to shift in Firefox */
}

/* 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 
{
	/*display: block;*/
	/*float:none;
	background-color:transparent;*/
	/*background-image: url(../images/btn-maroon-level1-sub-on.gif);*/
	height:31px;
	/*background-position: 95% 50%;*/ /* causes background to shift in Firefox */
}

/*******************************************************************************

 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;
	filter:alpha(opacity:0.1);
}
/* 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;
	}
}
