.header {
  background-color: #0e3d5b;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1;
}
.footer {
  background-color: #0e3d5b;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}
.footerText {
  text-align: center;
  color: #99cc33;
  margin: auto;
}
.title {
  background: #e6e6e6;
  border: 1px solid;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 40px;
  padding: 10px;
}
.versionWrapper {
  margin-bottom: 30px;
}
.version {
  display: block;
  font-size: xx-large;
  font-weight: bold;
}
.versionAnchor {
  margin-top: -70px;
  padding-bottom: 70px;
  display: block;
}
.versionDate {
  display: block;
  font-size: medium;
}
.detailsWrapper {
  padding-top: 15px;
}
.detailTitle {
  display: block;
  font-size: large;
  font-weight: bold;
  padding-bottom: 10px;
}
.detailNote {
  font-weight: bold;
  font-size: small;
  font-style: italic;
}
.list-group-item:first-child {
  border-top: 0;
}
.btn {
  box-shadow: none !important;
  outline: 0;
  padding: 0;
  padding-bottom: 10px;
}
a:link,
a:visited {
  color: #222;
}
a:hover {
  color: orange;
}
.list-group-item span {
  border: solid #222;
  border-width: 0 1px 1px 0;
  display: inline;
  cursor: pointer;
  padding: 3px;
  position: absolute;
  right: 0;
  margin-top: 10px;
}
.list-group-item a.btn.collapsed span {
  transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
  transition: .3s transform ease-in-out;
}
.list-group-item a.btn span {
  transform: rotate(-140deg);
  -webkit-transform: rotate(-140deg);
  transition: .3s transform ease-in-out;
}