@charset "utf-8";
/* CSS Document */

/* Default Accordion Blue & Green */

.commonAccordion {
  background-color: #eee;
  color: #444;
  background-color:#0071AD;
  color: white;
  cursor: pointer;
  padding: 10px 10px 3px 10px;
  width: 100%;
  border: none;
  border-radius: 3px;
  text-align: left;
  outline: none;
  font-size: 16px;
  font-weight: bold;
  transition: 0.4s;
  margin-left: 5px;
}
.active, .commonAccordion:hover {
  background-color: #ccc;
  background-color: #07A558;
}
.commonAccordion:after {
  content: '\002B';
  color: #777;
  color:white;
  font-size:20px;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  margin-bottom: 1px;
}
.active:after {
  content: "\2212";
}
.commonPanel {
  padding:0 5px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin-left: 20px;
  margin-bottom: 3px;
}

