body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  background-color: #ffffff;
  font-family: Georgia, sans-serif;
}
 /* HEADER */

.header-container-outer {
  background-color: #357E38;
  height: 100px;
  display: block;
  position: relative;
  width: 100%;
}

.header-container-inner {
  height: 100px;
  display: block;
  margin: 0 auto;
  position: relative;
  max-width: 1000px;
  width: 100%;
}

.header-left-outer {
  display: inline-table;
  float: left;
  position: relative;
}

.header-left-inner {
  display: table-cell;
  position: relative;
  height: 100%;
  vertical-align: middle;
  width: 100%;
}

.header-logo {
  vertical-align: middle;
}

.header-search-container {
  background-color: #ffffff;
  border: 2px solid #555555;
  border-radius: 20px;
  height: 20px;
  float: right;
  margin: 10px 25px 0 0;
  padding: 3px;
  position: relative;
  width: 150px;
}

.header-search-submit {
  background-color: #ffffff;
  background-image: url('../img/search.png');
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  border: 0;
  height: 20px;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  width: 20px;
}

.header-search-text {
  border: 0;
  margin: 0 0 0 10px;
  height: 20px;
  padding: 0;
  width: 110px;
}

.header-text {
  color: #ffffff;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .header-container-outer {
    height: 50px;
    position: fixed;
    z-index: 1000;
  }

  .header-left-outer {
    width: 250px;
  }

  .header-logo {
    height: 50px;
  }

  .header-search-container {
    display: none;
  }

  .header-text {
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) {
  .header-container-outer {
    height: 100px;
  }

  .header-left-outer {
    width: 500px;
  }

  .header-logo {
    height: 100px;
  }

  .header-search-container {
    display: inline-block;
  }

  .header-text {
    font-size: 38px;
  }
}

/* HAMBURGER */

.hamburger {
  padding: 13px 10px 9px 0;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  float: right;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

  .hamburger:hover {
    opacity: 0.7;
  }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 4px;
    position: absolute;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }

  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
  }

  .hamburger-inner::before {
    top: -10px;
  }

  .hamburger-inner::after {
    bottom: -10px;
  }

  .hamburger--3dx-r .hamburger-box {
    -webkit-perspective: 80px;
            perspective: 80px;
  }

  .hamburger--3dx-r .hamburger-inner {
    transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

    .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
      transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    }

  .hamburger--3dx-r.is-active .hamburger-inner {
    background-color: transparent;
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }

    .hamburger--3dx-r.is-active .hamburger-inner::before {
      -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
              transform: translate3d(0, 10px, 0) rotate(45deg);
    }

    .hamburger--3dx-r.is-active .hamburger-inner::after {
      -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
              transform: translate3d(0, -10px, 0) rotate(-45deg);
    }

@media screen and (max-width: 767px) {
  .hamburger {
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/* NAVIGATION */

.navigation-container-outer {
  background-color: #272727;
  height: 50px;
  position: relative;
  width: 100%;
}

.navigation-container-inner {
  display: block;
  height: 50px;
  margin: 0 auto;
  position: relative;
  max-width: 1000px;
  width: 100%;
}

.navigation-item-outer {
  display: inline-table;
  height: 50px;
  position: relative;
  width: auto;
}

.navigation-item-inner {
  color: #ffffff;
  display: table-cell;
  font-size: 12px;
  font-family: sans-serif;
  height: 100%;
  padding: 0 7px;
  position: relative;
  vertical-align: middle;
  text-align: center;
  transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
  width: 100%;
}

  .navigation-item-inner:hover {
    background-color: #555555;
  }

  .navigation-item-inner > a {
    color: #ffffff;
    margin: 0;
    text-decoration: none;
  }

  .navigation-item-inner > a:hover {
    text-decoration: underline;
  }

.navigation-item-inner-active {
  background-color: #555555;
}

#responsive-navigation-container {
  background-color: #ffffff;
  bottom: 0;
  display: none;
  overflow-y: scroll;
  position: fixed;
  top: 50px;
  width: 100%;
  z-index: 5000;
}

  #responsive-navigation-container > a {
    color: #474747;
    text-decoration: none;
  }

.responsive-navigation-item-outer {
  border-bottom: 1px solid #357E38;
  display: table;
  height: 100px;
  position: relative;
  transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
  width: 100%;
}

  .responsive-navigation-item-outer:hover {
    background-color: #eeeeee;
  }

.responsive-navigation-item-inner {
  color: #474747;;
  display: table-cell;
  font-size: 12px;
  font-family: sans-serif;
  height: 100%;
  padding: 0 7px;
  position: relative;
  vertical-align: middle;
  text-align: center;
  transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
  width: 100%;
}

.responsive-navigation-search-wrapper {
  border-bottom: 1px solid #357E38;
  display: block;
  padding: 20px 0;
  position: relative;
  width: 100%;
}

.responsive-navigation-search-container {
  background-color: #ffffff;
  border: 2px solid #555555;
  border-radius: 20px;
  display: block;
  height: 20px;
  margin: 0 auto;
  padding: 3px;
  position: relative;
  width: 150px;
}

