@charset "UTF-8";

/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 --------------MARQUETTE-------------*/

/* 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;
	padding: 0;
	list-style-type: none;
	font-size: 1em;
	float: left;
	width: auto;
	/*width: 900px;*/
	/*border-bottom: 1px solid #435c39;*/
	/*background-image: url(../images/bg_major_nav.jpg);*/
}
/* 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: .75em;
	position: relative;
	text-align: left;
	/*width: 8em;*/
	float: left;
}
ul.MenuBarHorizontal li.MLleft
{
	width: 25em;
	padding: 0;
	margin: 4px 0 4px 0;
	border-right: 1px solid #94a68d;
}
ul.MenuBarHorizontal li.MLsmall
{
	width: 6em;
	padding: 0;
	margin: 4px 0 4px 0;
	border-left: 1px solid #4a663f;
	border-right: 1px solid #94a68d;
}
ul.MenuBarHorizontal li.MLstandard
{
	width: 8em;
	margin: 4px 0 4px 0;
	padding: 0;
	border-left: 1px solid #4a663f;
	border-right: 1px solid #94a68d;
}
ul.MenuBarHorizontal li.MLright
{
	width: 15em;
	padding: 0;
	margin: 4px 0 4px 0;
	border-left: 1px solid #4a663f;
}

/* 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;
	z-index: 1020;
	width: 15em;
	position: absolute;
	left: -1000em;
	background-color: #dde5da;
}
/* 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.MenuBarSubmenuVisible li
{
	width: 20em;
	text-align: left;
	border: 1px solid #bdccb8;

}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	display: block;
	padding: 0.5em 0.75em;	
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	margin: 0;
	font-family: Georgia, Times, 'Times Roman', serif;
}
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible a
{
	display: block;
	padding: .6em;	
	color: #666666;
	background-color: #dde5da;
	margin: 0;
	text-decoration: none;
	font-size: 1.25em;
}

/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	color: #bdccb8;
}
ul.MenuBarHorizontal ul a:hover, ul.MenuBarHorizontal ul a:focus
{
	color: #000000;
	background-color: #bdccb8
}



/*******************************************************************************

 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;
}
/* 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: #FFF;*/
	}
}
