  html {
    position: relative;
    min-height: 100%;
  }

  body {
    font: normal 100% Helvetica, Arial, sans-serif;
    margin: 1.5em auto 3em;
    padding: 0 1em;
    max-width: 61.75em;      /* 988px / 16px = 61.75em */
  }

  img {
    max-width: 100%;
  }

  h1 {
    font-size: 1.7em;   /* 26px / 16px = 1.7em */
  }

  h2 {
    font-size: 1.3em;   /* 24px / 16px = 1.5em */
  }

  header img {
    max-width: 50%;
  }

  footer {
    position: absolute;
    bottom: 0;
    height: 2.0em;
  }

  nav {
    padding-top: 0.8em;
    padding-bottom: 0.4em;
  }

  nav ul {
    margin: 0;
    padding: 0;
  }

  nav li {
    padding: 0;
    list-style: none;
    display: inline-block;
    text-transform: lowercase;
  }

  nav li + li::before {
    content: " | ";
  }

  nav a {
    text-decoration: none;
    color: #000000;
  }

  nav li.selected {
    font-weight: bold;
  }

  .tinynav { display: none }        /* styles for desktop */

  @media screen and (max-width: 710px) {  /* styles for mobile */
    .tinynav { display: block }
    #nav { display: none }
  }

  figure {
    float: left;
    max-width: 40%;
    padding-right: 0.5em;
    margin: 0;
  }

  select {
    width: 100% !important;
    padding: 8px !important;
    box-shadow: 0 1px 2px 0 rgba(180, 180, 180, 0.2);
    border: 1px solid #d4d4d4;
    font-size: 1em;
  }

ol {
    padding-left: 0em;
}

ul {
    padding-left: 1em;
}

ul li {
    padding-bottom: 0.5em;
}
ol li {
    list-style-position: inside;
    padding-bottom: 0.5em;
}

a {
    color: #0000FF;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.clear:after {
    clear: both;
    content: "";
    display: table;
}