@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600');
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: #f2f2f2;
}

.appbar {
  background-color: #ffffff;
  height: 64px;
}

.appbar:before {
  content: ' ';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.appbar--logo {
  height: 24px;
  margin-left: 16px;
  vertical-align: middle;
}

article {
  color: #444444;
  font-family: Open sans, sans-serif;
  font-stretch: normal;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  max-width: 768px;
  text-align: left;
}

@media (max-width: 768px) {
  article {
    margin-left: 16px;
    margin-right: 16px;
  }
}

h1 {
  counter-reset: h2counter;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
  margin-top: 40px;
}

h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 24px;
}
h2:before {
  content: counter(h2counter) '.\0000a0';
  counter-increment: h2counter;
}

ul {
  margin: 0;
  padding-left: 18px;
}

li {
  font-size: 14px;
  line-height: 1.43;
}

a {
  color: #1aa1a1;
  text-decoration: none;
}

p,
dt,
dd {
  margin-top: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
}

strong {
  font-weight: 600;
}

dl > dl {
  padding-left: 40px;
}

dd {
  display: inline;
  margin: 0;
}

dd:after {
  display: block;
  content: '';
}

dd > p:first-of-type {
    display: inline;
}

dt {
  display: inline-block;
  font-weight: 600;
  margin-top: 14px;
}

dt:first-child {
  margin-top: 0px;
}

dt:after {
  content: ':';
  font-weight: 600;
}

table {
  width: 100%;
  border-spacing: 0;
  vertical-align: middle;
  margin-top: 24px;
  margin-bottom: 14px;
  border-radius: 4px;
  box-shadow: 0 1px 2px 0 rgba(68, 68, 68, 0.08),
    0 1px 3px 0 rgba(68, 68, 68, 0.08);
}

th {
  color: #065056;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.54;
  padding-bottom: 18px;
  padding-top: 18px;
  padding: 8px;
  text-align: inherit;
}
td {
  font-size: 14px;
  max-width: 456px;
  padding-bottom: 12px;
  padding-top: 12px;
  padding: 8px;
}

td:first-child,
th:first-child {
  padding-left: 24px;
}

td:last-child,
th:last-child {
  padding-right: 24px;
}

tr:nth-child(even) {
  background-color: #f7f7f7;
}

tr:nth-child(odd) {
  background-color: #ffffff;
}
