*{
  box-sizing: border-box;
}

:root {
  --light-blue: rgb(40 135 230);
  --dark-blue: rgb(0 90 185);
  --tmg-yellow: rgb(255 200 0);
  --light-green: #198754;
  --forest-green: #00643b;
  --tmg-orange: rgb(255 170 50);
  --tmg-purple: rgb(180 160 220);
  --tmg-red: rgb(238 105 90);
}

html {
  background-color: white;
}
body {
  padding: 0;
  margin: 0 auto;
  position: relative;
  max-width: 1400px;
  background-color: white;
  font-family: "Arial", sans-serif;
  color: black;  
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: var(--forest-green);
  height: 80px;
  padding-left: 30px;
  display: flex;
  align-items: center;
}

nav {
  width: 100%;
  display: grid;
  grid-template-columns:  auto 1fr auto;
  align-items: center;
  min-height: 30px;
  background-color: var(--forest-green);
  color: var(--tmg-yellow);
  font-size: 18px;
  padding: 3px;
  max-width: 100%;
  margin: 0 auto;
  text-decoration: none;
  border-bottom: var(--forest-green) solid 3px;
}

main {
  padding: 0 20px;
  background-color: white;
  flex: 1 0 auto;
}
footer {
  width: 100%;
  background-color: white;
  padding: 1em;
}
h1 {
    color: var(--forest-green);
}

h2 {
  color: gray;
}
h3 {
  color: gray;
}  
header h1 {
  color: var(--forest-green);
  margin: 0;
}

@media (max-width: 360px) {
  header h1 {
    display: none;
  } 
}

a:link {
  text-decoration: none;
  color: var(--light-green);
  font-weight: bold;
}
a:visited {
  text-decoration: none;
  color: var(--light-green);
  font-weight: bold;
}
a:hover {
  color: var(--light-green);
  text-decoration: underline;
  font-weight: bold;
}
table a:visited {
  color: var(--tmg-purple);
}
summary {
  color:var(--light-green);
  font-weight: bold;
}

nav p {
  margin: 0;
  padding: 3px 0;
}

nav a:link {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: .3s all ease-in-out;
}
nav a:visited {
  text-decoration: none;
  font-weight: bold;
  color: white;
}
nav a:hover {
  color: var(--tmg-yellow);
  text-decoration: underline;
  font-weight: bold;;
  transition: .3s all ease-in-out;
}

td {
  padding: 5px;
}

.menu {
  display: inline;
}

.menu a {
  padding: 10px 0;
  margin-left: 15px;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  align-self: center;
}
.menu-icon {
  display: none;
}
  
#menu-btn {
  display: none;
}

.searchlink {
  margin-left: auto;
}

footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #696969;
  height: 15px;
  margin: 0;
} 

ul {
  list-style-type: none;
  padding-left: 4px;
}
li {
  padding: 5px;
}
.searchterm {
  background-color: #c2e4e2;
}
.rightcolumn {
  width: 300px;
  margin:0px 10px 10px 30px;
  position:relative;
  float: right;
}
.altrow {
  background-color: #e0e0e0
}

    .menu {
      display: none;
    }
   
    .searchlink {
	  grid-column: 3;
	  align-self: center;
    margin-right: 20px;
    }

    .menu-icon {
      grid-column: 1;
      cursor: pointer;
      display: flex;
      justify-content: flex-start;
      align-items: baseline;
      padding: 10px 20px 10px 20px;
      position: relative;
      user-select: none;
      visibility: visible;
    }

    .navicon {
      background: white;
      display: block;
      height: 2px;
      width: 18px;
      position: relative;
    }

    .navicon:before {
      top: 5px;
    }

    .navicon:after {
      top: -5px;
    }

    .navicon:before,
    .navicon:after {
      background: white;
      display: block;
      width: 100%;
      height: 100%;
      content: "";
      position: absolute;
      transition: all 0.2s ease-out;
      }

    .menu-btn:checked ~ .menu {
      display: grid;
      grid-row: 1;
      grid-column: 2;
      max-height: 360px;
    }

    .menu-btn:checked ~ .menu-icon .navicon {
      background: transparent;
    }

    .menu-btn:checked ~ .menu-icon .navicon:before {
      transform: rotate(-45deg);
    }

    .menu-btn:checked ~ .menu-icon .navicon:after {
      transform: rotate(45deg);
    }

    .menu-btn:checked ~ .menu-icon .navicon:before,
    .menu-btn:checked ~ .menu-icon .navicon:after {
      top: 0;
    }
  
