* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tabs {
  width: 100%;
  float: none;
  color: #fff;
  list-style: none;
  position: relative;
  text-align: left;
}
.tabs li {
  float: left;
  display: block;
}
.tabs input[type="radio"] {
  position: absolute;
  top: 1px;
  left: -9999px;
}
.tabs label {
  display: block;
  padding: 14px 21px;
  border-radius: 2px 2px 0 0;
  font-size: 18px;
  font-weight: normal;
  text-transform: uppercase;
  background: #025eba;
  cursor: pointer;
  position: relative;
  top: 0;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.tabs label:hover {
  background: #5bc0de;
}
.tabs .tab-content {
  z-index: 2;
  display: none;
  overflow: hidden;
  overflow-y: auto;
  width: 100%;
  font-size: 14px;
  line-height: 16px;
  padding: 20px;
  position: absolute;
  top: 40px;
  left: 0;
  background: #003366;
  max-height: 950px;
}
.tabs [id^="tab"]:checked + label {
  top: 0;
  padding-top: 12px;
  background: #003366;
}
.tabs [id^="tab"]:checked ~ [id^="tab-content"] {
  display: block;
}

a:link { 
  color: #5bc0de;
}

p.link {
  clear: both;
  margin: 380px 0 0 15px;
}
p.link a {
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  color: #5bc0de;
  padding: 5px 10px;
  margin: 0 5px;
  background-color: #003366;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
p.link a:hover {
  background-color: #5bc0de;
}
