﻿.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/* This style sheet is intended to contain OFTEN CHANGED rules used when the Menu control adapter is enabled. */

/* Horizontal DIV Container */
.MainMenu .AspNet-Menu-Horizontal
{
    z-index: 1000;
    float: left;
}

/* This rule controls the width of the top tier of the horizontal menu. */
.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu
{
}

/* Use this rule create the common appearance of each menu list item. */
/* If using inline <li> then set sizing in next set of styles */
.MainMenu ul.AspNet-Menu li
{
    margin:0px 1px 0px 0px;
    padding: 0px;
    background: transparent url(images/right-bt.gif) no-repeat right top;
}

/* Each menu item is a link or a span, depending on whether or not the MenuItem has defined it's */
/* NavigateUrl property. */
/* If using inline <li> then set sizing in this set of styles */
.MainMenu ul.AspNet-Menu li a,
.MainMenu ul.AspNet-Menu li span
{
	text-decoration: none;
	color: #ffffff; 
	background: transparent url(images/left-btc.gif) no-repeat left top;
	padding:6px 10px 5px 10px;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and */
/*can be styled specially by this rule. */
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
}

/* hover over a menu item, this rule comes into play. */
.MainMenu ul.AspNet-Menu li:hover, 
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    color:#004483;
    background-image:url(images/right-on-bt.gif);
}

/* link properties when hovering over a li */
.MainMenu ul.AspNet-Menu li:hover a, 
.MainMenu ul.AspNet-Menu li:hover span, 
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover span
{
    background-image:url(images/left-on-btc.gif);
    color:#004483; 
    padding-bottom:5px;
}

/* 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 generic li but set other hover-related styles for links or spans in this (below) rule. */
.MainMenu ul.AspNet-Menu li a:hover,
.MainMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    /*background-image:url(images/left-on-btc.gif);
    color:#004483; 
    padding-bottom:5px;*/
}

.MainMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover,
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span.Asp-Menu-Hover
{
}

/*********************************************************/
/* This rule effectively says: style all tiers EXCEPT THE TOP TIER in the menu this way... */
/* Remember that only the topmost tier of the menu is horizontal.  The second and third tiers are vertical. */
.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    width: 135px;
    left: 0px;
    top: 100%;
    border: solid 1px #000000;
    background: #011F43;
}

.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
    top: 5px;
    width: 135px;
    margin: 0 0 0 135px;
}


/* menu items below the top tier */
/* This value you set here should be slightly larger than the left margin value in the next rule. See */
/* its comment for more details. */
.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
    margin: 0px;
    padding: 0px;
    text-align:left;
    width: 100%;
    background-image: none;
    background-color: Transparent;
}

.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li a,
.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li span
{
    background-image: none;
    background-color: Transparent;
    color: #ffffff;
}

.MainMenu ul.AspNet-Menu ul li:hover, 
.MainMenu ul.AspNet-Menu ul li.AspNet-Menu-Hover
{
    color: #004483;
    background: #E8F5FB url(images/submenu-on-bt.gif) repeat-x;
    
}

.MainMenu ul.AspNet-Menu ul li a:hover,
.MainMenu ul.AspNet-Menu ul li span.AspNet-Menu-Hover,
.MainMenu ul.AspNet-Menu ul li span:hover
{
    background-image: none;
    background-color: Transparent;
    color:#004483; 
    padding-bottom:5px;
}

.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul li
{
}

/* 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. */
.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li ul li ul
{
    /*margin: -5px 0 0 120px;*/
}


/****** SELECTED ******/

/* generic selected li */
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Selected
{
    color:#004483;
    background-image:url(images/right-on-bt.gif);
}

/* generic selected li hover */
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Selected:hover
{
}

/* selected li link */
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Selected a,
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Selected span
{
    background-image:url(images/left-on-btc.gif);
    color:#004483; 
    padding-bottom:5px;
}

/* selected li link hover */
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Selected a:hover,
.MainMenu ul.AspNet-Menu li AspNet-Menu-Selected span.Asp-Menu-Hover
{
	/*text-decoration: underline;*/
}