<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  font-family: 'Times', serif;
  font-size: 1em;
}

body {
  background-color: #e1e1e9;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 100%;
}

p, table, ul {
  margin-bottom: 5px;
}

h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

h3, .posttitle {
  font-size: 1em;
  margin-bottom: 0px;
}

h1, h2, h3, .posttitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
}

.divider {
  border-top: 3px solid #bbb;
  margin: 20px 0px 15px 0px;
}

.posttitle a:not(:hover) {
  text-decoration: none;
}

a {
  font: inherit;
}

table {
  border-collapse: collapse;
}

th {
  font-family: 'Open Sans', sans-serif;
  color: #222;
}

th, td {
  padding: 5px 15px;
}

.left-justify tr th {
  text-align: left;
}

p, h1, h2, h3, li {
  color: #222;
}

ul {
  padding-left: 1.5em;
  list-style-position: outside;
}

ul li {
  margin-bottom: 7px;
}

.hscroll {
  overflow-x: auto;
}

.content {
  background-color: #f5f5f5;
  padding: 1em;
}

.posttitle {
  margin-top: 15px;
}

/* GENERAL NAVIGATION STYLING */
#navbar {
  padding: 15px;
  list-style-type: none;
  transition: all .5s;
  margin: 0px;
}

#logo a img {
  width: 200px;
  text-decoration: none;
}

#navbar li {
  margin-bottom: 0px;
}

.navitem a {
  font-size: 1em;
  color: #558;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
}

.navitem:not(.active):hover a {
  color: #77a;
}

#navbar .active a {
  color: #222;
}

/* MOBILE MENU BUTTON ANIMATION */
#bar1, #bar2, #bar3 {
  width: 27px;
  height: 4px;
  margin: 6px 0px;
  border-radius: 2px;
  background-color: #558;
  transition: 0.3s;
}

.mobile-menu-open #bar1 {
  transform: translate(0px, 10px) rotate(-45deg);
}

.mobile-menu-open #bar2 {
  opacity: 0;
}

.mobile-menu-open #bar3 {
  transform: translate(0px, -10px) rotate(45deg);
}

/* MOBILE NAVIGATION MENU */
#navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#navbar li a {
  display: block;
}

#mobile-nav-button {
  order: 1;
}

.navitem {
  order: 2;
  width: 100%;
  text-align: left;
  margin: 7px 0px;
  display: none;
}

.mobile-menu-open .navitem {
  display: block;
}

/* DESKTOP NAVIGATION MENU */
@media all and (min-width: 1000px) {
  #navbar {
    align-items: flex-start;
    flex-wrap: nowrap;
    background: none;
    justify-content: flex-start;
  }
  #logo {
    order: 0;
    margin-right: 5px;
  }
  .navitem {
    order: 1;
    position: relative;
    display: block;
    width: auto;
    margin-left: 15px;
  }
  #mobile-nav-button {
    display: none;
  }
}

.map-container {
  position: relative;
}

.map-container iframe {
  width: 100%;
  max-width: 600px;
  height: 300px;
}</pre></body></html>