.arrowlistmenu{
width: 180px; /*width of accordion menu*/
float:right;
direction:rtl;
text-align:right;
font-family:tahoma;
height:auto;
min-height:400px;

}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font-family:tahoma;
font-size:12px;

color: white;
background:#000000;

text-transform: uppercase;
cursor: hand;
cursor: pointer;
padding-right:10px;
padding-top:5px;
padding-bottom:5px;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background:#D33615;
}

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

}

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

.arrowlistmenu ul li a{
color: #A70303;

display: block;

padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;

border-bottom: 1px solid #dadada;
font-family:tahoma;
font-size:12px;
padding-right:3px;
padding-bottom:5px;


}

.arrowlistmenu ul li a:visited{
color: #A70303;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #A70303;
text-decoration:underline;



}