

/* 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: 1px;;
	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.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: auto;
	float: left;
}

#MenuBar1 li{
	font-size: 11px;
}
#MenuBar2 li{
	font-size: 10px;
	letter-spacing: -.1em;
}

/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 9px;
	z-index: 1020;
	cursor: default;
	width: 8.2em;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	/* width: 8.2em; */
	width: 11em;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Menu items no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	font-weight: bold;
	text-decoration: none;
}

a.menubar1subitem{
	background-color: #598958;
	padding: 5px 10px;
	color: #FFFFFF;
}
a.menubar1subitemfirst{
	background-color: #598958;
	padding: 6px 10px 5px 10px;
	color: #FFFFFF;
}
a.menubar2subitem{
	background-color: #FFFFFF;
	padding: 5px 10px;
	letter-spacing: normal;
	color: #014f0a;
}
a.menubar2subitemfirst{
	background-color: #FFFFFF;
	padding: 5px 10px 5px 10px;
	letter-spacing: normal;
	color: #014f0a;
}
/* Menu items that have mouse over or focus */
#MenuBar1 a:hover, #MenuBar1 a:focus
{
	color: #f2b200;
}
#MenuBar2 a:hover, #MenuBar2 a:focus
{
	color: #7f5e00;
}
/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

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

.MenuBarEnd{
	padding: 4px 6px;
	color: #FFFFFF;
}

.MenuBarItemSubmenu
{
	background-image: url(http://magazine.creativecow.net/images/mid01.jpg);
	background-repeat: no-repeat;
	background-position:right;
	color: #FFFFFF;
	padding: 4px 6px;
}
.MenuBar2ItemSubmenu
{
	background-image: url(http://magazine.creativecow.net/images/mid02.jpg);
	background-repeat: no-repeat;
	background-position:right;
	color: #014f0a;
	padding: 5px 6px;
}
.MenuBar2ItemSubmenu2
{
	background-image: url(http://magazine.creativecow.net/x.png);
	background-repeat: no-repeat;
	background-position:right;
	color: #014f0a;
	padding: 5px 6px;
}

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

 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.MenuBarHorizontal 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.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		/* background: #FFF; */
	}
}

