﻿/* VERTICAL MENU SELECTION */

.sidebarmenu, .sidebarmenu li ul
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 180px;                                /* width of main menu items */
    border-bottom: 5px solid red;                /* color around main menu selections -- original was 1px black */
}

.sidebarmenu li
{
    position: relative;
}

.sidebarmenu li a
{
    background: transparent url(../images/bg-bubplastic-button.gif) top left no-repeat;
    font: 11px Verdana, Helvetica, sans-serif;   /* FONT SIZE -- original size was 12px */
    color: white;                                /* button font color before visit */
    display: block;
    width: auto;
    padding: 5px 0;                              /* padding around the text within the box */
    padding-left: 10px;                          /* padding on left side of text -- original was 10 px */
    text-decoration: none;
}

.sidebarmenu li ul{ /*SUB MENU STYLE*/
    position: absolute;
    width: 190px;                                /*WIDTH OF SUB MENU ITEMS*/
    left: 0;
    top: 0;
    display: none;
}

.sidebarmenu li ul li{
    float: left;
}

.sidebarmenu li ul a{
    width: 180px;                                 /*WIDTH OF SUB MENU ITEMS - original was 180px */
    padding-left: 15px;                           /*15px padding-left for A elements */
}


/* Arrow indicator for sub-menus */

.sidebarmenu .arrowdiv{                         
    position: absolute;                          
    right: 2px;
    background: transparent url(../images/gif/right.gif) no-repeat center right;
}

/* Font color for visited buttons */

.sidebarmenu li a:visited, .sidebarmenu li a:active{
    color: white;
}

/* Hover color for buttons */

.sidebarmenu li a:hover{
    background: transparent url(../images/lime.gif) top right no-repeat;
}

/* Holly Hack for IE \*/
* html .sidebarmenu li { float: left; height: 1%; }
* html .sidebarmenu li a { height: 1%; }
/* End */