/* CSS Document */
.SideMenu {
        padding-left: 5px;
        padding-right: 5px;
        border: 1px solid #a0a0a0;

}
.SideMenu .menuheader {/*CSS class for menu headers in general (expanding or not!)*/
        font: bold 14px Arial;
        color: white;
        margin: 0px;
        margin-bottom: 10px;/*bottom spacing between header and rest of content*/
        text-transform: uppercase;
        padding: 4px 0 4px 10px;/*header text is indented 10px*/
        border-bottom: 1px solid #a0a0a0;
}
.SideMenu ul {/*CSS for UL of each sub menu*/
        list-style-type: none;
        margin: 0;
        padding: 0;
        margin-bottom: 8px;/*bottom spacing between each UL and rest of content*/
}

.SideMenu b {
        color: red;      
}

.SideMenu ul li {
        width: 120px;
}
.SideMenu ul li a {
        color: #003366;
        background: url("arrow.gif") no-repeat center left;/*custom bullet list image*/
        display: block;
        padding-bottom: 5px;
        padding-top: 5px;
        padding-left: 25px;/*link text is indented 25px*/
        text-decoration: none;
        font-weight: bold;
        border-bottom: 1px solid #a0a0a0;
        font-size: 90%;
        vertical-align: center;
}
.SideMenu ul li a:hover {/*hover state CSS*/
        color: #1144AA;
        background-color: #d0d0d0;
}
.SideMenu ul li a.SideMenuButtonActive {
        color: #3366CC;
}
.SideMenu ul li a:active {
        color: #3399FF;
}