/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
/* Adapted for use by Wild Iris Medical Education. S. MacDonald, June 2009 */

/*******************************************************************************
 LAYOUT INFORMATION: describes box model, positioning, z-order
 *******************************************************************************/

/* WIME MENU BAR */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/* MENU ITEMS */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: .7em;
	font-weight:bold;
	letter-spacing:1px;
	position: relative;
	text-align: left;
	width: 147px;
	float: left;
	border-right:1px solid #5ba356;
}
/* SUBMENU ITEMS */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 1.5em;
	z-index: 1020;
	cursor: default;
	width: 10em;
	position: absolute;
	left: -1000em;
}
/* SUBMENU visibility; class designation MenuBarSubmenuVisible, set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;	
}
/* SUBMENU; list item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 15em;
	font-weight:normal;
	letter-spacing:normal;
}

/*******************************************************************************
 DESIGN INFORMATION: describes color scheme, borders, fonts
 *******************************************************************************/

/* SUBMENU CONTAINER BORDER*/
ul.MenuBarHorizontal ul li
{
	border-top:1px solid #bcd793;
	border-right:1px solid #fff;
	border-bottom:1px solid #fff;
	border-left:1px solid #fff;
}

/* MENU AND SUBMENU LIST ITEMS */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	padding:3px 0 2px 20px;
	color: #333333;
	background-color: #bcd793;
	text-decoration: none;
}

/* COLOR OF ITEMS HOVERED ON AND SUBMENUS HOVERED ON */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #fff;
	color: #5ba356;
}

/*******************************************************************************
 SUBMENU INDICATION: styles if there is a submenu under a given menu item
 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-image: url(../images/SpryAssets/SpryMenuDown.gif);
	background-repeat: no-repeat;
	background-position: 5% 50%;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-image: url(../images/SpryAssets/SpryMenuRight.gif);
	background-repeat: no-repeat;
	background-position: 5% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-image: url(../images/SpryAssets/SpryMenuDownHover.gif);
	background-repeat: no-repeat;
	background-position: 5% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(../images/SpryAssets/SpryMenuRightHover.gif);
	background-repeat: no-repeat;
	background-position: 5% 50%;
}

/********************
 BROWSER HACKS
 ********************/

/* 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;
	}
}
