﻿/* set the position of the nav */
.PrettyMenu1 .AspNet-Menu-Vertical
{
    position:relative;
    top: 0px;
    left: 0px;
    z-index: 300;
}
/* set the width of the nav */
.PrettyMenu1 ul.AspNet-Menu, 
.PrettyMenu1 ul.AspNet-Menu ul
{
    width: 156px;
}
/* This rule effectively changes our top level in the vertical side nav... */
.PrettyMenu1 ul.AspNet-Menu li
{
    
     width: 156px;
margin-bottom:2px;
        border-top: 1px solid #DDDDDD;
          border-left: 1px solid #DDDDDD;
            border-right: 1px solid #DDDDDD;
            border-bottom: 1px solid #DDDDDD;
      background-color:#F2F2F2;
    background-image:url('images/bg_navfill.gif');
    background-repeat:repeat-y;
     /*background : #9DE292; */
}
/* This rule effectively changes our 2nd level in the vertical side nav... */
.PrettyMenu1 ul.AspNet-Menu ul
{
    left: 156px;
    top: -1px;
     background-image:url('images/bg_navfill.gif');
    background-repeat:repeat-y;
    border-left:
}

/* This rule effectively changes our links and arrows within in the vertical side nav... */
.PrettyMenu1 ul.AspNet-Menu li a,
.PrettyMenu1 ul.AspNet-Menu li span
{
    font-family: Verdana, Arial, Helvetica, Helv; font-size: 12px; color: #E55B0B; text-decoration:none;
    padding: 8px 8px 8px 8px;
    /*border:1px solid #DFF4C9;*/
    border-bottom: 0;font-weight: bold;

}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.PrettyMenu1 ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.PrettyMenu1 ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
       border-bottom:solid 1px transparent;
    background-image: none;font-weight: bold;
    font-family: Verdana, Arial, Helvetica, Helv; font-size: 12px; color: #E55B0B; text-decoration:none;
}
.PrettyMenu1 ul.AspNet-Menu .AspNet-Menu-Leaf-Selected
{
  color:#293BAB;
   border-bottom:solid 1px #293BAB;
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.PrettyMenu1 ul.AspNet-Menu li a img
{
    border-style: none;
    vertical-align: middle;
}

/* When you hover over a menu item, this rule comes into play. */
.PrettyMenu1 ul.AspNet-Menu li:hover, 
.PrettyMenu1 ul.AspNet-Menu li.AspNet-Menu-Hover
{
   color:#293BAB;

}

/* 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. */
.PrettyMenu1 ul.AspNet-Menu li a:hover,
.PrettyMenu1 ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: #293BAB;font-weight: bold;

    font-family: Verdana, Arial, Helvetica, Helv; font-size: 12px;text-decoration:none;
}

.PrettyMenu1 ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{  
    background-image: none;font-weight: bold;
      font-family: Verdana, Arial, Helvetica, Helv; font-size: 12px; color: #293BAB; text-decoration:none;
}
