@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.MenuBarHorizontal
{
	display: inline;
	width: 80px;
	font-family: "Trebuchet MS";
	font-size: 10px;

}
ul.MenuBarHorizontal li {
	display: inline;
	float: left;
}

/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	cursor: pointer;
	background-color: #8080FF;
	padding: 0.5em 0.75em;
	color: #FFFBF0;
	width: 80px;
	height: 20px;
	display: block;
	font-size: 10px;
}
ul.MenuBarHorizontal /* Menu items that have mouse over or focus have a blue background and white text */
 a:hover  
{
	background-color: #0000A0;
	color: #FFFFFF;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
}