@media screen and (max-width: 767px) {
  .navigation-container-outer {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .navigation-container-outer {
    display: block;
  }
}

/* CONTENT */

.content-container-outer {
  display: block;
  height: auto;
  position: relative;
  width: 100%;
}

.content-container-inner {
  color: #474747;
  display: block;
  font-size: 15px;
  line-height: 24px;
  margin: 0 auto;
  max-width: 1000px;
  padding-bottom: 50px;
  padding-top: 50px;
  position: relative;
  width: 100%;
}

.content-footer-placeholder {
  display: block;
  height: 50px;
  position: relative;
  width: 100%;
}

.content-container-inner > p {
  clear: both;
}

  /* General Elements */

  .content-container-inner a {
    color: #666666;
  }

  .content-container-inner > p, .content-container-inner > h1, .content-container-inner > h2, .content-container-inner > h3, .content-container-inner > h4, .content-container-inner > h5, .content-container-inner > div > table {
    padding: 0 20px;
  }

  /* Tables */

  td > p {
    line-height: normal;
    padding: 0 5px;
    margin: 4px 0;
  }

  th {
    border-bottom: 1px solid #000000;
  }

  /* Download Collection */

  .download-collection {
    overflow: auto;
    padding: 20px 2.5% 75px 2.5%;
    position: relative;
  }

  .download-collection-file {
    display: block;
    min-height: 50px;
    overflow: auto;
    position: relative;
    width: 100%;
  }

  .download-collection-file-date-outer {
    display: inline-table;
    float: left;
    height: 100%;
    position: relative;
    width: 25%;
  }

    .download-collection-file-date-inner {
      display: table-cell;
      height: 100%;
      position: relative;
      text-align: center;
      vertical-align: middle;
      width: 100%;
    }

  .download-collection-file-link-outer {
    display: inline-table;
    float: right;
    height: 100%;
    position: relative;
    width: 75%;
  }

    .download-collection-file-link-inner {
      display: table-cell;
      height: 100%;
      position: relative;
      vertical-align: middle;
      width: 100%;
    }

  .download-collection-title-outer {
    background-color: #eeeeee;
    display: block;
    font-weight: bold;
    height: 25px;
    position: relative;
    text-align: center;
    width: 100%;
  }

  @media screen and (max-width: 767px) {
    .download-collection {
      display: block;
      width: 95%;
    }
  }

  @media screen and (min-width: 768px) {
    .download-collection {
      display: inline-block;
      float: left;
      width: 45%;
    }
  }

/* FOOTER */

.footer-container-outer {
  background-color: #ffffff;
  border-top: #ffffff 20px solid;
  bottom: 0;
  height: 50px;
  display: table;
  position: fixed;
  text-align: center;
  width: 100%;
}

.footer-container-inner {
  background-color: #ffffff;
  border-top: #eeeeee 1px solid;
  bottom: 0;
  color: #555555;
  font-size: 12px;
  height: 100%;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

  .footer-container-inner > a {
    color: #c7c7c7;
    margin: 0 10px;
    text-decoration: none;
  }

  .footer-container-inner > a:hover {
    text-decoration: underline;;
  }

/* SEARCH */

.search-result-container {
  border-bottom: 1px solid #357E38;
  display: block;
  margin: 10px 0;
  padding-bottom: 15px;
  position: relative;
  width: 100%;
}

  .search-result-container > h4 {
    margin-bottom: 0;
    padding: 0 20px;
  }

  .search-result-container > p {
    margin: 0;
    padding: 0 20px;
  }

  .pagination > li {
    border: 1px solid #357E38;
    border-radius: 5px;
    display: inline-block;
    margin: 0 5px;
    padding: 5px 10px;
    position: relative;
    transition: all 0.3s linear;
      -webkit-transition: all 0.3s linear;
      -moz-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      -ms-transition: all 0.3s linear;
  }

  .pagination > li > a {
    text-decoration: none;
    transition: all 0.3s linear;
      -webkit-transition: all 0.3s linear;
      -moz-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      -ms-transition: all 0.3s linear;
  }

  .pagination > li:hover {
    background-color: #357E38;
    color: #ffffff;
  }

  .pagination > li:hover > a {
    color: #ffffff;
  }

.modal-link-confirm {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(0,0,0,0.9);
  display: flex;
  visibility: hidden;
  overflow-y: scroll;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition-property: opacity, left;
  opacity: 0;
}

.modal-link-confirm.active {
  visibility: visible;
  opacity: 1;
}

.modal-container {
  width: 100%;
  padding: 20px;
  margin: auto;
}

.modal-inner {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  padding: 15px 0px;
  background-color: #357E38;
}

.modal-text {
  background-color: white;
  width: 90%;
  margin: auto;
  padding: 20px 0px;
  text-align: center;
}

.modal-text-inner {
  margin: 20px;
}

.modal-buttons {
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
  margin: 20px;
}

.modal-buttons .modal-button {
  background-color: white;
  color: black;
  border: none;
  border-radius: 60px;
  display: inline-flex;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  font-weight: bold;
  padding: 20px 30px;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}

.noscroll {
  overflow: hidden;
}