@charset "UTF-8";

/* This is a simplified vresion adapted from the following */

/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */



/* 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: 100%;
	cursor: default;
	width: auto;
}

ul.MenuBarHorizontal li
{
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 120px;
	float: left;
	padding-top: 8px;
	height: 25px;
	margin: 0px;
}

ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	padding: 4px 5px 4px 5px;
	color: #FFE7A8;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	font-family: Calibri, Arial, Helvetica, Sans-serif;
	
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	color: #FFFFFF;
	font-weight: bolder;
}



