@charset "UTF-8";

/* SpryMenuBarHorizontal.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, an auto width box with no margin or padding */
ul.MenuBarHorizontal2
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 800px;
	float: left;
}
/* 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.MenuBarActive2
{
	z-index: 1001;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal2 li
{
	margin: 0;
	padding: 0;
	width: auto;
	list-style-type: none;
	text-align: center;
	cursor: pointer;
	float: left;
	font-family: tahoma;
	font-size: 13px;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal2 a
{
	display: block;
	cursor: pointer;
	font-family: tahoma;
	font-size: 12px;
	font-weight: bold;
	padding: 0.4em 0.5em;
	color: #AA2020;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal2 a:focus,
ul.MenuBarHorizontal2 a.ActivePage
{
	background-color: #aa2020;
	color: #FFF;
}
ul.MenuBarHorizontal2 a:hover
{
	background-color: #888;
	color: #FFF;
}

