@charset "UTF-8";

/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6 */

/* 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.MenuBarHorizontalright
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: auto;
}
/* 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.MenuBarActiveright
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontalright li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: right;
	cursor: pointer;
	width: 95px;
	float: right;
}

/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontalright a
{
	display: block;
	cursor: pointer;
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
	padding-top: 0.8em;
	padding-right: 0.75em;
	padding-bottom: 0.2em;
	padding-left: 0.75em;
	font-size: 11px;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontalright a:hover, ul.MenuBarHorizontal a:focus
{
	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
{
	ul.MenuBarHorizontalright li.MenuBarItemIE
	{
		display: inline;
		f\loat: right;
	}
}
