@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

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

/* 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
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	float: left;
}

/* Set height of each menu item, as well as the main background image sprite. Background position will be changed based on menu item ID */
ul.MenuBarHorizontal li a {
	height: 66px;	
	text-indent: -9999px;
	width: 106px;
}


/* 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
{
	background: #bac8d3 url('../images/structure/nav/subnav_bg.png') repeat-x;
	margin: 0;
	padding: 10px 10px;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	text-indent: 0;
	position: absolute;
	width: 380px;
	left: -1000em;
}

ul.MenuBarHorizontal ul#subnavPeople {
	width: 500px;
}
/* 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;
}

ul.MenuBarHorizontal li ul li {
	
}

/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal li ul li a 
{
	width: 165px;
	background: url('../images/structure/subnav_arrow.png') no-repeat 0px 8px;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.2em;
	color: #fff;
	vertical-align: middle;
	position:relative;
	text-indent: 5px;
	height: auto;
	padding: 5px 5px 5px 10px;
	vertical-align: middle;
}

ul.MenuBarHorizontal li ul#subnavPeople li a {
	width: 220px;	
}


/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
}
/* 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 are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	text-decoration: none;
}


/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal li ul a.MenuBarItemHover, ul.MenuBarHorizontal li ul a.MenuBarItemHover:hover
{
	color: #000;
	height:auto;
	background: url('../images/structure/subnav_arrow_hover.png') no-repeat 0px 8px;
}



