﻿/* set the position of the nav */
.PrettyMenu1 .AspNet-Menu-Vertical
{
    text-align:left;
    position:relative;
    top: 5px;
    left:-1px;
    z-index: 500;
}
/* set the width of the nav */
.PrettyMenu1 ul.AspNet-Menu 
{
    width: 230px;margin-bottom:10px;margin-top:3px;background-color:#4C4C4C;
}
/* This rule effectively changes our top level in the vertical side nav... */
.PrettyMenu1 ul.AspNet-Menu li
{
     width: 220px;
     height:23px;     z-index:600;
     border-bottom: 1px solid #B1B1B1; 
     border-right: 1px solid #B1B1B1; 
     border-top: 1px solid #B1B1B1; 
     border-left: 1px solid #B1B1B1;
     background-color: #4C4C4C;

}
/* This rule effectively changes our 2nd level in the vertical side nav... */
.PrettyMenu1 ul.AspNet-Menu ul
{
    left: 219px;
    top: 0px;
    /*border: 1px solid #D5A1A1;*/
    width: 143px;
    background-color:#808080;
}
.PrettyMenu1 ul.AspNet-Menu ul ul
{
    left: 219px;
    top: 0px;
    /*border: 1px solid #D5A1A1;*/
    width: auto;
    background-color:#808080;
}
.PrettyMenu1 ul.AspNet-Menu ul li
{
    width: 210px;
}
.PrettyMenu1 ul.AspNet-Menu ul li ul li
{
    width: 210px;
}

/*link with no children, ie Contact link*/
a.AspNet-Menu-Link
{
       background: none;
}
/* 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: "Trebuchet MS","Lucida Grande","Lucida Sans","Lucida Sans Unicode",Lucida,Arial,Helvetica;
    font-size: 0.85em; 
    font-weight:bold;
    color: white; 
    text-decoration:none;
    font-weight: normal;
    padding: 3px 2px 3px 8px;
    /*border:1px solid #DFF4C9;*/
    border-bottom: 0;
       background: transparent url(images/arrowRight.gif) right center no-repeat;
}

/* 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
{
    background: none;
}

/* 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-Selected a,
.PrettyMenu1 ul.AspNet-Menu li.AspNet-Menu-Leaf-Selected span
{
    background-color: #AEAEAE;
    background-image: none;
}
.PrettyMenu1 ul.AspNet-Menu li.AspNet-Menu-Leaf-Selected ul li a,
.PrettyMenu1 ul.AspNet-Menu li.AspNet-Menu-Leaf-Selected ul li span
{
    background-color: #AEAEAE;
    background-image: none;       background: transparent url(images/arrowRight.gif) right center no-repeat;
}
.PrettyMenu1 ul.AspNet-Menu li.AspNet-Menu-Leaf-Selected a:hover,
.PrettyMenu1 ul.AspNet-Menu li.AspNet-Menu-Leaf-Selected span:hover
{
    background-color: #AEAEAE;
    background-image: none;       background: transparent url(images/arrowRight.gif) right center no-repeat;
}

/* 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
{
     background: #AEAEAE;
}

/* 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
{
    background: transparent url(images/activeArrowRight.gif) right center no-repeat;
    text-decoration:underline;
}

.PrettyMenu1 ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    background-image: none;
      text-decoration:underline;
}

