/* FLM SPRY HORIZONTAL MENU BAR */
@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
{
	list-style-type: none;
	cursor: default;
	padding: 0px;
	margin: 0px;
	float: right;
	width: auto;
}
/* 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: center;
	cursor: pointer;
	float: left;
}
/* Menu items are a light gray block with padding and no text decoration */
/* CHANGE COLOR IN MenuBarHorizontal a */
ul.MenuBarHorizontal a
{
	cursor: pointer;
	color: #FFFFFF;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding: 0px 15px;
	font-weight: normal;
	font-size: 15px;
	text-decoration: none;
	text-transform: lowercase;
	margin: 0px;
	display: block;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}
/* Menu items that have mouse over or focus have a blue background and white text */
/* CHANGE COLOR IN MenuBarHorizontal a:hover */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	color: #936241;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
}
