.accordionjs {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  float: left;
  width: 100%;
}
.accordionjs .acc_section {
  border-top: none;
  position: relative;
  z-index: 1;
  margin-top: 0px;
  overflow: hidden;
  width:100%;
  float:left; 
  font-size: 15px;
 line-height: 25px;
}
.accordionjs .acc_section .acc_head {
  position: relative;
  color: #444444;
  padding: 10px 12px;
  display: block;
  cursor: pointer; 
  font-size: 15px;
line-height: 25px;
border-top: 3px solid #efefef;
transition: all .5s ease;
float: left;
width: 100%;
}
.accordionjs .acc_section .acc_head h3 {
  line-height: 1;
  margin: 0px 0;
  font-size: 15px;
  line-height: 25px;   
  color:#444444;
  transition:all .5s ease;
}
.accordionjs .acc_section .acc_content {
  padding: 0px;
  float:left; width:100%; margin-bottom:20px;
}
.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: #F9F9F9;
  border-bottom: 1px solid #ccc;*/
}



