.accordionjs {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
  margin-bottom: 20px;
}
.accordionjs .acc_section {
  border: 1px solid #ccc;
  position: relative;
  z-index: 10;
  margin-top: -1px;
  overflow: hidden;
}
.accordionjs .acc_section .acc_head {
  position: relative;
  background: #fff;
  padding: 10px;
  display: block;
  cursor: pointer;

  
}
.accordionjs .acc_section .acc_head h3 {
  line-height: 1;
  margin: 5px 0;
  font-size:1.2em;
  font-weight:500;
  background: url(../images/plusminus.png) no-repeat left 0;
  padding-left:30px

}
.accordionjs .acc_section .acc_content {
  padding: 20px;
  line-height:1.5;
}
.accordionjs .acc_section:first-of-type,
.accordionjs .acc_section:first-of-type .acc_head {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.accordionjs .acc_section:last-of-type,
.accordionjs .acc_section:last-of-type .acc_content {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.accordionjs .acc_section.acc_active > .acc_content {
  display: block;
}
.accordionjs .acc_section.acc_active > .acc_head {
  background: #f2f2f2;
  border-bottom: 1px solid #ccc;
}

.accordionjs .acc_section.acc_active > .acc_head h3 {
  background:url(../images/plusminus.png) no-repeat left -18px;
}



/*.accordionjs .acc_head .acc_icon_expand{
	display: block;
	width: 18px;
	height: 18px;
	position: absolute;
	left: 10px;
	top: 50%;
	margin-top: -9px;
	background: url(../images/plusminus.png) center 0;
}
.accordionjs .acc_active .acc_head .acc_icon_expand{
	background: url(../images/plusminus.png) center -18px;
}*/