.arrowlistmenu{
width: 160px; /*width of accordion menu*/
overflow: auto; 
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px "helvetica", "helvetica lt", Sans-serif, Arial;
color: silver;
margin-bottom: 10px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 4px 0 4px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
}


.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 1px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
padding-bottom: 1px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
font: 13px "helvetica", "helvetica lt", Sans-serif;
color: white;
display: block;
padding: 2px 0;
padding-left: 5px; /*link text is indented 19px*/
text-decoration: none;
text-transform: uppercase;
font-weight: bold;
font-size: 100%;
}

.arrowlistmenu ul li a:visited{
color: white;
}

.arrowlistmenu ul li a:hover{ /*Seleccionado*/
color: white;
}