﻿/* set the position of the nav */
.PrettyMenu1 .AspNet-Menu-Vertical
{
    text-align:left;
    position:relative;
    top: 0px;
    left: 0px;
    z-index: 300;
}
/* set the width of the nav */
.PrettyMenu1 ul.AspNet-Menu 
{
    width: 149px;margin-bottom:10px;margin-top:0px;background-color:#F4F2FE;
}
/* This rule effectively changes our top level in the vertical side nav... */
.PrettyMenu1 ul.AspNet-Menu li
{
     width: 149px;
     border-bottom: 1px solid #B19EB5; 
     border-right: 0px solid #C8C0F6; 
     border-top: 0px solid White; 
     border-left: 0px solid #E5E1FC;

	background-color:#2E003D;

     background-image: url('images/bg_button.png'); 
     background-repeat: no-repeat;
}
/* This rule effectively changes our 2nd level in the vertical side nav... */
.PrettyMenu1 ul.AspNet-Menu ul
{
    left: 149px;
    top: 0px;
    /*border: 1px solid #D5A1A1;*/
    width: 149px;
    background-color:#380047;

}
.PrettyMenu1 ul.AspNet-Menu ul ul
{
    left: 149px;
    top: 0px;
    /*border: 1px solid #D5A1A1;*/
    width: auto;
    background-color:#380047;
}
.PrettyMenu1 ul.AspNet-Menu ul li
{
    width: 149px;
}
.PrettyMenu1 ul.AspNet-Menu ul li ul li
{
    width: 200px;
}

/*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: Arial, Helvetica, Helv; font-weight:normal;font-size: 12px; color: white; text-decoration:none;

    padding:  4px 2px 4px 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: #96329E;    color: white;
    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: #96329E;    color: white;
    background-image: none;
}
.PrettyMenu1 ul.AspNet-Menu li.AspNet-Menu-Leaf-Selected a:hover,
.PrettyMenu1 ul.AspNet-Menu li.AspNet-Menu-Leaf-Selected span:hover
{
    background-color: #96329E;    color: white;
    background-image: none;
}

/* 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: #216E7B;    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. */
.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;    color: white;
}

.PrettyMenu1 ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    background-image: none;    color: white;
      text-decoration:underline;
}
