@charset "UTF-8";

/* SpryMenuBarHorizontal.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, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	list-style-type: none;
	list-style-image:none;
	font-size: 100%;
	cursor: pointer;
	float: right;
	width: 735px;
	min-height:35px;
	_height: 35px;
	padding-top:5px;
	background-color:#292439;	
}
/* 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 a fixed width */
ul.MenuBarHorizontal li
{
	list-style-type: none;
	list-style-image:none;
	position: relative;
	text-align: left;
	cursor: pointer;
	width:105px; 
	/*width: 144px;*/ /*<<<recomment in when removing tab and comment out width above*/
	float: left;
	padding: 0px;
	margin-right:3px;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-image:none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 186px;
	position: absolute;
	margin: 2px 0px 0px 0px;
	left: -1000em;	
	/*border-top:1px solid #655D83;*/
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 250px;
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Menu items */
ul.MenuBarHorizontal a
{
	display: block;
	width:105px;
	/*width:144px;*/  /*<<<recomment in when removing tab and comment out width above*/
	cursor: pointer;
	text-decoration:none;
	text-align:center;
	background-image:url(../images/button-w105.gif); 
	/*background-image:url(../images/button-w144.gif);*/ /*<<<recomment in when removing tab and comment out background image above*/
	background-position:top left;
	background-repeat:no-repeat;
	min-height:35px;
	_height: 35px;
	color:#292439;
	padding-top:8px;
	font-weight:bold;	
}

ul.MenuBarHorizontal a:hover
{
	color: #FFFFFF;		
}

li.MenuBarItemSubmenu2 a {
	margin:0;
	/*border-left:1px solid #655D83;
	border-right:1px solid #655D83;
	border-bottom:1px solid #655D83;*/
	padding:2px;
	color:#FFFFFF;
	background-color:#958DB3;
	background-image:none;
	min-height:15px;
	_height: 15px;
	width:180px;
	text-align:left;
}

li.MenuBarItemSubmenu2 a:hover {
	color:#655D83;
}

/*******************************************************************************

 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.MenuBarHorizontal 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.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: none;
	}
}

