#wrapper {
  min-height: 0;
  display: inline-block;
  position: relative;
  left: 0;
  margin: 0;
  background-color: #fefffa;
  max-width: 100%;
  padding: 30px;
}
@media (max-width: 550px) {
  #wrapper {
    box-sizing: border-box;
    max-width: 100%;
    min-height: 100%;
    margin: 0;
    left: 0;
  }
}
#wrapper div.backtop {
  margin: -12px 0 36px 0;
}
#wrapper p, ol {
  color: #434343;
  font-size: 0.9rem;
  line-height: 1.6rem;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  margin-top: 14px;
  z-index: 2;
}
#wrapper div.accordionpunchout {
  background-color: #FAFAFA; font-size: 1.1em;
}
#wrapper ul.accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}
#wrapper ul.accordion > li {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 4px;
  padding-top: 0;
  border-top: 1px dotted #dce7eb;
}
#wrapper ul.accordion > li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
#wrapper ul.accordion > li input[type=checkbox]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
}
#wrapper ul.accordion > li input[type=checkbox]:checked ~ ol {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
}
#wrapper ul.accordion > li:nth-of-type(1) {
  border-top: none;
  animation-delay: 0.5s;
}
#wrapper ul.accordion > li:nth-of-type(2) {
  animation-delay: 0.75s;
}
#wrapper ul.accordion > li:nth-of-type(3) {
  animation-delay: 1s;
}
#wrapper ul.accordion > li:last-of-type {
  padding-bottom: 4px;
  margin-bottom: 36px;
  border-bottom: 1px dotted #dce7eb;
}
#wrapper ul.accordion > li {
  animation: bounceInUp 1s ease both;
}

#wrapper ul.accordion > li:before {
  content: '';
}
