/* Font: Merriweather
   License: SIL Open Font License (OFL)
   License file: /fonts/OFL.txt
*/
@font-face {
  font-family: 'Merriweather';
  src: url('/fonts/Merriweather-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Merriweather';
  src: url('/fonts/Merriweather-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Merriweather';
  src: url('/fonts/Merriweather-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Merriweather';
  src: url('/fonts/Merriweather-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Merriweather';
  src: url('/fonts/Merriweather-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Merriweather';
  src: url('/fonts/Merriweather-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Merriweather';
  src: url('/fonts/Merriweather-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Merriweather';
  src: url('/fonts/Merriweather-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
}

:root {
  --background-color: #ffffff;
  --text-color: #333333;
  --paragraph-color: #333333;
  --link-color: #4d96c7;
  --visited-color: #885566;
  --hover-color: #cc6600;
  --header-color: #999999;
  --highlight-color: #cc6600;
  --important-color: #FFAA33;
  --linkline-background-color: #d8d8d8;
  --button-disabled-color: #C3C3C3;
  --button-text-color: #333333;
  --odd-row-color: #CCCCCC;
  --even-row-color: #EEEEEE;
}
  
@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #000000;
    --text-color: #dddddd;
    --paragraph-color: #cccccc;
    --link-color: #80c8f0;
    --visited-color: #bb88a2;
    --hover-color: #ff9933;
    --header-color: #aaaabb;
    --highlight-color: #ff9933;
    --important-color: #FFCC66;
    --linkline-background-color: #555555;
    --button-disabled-color: #7a7a7a;
    --button-text-color: #ffffff;
    --table-background-color: #444444;
    --odd-row-color: #333333;
    --even-row-color: #222222;
  }
}
  
body {
  margin: 10px;
  max-width: 800px;
  background: var(--background-color);
  padding: 0;
  font: 100% Merriweather, Georgia, Times, serif;
  font-size: 11pt;
  font-weight: 300;
  color: var(--text-color);
  text-align: left;
}

p, li {
  color: var(--paragraph-color);
  line-height: 1.6em;
  padding-top: 0px;
  padding-bottom: 2px;
  margin-top: 0px;
  margin-bottom: 3px;
}

p.linkline {
  font-size: 80%;
  margin-top: 5px;
  width: 100%;
  background-color: var(--linkline-background-color);
  clear: both;
}

p.legalese {
  font-size: 60%;
  margin-top: 5px;
  width: 100%;
}

img.fillwidth {
  width: 100%;
}

img.floataround {
  float: right;
  width: 40%;
  height: auto;
  margin: 0 0 5px 5px;
}

video.floataround {
  float: right;
  width: 40%;
  height: auto;
  margin: 0 0 5px 5px;
  display: block;
}

a:link {
  color: var(--link-color);
  text-decoration: none;
}

a:visited {
  color: var(--visited-color);
  text-decoration: none;
}

a:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

h1 {
  font-weight: 900;
  font-size: 120%;
  padding: 0px;
  margin-bottom: 4px;
  color: var(--header-color);
  line-height: 1.1em;
}

h2 {
  font-weight: 900;
  font-size: 150%;
  padding-top: 10px;
  padding-bottom: 5px;
  color: var(--text-color);
  line-height: 1.1em;
}

h3 {
  font-weight: 700;
  font-size: 120%;
  padding-top: 10px;
  padding-bottom: 5px;
  color: var(--text-color);
  line-height: 1.0em;
}

span.highlight {
  color: var(--highlight-color);
}

div.important {
  color: var(--important-color);
  display: inline;
  font-weight: 700;
}

textarea {
  max-width: 800px;
  resize: vertical;
  width: calc(100% - 7px);
  background: var(--background-color);
  font: 100% Merriweather, Georgia, Times, serif;
  text-align: left;
  color: var(--paragraph-color);
  line-height: 1.7em;
  padding-top: 0px;
  padding-bottom: 4px;
  margin-bottom: 4px;
}

button {
  font: 100% Georgia, Times, serif;
  text-align: left;
  color: var(--button-text-color);
  background-color: var(--background-color);
  border: 1px solid var(--paragraph-color);
  padding: 5px 10px;
}

button:disabled {
  color: var(--button-disabled-color);
}

tr:nth-child(odd) {
  background: var(--odd-row-color);
}

tr:nth-child(even) {
  background: var(--even-row-color);
}

del {
  text-decoration-color: darkred;
  text-decoration-thickness: 3px;
}

ins {
  text-decoration-color: darkgreen;
  text-decoration-thickness: 3px;
}
