html,body {
  _display:flex;
  _flex-direction:column;
  font-family:ProximaNova,"Gotham Book",Arial,Tahoma,Verdana;
  font-size:21px;
  line-height:1.2em;
  height:100%;
  min-height:100%;
  width:100%;
  background-color:#071e36;
  color:white;
  margin:0;
  padding:0;
}
body {
  _display:flex;
  _flex-direction:column;
}
button {
  font-family:ProximaNova,"Gotham Book",Arial,Tahoma,Verdana;
  font-size:21px;
}
a {
  text-decoration:none;
  color:#00cf7f;
}
a:hover,
a:focus {
  text-decoration:underline;
}
blink {
  animation-duration:1s;
  animation-name:blink;
  animation-iteration-count:infinite;
  animation-timing-function:steps(2,start);
}
@keyframes blink {
  100% { visibility: hidden; }
}

.header {
  display:flex;
  margin:12px auto;
  justify-content:center;
  align-items:center;
}
.header table {
  display:block;
  background-color:#002f7f;
  padding:12px 25px;
}
.header table td:not(:first-child) {
  padding-left:32px;
  background-color:2f2f2f;
  height:100%;
}
