@charset "UTF-8";

/* SpryMenuBarVertical.css - Revision: Spry Preview Release 1.4 */

/* 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
{
	background: #FFFFFF;
	list-style-type: none;
	font-size: 17px;
	cursor: default;
	width: 302px;
	font-family: Arial, Helvetica, sans-serif;
	color: #666666;
	padding: 0px;
	margin: 0px;
	border: 0px solid #CCC;  /* Outermost menu container controls */
}

/* 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
{
	list-style-type: none;
	font-size: 18px;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 302px;
	padding: 0;
	color: #666666;
}
/* Submenus are a higher z-index, but they are initially off the right side of the screen (1000em) until called for.  */
ul.MenuBarVertical ul
{
	background: color #333333;
	padding: 0;
	list-style-type: none;
	font-size: 14px;
	position: absolute;
	z-index: 1020;
	cursor: default;
	right: 1000em;  /* Sends the menu into oblivion until mouse over calls for it */
	top: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 100%;
	border: 0px solid #CCC;  /* Outermost submenu container controls */
	color: #666666;
	background-image: url(../i/submenu_on.gif);  /* Controls the background of a submenu link */
	
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	right: 0px;  /* Sends the submenu to it's proper horizontal placement */
	color: #666666;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
{
	font-size: 14px;  /* Controls size of submenu fonts */
	width: 100px;  /* Controls width of the submenu */
	padding-bottom: 0px;
	color: #666666;
}

a.submenuLink:link {
	color: #666666;
}

a.submenuLink:hover {
	color: #000000;
}

a.submenuLink:visited {
	color: #666666;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/



/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
{
	background-image: url(../i/submenu_on.gif);  /* Controls the background of a submenu link */
	display: block;
	cursor: pointer;
	padding-top: 5px;  /* Controls padding around a submenu item ONLY */
	padding-right: 3px;/* Controls padding around a submenu item ONLY */
	padding-left: 6px;/* Controls padding around a submenu item ONLY */
	padding-bottom: 4px;/* Controls padding around a submenu item ONLY */
	color: #666666;  /* Controls font color of BOTH menu and submenu links */
	text-decoration: none;  /* Controls decoration of BOTH menu and submenu links */
	
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
	
	color: #000000; /* UNCLEAR */

}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
{
	
	color: #000000 !important; /* Turns the color of the text when moused over */
}

/*******************************************************************************

 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
{
	background: #FFFFFF;
	background-image: url(../i/button_off.gif);  /* Controls background of a menu link */
	background-repeat: no-repeat;  /* Controls background of a menu link */
	background-position: left top;  /* Controls background of a menu link */
	padding-left: 70px;   /* Controls padding of a menu link */
	margin-bottom: 17px;  /* Controls margin (spacing between the buttons) of a menu link */ 
	color: #666666;
}

/* 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
{
	background-image: url(../i/button_on.gif);  /* Controls background of a menu link on mouse over */
	background-repeat: no-repeat;  /* Controls background of a menu link on mouse over */
	background-position: left top;  /* Controls background of a menu link on mouse over */
	color: #000000;
}


ul.MenuBarVertical .HERE a.MenuBarItemSubmenu   /* To show what sections you are presently in. */
{
	background-image: url(../i/button_location.gif);  /* Controls background of a menu link on mouse over */
	background-repeat: no-repeat;  /* Controls background of a menu link on mouse over */
	background-position: left top;  /* Controls background of a menu link on mouse over */
	color: #666666;
}

ul.MenuBarVertical a:visited
{
       color: #666666;
}

ul.MenuBarVertical .HERE a.MenuBarItemSubmenuHover
{
       background: url(../i/button_on.gif) no-repeat left top;
       color: #000000;
}



/*******************************************************************************

 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;
	visibility: hidden; /* do not show the white box with "false" in it, make layout work */
	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: #FFFFFF;
	}
}

