﻿/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.sidebarmenu ul
{
    margin: 0;
    padding: 0;
    list-style-type: none;
    font: bold 9pt Tahoma;
    width: 240px; /* Main Menu Item widths */
    border-bottom: 1px solid #ffffff;
}

.sidebarmenu ul li
{
    position: relative;
}

/* Top level menu links style */
.sidebarmenu ul li a
{
    display: block;
    overflow: auto; /*force hasLayout in IE7 */
    color: #54606B;
    text-decoration: none;
    padding: 6px 6px 6px 28px;
    border-bottom: 1px solid #778;
    border-right: 1px solid #778;
    border-right-color: #0099FF;
    border-bottom-color: #0099FF;
    border-right-style: dashed;
    border-bottom-style: dashed;
    border-right-width: 0px;
    border-bottom-width: 1px;


}

.sidebarmenu ul li a:link, .sidebarmenu ul li a:visited, .sidebarmenu ul li a:active
{
    background-color: #ffffff; /*background of tabs (default state)*/
    background-image: url('img/menu.jpg');
    background-repeat: no-repeat;
    background-position: left center;
}

.sidebarmenu ul li a:visited
{
    color: #006699;
}

.sidebarmenu ul li a:hover
{
    background-color: #FBFBFB;
    color: #006699;
}

/*Sub level menu items */
.sidebarmenu ul li ul
{
    position: absolute;
    width: 250px; /*Sub Menu Items width */
    top: 0;
    visibility: hidden;
    left: -50;
}

.sidebarmenu a.subfolderstyle
{
    background: url(right.gif) no-repeat 97% 50%;
}


/* Holly Hack for IE \*/
* html .sidebarmenu ul li
{
    float: left;
    height: 1%;
}
* html .sidebarmenu ul li a
{
    height: 1%;
}
/* End */