﻿#mainnavigationcontent .SimpleMenu
{
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: left;
	width: 920px;
}

#topNavigationMenu .SimpleMenu
{
	padding: 0;
	margin: 0 auto;
	position: relative;
	left: -50px;
	text-align: left;
	width: 600px;
}

/* -------------------------------------------------------------------------- */
/* When the Menu control's Orientation property is Horizontal the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Horizontal. */
/* Note that the example menu in this web site uses absolute positioning to force the menu to occupy */
/* a specific place in the web page.  Your web site will likely use a different technique to position your */
/* menu.  So feel free to change all the properties found in this CSS rule if you clone this style sheet. */
/* There is nothing, per se, that is magical about these particular property value choices.  They happen to */
/* work well for the sample page used to demonstrate an adapted menu. */

.SimpleMenu .AspNet-Menu-Horizontal
{
    position:absolute;
    left: 0;
    top: 0;
    text-align: left;
    z-index: 300;
}

/* This rule controls the width of the top tier of the horizontal menu. */
/* BE SURE TO MAKE THIS WIDE ENOUGH to accommodate all of the top tier menu items that are lined */
/* up from left to right. In other words, this width needs to be the width of the individual */
/* top tier menu items multiplied by the number of items. */

.SimpleMenu .AspNet-Menu-Horizontal ul.AspNet-Menu
{
    width: 45em;
}

.SimpleMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li.AspNet-Menu-Leaf a
{
	text-transform: none;
	text-align: center;
}

.SimpleMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li.AspNet-Menu-WithChildren a
{
	height: 22px;
	text-align: center;
}
.SimpleMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li.AspNet-Menu-WithChildren li.AspNet-Menu-Leaf a
{
	height: 22px;
	text-align: left;
	padding-left: 5px;
}
/*	background-image: url('../../Images/nav_bg.jpg');
	background-repeat: repeat-x;
	text-transform: uppercase;
*/

.SimpleMenu .AspNet-Menu-Horizontal ul.AspNet-Menu .AspNet-Menu-Selected
{
	color: #321f38;
}

/* This rule effectively says: style all tiers EXCEPT THE TOP TIER in the menu this way... */
/* In other words, this rule can be used to style the second and third tiers of the menu without impacting */
/* the topmost tier's appearance. */
/* Remember that only the topmost tier of the menu is horizontal.  The second and third tiers are vertical. */
/* So, they need a much smaller width than the top tier.  Effectively, the width specified here is simply */
/* the width of a single menu item in the second and their tiers. */
.SimpleMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    width: 10.5em;
    left: 0px;
    top: 100%;
}

.SimpleMenuX ul.AspNet-Menu ul ul  /* Tier 3+ */
{
    top: -0.5em;
    left: 6em;
}

.SimpleMenu li /* all list items */
{
    background: transparent;
    padding: 0 18px 0 0;
}
/*     width: 8.5em; */

/* This rule establishes the width of menu items below the top tier.  This allows the top tier menu items */
/* to be narrower, for example, than the sub-menu items. */
/* This value you set here should be slightly larger than the left margin value in the next rule. See */
/* its comment for more details. */
.SimpleMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
    text-align:left;
    width: 10em;
    left: 0;
    padding: 0;
}

.SimpleMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul li
{
    width: 10em;
}

.SimpleMenu li:hover, /* list items being hovered over */
.SimpleMenu li.AspNet-Menu-Hover
{
    background: none;
}

.SimpleMenu a, /* all anchors and spans (nodes with no link) */
.SimpleMenu span
{
    color: #fff6bc;
    padding: 0;
    border: none;
    background-color: #7c954b;
    text-decoration: none;
	font-size: 10.5pt;
	font-weight: bold;
}

.SimpleMenu li.AspNet-Menu-Leaf a, /* leaves */
.SimpleMenu li.AspNet-Menu-Leaf span
{
    background-image: none !important;
}

.SimpleMenu li:hover a, /* hovered text */
.SimpleMenu li:hover span,
.SimpleMenu li.AspNet-Menu-Hover a,
.SimpleMenu li.AspNet-Menu-Hover span,
.SimpleMenu li:hover li:hover a,
.SimpleMenu li:hover li:hover span,
.SimpleMenu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.SimpleMenu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span,
.SimpleMenu li:hover li:hover li:hover a,
.SimpleMenu li:hover li:hover li:hover span,
.SimpleMenu li.AspNet-Menu-Hover li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.SimpleMenu li.AspNet-Menu-Hover li.AspNet-Menu-Hover li.AspNet-Menu-Hover span
{
    color: #321f38;
    background-color: #7c954b;
}

.SimpleMenu li:hover li a, /* the tier above this one is hovered */
.SimpleMenu li:hover li span,
.SimpleMenu li.AspNet-Menu-Hover li a,
.SimpleMenu li.AspNet-Menu-Hover li span,
.SimpleMenu li:hover li:hover li a,
.SimpleMenu li:hover li:hover li span,
.SimpleMenu li.AspNet-Menu-Hover li.AspNet-Menu-Hover li a,
.SimpleMenu li.AspNet-Menu-Hover li.AspNet-Menu-Hover li span
{
    color: #321f38;
    font-size: 9pt;
    font-weight: normal;
    background-color: #fff6bc;
    height: 22px;
    padding-left: 0px;
    padding-top: 6px;
}

.SimpleMenuX .AspNet-Menu-Selected /* this tier is selected */
{
    border: solid 1px #00ff00 !important;
}

.SimpleMenuX .AspNet-Menu-ChildSelected /* a tier below this one is selected */
{
	background-color: Fuchsia;
}

.SimpleMenuX .AspNet-Menu-ParentSelected /* a tier above this one is selected */
{
    border: solid 1px #0000ff !important;
}

.SimpleMenu .AspNet-Menu-WithChildren .AspNet-Menu-Leaf
{
	color: #321f38;
	font-weight: bold;
}
.SimpleMenu .AspNet-Menu-WithChildren .AspNet-Menu-Leaf a
{
	text-decoration: none;
	color: #321f38;
	font-weight: bold;
}
.SimpleMenu .AspNet-Menu-WithChildren .AspNet-Menu-Leaf a:visited
{
	text-decoration: none;
	color: #321f38;
	font-weight: bold;
}
.SimpleMenu .AspNet-Menu-WithChildren .AspNet-Menu-Leaf a:hover
{
	text-decoration: none;
	color: #e05d1c;
	font-weight: bold;
	background-color: #321f38;
}
