:root {
      --blue: #0058BA;
      --light-blue: #C6D5EE;
      --authors-width: 700px;
      --author-width: 320px;
  }
  body {
      border:10px;
      text-align: center; 
      background: #FCFCFE;
      font-family: Helvetica, Helvetica Neue, Arial, sans-serif;
  }
  h1 {
      font-size: 32px;
      font-weight: bold;
      color: var(--blue);
      margin-top: 40px;
  }
  h1.double {
      font-size: 64px;
  }
  .headline {
      color: black;
  }
  h2 {
      font-size: 24px;
      font-weight: bold;
      line-height: 1.5;
  }
  h3 {
      display: block;
      font-size: 19px;
      font-weight: bold;
      line-height: 1.3;
  }
  .box {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-flow: wrap;
  }
  .innerbox {
      max-width: 666px;
  }
  a, .nowrap {
      white-space: nowrap;
  }
  @media print {
    a:link, a:visited, a:hover, a:active {
      color: black;
      background-color: transparent;
    }
  }
  a.button {
      text-decoration: none;
      display: flex;
      padding: 6px;
      user-select: none;
  }
  button {
      width: 150px;
      height: 50px;
      vertical-align: top;
      text-align: center;
      font-family: Helvetica Neue, Arial, sans-erif; 
      font-weight: bold;
      font-size: 24px;
      cursor: pointer;
  }
  button.b1 {
      color: white;
      background-color: var(--blue);
      border: none;
  }
  button.b2 {
      color: var(--blue);
      background: white;
      border: solid 4px var(--blue);
  }
  button.wide {
      width: 400px;
  }
  button.halfwide {
      width: 194px;  /* (400-12*1)/2 */
  }
  button.thirdwide {
      width: 125px;  /* (400-12*2)/3 */
  }
  thirdside {
      width: 57px;  /* (400-125*2-12*3)/2 */
  }
  button.quarterwide {
      width: 91px;  /* (400-12*3)/4 */
  }
  button.disabled {
      background: var(--light-blue);
  }
  input[type="checkbox"] {
      margin-right: 5px;
  }
  label {
      display: block;
      width: 240px;
      text-align: left;
  }
  .break {
      height: 0;
  }
  .note {
      font-size: 14px;
      color: black;
  }
  dl {
      margin: auto;
  }
  dt {
      font-weight: bold;
      text-align: left;
  }
  dd {
      margin: auto;
      margin-top: 10px;
      margin-bottom: 20px;
      text-align: left;     
  }
  .sectionheading {
      width: 100%;  /* to force a new row */
  }
  p, .paragraph {
      max-width: 666px;
      text-align: left;
  }
  .authors {
      max-width: var(--authors-width);
      align-items: flex-start;
      flex-wrap: wrap;
  }
  .author-box {
      display: flex;
      flex-flow: wrap;
      text-align: left;
      max-width: var(--author-width);
      margin-left: 5px;
      margin-right: 5px;
      margin-bottom: 20px;
      padding-left: 10px;
      padding-right: 10px;
  }
  @media print {
    .author-box {
      break-inside: avoid;
    }
  }
  .author-name {
      font-weight: bold;
      color: var(--blue);
      font-size: 24px;
  }
  .author-bio {
      max-width: var(--author-width);
  }
  .disclaimer {
      text-align: left;
      max-width: 666px;
  }
  .mt0 {
      margin-top: 0;
  }
  .mb0 {
      margin-bottom: 0;
  }
  .mt1 {
      margin-top: 10px;
  }
  .mb1 {
      margin-bottom: 10px;
  }
  .mt2 {
      margin-top: 20px;
  }
  .mb2 {
      margin-bottom: 20px;
  }
  .mt4 {
      margin-top: 40px;
  }
  .mb4 {
      margin-bottom: 40px;
  }
  .lower-right-button {
      display:block;
      position: fixed;
      bottom: 0;
      right: 0;
      font-size: 24px;
      font-weight: bold;
      text-decoration:none;
      height: 32px;
      width: 32px;
      margin: 8px;
      text-align: center;
      color: #444;
      background: white;
      border: solid 3px #444;
      border-radius: 100px;
  }