@charset "UTF-8";

/* SpryJoniMenuBar.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.JoniMenuBar
{
	margin: 0 50px 0 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.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.JoniMenuBar li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 110%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: auto;
	top: 30px;
	float: right;
	display: inline;	
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.JoniMenuBar ul
{
	border: 1px solid #CCC;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.JoniMenuBar a
{
	display: block;
	cursor: pointer;
	background-color: #424269;
	padding: 3px 12px 4px 12px;
	color: rgb(255, 255, 255);
	text-decoration: none;
	font-family: Arial, Geneva, Helvetica, sans-serif;
	font-weight: bold;
	border-style: solid;
	border-width: 1px;
	border-color: #998F8F;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.JoniMenuBar a:hover, ul.JoniMenuBar a:focus
{
	background-color: rgb(0, 0, 0);
	color: #FFF;
}


/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.JoniMenuBar iframe
{
	position: absolute;
	z-index: 1010;
}
/* 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.JoniMenuBar li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}
