@charset "utf-8";
/* scaccordion.css v1.0 */
.scaccordion {
  background-image: url(/images/bl61.gif);
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .scaccordion:hover {
  background-color: #ddd;
}

/* Style the scaccordion scpanel. Note: hidden by default */
.scpanel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}
