@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
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width:900px;
	background-color: #DEF9F8;




}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{       display:inline;
	margin: 0;
	padding-left:19px;
	background-color: #DEF9F8;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
   
	float: left;	
	
	border-top:1px;
	border-top-color: #999;
	border-top-style: solid;
	border-bottom:1px;
	border-bottom-color: #999;
	border-bottom-style: solid;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{

	cursor: pointer;

	color: #999;
	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	font-size:10px
}

ul.MenuBarHorizontal li:hover
{
	background-color: #000;
	color: #FFF;
}
/* 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: #DEF9F8;
	}
}
