.arrowlistmenu{
width: 155px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
background: url(../gui/space.gif) repeat-x center left;
padding: 0px 0px 0px 0px;
margin: 0px 0px 0px 0px;
cursor: hand;
cursor: pointer;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(../gui/space.gif);
}

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

.arrowlistmenu ul li{
color: #586263;
font-size: 10px;
padding: 0px 0px 0px 5px;
margin: 0px 0px 0px 0px;
}

.arrowlistmenu ul li a{
color: #586263;
text-decoration: none;
display:block;
padding: 0px 0px 0px 5px;
margin: 0px 0px 0px 0px;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #5caddc;
text-decoration: none;
padding: 0px 0px 0px 5px;
margin: 0px 0px 0px 0px;
}

.arrowlistmenu ul ul{
position:inherit;
display.none;
}

.arrowlistmenu ul li:hover{
display:block;
left:200px;}