﻿.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
{

}

/* 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
{
    line-height: 40px;
    margin: 0px 3px 0px 3px;
    border-right: 1px solid #1cbafc;
    border-left: 1px solid #1cbafc;
}

.MainMenu ul.AspNet-Menu li
{
}

/* 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
{
    padding: 0px 10px 0px 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
{
    color: #ffffff;
    background-image: none;
}

/* When you hover over a menu item, this rule comes into play. */
/* Browsers that do not support the CSS hover pseudo-class, use JavaScript to dynamically change the */
/* menu item's li tag so it has the AspNet-Menu-Hover class when the cursor is over that li tag. */
/* See MenuAdapter.js (in the JavaScript folder). */
.MainMenu ul.AspNet-Menu li:hover, 
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
}

/* 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
{
    text-decoration: underline;
    background: transparent url(images/menuover2.png) 50% 50%;
    _background-image: none;
}

/* 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
{
    
}

.MainMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover,
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span.Asp-Menu-Hover
{
}

/****** SELECTED ******/

/* generic selected li */
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Selected
{
}

/* 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
{
    color: #002f50;
    background: transparent url(images/menuover2.png) 50% 50%;
}

/* 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;
}