.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
.StyledMenu ul
{
}

/* Top tier */
.StyledMenu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    width: 9em;
}

/* 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. */
.StyledMenu ul.AspNet-Menu ul
{
    left: 8.9em;
    z-index: 400;
    padding-top: 8px;
}

.StyledMenu ul.AspNet-Menu ul ul
{
    width: 11.5em;
    left: 10.4em;
}

/* Within each menu item is a link or a span, depending on whether or not the MenuItem has defined it's */
/* NavigateUrl property. By setting a transparent background image here you can effectively layer two images */
/* in each menu item.  One comes from the CSS rule (above) governing the li tag that each menu item has. */
/* The second image comes from this rule (below). */
.StyledMenu ul.AspNet-Menu li a,
.StyledMenu ul.AspNet-Menu li span
{
	font-weight: bold;
}


/* While you hover over a list item (li) you are also hovering over a link or span because */
/* the link or span covers the interior of the li.  So you can set some hover-related styles */
/* in the rule (above) for the li but set other hover-related styles in this (below) rule. */
.StyledMenu ul.AspNet-Menu li a:hover,
.StyledMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
	text-decoration: underline !important;
}

.StyledMenu ul.AspNet-Menu ul li:hover a, 
.StyledMenu ul.AspNet-Menu ul li:hover span, 
.StyledMenu ul.AspNet-Menu ul li.AspNet-Menu-Hover a,
.StyledMenu ul.AspNet-Menu ul li.AspNet-Menu-Hover span,
.StyledMenu ul.AspNet-Menu ul li:hover li:hover a, 
.StyledMenu ul.AspNet-Menu ul li:hover li:hover span, 
.StyledMenu ul.AspNet-Menu ul li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.StyledMenu ul.AspNet-Menu ul li.AspNet-Menu-Hover li.AspNet-Menu-Hover span,
.StyledMenu ul.AspNet-Menu ul li:hover li:hover ul a:hover, 
.StyledMenu ul.AspNet-Menu ul li:hover li:hover ul span.Asp-Menu-Hover, 
.StyledMenu ul.AspNet-Menu ul li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.StyledMenu ul.AspNet-Menu ul li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
	text-decoration: underline !important;
}


.StyledMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
	text-decoration: underline !important;
}


/* -------------------------------------------------------------------------- */
/* 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. */
.StyledMenu .AspNet-Menu-Horizontal
{
	background: url("../Images/menu_bg.gif") repeat-x scroll 0 0 transparent;
	height:28px;
}

/* 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. */
.StyledMenu .AspNet-Menu-Horizontal ul.AspNet-Menu
{
	width: 100%;
	margin: 0;
}

/* 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. */
.StyledMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    /* width: 15em; SG width of sub menu items */ 
    left: 0;
}

.StyledMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{

    top: -0.3em;
    width: 11.75em;
}

/* Generally, you use this rule to set style properties that pertain to all menu items. */
/* One exception is the width set here.  We will override this width with a more specific rule (below) */
/* That sets the width for all menu items from the second tier downward in the menu. */
.StyledMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
	width: 110px;
    text-align:center;
	margin-top: 3px;
	padding-top: 2px;
	margin-bottom: 3px;
	border-left: solid 2px white;
}

/* 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. */
.StyledMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
	background: url(../Images/submenubg.png) 0 0; /* SG Background for sub menu */
	margin: 0px;
    text-align:left;
    padding-top: 0px;
    padding-left: 15px;
    width: 12em;
    height: 26px;
}

.StyledMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li a,
.StyledMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li span
{
	padding-top: 4px;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
/*
.StyledMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.StyledMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span,
.StyledMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren a,
.StyledMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren span
{
	padding-top: 3px;
}
*/

.StyledMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul li
{

    width: 11em;
}

/* Third tier menus have to be positioned differently than second (or top) tier menu items because */
/* they drop to the side, not below, their parent menu item. This is done by setting the last margin */
/* value (which is equal to margin-left) to a value that is slightly smaller than the WIDTH of the */
/* menu item. So, if you modify the rule above, then you should modify this (below) rule, too. */
.StyledMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li ul li ul
{

	display:none;
    margin: 0.25em 0 0 -11.75em;
}

.StyledMenu .AspNet-Menu-Selected
{
}

.StyledMenu .AspNet-Menu-ChildSelected
{
}

.StyledMenu .AspNet-Menu-ParentSelected
{

}
