html {
  font-size: 12px;
  font-size:62.5%;
  width: 500px;
}
body {
  padding: 10em 3em 3em 3em;
  width: 100%;
  background: #fff;
  color: #000;
  font-size: 1.0em;
  text-align: left;
}
h1, h2 {
  display:inline;
  color: #003399;
  font-family: Helvetica, sans-serif;
  font-weight: 800;
  font-size: 2.4em;
  margin-bottom: 0;
  padding-bottom:1px;
  border-bottom: 2px solid #003399;
}
h3 {
  font-weight: 400;
  font-size: 1.4rem;
  margin-top: 4px;
}
h4 {
  font-weight: 100;
  color: #808080;
}
p {
  line-height: 2.1;
  font-family: Helvetica, sans-serif;
  font-weight: 300;
  padding-right: 1em;
  margin: 0 0 2em 0;
  font-size: 1.4rem;
}
p img {
  padding: 5px 0.5em 0 0;
  margin-bottom: -5px;
}
.small {
  font-size: 1rem;
}
.address {
  font-size: 1em;
  line-height: 1.3;
  font-family: serif;
  // position: relative;
  // left: 16em;
  // top: -6.1em;
  // margin-bottom: -5.8em;
}


a {
  text-decoration: none;
  color: #000;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  padding-bottom: 5px;
  transition: border 0.5s ease;
}

a:hover {
  border-color: #111;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  -webkit-animation: fade 0.3s ease forwards;
  animation: fade 0.3s ease forwards;
}

@-webkit-keyframes fade {
  to{
    color:#003399;
  }
}
@keyframes fade {
  to{
    color:#003399;
  }
}