@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: 100%;
	cursor: default;
	width:192px;
}
/* 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: 0px 0px 1px 8px;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 192px;
}
/* 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: 0 0 0 95%;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	left: -1000em;
	top: 0;
	background-color:#FFFFFF;
}
/* 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;
}

/* Submenu containers have borders on all sides */

ul.MenuBarVertical ul li {
  
margin-left:0px; 
margin-bottom:1px;
}
ul.MenuBarVertical ul li a {
display:block; 
color:#FFFFFF; 
font-weight:bold;
text-indent:0px;
padding-left:20px;
background:#000062 url(../images-design/bg_submenu.gif) 5% 0% no-repeat;
}

ul.MenuBarVertical ul li a:hover {
display:block; 
color:#000000; 
font-weight:bold;
text-indent:0px;
padding-left:20px;
background:#E5E3CC url(../images-design/bg_submenu_a.gif) 5% 0% no-repeat;
}


ul.MenuBarVertical ul li a.MenuBarItemSubmenu:hover
 {padding-left:0px;}

/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical li a
{
display:block; 
width:192px; 
line-height:14px; 
color:#000000; 
font-weight:bold; 
text-indent:23px; 
background:#F0F0F0 url(../images-design/bg_nav.gif) 0% 100% no-repeat;
padding:3px 0px 4px 0px;
}
ul.MenuBarVertical li a:hover
{
display:block; 
width:192px; 
color:#FFFFFF; 
font-weight:bold; 
text-indent:23px; 
background:#000061 url(../images-design/bg_nav.gif) 0% 0% no-repeat;
}
/* Menu items that have mouse over or focus have a blue background and white text */

body#page1 #nav01 a,
body#page2 #nav02 a,
body#page3 #nav03 a,
body#page4 #nav04 a,
body#page5 #nav05 a,
body#page6 #nav06 a,
body#page7 #nav07 a,
body#page8 #nav08 a,
body#page9 #nav09 a,
body#page10 #nav10 a,
body#page11 #nav11 a,
body#page12 #nav12 a,
body#page13 #nav13 a,
body#page14 #nav14 a,
body#page15 #nav15 a,
body#page16 #nav16 a,
body#page17 #nav17 a,
body#page18 #nav18 a,
body#page19 #nav19 a,
body#page20 #nav20 a,
body#page21 #nav21 a,
body#page22 #nav22 a,
body#page23 #nav23 a,
ul.MenuBarVertical a:hover, 
ul.MenuBarVertical a:focus
{
display:block; 
width:192px; 
color:#FFFFFF; 
font-weight:bold; 
text-indent:23px; 
background:#000061 url(../images-design/bg_nav.gif) 0% 0% no-repeat;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarVertical a.MenuBarItemHover
{
display:block; 
color:#000000; 
font-weight:bold;
background:#E5E3CC url(../images-design/bg_submenu.gif) 0% 0% no-repeat;
}
ul.MenuBarVertical a.MenuBarItemSubmenuHover
{
display:block;  
color:#000000; 
font-weight:bold;
background:#E5E3CC url(../images-design/bg_submenu.gif) 0% 100% no-repeat;
padding-left:0px;
}
ul.MenuBarVertical a.MenuBarSubmenuVisible
{
display:block; 
color:#000000; 
font-weight:bold; 
background:#E5E3CC url(../images-design/bg_submenu.gif) 0% 100% no-repeat;
padding-left:0px;
}


/*******************************************************************************

 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
{}

ul.MenuBarVertical a.MenuBarItemSubmenu:hover
{
display:block; 
color:#FFFFFF; 
font-weight:bold; 
text-indent:23px;
background:url(../images-design/bg_openpage.jpg) no-repeat;
}

/* 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; 
width:192px;  
color:#FFFFFF; 
font-weight:bold; 
text-indent:23px;
background:url(../images-design/bg_openpage.jpg) no-repeat;
}

/*******************************************************************************

 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;
	}
}
