@charset "utf-8";
/* CSS Document */

.arrowlistmenu{
width: 223px; /*width of accordion menu*/
height:33px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font-family:Verdana, Geneva, sans-serif; font-size:12px; font-weight:bold; color:#FFF;
color: #e2e2e2;
background: url(/img_menu/home-accordion-header-bg-default.png) repeat-x center left;
padding: 10px 0 10px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	background: url(/img_menu/home-accordion-header-bg-active.png) no-repeat 0 0;
	color: #fff !important;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin-left:8px;
padding-right:10px;
margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
height:163px;
background-image: url(/img_menu/home-accordion-content-bg-active.png);

}

.arrowlistmenu ul li{
padding-left:8px;

}

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
background: lightblue !important;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: lightgreen !important;
}

.arrowlistmenu ul li a{
color: #000;
border-bottom: 1px solid #d7d7d7;
line-height: 25px;
padding: 0 10px;
display: block;
text-decoration: none;
font-size: 90%;
padding-right:10px;
}

.arrowlistmenu ul li a:visited{
color: #000;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #F60;
text-decoration:none;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background: lightblue;
}

.arrowlistmenu h3 a{
color: #FFF;
text-decoration:none;
}
.arrowlistmenu h3 a:visited{
color: #e2e2e2;
text-decoration:none;
}
.arrowlistmenu h3 a:hover{ /*hover state CSS*/
color: #e2e2e2;
text-decoration:none;
}

