/* $Revision$ */
/* Top Level Menu Font Settings */
div.mBar,
div.mBar a.mBtn {
	font-family: Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	/* color: $font_color; */
	color: black;
	-moz-user-select: none;
}

/* Sub Menu Font Settings */
div.mnu,
div.mnu a.mItem {
	font-family: Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	/* color: $sub_font_color; */
	color: black;
	-moz-user-select: none;
}

/* Top Level Menu Background Settings */
div.mBar {
	/* background-color: $background_color; */
	/* border: 2px groove $background_color; */
	background-color: #B8B8B8;
	border: 2px groove #B8B8B8;
	border-top-style: none;
	padding: 4px 2px 4px 2px;
	text-align: left;
	font-size: 0.7em;
}

/* Top Level Menu Item Background Settings */
div.mBar a.mBtn {
	background-color: transparent;
	/* border: 1px solid $background_color; */
	/* color: $font_color; */
	border: 1px solid #B8B8B8;
	color: black;
	cursor: default;
	left: 0px;
	margin: 1px;
	padding: 2px 6px 2px 6px;
	position: relative;
	text-decoration: none;
	top: 0px;
	z-index: 100;
}

/* Top Level Menu Item Mouse Over Settings */
div.mBar a.mBtn:hover {
	background-color: transparent;
	/* border: 1px outset $background_color; */
	/* color: $font_color; */
	border: 1px outset #B8B8B8;
	color: black;
}

/* Top Level Menu Selected Settings
 *  and 
 * Top Level Menu Selected Mouse Over Settings
 * mBtnA is the class for when the menu is clicked/depressed
 */
div.mBar a.mBtnA,
div.mBar a.mBtnA:hover {
	/* border: 1px inset $background_color; */
	border: 1px inset #B8B8B8;
	left: 1px;
	top: 1px;
	z-index: 101;
}

/* Sub Menu Background Settings */
div.mnu {
	/* background-color: $sub_background_color; */
	/* border: 2px outset $sub_background_color; */
	font-size: 0.7em;
	background-color: #B8B8B8;
	border: 2px outset #B8B8B8;
	left: 0px;
	padding: 0px 1px 1px 0px;
	position: absolute;
	top: 0px;
	visibility: hidden;
	/* menus should be seen on top of everything */
	z-index: 100000;
}

/* Sub Menu Item Font Settings */
div.mnu a.mItem {
	/* color: $sub_font_color; */
	color: black;
	cursor: default;
	display: block;
	padding: 3px 1em;
	text-decoration: none;
	white-space: nowrap;
}

/* Sub Menu Item Mouse Over Settings */
div.mnu a.mItem:hover, div.mnu a.mItemH {
	background-color: #888888;
	color: #ffffff;
}

/* Sub Menu Text Settings
 * For submenu items that have a submenu
 */
div.mnu a.mItem span.mItemT {
}

/* Sub Menu Arrow Settings
 * For submenu items that have a submenu
 */
div.mnu a.mItem span.mItemA {
	margin-right: -.75em;
}

/* Sub Menu Separator Settings */
div.mnu div.mItemS {
	/* border: 1px inset $sub_background_color; */
	border: 1px inset #B8B8B8;
	margin: 4px 2px;
}
