/* CSS Document */
h3 { list-style:none; margin:0; padding:0;}
.arrowlistmenu{
width: 200px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Tahoma;
color: #666666;
background: black url(../images/icons/kare-0.gif) no-repeat center left;
background-color:#c8e8f5;
margin-bottom: 4px; /*bottom spacing between header and rest of content*/
/*text-transform: uppercase;*/
padding: 6px 4px 6px 26px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
}


.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
color: #666666;
background: black url(../images/icons/kare-1.gif) no-repeat center left;
background-color:#c8e8f5;
}

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

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

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
background: black url(../images/icons/kare-0.gif) no-repeat center left;
background-color: #ffffff; /* !important;*/
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: black url(../images/icons/kare-1.gif) no-repeat center left;
background-color: #ffffff; /* !important;*/
}

.arrowlistmenu ul li a{
font: normal 11px Tahoma;
color: #666666;
background: black url(../images/icons/kare-2.gif) no-repeat center left;
background-color:#ffffff;
display: block;
padding: 2px 4px 2px 26px;
/*padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
/*font-weight: bold;*/
border-bottom: 1px solid #ffffff;

}

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

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color:#000000;
/*background-color: #000000;*/
}

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