body {
  color: #363636;
  background: #ffffff;
  font-family: 'Open Sans', sans-serif;
}

a.special-link {
  color: #363636;
}

a.special-link:visited {
  color: #36363
}

.wrapper {
  width: 880px;
  margin: 0 auto;
}

.half {
  margin: 0 auto;
  width: 100%;
  padding: 0 1em;
}


/* Acordian styles */

.tab {
  position: relative;
  width: 100%;
  color: #000;
  margin-bottom: 1em;
}

input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

label {
  position: relative;
  display: block;
  padding: 0 0 0 1em;
  background: #dbe2e9;
  font-size: 30px;
  line-height: 2;
  cursor: pointer;
  border: 1px solid #8e9fbc;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

label:hover {
  background-color: #8e9fbc;
}

label.link a {
  text-decoration: none;
}

.tab-content {
  background: #ffffff;
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  border: 1px solid #8e9fbc;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
}


/* sitemap content */

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li {
  font-size: 15px;
}

li+li {
  font-size: 18px;
  margin-left: 25px
}

.sitemap a {
  text-decoration: underline;
  color: #004697;
}

.sitemap a:hover {
  text-decoration: none;
  color: #363636;
}


/* :checked */

input:checked ~ .tab-content {
  max-height: 10em;
}


/* Icon */

label:before,
label:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: white;
  transition: transform 0.25s ease-out;
}

label:before {
  top: 19px;
  right: 25px;
  width: 2px;
  height: 20px;
  background: #363636;
}

label:after {
  top: 50%;
  right: 15px;
  width: 23px;
  height: 2px;
  margin-top: -2px;
  background: #363636;
}

input[type=checkbox]:checked + label:before {
  transform: rotate(90deg);
}

input[type=checkbox]:checked + label:after {
  transform: rotate(180deg);
}

input[type=checkbox] + label.link:after,
input[type=checkbox] + label.link:before {
  display: none;
}