
/* inspiration
- https://alligator.io/css/minimal-css-reset/
*/
:root {
  --green-color: #006984;  /* c: 100 m: 0 y: 20 k: 65 */
  --blue-color: #0054a2; /* c: 100 m: 70 y: 10 k: 52 */
  --gray-color: #e6e8ea;
  --gray-red: #f00; /* c: 0 m: 100 y: 100 k: 0 */
}
::-moz-selection {
  background: #0054a2;
  background: var(--blue-color);
  color: white;
  text-shadow: none;
}
::selection {
  background: #0054a2;
  background: var(--blue-color);
  color: white;
  text-shadow: none;
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
body {
  margin: 0;
  padding: 0;
}
body,
p,
ol,
ul {
  font-size: 1rem;
}
p {
  margin-top: 0.3em;
  margin-bottom: 0.1em;
}
.next-bg + p {
  padding: 1em;
  background-color: #e6e8ea;
  background-color: var(--gray-color);
}
hr {
  border: none;
  height: 0.3rem;
  background-color: #e6e8ea;
  background-color: var(--gray-color);

  margin-bottom: 2.3rem;
  margin-top: 2rem;
}
hr.thick {
  height: 1rem;
}
ul,
ol {
  padding-left: 1em;
  margin: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
ul {
  list-style: none;
}
ul > li::before {
  content: "\2013\A0";
  color: #0054a2;
  color: var(--blue-color);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
ol {
  counter-reset: ol-li;
  padding-left: 0;
}
ol > li {
  position: relative;
  margin: 0 0 0 1.75em;
  list-style: none;
  padding-bottom: 0.2em;
}
ol > li:before {
  content: counter(ol-li);
  counter-increment: ol-li;

  position: absolute;
  top: 0.1em;

  left: -1.75em;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;

  font-size: 0.85em;
  font-weight: 700;
  text-align: center;

  color: white;
  background: #0054a2;
  background: var(--blue-color);
}
a {
    text-decoration: none;
    color: #006984;
    color: var(--green-color);
}
a:visited {
    color: #0054a2;
    color: var(--blue-color);
}
a:hover {
    color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}
blockquote {
  font-weight: 700;
  color: #006984;
  color: var(--green-color);
  line-height: 1.7;
  margin-top: 2rem;
  margin-right: 2rem;
  margin-bottom: 2rem;
  margin-left: 2rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-top: 0.3em;
  margin-bottom: 0.1em;
}
h1 {
  font-size: 1.2rem;
  margin-bottom: 2em;
}
h2 {
  font-size: 1.05rem;
  margin-top: 1em;
}
h3 {
  font-size: 0.95rem;
  margin-top: 1em;
  margin-bottom: 0.3em;
}
h1,
h2 {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
pre,
code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
  background-color: #e6e8ea;
  background-color: var(--gray-color);
  border-radius: 0.2em;
  font-size: 85%;
}
code {
  margin: 0;
  padding: 0.2em 0.4em;
}
pre {
  padding: 1em;
  overflow: auto;
  font-size: 85%;
  line-height: 1.45;
}
.content {
  width: 92%;
  max-width: 36rem;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 2rem;
}
.grid-12col {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.col-1to6,
.col-7to12 {
  max-width: 48.5%;
  -ms-flex-preferred-size: 48.5%;
      flex-basis: 48.5%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.col-1to4 {
  max-width: 32.333%;
  -ms-flex-preferred-size: 32.333%;
      flex-basis: 32.333%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.col-5to12 {
  max-width: 64.666%;
  -ms-flex-preferred-size: 64.666%;
      flex-basis: 64.666%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.col-all {
  max-width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
article {
  margin: 0;
}
article > header {
  margin-top: 2rem;
  padding-bottom: 2rem;
}
article > header > h1 {
  margin-bottom: 0.8em;
}
article > header p,
article > header address {
  margin: 0;
}
article > header address {
  font-style: normal;
  margin-top: 4.5rem;
}
article > section,
article > footer {
  padding-bottom: 3rem;
  border-top: 2px solid #222;
}
article > section > h2,
article > footer > h2 {
  margin-bottom: 2.5em;
}
article .small {
  font-size: 0.8rem;
}
em,
strong,
b {
  font-style: normal;
  font-weight: 700;
}
/*# sourceMappingURL=main.critical.css.map */