﻿/* set the position of the nav */
.PrettyMenu .AspNet-Menu-Vertical
{
    position:relative;
    top: 0px;
    left: 0px;
    z-index: 300;
         color:White;
         text-align:center;
}
/* set the width of the nav */
.PrettyMenu ul.AspNet-Menu, 
.PrettyMenu ul.AspNet-Menu ul
{
    width: 173px;text-align:center;
}
/* This rule effectively changes our top level in the vertical side nav... */
.PrettyMenu ul.AspNet-Menu li
{
     width: 180px;
     height:auto;
     background : #009ED9;
     margin-bottom:7px;
     color:White;
     text-align:left;
     background-image: URL('images/bg_nav.gif');
     background-position:left top;
     background-repeat:repeat-x;
     
     
     
}
/* This rule effectively changes our 2nd level in the vertical side nav... */
.PrettyMenu ul.AspNet-Menu ul
{
    left: 172px;
    top: 0px;
    border: 1px solid #7BC618;
    visibility:hidden;
}
.PrettyMenu ul.AspNet-Menu ul ul,
.PrettyMenu ul.AspNet-Menu ul ul li,
.PrettyMenu ul.AspNet-Menu ul ul li a,
.PrettyMenu ul.AspNet-Menu ul ul li span
{
    width: auto;
    white-space:nowrap;
    background-color:White;
}
/* This rule effectively changes our links and arrows within in the vertical side nav... */
.PrettyMenu ul.AspNet-Menu li a,
.PrettyMenu ul.AspNet-Menu li span
{
    font-family: "Trebuchet MS", Arial, Helvetica, Helv; 
    font-size: 11px; 
    color: white; 
    text-decoration:none;
    font-weight: bold;
    padding: 4px 2px 4px 8px;
    /*border:1px solid #DFF4C9;*/
    border-bottom: 0;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.PrettyMenu 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. */
.PrettyMenu ul.AspNet-Menu li a img
{
    border-style: none;
    vertical-align: middle;
}

/* When you hover over a menu item, this rule comes into play. */
.PrettyMenu ul.AspNet-Menu li:hover, 
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    color:Gray;
       background-image: URL('images/bg_nav_sel.gif');
     background-position:left top;
     background-repeat:repeat-x;
}

/* 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. */
.PrettyMenu ul.AspNet-Menu li a:hover,
.PrettyMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: White;
  text-decoration:underline;
   background-image: URL('images/bg_nav_sel.gif');
     background-position:left top;
     background-repeat:repeat-x;
}

.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
   background-image: URL('images/bg_nav_sel.gif');
     background-position:left top;
     background-repeat:repeat-x;
      color: white; text-decoration:none;
}
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf-Selected a
{ background-image: URL('images/bg_nav_sel.gif');
     background-position:left top;
     background-repeat:repeat-x;
       text-decoration:none;
}