﻿.AYDstyleMenu ul.AspNet-Menu /* Tier 1 */
{
     font-size:10px;
     font-family:Tahoma;
}




/***** Main Item with no sub menu *****/
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-Leaf
{
    border-width:0px;
    margin:0 8px 0 8px; 
}
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a
{
    padding:1px;
    color:#ccc;
}
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-Leaf:hover
{
    border-bottom:3px solid #000;
}
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-Leaf:hover a
{
    color:#000;
}




/***** Main Item with sub menu *****/
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren
{
    border-width:0px;
    margin:0 8px 0 8px;      
}
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren a
{
     padding:1px;
     color:#ccc;
}
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren:hover
{
    border-bottom:3px solid #000;
}
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren:hover a
{
    color:#000;
}




/***** Main Item's sub menu style *****/
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren ul
{
    font-size:11px;      
    border-width:0px;
    background-color:#333;
    filter:alpha(opacity=90); opacity:0.90;
    margin:3px 0 0 0;   
    padding:6px 0 6px 0;
    width:200px;
}
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li.AspNet-Menu-Leaf
{        
}
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li.AspNet-Menu-Leaf:hover 
{
    border-bottom-width:0px;
    background-color:#ed2024;    
}
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li.AspNet-Menu-Leaf a
{
    color:#fff;
    padding:3px 0 3px 8px;
    border-left:1px solid #fff;  
    width:172px;
}
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li.AspNet-Menu-Leaf:hover a
{
}




/***** Sub menu item style (if it has it's own submenu items) *****/
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li.AspNet-Menu-WithChildren
{
    z-index:2;  
}
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li.AspNet-Menu-WithChildren
{    
    width:200px;   
}
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li.AspNet-Menu-WithChildren a
{
    color:#467dd1;
    padding:3px 0 3px 8px;
    border-left:1px solid #a6c1ea;
}
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li.AspNet-Menu-WithChildren:hover a
{
    background-color:#efefef;
    color:#183697;
}




/***** Sub-sub menu *****/
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li.AspNet-Menu-WithChildren ul  /* Tier 3+ */
{
    z-index:3;
    font-size:10px;
    top:-6px;
    left:150px;
    padding:6px 0 5px 0;
}

.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li.AspNet-Menu-WithChildren ul li.AspNet-Menu-Leaf a
{
    color:#467dd1;
    padding:3px 0 3px 8px;      
    background-color:#fff;
}

.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li.AspNet-Menu-WithChildren ul li.AspNet-Menu-Leaf:hover a
{
    background-color:#efefef;
    color:#1d4480;
}




/***** Selected *****/
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-Selected
{
     border-bottom:3px solid #ed2024;
}
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-Selected a
{
     color:#ed2024;
}


.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-ChildSelected 
{
    border-bottom:3px solid #ed2024;
}
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-ChildSelected a
{
    color:#ed2024;
}
.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-ChildSelected li.AspNet-Menu-Selected
{
    border-bottom-width:0px;
    background-color:#000;
}


.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-ChildSelected li.AspNet-Menu-ChildSelected 
{
    border-bottom-width:0px;
    background-color:#ed2024;
}


.AYDstyleMenu ul.AspNet-Menu li.AspNet-Menu-ChildSelected ul li.AspNet-Menu-ChildSelected ul li.AspNet-Menu-Selected a
{
    background-color:#efefef;
}







/* admin menu style starts here */



.AYDadminStyleMenu .AspNet-Menu-Vertical
{
    position:relative;
    left: 0;
    z-index: 300;
    font-size:10px;
}

/* 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... */
.AYDadminStyleMenu ul
{
    background-color:inherit;
}

/* Top tier */
.AYDadminStyleMenu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    width:122px;
}

/* 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. */
.AYDadminStyleMenu ul.AspNet-Menu ul
{
    width: 180px;
    left: 105px;
    top: 2px;
    z-index: 400;
    background-color:#666;
    border-left:1px solid #fff;
}

.AYDadminStyleMenu ul.AspNet-Menu ul ul
{
    width: 11.5em;
    left: 10.4em;
}

/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
.AYDadminStyleMenu ul.AspNet-Menu li
{
    background:inherit;
}

/* 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). */
.AYDadminStyleMenu ul.AspNet-Menu li a,
.AYDadminStyleMenu ul.AspNet-Menu li span
{
    color: #fff;
    font-weight: bold;
    padding: 0 0 1px 4px;
    border:0;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.AYDadminStyleMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.AYDadminStyleMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
    background-image: none;
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.AYDadminStyleMenu ul.AspNet-Menu li a img
{
    border-style: none;
    vertical-align: middle;
}

/* 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). */
.AYDadminStyleMenu ul.AspNet-Menu li:hover, 
.AYDadminStyleMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    background:#ed2024;
}

.AYDadminStyleMenu ul.AspNet-Menu li:hover a, 
.AYDadminStyleMenu ul.AspNet-Menu li:hover span, 
.AYDadminStyleMenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.AYDadminStyleMenu ul.AspNet-Menu li.AspNet-Menu-Hover span,
.AYDadminStyleMenu ul.AspNet-Menu li:hover li:hover a, 
.AYDadminStyleMenu ul.AspNet-Menu li:hover li:hover span, 
.AYDadminStyleMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.AYDadminStyleMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span,
.AYDadminStyleMenu ul.AspNet-Menu li:hover li:hover ul a:hover, 
.AYDadminStyleMenu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover, 
.AYDadminStyleMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.AYDadminStyleMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: White;
}

.AYDadminStyleMenu ul.AspNet-Menu li:hover ul a, 
.AYDadminStyleMenu ul.AspNet-Menu li:hover ul span, 
.AYDadminStyleMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.AYDadminStyleMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
.AYDadminStyleMenu ul.AspNet-Menu li:hover li:hover ul a, 
.AYDadminStyleMenu ul.AspNet-Menu li:hover li:hover ul span, 
.AYDadminStyleMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.AYDadminStyleMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
{
    color: White;
}

/* 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. */
.AYDadminStyleMenu ul.AspNet-Menu li a:hover,
.AYDadminStyleMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: White;
    background: transparent url(activeArrowRight.gif) right center no-repeat;
}

.AYDadminStyleMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    background-image: none;
}