@charset "UTF-8";

/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* 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;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	float: left;
}

ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}



ul.MenuBarHorizontal ul {
	margin: 0;
	padding: 0;
	position: absolute;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	left: -1000em;
background: #222;
	}


ul.MenuBarHorizontal ul li {
float: none;
list-style-type: none;
background: #222;
margin: 0;
padding: .5em 1em;
width: 90px;
border-right: 0;
border-bottom: 1px dashed #ccc;
}

ul.MenuBarHorizontal ul li.last{
border: 0;}


ul.MenuBarHorizontal ul li a{
margin: 0;
padding: 0;}



/* 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;
}


