@charset "utf-8";
/* CSS Document */

.accordion {
  max-width: 930px;
  margin: 10px;
  border-top: 1px solid #d9e5e8;
color: #676767;


}
.accordion li {
  border-bottom: 2px solid #d9e5e8;
  position: relative;
  font-family: Segoe UI, Calibri, Arial, Sans-Serif; 
  font-size:1em;
  list-style: none;
color: #676767;
margin: 0px 0px 0px 0px;

}
.accordion li p {
  display: none;
  padding: 10px;
color: #676767;
  font-family: Segoe UI, Calibri, Arial, Sans-Serif; 
  font-size:1em;
line-height: 1.2em;
margin: 0px 0px 0px 0px;
}
.accordion a {
  width: 100%;
  display: block;
  cursor: pointer;

  font-weight: bold;
  line-height: 1.8em;
color: #004ecc;
  font-size: 1.em;
  text-indent: 0px;
  user-select: none;
font-family: Segoe UI, Calibri, Arial, Sans-Serif;
 
}
.accordion a:after {
  width: 8px;
  height: 8px;
  border-right: 1px solid #4a6e78;
  border-bottom: 1px solid #4a6e78;
  position: absolute;
  right: 0px;
  content: " ";
  top: 5px;
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.accordion p {
font-family: Segoe UI, Calibri, Arial, Sans-Serif;
    font-size:1em;
  line-height: 1em;
  padding: 5px;

}

a.active:after {
  transform: rotate(45deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}