.collapsible{
width: 160px; /*width of accordion menu*/
font: 13px Arial;
color: #0D75A0;
margin:0px;
text-transform: uppercase;
/*padding: 1px 0 1px 5px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
}

.toggle{
margin:0px;
padding:0px;
text-decoration:none;
}

.collapsible .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(titlebar-active.png);
}

.collapsible ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-top: 2px;
margin-bottom: 2px; /*bottom spacing between each UL and rest of content*/
}

.collapsible ul li{
padding-bottom: 1px; /*bottom spacing between menu items*/
}

.collapsible ul li .opensubheader{ /*Open state CSS for sub menu header*/
background: lightblue !important;
}

.collapsible ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: lightgreen !important;
}

.collapsible ul li a{
color: #333333;
/*background: url(/rams/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 4px 0;
padding-left: 10px; /*link text is indented 19px*/
text-decoration: none;
/*border-bottom: 1px solid #dadada;*/
/*font-size: 90%;*/
}

.collapsible ul li a:visited{
color: #4E7392;
}

.collapsible ul li a:hover{ /*hover state CSS*/
background-color: #29549c;
color: #FFF;
}

.collapsible ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background: lightblue;
}

.collapsible ul li .openthreeheader{ /*Open state CSS for sub menu header*/
background: #FFCCCC !important;
}

.collapsible ul li .closedthreeheader{ /*Closed state CSS for sub menu header*/
background: #FFFF99 !important;
}

.collapsible ul li a.threeexpandable:hover{ /*hover state CSS for sub menu header*/
background: lightblue;
margin-left:10px;
}

ul{
list-style-type: none;
margin:0px;
padding:0px;
}

ul li{
list-style-type: none;
margin:0px;
padding:0px;
text-align:left;
}