.panel {
  
}
.accordionMainTitle {
  background:#c1e3ff;
  border: 2px solid #ddd;
  border-radius: 10px 10px 0 0;
  padding: 20px 35px;
  font-family: 'Raleway', sans-serif;
  font-size: 25px;
}

.acc-header {
  cursor: pointer;
  padding: 12px;
  color: #fff;
  font-weight: bold;
  display: block;
  font-family: 'Raleway', sans-serif;
  margin-bottom:0px;
  border-bottom: none !important;
      background-color: #087478;
}


.acc-body {
    padding: 20px;
    line-height: 1.9;
    border-radius: 0 0 10px 10px;
    font-family: 'Raleway', sans-serif;
	background-color:#fff;
}
#accordion .acc-body{
   display : none;
}

#accordion .active .acc-body {
   display : block;
}

#panel-wrapper {
  display: block;
  float:left;
  width:100%;
}
.iconFixer {
  float: right;
}
.acc-header:hover{
  background-color: #2aa1a6 !important;
  color: white !important;
}

.panel:hover .acc-header {
    background-color: #2aa1a6 !important;
    color: white !important;
    
}