/* set the position of the nav */
.PrettyMenu .AspNet-Menu-Vertical
{
    position:relative;
    top: 32px;
    left: 0px;
    z-index: 300;

}
/* set the width of the nav */
ul.AspNet-Menu, 
ul.AspNet-Menu ul
{   
    /*white-space:nowrap;*/
    font-family: "Arial Narrow", Arial;
    font-size: 11px;
    
    visibility: visible;
    /*background:#4682B4;*/
}
/* set the width of the nav */
.PrettyMenu ul.AspNet-Menu li
{   
    white-space:nowrap;
    width:auto; border: 0px solid white;border-top: 1px dotted #C2C2C2;
    /*background:#4682B4;*/
}
/* 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 a,
.PrettyMenu ul.AspNet-Menu li span
{
    color: #636363; 
    text-decoration:none;
    font-weight:bold;
    text-transform: uppercase;
    width: auto;
    padding-right:6px;
    padding-left: 6px; 
    padding-top:2px;
    padding-bottom:2px;
    vertical-align:middle;
    display: block;

}

/* 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.AspNet-Menu-Leaf a:hover,
.PrettyMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{     
    /*background: transparent url(images/ArrowRight.gif) right center no-repeat;*/
    text-decoration:none;
    border-bottom:1px dotted #E21B2E;
    color: #E21B2E;
}

/* -------------------------------------------------------------------------- */
/* When the Menu control's Orientation property is Horizontal the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Horizontal. */
/* Note that the example menu in this web site uses absolute positioning to force the menu to occupy */
/* a specific place in the web page.  Your web site will likely use a different technique to position your */
/* menu.  So feel free to change all the properties found in this CSS rule if you clone this style sheet. */
/* There is nothing, per se, that is magical about these particular property value choices.  They happen to */
/* work well for the sample page used to demonstrate an adapted menu. */

.PrettyMenu .AspNet-Menu-Horizontal
{
    white-space:nowrap;
    position:relative;
    /*left: 0px;
    top: 94px;
     margin: 0 0 0 50px; */
    padding-left:114px;
    background: url('images/dot_fade.png') no-repeat top left;
    visibility: visible;
    float: right;

}
 
/* This rule controls the width of the top tier of the horizontal menu. */
/* BE SURE TO MAKE THIS WIDE ENOUGH to accomodate all of the top tier menu items that are lined */
/* up from left to right. In other words, this width needs to be the width of the individual */
/* top tier menu items multiplied by the number of items. I Cant stop the wrap...? */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu
{
    /*white-space:nowrap;*/
    text-align:center;
    width:auto;

}



/* Generally, you use this rule to set style properties that pertain to all menu items. */
/* One exception is the width set here.  We will override this width with a more specific rule (below) */
/* That sets the width for all menu items from the second tier downward in the menu. */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    width: auto;
    border-left: 1px dotted #C2C2C2;
}

