﻿/* This style sheet is intended to contain OFTEN CHANGED rules used when the Menu control adapter is enabled. */

.sideMenu .AspNet-Menu-Vertical
{
    position: relative;
    top: 0px;
    left: 0px;
    z-index: 300;
}

.sideMenu ul.AspNet-Menu, 
.sideMenu ul.AspNet-Menu ul
{
    width: 154px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    background: #9e9e83;
}

/* 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. */
.sideMenu ul.AspNet-Menu li
{
    /*background:#4682B4 url(bg_nav.gif) repeat-x;*/
}

/* 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). */
.sideMenu ul.AspNet-Menu li a,
.sideMenu ul.AspNet-Menu li span
{
    color: #ffffff;
    padding: 4px 2px 4px 18px;
    border-bottom: 0;
    background: #9e9e83 url(menuanim.gif) 0px 0px no-repeat;
    display: block;
    width: 134px;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.sideMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.sideMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
    /*background-image: none;*/
}

.sideMenu ul.AspNet-Menu li.AspNet-Menu-Current a
{
    background-color: #6c6c50;
    background-image: none;
}

.sideMenu ul.AspNet-Menu li:hover, 
.sideMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    background: #6c6c50;
}

.sideMenu ul.AspNet-Menu li a:hover,
.sideMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: #ffffff;
    /*background: transparent url(activeArrowRight.gif) right center no-repeat;*/
}

.sideMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    /*background-image: none;*/
}

/*because the stupid IE doesn't calculate CSS rules correctly,
I had to use the id's instead of classes to style*/
#sidenav a
{
  color: #ffffff;
}

#sidenav a:hover, #animmenu2 a:hover, #animmenu3 a:hover {
color: #ffffff;
}

html>body .examplediv a:hover {
background-color:#AEB7C6;
/*because the stupid IE6 slows to a crawl when background-color is set on hover,
we hide the rule from it, IE7 is not effected, hooray!*/
}

/*
#animmenu.noscript a:hover, #animmenu3.noscript a:hover {
background: #AEB7C6 url(web/images/menuanim.png) 0px -420px;*/
/*This style is used for hovering when user does not enable javascript*/
/*}

#animmenu2.noscript a:hover {
background: #AEB7C6 url(web/images/menusingle.png) 5px 50% repeat-x;*/
/*This style is used for hovering when user does not enable javascript*/
/*}*/
