@charset "UTF-8";

/* SpryMenuBasic.css - version 0.5 - Spry Pre-Release 1.7 */

/* Copyright (c) 2010. Adobe Systems Incorporated. All rights reserved. */

/* This is the css for a basic Spry 2 MenuBar.
 * The first section is basic layout, and should in general not need to be  modified.
 * The final section of this file specifies images to use for arrows for the menu. These
 * are either down or right-pointing as required by horizonatal or vertical layouts. You
 * can either replace the referenced images with your own, or you can modify these rules to 
 * point to your won images.
 *
 * These rules are supplemented by those specified in the OAM file for inclusion in the html document,
 * or alternatively, the file SpryMenuBarBasicSkin.css which is included with this widget. */
 
/* Resets for ul and li in menus */
.MenuBar  .MenuBarView, .MenuBar  .SubMenuView {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

/*** Layout Rules for Basic Menu ***/

/* Top Level MenuBar
 * Because we float the MenuItemContainers in the MenuBar, we have to make sure the menubar wrapper expands to hold them all.
 * The simplest way is to float the widget wrapper 
 */
.MenuBar { /* overridden by .MenuBarVertical version of this rule */
	float: left;
}
.MenuBarVertical {
	float:left;	/* Used to make menubar shirink to fit contents */
	width:auto;
}

/* SubMenus */
.MenuBar .SubMenu {
	display: block;
	position: absolute;
	top: 0;
	left: -10000px; /* By default, all non-visible submenus are hidden by moving way to the west */
	padding: 0;
}
/* First level of submenus - pulls down from horizontal menubar, right from vertical */
.MenuBar .SubMenuVisible{ /* overridden by .MenuBarVertical version of this rule */
	top: 100%;
	left: 0px;
}
.MenuBarVertical .SubMenuVisible {
	top: 0px;
	left: 100%;
}
/* All submenus below level 1. All pullout to the right */
.MenuBar .SubMenu .SubMenuVisible {
	display: block;
	position: absolute;
	top: 0px;
	left: 100%;
}

/* MenuItems, MenuItemLabels, and MenuItemContainers */
.MenuBar .MenuItem {
	display: block;
	text-decoration: none;
	border-width: 2px;
	background-image: -webkit-linear-gradient(270deg,rgba(85,85,85,1.00) 0%,rgba(34,34,34,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(85,85,85,1.00) 0%,rgba(34,34,34,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(85,85,85,1.00) 0%,rgba(34,34,34,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(85,85,85,1.00) 0%,rgba(34,34,34,1.00) 100%);
	color: #B4B2B2;
	text-shadow: 1px 1px #070707;
}
.MenuBar .MenuItemLabel {
	display: block;
}
.MenuBar .MenuItemContainer {
	position: relative;
	white-space: nowrap;
	float: left; /* overridden by .MenuBarVertical version of this rule */
	display: block;
	padding: 0;
	margin: 0;
}
.MenuBarVertical .MenuItemContainer {
	float:none;
}
.MenuBar .SubMenu .MenuItemContainer {
	float: none;
}

/* Layout Rules needed by IE6 - excluded from other browsers */
.SpryIsIE6 .SubMenu .SubMenu {
	width:100px;
	height:1%;
}
.SpryIsIE6 .MenuBar .SubMenuVisible .SubMenuVisible {
	width: auto;
}
/* End Layout section */

/* 
* Arrows - This section specifies arrow images for a submenu dropdowns in Basic SpryMenu. 
*/
.MenuBar .MenuItemLabel{
	background-image: none;
}

/* For all arrows used here, we depend upon the image to push itself away from right edge, or the user can add right padding to the MenuItem */
.MenuBar .MenuItemWithSubMenu .MenuItemLabel{
	background-position: right center;
	background-repeat: no-repeat;
}
.MenuBar .MenuItemHover.MenuItemWithSubMenu .MenuItemLabel{
	background-position: right center;
	background-repeat: no-repeat;
	/* [disabled]background-color: #AFAAAA; */
}
.MenuBarVertical .MenuItemHover.MenuItemWithSubMenu .MenuItemLabel{
	background-position: right center;
	background-repeat: no-repeat;
	/* [disabled]background-color: #8A8A8A; */
}
.MenuBarVertical .MenuItemWithSubMenu .MenuItemLabel{
	background-position: right center;
	background-repeat: no-repeat;
}
.MenuBar .SubMenu .MenuItemWithSubMenu .MenuItemLabel{
	background-position: right center;
	background-repeat: no-repeat;
}
.MenuBar .SubMenu .MenuItemHover.MenuItemWithSubMenu .MenuItemLabel{
	background-position: right center;
	background-repeat: no-repeat;
}

/* IE6 rules for Arrows */
.SpryIsIE6 .MenuBar .MenuItemWithSubMenuHover .MenuItemLabel{
	background-position: right center;
	background-repeat: no-repeat;
}
.SpryIsIE6 .MenuBarVertical .MenuItemWithSubMenuHover .MenuItemLabel{
	background-position: right center;
	background-repeat: no-repeat;
}
.SpryIsIE6 .MenuBar .SubMenu .MenuItemWithSubMenuHover .MenuItemLabel{
	background-position: right center;
	background-repeat: no-repeat;
	/* [disabled]color: #7CB527; */
}
