.js-Accordion {
  margin: 0 auto;
  max-width: 30em;
  width: 80%;
}
.js-Accordion-title {
  background: #f5f5f5;
  /* Begin BGSU modifications */
  /* border: 1px solid #ccc;
  border-top: 0; */
  /* End BGSU modifications */
  cursor: pointer;
  display: block;
  padding: 1em 0.5em;
  width: 100%;
}
/* Begin BGSU modifications */
/* .js-Accordion-title:first-child {
  border-top: 1px solid #ccc;
} */
/* End BGSU modifications */
.js-Accordion-content {
  /* Begin BGSU modifications */
  /* border: 1px solid #ccc;
  border-top: 0; */
  /* End BGSU modifications */
  height: 0;
  line-height: 1.5;
  overflow: hidden;
  transition: all 0.25s linear;
}
.js-Accordion-content:not([style="height: 0px;"]) {
  height: auto !important;
}

