/* Minification failed. Returning unminified contents.
(6819,35): run-time error CSS1046: Expect comma, found '0'
(6819,39): run-time error CSS1046: Expect comma, found '/'
 */
@charset "UTF-8";
/*
===================================================================================================
Fonts
===================================================================================================
*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");
/*
===================================================================================================
Variables
===================================================================================================
*/
/*
===================================================================================================
Defaults
===================================================================================================
*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body {
  background: #1c1717;
  color: #505050;
  font-family: "Open Sans", Verdana, sans-serif;
  font-size: 1.6rem;
  line-height: 2.6rem;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 991px) {
  body {
    top: 0 !important;
  }
}
.h1,
h1 {
  font-size: 4.4rem;
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 4.4rem;
  margin: 0 0 20px;
  word-spacing: 2px;
}

.h2,
h2 {
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 3rem;
  margin: 0 0 30px;
  word-spacing: 2px;
}

.h3,
h3 {
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 3rem;
  margin: 0 0 15px;
  word-spacing: 2px;
}

.h4,
h4 {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.6rem;
  margin: 0 0 20px;
  word-spacing: 2px;
}

.h5,
h5 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2.2rem;
  margin: 0 0 10px;
  word-spacing: 2px;
}

.h6,
h6 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2rem;
  margin: 0 0 10px;
  word-spacing: 2px;
}

hr {
  background: #dededd;
  border: none;
  height: 1px;
  margin: 0 0 30px;
}

sup {
  vertical-align: -webkit-baseline-middle;
}

img {
  vertical-align: bottom;
}

strong {
  font-weight: 700;
}

ul {
  margin: 0 0 30px 30px;
  padding: 0;
}

ul li {
  margin: 0 0 10px;
  padding: 0;
}

ul ul {
  margin: 15px 0 15px 45px;
}

ol {
  margin: 0 0 30px 30px;
  padding: 0;
}

ol li {
  margin: 0 0 10px;
  padding: 0;
}

ol ol {
  margin: 15px 0 15px 45px;
}

p {
  margin: 0 0 30px;
}

blockquote {
  color: #aa6631;
  display: block;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 3.8rem;
  margin: 45px;
  word-spacing: 2px;
}

a {
  color: #17687c;
  -webkit-text-decoration-color: #a6a6a6;
          text-decoration-color: #a6a6a6;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover,
a:focus {
  color: #b6491a;
  -webkit-text-decoration-color: #a6a6a6;
          text-decoration-color: #a6a6a6;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:focus {
  outline: 1px dotted #b6491a;
  text-decoration: none;
}

button:focus {
  outline: 1px dotted #b6491a;
}

/*
===================================================================================================
Forms
===================================================================================================
*/
form label {
  display: block;
}

form input,
form select,
form textarea {
  border: 1px solid #cccccc;
  border-radius: 4px;
  color: #505050;
  display: block;
  font-size: 1.8rem;
  font-weight: 300;
  height: 42px;
  line-height: 2rem;
  outline: none;
  padding: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 100%;
}

form textarea {
  min-height: 120px;
}

form input:focus,
form select:focus,
form textarea:focus {
  border: 1px solid #808080;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

form label {
  display: block;
  margin: 0;
}

form button {
  cursor: pointer;
}

form select {
  padding: 5px 10px;
}

form .select-sm {
  font-size: 1.4rem;
  height: 30px;
  line-height: 2rem;
  padding: 5px;
}

form .label-text {
  display: block;
  margin: 0 0 8px;
}

form .checkboxes label,
form .radios label {
  padding-left: 24px;
  position: relative;
}

form .checkboxes label input,
form .radios label input {
  -webkit-box-shadow: none;
          box-shadow: none;
  display: inline;
  height: auto;
  left: 0;
  position: absolute;
  top: 6px;
  width: auto;
}

form .checkboxes label input:focus,
form .radios label input:focus {
  outline-color: #303030;
  outline-style: dotted;
  outline-width: 2px;
}

form .flex-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

form .flex-label .label-text {
  margin: 0;
  min-width: 130px;
}

form .error {
  color: #cf2026;
}

form .error input {
  border-color: #cf2026;
}

/*
===================================================================================================
Buttons
===================================================================================================
*/
.button {
  background: #b6491a;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 2.2rem;
  outline: none;
  padding: 10px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.button:hover,
.button:focus {
  background: #0b323b;
  color: #ffffff;
  outline: none;
  text-decoration: none;
}

/*
===================================================================================================
Tables
===================================================================================================
*/
table {
  background: #ffffff;
  font-size: 1.4rem;
  line-height: 2rem;
  margin: 0 0 30px;
  width: 100%;
}

table caption {
  caption-side: top;
  color: #505050;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 20px 0;
}

table thead {
  background: #351e16;
  color: #ffffff;
  font-size: 1.6rem;
}

table thead th {
  border: 1px solid #351e16;
  font-weight: 400;
  padding: 12px 15px;
  text-transform: uppercase;
}

table tbody td {
  border: 1px solid #cccccc;
  border-left: none;
  border-right: none;
  padding: 10px 15px;
  vertical-align: top;
}

table tbody > tr > td:first-child {
  border-left: 1px solid #cccccc;
}

table tbody > tr > td:last-child {
  border-right: 1px solid #cccccc;
}

table tbody tr:nth-child(even) {
  background: #f4f3f3;
}

table tbody tr td.alignCenter {
  text-align: center;
}

/*    Table Row Headers */
table tbody th {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px 15px;
  vertical-align: top;
  font-weight: normal;
}

table tbody th:first-child {
  border-left: 1px solid #CCC;
}

.dataTable tbody tr th {
  border-bottom: none;
}

@media (max-width: 767px) {
  .table-respond tbody th {
    border: none;
    display: block;
    padding: 5px 15px;
    position: relative;
  }

  .table-respond tbody th .inline-heading {
    display: inline-block;
    font-weight: 600;
    margin-right: 10px;
  }
}
/* Table Respond */
.table-respond .inline-heading {
  display: none;
}

@media (max-width: 767px) {
  .table-respond {
    border: 1px solid #cccccc;
    border-bottom: none;
  }

  .table-respond thead {
    display: none;
  }

  .table-respond tbody tr:nth-child(odd) td {
    background: #ffffff;
    border-bottom: 1px solid #ffffff;
  }

  .table-respond tbody tr:nth-child(even) td {
    background: #f4f3f3;
    border-bottom: 1px solid #f4f3f3;
  }

  .table-respond tbody tr td:last-child {
    border-bottom: 1px solid #cccccc;
  }

  .table-respond tbody > tr > td:first-child {
    border-left: 0;
    padding: 15px 15px 5px;
  }

  .table-respond tbody > tr > td:last-child {
    border-right: 0;
    padding: 5px 15px 15px;
  }

  .table-respond tbody td {
    background: #ffffff;
    border: none;
    display: block;
    padding: 5px 15px;
    position: relative;
  }

  .table-respond tbody td .inline-heading {
    display: inline-block;
    font-weight: 600;
    margin-right: 10px;
  }
}
/* Tables Data */
.data-table-wrap {
  margin: 0 0 30px;
}

.data-table-wrap table.dataTable .no-sort {
  background-image: none !important;
}

.data-table-wrap table.dataTable .no-sort {
  pointer-events: none !important;
  cursor: default !important;
}

.data-table-wrap table.dataTable thead .sorting {
  background-image: url("../img/sort_both.png");
}

.data-table-wrap table.dataTable thead .sorting_asc {
  background-image: url("../img/sort_asc.png");
}

.data-table-wrap table.dataTable thead .sorting_desc {
  background-image: url("../img/sort_desc.png");
}

.data-table-wrap table.dataTable thead .sorting_asc_disabled {
  background-image: url("../img/sort_asc_disabled.png");
}

.data-table-wrap table.dataTable thead .sorting_desc_disabled {
  background-image: url("../img/sort_desc_disabled.png");
}

.data-table-wrap table.dataTable thead th {
  border-bottom-color: #351e16;
  font-weight: 400;
}

.data-table-wrap table.dataTable > tbody > tr.even {
  background: #f4f3f3;
}

.data-table-wrap table.dataTable > tbody > tr > td {
  border-bottom: none;
  padding: 10px 15px;
  vertical-align: top !important;
}

.data-table-wrap .dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom-color: #dededd;
}

.data-table-wrap .dataTables_wrapper .dataTables_paginate {
  float: none;
  margin: 0;
  padding: 0;
}

.data-table-wrap .dataTables_wrapper .dataTables_length {
  float: none;
  margin: 0;
  padding: 0;
}

.data-table-wrap .dataTables_wrapper .dataTables_length label {
  margin: 0;
}

.data-table-wrap .dataTables_wrapper .dataTables_paginate .paginate_button {
  background: #ffffff;
  border: 1px solid #dededd;
  border-radius: 0;
  color: #17687c !important;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 2rem;
  min-width: 44px;
  padding: 10px;
  margin-left: -2px;
  text-align: center;
  text-decoration: none !important;
}

.data-table-wrap .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.data-table-wrap .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.data-table-wrap .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  background: #f4f3f3;
  border: 1px solid #dededd;
  cursor: default;
  color: #505050 !important;
}

.data-table-wrap .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.data-table-wrap .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover,
.data-table-wrap .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #17687c;
  border: 1px solid #17687c;
  color: #ffffff !important;
}

.data-table-wrap .dataTables_wrapper .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*
===================================================================================================
Colors
===================================================================================================
*/
.primary {
  background-color: #17687c !important;
}

.primary-text {
  color: #17687c !important;
}

.primary-dark-1 {
  background-color: #030e10 !important;
}

.primary-dark-1-text {
  color: #030e10 !important;
}

.primary-dark-2 {
  background-color: #072026 !important;
}

.primary-dark-2-text {
  color: #072026 !important;
}

.primary-dark-3 {
  background-color: #0b323b !important;
}

.primary-dark-3-text {
  color: #0b323b !important;
}

.primary-dark-4 {
  background-color: #0f4451 !important;
}

.primary-dark-4-text {
  color: #0f4451 !important;
}

.primary-dark-5 {
  background-color: #135666 !important;
}

.primary-dark-5-text {
  color: #135666 !important;
}

.primary-light-1 {
  background-color: #1b7a92 !important;
}

.primary-light-1-text {
  color: #1b7a92 !important;
}

.primary-light-2 {
  background-color: #26accd !important;
}

.primary-light-2-text {
  color: #26accd !important;
}

.primary-light-3 {
  background-color: #59c5e0 !important;
}

.primary-light-3-text {
  color: #59c5e0 !important;
}

.primary-light-4 {
  background-color: #94daeb !important;
}

.primary-light-4-text {
  color: #94daeb !important;
}

.primary-light-5 {
  background-color: #cfeef6 !important;
}

.primary-light-5-text {
  color: #cfeef6 !important;
}

.secondary {
  background-color: #b6491a !important;
}

.secondary-text {
  color: #b6491a !important;
}

.secondary-dark-1 {
  background-color: #461c0a !important;
}

.secondary-dark-1-text {
  color: #461c0a !important;
}

.secondary-dark-2 {
  background-color: #5d250d !important;
}

.secondary-dark-2-text {
  color: #5d250d !important;
}

.secondary-dark-3 {
  background-color: #732e10 !important;
}

.secondary-dark-3-text {
  color: #732e10 !important;
}

.secondary-dark-4 {
  background-color: #893714 !important;
}

.secondary-dark-4-text {
  color: #893714 !important;
}

.secondary-dark-5 {
  background-color: #a04017 !important;
}

.secondary-dark-5-text {
  color: #a04017 !important;
}

.secondary-light-1 {
  background-color: #cc521d !important;
}

.secondary-light-1-text {
  color: #cc521d !important;
}

.secondary-light-2 {
  background-color: #e4713f !important;
}

.secondary-light-2-text {
  color: #e4713f !important;
}

.secondary-light-3 {
  background-color: #eb9671 !important;
}

.secondary-light-3-text {
  color: #eb9671 !important;
}

.secondary-light-4 {
  background-color: #f2bba4 !important;
}

.secondary-light-4-text {
  color: #f2bba4 !important;
}

.secondary-light-5 {
  background-color: #f9e0d6 !important;
}

.secondary-light-5-text {
  color: #f9e0d6 !important;
}

.dept-sonoma {
  background-color: #351e16 !important;
}

.dept-sonoma-text {
  color: #351e16 !important;
}

.dept-justice {
  background-color: #593939 !important;
}

.dept-justice-text {
  color: #593939 !important;
}

.dept-dev {
  background-color: #3a475d !important;
}

.dept-dev-text {
  color: #3a475d !important;
}

.dept-admin {
  background-color: #32577d !important;
}

.dept-admin-text {
  color: #32577d !important;
}

.dept-health {
  background-color: #30646c !important;
}

.dept-health-text {
  color: #30646c !important;
}

.dept-natural {
  background-color: #3f6f4c !important;
}

.dept-natural-text {
  color: #3f6f4c !important;
}

.dept-parks {
  background-color: #00713d !important;
}

.dept-parks-text {
  color: #00713d !important;
}

.gold-aa6631 {
  background-color: #aa6631 !important;
}

.gold-aa6631-text {
  color: #aa6631 !important;
}

.gold-9c6b09 {
  background-color: #9c6b09 !important;
}

.gold-9c6b09-text {
  color: #9c6b09 !important;
}

.gold-bf943b {
  background-color: #bf943b !important;
}

.gold-bf943b-text {
  color: #bf943b !important;
}

.gold-cca383 {
  background-color: #cca383 !important;
}

.gold-cca383-text {
  color: #cca383 !important;
}

.gold-ebd5a8 {
  background-color: #ebd5a8 !important;
}

.gold-ebd5a8-text {
  color: #ebd5a8 !important;
}

.brown-1c1717 {
  background-color: #1c1717 !important;
}

.brown-1c1717-text {
  color: #1c1717 !important;
}

.brown-351e16 {
  background-color: #351e16 !important;
}

.brown-351e16-text {
  color: #351e16 !important;
}

.brown-3e3434 {
  background-color: #3e3434 !important;
}

.brown-3e3434-text {
  color: #3e3434 !important;
}

.brown-4b4142 {
  background-color: #4b4142 !important;
}

.brown-4b4142-text {
  color: #4b4142 !important;
}

.brown-8a5227 {
  background-color: #8a5227 !important;
}

.brown-8a5227-text {
  color: #8a5227 !important;
}

.black {
  background-color: #000000 !important;
}

.black-text {
  color: #000000 !important;
}

.gray-1 {
  background-color: #303030 !important;
}

.gray-1-text {
  color: #303030 !important;
}

.gray-2 {
  background-color: #4c4c4c !important;
}

.gray-2-text {
  color: #4c4c4c !important;
}

.gray-3 {
  background-color: #505050 !important;
}

.gray-3-text {
  color: #505050 !important;
}

.gray-4 {
  background-color: #808080 !important;
}

.gray-4-text {
  color: #808080 !important;
}

.gray-5 {
  background-color: #a6a6a6 !important;
}

.gray-5-text {
  color: #a6a6a6 !important;
}

.gray-6 {
  background-color: #b8b8b8 !important;
}

.gray-6-text {
  color: #b8b8b8 !important;
}

.gray-7 {
  background-color: #cccccc !important;
}

.gray-7-text {
  color: #cccccc !important;
}

.gray-8 {
  background-color: #dededd !important;
}

.gray-8-text {
  color: #dededd !important;
}

.gray-9 {
  background-color: #f4f3f3 !important;
}

.gray-9-text {
  color: #f4f3f3 !important;
}

.white {
  background-color: #ffffff !important;
}

.white-text {
  color: #ffffff;
}

.alert-high {
  background: #cf2026 !important;
  color: #ffffff !important;
  padding-left: 1rem !important;
}

.alert-high-text {
  color: #cf2026 !important;
}

.alert-high-light {
  background: #f9dbdc !important;
}

.alert-high-light-text {
  color: #f9dbdc !important;
}

.alert-medium {
  background: #fdB713 !important;
}

.alert-medium-text {
  color: #fdB713 !important;
}

.alert-medium-light {
  background: #ffedc4 !important;
}

.alert-medium-light-text {
  color: #ffedc4 !important;
}

.alert-low {
  background: #ffe000 !important;
}

.alert-low-text {
  color: #ffe000 !important;
}

.alert-low-light {
  background: #fff6b3 !important;
}

.alert-low-light-text {
  color: #fff6b3 !important;
}

.alert-success {
  background: #02aa4d !important;
}

.alert-success-text {
  color: #02aa4d !important;
}

.alert-success-light {
  background: #adfed1 !important;
}

.alert-success-light-text {
  color: #adfed1 !important;
}

@media (min-width: 768px) {
  .black-text-md {
    color: #000000 !important;
  }

  .white-text-md {
    color: #ffffff !important;
  }

  .bg-dark-md {
    background: rgba(0, 0, 0, 0.6);
  }

  .bg-light-md {
    background: rgba(255, 255, 255, 0.6);
  }
}
/*
===================================================================================================
Text Styles
===================================================================================================
*/
.font-weight-300 {
  font-weight: 300;
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

.font-size-14 {
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 2rem;
}

.font-size-16 {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 2.2rem;
}

.font-size-18 {
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 2.4rem;
}

.font-size-20 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.6rem;
}

.font-size-22 {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 3.2rem;
}

.font-size-24 {
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 3rem;
}

.font-size-28 {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 3.4rem;
}

.font-size-30 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 3.6rem;
}

.font-size-32 {
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 3.8rem;
}

.font-size-36 {
  font-size: 3.6rem;
  font-weight: 300;
  line-height: 4.2rem;
}

.font-size-40 {
  font-size: 4rem;
  font-weight: 300;
  line-height: 4.6rem;
}

.font-size-50 {
  font-size: 5rem;
  font-weight: 300;
  line-height: 5.6rem;
}

.font-size-60 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 6.6rem;
}

.text-intro {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 3.2rem;
}

.text-section-heading {
  color: #303030;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 3.4rem;
}

/*
===================================================================================================
Utilities
===================================================================================================
*/
.border {
  border: 1px solid #dededd !important;
}

.border-none {
  border: none !important;
}

.clickable {
  cursor: pointer;
}

.disabled {
  color: #000000;
  opacity: 0.5;
  pointer-events: none;
}

.fade-10 {
  opacity: 0.1;
}

.fade-30 {
  opacity: 0.3;
}

.fade-50 {
  opacity: 0.5;
}

.fade-70 {
  opacity: 0.7;
}

.fade-90 {
  opacity: 0.9;
}

.margin-0 {
  margin: 0 !important;
}

.margin-5 {
  margin-bottom: 5px !important;
}

.margin-10 {
  margin-bottom: 10px !important;
}

.margin-15 {
  margin-bottom: 15px !important;
}

.margin-20 {
  margin-bottom: 20px !important;
}

.margin-25 {
  margin-bottom: 25px !important;
}

.margin-30 {
  margin-bottom: 30px !important;
}

.margin-40 {
  margin-bottom: 40px !important;
}

.margin-50 {
  margin-bottom: 50px !important;
}

.margin-60 {
  margin-bottom: 60px !important;
}

.margin-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.margin-pull-10 {
  margin-bottom: -10px !important;
}

.margin-pull-20 {
  margin-bottom: -20px !important;
}

.margin-pull-30 {
  margin-bottom: -30px !important;
}

.margin-pull-40 {
  margin-bottom: -40px !important;
}

.margin-pull-50 {
  margin-bottom: -50px !important;
}

.margin-pull-60 {
  margin-bottom: -60px !important;
}

.max-width-400 {
  max-width: 400px;
}

.max-width-600 {
  max-width: 600px;
}

.max-width-800 {
  max-width: 800px;
}

.max-width-1000 {
  max-width: 1000px;
}

.max-width-1200 {
  max-width: 1200px;
}

.nowrap {
  white-space: nowrap;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.padding-0 {
  padding: 0 !important;
}

.padding-10 {
  padding: 10px !important;
}

.padding-20 {
  padding: 20px !important;
}

.padding-30 {
  padding: 30px !important;
}

.padding-40 {
  padding: 40px !important;
}

.padding-50 {
  padding: 50px !important;
}

.padding-60 {
  padding: 60px !important;
}

.pipe {
  display: inline-block;
  margin: 0 7px;
}

.row-gutter-0 {
  margin-left: 0;
  margin-right: 0;
}

.row-gutter-0 > div {
  padding-left: 0;
  padding-right: 0;
}

.row-gutter-10 {
  margin-left: -5px;
  margin-right: -5px;
}

.row-gutter-10 > div {
  padding-left: 5px;
  padding-right: 5px;
}

.row-gutter-20 {
  margin-left: -10px;
  margin-right: -10px;
}

.row-gutter-20 > div {
  padding-left: 10px;
  padding-right: 10px;
}

.row-gutter-30 {
  margin-left: -15px;
  margin-right: -15px;
}

.row-gutter-30 > div {
  padding-left: 15px;
  padding-right: 15px;
}

.row-gutter-40 {
  margin-left: -20px;
  margin-right: -20px;
}

.row-gutter-40 > div {
  padding-left: 20px;
  padding-right: 20px;
}

.row-gutter-50 {
  margin-left: -25px;
  margin-right: -25px;
}

.row-gutter-50 > div {
  padding-left: 25px;
  padding-right: 25px;
}

.row-gutter-60 {
  margin-left: -30px;
  margin-right: -30px;
}

.row-gutter-60 > div {
  padding-left: 30px;
  padding-right: 30px;
}

.spacer-10 {
  clear: both;
  height: 10px;
}

.spacer-20 {
  clear: both;
  height: 20px;
}

.spacer-30 {
  clear: both;
  height: 30px;
}

.spacer-40 {
  clear: both;
  height: 40px;
}

.spacer-50 {
  clear: both;
  height: 50px;
}

.spacer-60 {
  clear: both;
  height: 60px;
}

.spacer-80 {
  clear: both;
  height: 80px;
}

.text-align-center {
  text-align: center;
}

.text-align-justify {
  text-align: justify;
}

.text-align-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.truncate {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.visually-hidden {
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  white-space: nowrap;
  width: 1px;
}

/*
===================================================================================================
Page
===================================================================================================
*/
html.behind {
  overflow-y: hidden;
}

body.behind {
  overflow: hidden;
}

#page {
  background: #ffffff;
  padding-top: 50px;
}

a.skip-to-content:focus {
  top: 2px;
  left: 2px;
  right: auto;
  margin: 0;
  outline: none;
}

a.skip-to-content {
  background: #17687c;
  border: 2px solid #b6491a;
  color: #ffffff;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 20px;
  margin-top: -20px;
  min-width: 160px;
  padding: 8px 20px;
  position: absolute;
  right: 5px;
  text-align: center;
  top: -100px;
  z-index: 3;
}

[id] {
  scroll-margin-top: 60px;
}

/*
===================================================================================================
Header
===================================================================================================
*/
header {
  background: #ffffff;
  border-bottom: 1px solid #dededd;
  height: 50px;
  padding: 0;
  left: 0;
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}

header .container {
  position: relative;
}

header .header-inner .logo {
  font-family: "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
  color: #aa6631;
  text-align: center;
}

header .header-inner .logo a {
  color: #aa6631;
  display: inline-block;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 600;
  padding: 0 5px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

header .header-inner .links-dropdowns {
  display: none;
}

header .header-inner .links-dropdowns a {
  color: #4c4c4c;
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 2rem;
  margin-right: 5px;
  padding: 5px;
  position: relative;
  text-decoration: none;
}

header .header-inner .links-dropdowns a {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: background 500ms linear, color 500ms linear;
  -o-transition: background 500ms linear, color 500ms linear;
  transition: background 500ms linear, color 500ms linear;
}
header .header-inner .links-dropdowns a:before {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: #17687c;
  bottom: -3px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transition: background 500ms linear, -webkit-transform 0.4s ease-out;
  transition: background 500ms linear, -webkit-transform 0.4s ease-out;
  -o-transition: transform 0.4s ease-out, background 500ms linear;
  transition: transform 0.4s ease-out, background 500ms linear;
  transition: transform 0.4s ease-out, background 500ms linear, -webkit-transform 0.4s ease-out;
  width: 100%;
  will-change: transform;
}
header .header-inner .links-dropdowns a.is-active:before, header .header-inner .links-dropdowns a:hover:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}

header .header-inner .links-pages {
  display: none;
}

header .header-inner .links-pages a {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 2rem;
  margin-left: 5px;
  padding: 5px;
  text-decoration: none;
}

header .toggle-menu,
header .toggle-search {
  border: none;
  background: none;
  font-size: 2rem;
  height: 40px;
  line-height: 4rem;
  margin-top: -20px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  top: 50%;
  width: 40px;
}

header .toggle-menu i:last-child,
header .toggle-search i:last-child {
  display: none;
}

header .toggle-menu.opened i:first-child,
header .toggle-search.opened i:first-child {
  display: none;
}

header .toggle-menu.opened i:last-child,
header .toggle-search.opened i:last-child {
  display: inline;
}

header .toggle-menu {
  color: #4c4c4c;
  left: 5px;
}

header .toggle-search {
  right: 5px;
}

header .translate-wrap {
  background: #ffffff;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  display: none;
  margin-top: 9px;
  padding: 10px 15px;
  position: absolute;
  right: 15px;
  top: 100%;
  width: 220px;
  z-index: 2;
}

header .translate-wrap select {
  width: 100%;
}

header .remote-gt-container {
  padding: 15px 10px;
  font-size: 1.4rem;
  border-bottom: rgba(255, 255, 255, 0.3);
}

header .remote-gt-container > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 7px 10px;
  background: #FFF;
  border-radius: 3px;
  width: 100%;
}

header .remote-gt-container select {
  margin-right: 15px;
}

header .remote-gt-container .goog-logo-link {
  margin-left: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
}

header .global-alerts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0 0 5px 5px;
  background: #be2128;
  color: #ffffff;
  margin-top: 1px;
  position: absolute;
  right: 0;
  top: 100%;
  width: 395px;
}

header .global-alerts.viewed.closed {
  width: 44px;
}

header .global-alerts a {
  color: #ffffff;
}

header .global-alerts .content {
  width: 100%;
  -webkit-transition: width 200ms linear;
  -o-transition: width 200ms linear;
  transition: width 200ms linear;
  border-bottom-left-radius: 5px;
}

header .global-alerts .heading {
  font-size: 1.8rem;
  right: 0;
  white-space: nowrap;
  width: 100%;
  border-bottom-left-radius: 5px;
  height: 44px;
}

header .global-alerts.opened .content .heading {
  border-bottom: 1px solid #FFF;
  border-bottom-left-radius: 0;
}

header .global-alerts .alert-hint {
  margin-left: 15px;
  float: left;
}

header .global-alerts.viewed .alert-hint {
  display: none;
}

header .global-alerts.opened.viewed .alert-hint {
  display: block;
}

header .global-alerts .heading i {
  vertical-align: middle;
  font-size: 3rem;
  line-height: 4.4rem;
}

header .global-alerts .heading .text {
  margin-left: 10px;
  vertical-align: middle;
}

header .global-alerts .view-alerts {
  float: right;
  background: #be2128;
  border: none;
  border-left: 1px solid #ffffff;
  font-size: 1.6rem;
  height: 100%;
  line-height: 2.4rem;
  margin-left: 20px;
  width: 60px;
  color: #FFF;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background 200ms linear;
  -o-transition: background 200ms linear;
  transition: background 200ms linear;
}

header .global-alerts .view-alerts:hover,
header .global-alerts .view-alerts:focus {
  background: #732e10;
}

header .global-alerts .view-alerts:focus {
  border: 1px dotted #FFF;
}

header .global-alerts.viewed .view-alerts {
  width: 44px;
}

header .global-alerts.viewed.closed .view-alerts {
  margin: 0;
  border: none;
}

header .global-alerts .view-alerts i {
  vertical-align: top;
  font-size: 2rem;
  line-height: normal;
}

header .global-alerts .view-alerts .view-icon.hidden,
header .global-alerts .view-alerts .view-text.hidden {
  display: none;
}

header .global-alerts .view-alerts[aria-expanded=true] .view-icon {
  display: none;
}

header .global-alerts .view-alerts[aria-expanded=false] .hide-icon {
  display: none;
}

header .global-alerts .alerts {
  display: none;
  padding: 10px 15px;
  list-style: none;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}

header .global-alerts .alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 0;
}

header .global-alerts .alert:last-child {
  margin-bottom: 0;
}

header .global-alerts .alert-link {
  font-weight: normal;
  -webkit-text-decoration: underline 1px dotted #FFF;
          text-decoration: underline 1px dotted #FFF;
}

header .global-alerts .alert-link:hover {
  -webkit-text-decoration: underline 1px solid #FFF;
          text-decoration: underline 1px solid #FFF;
}

header .global-alerts .alert-link:focus {
  outline: 1px dotted #FFF !important;
  text-decoration: none;
}

header .global-alerts .alert-link.new-alert {
  font-weight: 600;
}

header .global-alerts .new-alert-indicator {
  color: #be2128;
  border-radius: 10px;
  background: #FFF;
  font-size: 1.2rem;
  padding: 0 10px;
  font-weight: 600;
}

@media (max-width: 394px) {
  header .global-alerts {
    max-width: 100%;
  }

  header .global-alerts.opened {
    width: 100%;
  }
}
@media (max-width: 260px) {
  header .global-alerts .heading {
    font-size: 1.6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  header .global-alerts .heading .icon i {
    font-size: 2rem;
  }

  header .global-alerts .heading .view-alerts {
    font-size: 1.4rem;
    margin-left: 10px;
    padding: 0 10px;
  }
}
@media (min-width: 992px) {
  header .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  header .header-inner .logo {
    margin-left: -5px;
    margin-right: 10px;
    text-align: left;
  }

  header .header-inner .links-dropdowns {
    display: block;
    white-space: nowrap;
  }

  header .header-inner .links-dropdowns a:last-child {
    margin-right: 0;
  }

  header .header-inner .links-pages {
    display: block;
    margin-left: auto;
    white-space: nowrap;
  }

  header .toggle-menu,
header .toggle-search {
    display: none;
  }
}
@media (min-width: 1200px) {
  header .header-inner .logo {
    margin-right: 30px;
  }

  header .header-inner .links-dropdowns a {
    margin-right: 20px;
  }

  header .header-inner .links-pages a {
    margin-left: 10px;
  }
}
/*
===================================================================================================
Footer
===================================================================================================
*/
footer .h6,
footer h6 {
  letter-spacing: -1px;
}

footer .footer-head .footer-bar {
  background: #351e16;
  margin: 0 0 30px;
  padding: 8px;
}

footer .footer-head {
  font-size: 1.4rem;
  line-height: 2rem;
  padding: 0 0 15px;
}

footer .footer-head .h4,
footer .footer-head h4 {
  font-size: 2.2rem;
}

footer .footer-head .h6,
footer .footer-head h6 {
  font-size: 1.4rem;
  margin: 0 0 5px;
  text-transform: uppercase;
}

footer .footer-head p {
  margin: 0 0 20px;
}

footer .footer-head ul {
  list-style: none;
  margin: 0 0 20px;
}

footer .footer-head ul li {
  margin: 0 0 5px;
}

footer .footer-head ul li a:focus {
  outline: 1px dotted #b6491a;
  text-decoration: none;
}

footer .footer-head ul li strong {
  color: #000000;
}

footer .footer-head ul li ul {
  margin: 0 0 0 15px;
}

footer .footer-head .sign-up {
  font-size: 1.6rem;
  line-height: 2.2rem;
  max-width: 300px;
  padding-left: 35px;
  position: relative;
}

footer .footer-head .sign-up a {
  text-decoration: none;
}

footer .footer-head .sign-up a:hover,
footer .footer-head .sign-up a:focus {
  text-decoration: underline;
}

footer .footer-head .sign-up a i {
  font-size: 2.4rem;
  left: 0;
  position: absolute;
  top: 5px;
}

footer .footer-head .social {
  text-transform: uppercase;
}

footer .footer-head .social span {
  display: inline-block;
  margin: 0 10px 0 0;
}

footer .footer-head .social a {
  display: inline-block;
  font-size: 2.2rem;
  margin: 0 8px 0 0;
  padding: 0 2px;
}

footer .footer-head .social a:last-child {
  margin: 0;
}

footer .footer-head .social a:hover,
footer .footer-head .social a:focus {
  color: #000000;
}

footer .footer-main {
  background: #3e3434;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 2rem;
  padding: 30px 0 15px;
}

footer .footer-main .county-text {
  color: #bd8f31;
  font-family: "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
  text-transform: uppercase;
}

footer .footer-main p {
  margin: 0 0 20px;
}

footer .footer-main ul {
  list-style: none;
  margin: 0 0 20px;
}

footer .footer-main ul li {
  margin: 0 0 7px;
}

footer .footer-main a {
  color: #ffffff;
}

footer .footer-main .seal {
  margin: 0 0 30px;
  max-width: 180px;
}

footer .footer-main .seal img {
  max-width: 100%;
}

footer .footer-main .sign-up {
  font-size: 1.5rem;
  line-height: 2.1rem;
  max-width: 290px;
  padding-left: 35px;
  position: relative;
}

footer .footer-main .sign-up a i {
  font-size: 2.4rem;
  left: 0;
  position: absolute;
  top: 5px;
}

footer .footer-main .social {
  text-transform: uppercase;
}

footer .footer-main .social span {
  display: inline-block;
  margin: 0 10px 0 0;
}

footer .footer-main .social a {
  display: inline-block;
  font-size: 2rem;
  margin: 0 8px 0 0;
  padding: 0 2px;
}

footer .footer-main .social a:last-child {
  margin: 0;
}

footer .footer-main .social a:hover,
footer .footer-main .social a:focus {
  color: #17687c;
}

@media (min-width: 992px) {
  footer .footer-main .seal {
    margin: -15px 0;
    max-width: 140px;
  }
}
footer .footer-foot {
  background: #1c1717;
  color: #a6a6a6;
  font-size: 1.3rem;
  line-height: 1.9rem;
  padding: 20px 0;
  text-align: center;
}

footer .footer-foot a {
  color: #a6a6a6;
  white-space: nowrap;
}

footer .footer-foot p {
  margin: 0 0 10px;
}

footer .footer-foot .pipe {
  color: #a6a6a6;
}

/*
===================================================================================================
Container
===================================================================================================
*/
.container {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1340px;
  }
}
/*
===================================================================================================
Dropdowns
===================================================================================================
*/
.dropdowns {
  background: #ffffff;
  bottom: 0;
  display: none;
  left: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 50px;
  z-index: 2;
}

.dropdowns .dropdown {
  display: none;
}

.dropdowns .dropdown .dropdown-heading {
  background: #351e16;
  color: #bd8f31;
  padding: 10px 0;
}

.dropdowns .dropdown .dropdown-heading .container {
  position: relative;
}

.dropdowns .dropdown .dropdown-heading .text {
  font-size: 2rem;
  line-height: 3rem;
}

.dropdowns .dropdown .dropdown-heading h2.text {
  margin-bottom: 0;
  letter-spacing: normal;
}

.dropdowns .dropdown .dropdown-heading .close-dropdowns {
  color: #bd8f31;
  display: block;
  padding: 0;
  position: absolute;
  right: 20px;
  top: 3px;
}

.dropdowns .dropdown .dropdown-heading .close-dropdowns:hover,
.dropdowns .dropdown .dropdown-heading .close-dropdowns:focus {
  color: #ffffff;
}

.dropdowns .dropdown .dropdown-heading .close-dropdowns span {
  display: none;
}

.dropdowns .dropdown .dropdown-buttons .buttons {
  margin: -1px -20px -15px;
}

.dropdowns .dropdown .dropdown-buttons .buttons a {
  background: #ffffff;
  border: 1px solid #dededd;
  border-radius: 0;
  color: #808080;
  display: block;
  font-size: 1.6rem;
  margin: 0 0 -1px;
  padding: 10px 20px;
  text-align: left;
  text-decoration: none;
}

.dropdowns .dropdown .dropdown-buttons .buttons a:hover,
.dropdowns .dropdown .dropdown-buttons .buttons a:focus {
  border: 2px solid #b6491a;
  color: #000000;
  padding: 9px 19px;
  position: relative;
  z-index: 1;
}

.dropdowns .dropdown .dropdown-icons {
  background: #505050;
  display: none;
}

.dropdowns .dropdown .dropdown-icons .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -20px;
}

.dropdowns .dropdown .dropdown-icons .icons a {
  border: 1px solid #505050;
  color: #dededd;
  max-width: 20%;
  padding: 15px 10px;
  text-align: center;
  text-decoration: none;
}

.dropdowns .dropdown .dropdown-icons .icons a:hover,
.dropdowns .dropdown .dropdown-icons .icons a:focus {
  border: 1px solid #b6491a;
  color: #ffffff;
}

.dropdowns .dropdown .dropdown-icons .icons a .icon {
  display: block;
  font-size: 3rem;
  margin: 0 0 7px;
}

.dropdowns .dropdown .dropdown-icons .icons a .text {
  display: block;
  font-size: 1.7rem;
  line-height: 1.7rem;
}

.dropdowns .dropdown .dropdown-content {
  padding: 20px 0;
}

.dropdowns .dropdown .dropdown-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2rem;
  margin: 0;
  position: relative;
}

.dropdowns .dropdown .dropdown-content h3 .text {
  border-bottom: 1px solid #cca383;
  color: #b6491a;
  display: block;
  outline: none;
  padding: 10px 0;
  position: relative;
  text-decoration: none;
}

.dropdowns .dropdown .dropdown-content h3 a {
  color: #17687c;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.dropdowns .dropdown .dropdown-content h3 .toggle-list span {
  font-size: 1.6rem;
  padding: 5px 0;
  position: absolute;
  right: 0;
  text-decoration: none;
  top: 7px;
}

.dropdowns .dropdown .dropdown-content h3 .toggle-list span i:last-child {
  display: none;
}

.dropdowns .dropdown .dropdown-content h3 .toggle-list.opened span i:first-child {
  display: none;
}

.dropdowns .dropdown .dropdown-content h3 .toggle-list.opened span i:last-child {
  display: inline;
}

.dropdowns .dropdown .dropdown-content ul {
  display: none;
  font-size: 1.5rem;
  line-height: 2.1rem;
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.dropdowns .dropdown .dropdown-content ul li a {
  color: #505050;
  display: inline-block;
  padding: 0 5px;
}

.dropdowns .dropdown .dropdown-content ul li a:hover,
.dropdowns .dropdown .dropdown-content ul li a:focus {
  color: #000000;
  text-decoration: underline;
}

.dropdowns .dropdown .dropdown-footer hr {
  height: 5px;
}

.dropdowns .dropdown .dropdown-footer h4 {
  margin: 0 0 10px;
}

.dropdowns .dropdown .dropdown-footer h5 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2rem;
  margin: 0;
}

.dropdowns .dropdown .dropdown-footer p {
  margin: 10px 0;
}

.dropdowns .dropdown .dropdown-footer ul {
  font-size: 1.6rem;
  line-height: 2.1rem;
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.dropdowns .dropdown .dropdown-footer .meta {
  font-size: 1.5rem;
  line-height: 2rem;
  text-transform: uppercase;
}

.dropdowns .dropdown .dropdown-footer .emergency {
  margin: 0 0 30px;
}

.dropdowns .dropdown .dropdown-footer .emergency-wildfires,
.dropdowns .dropdown .dropdown-footer .emergency-corona {
  padding-left: 50px;
  position: relative;
}

.dropdowns .dropdown .dropdown-footer .emergency-wildfires .icon,
.dropdowns .dropdown .dropdown-footer .emergency-corona .icon {
  left: 0;
  position: absolute;
  top: 0;
}

.dropdowns .dropdown .dropdown-footer .emergency-soco {
  padding-left: 72px;
  position: relative;
}

.dropdowns .dropdown .dropdown-footer .emergency-soco .icon {
  left: 0;
  position: absolute;
  top: 0;
}

.dropdowns .dropdown .dropdown-footer .emergency-alerts img {
  margin-left: 30px;
}

.dropdowns .dropdown.dropdown-initial {
  background: #351e16;
  color: #ffffff;
}

.dropdowns .dropdown.dropdown-initial .dropdown-content {
  padding: 30px 0 10px;
}

.dropdowns .dropdown.dropdown-initial .dropdown-content .links-dropdowns {
  font-size: 1.7rem;
  line-height: 2.3rem;
}

.dropdowns .dropdown.dropdown-initial .dropdown-content .links-dropdowns li {
  margin: 0 0 20px;
}

.dropdowns .dropdown.dropdown-initial .dropdown-content ul {
  display: block;
  font-size: 1.5rem;
  margin: 0 0 30px;
  padding: 0;
}

.dropdowns .dropdown.dropdown-initial .dropdown-content ul li {
  margin: 0 0 15px;
}

.dropdowns .dropdown.dropdown-initial .dropdown-content ul li a {
  color: #ffffff;
  text-decoration: none;
}

.dropdowns .dropdown.dropdown-initial .dropdown-content ul li a:hover,
.dropdowns .dropdown.dropdown-initial .dropdown-content ul li a:focus {
  color: #ffffff;
  text-decoration: underline;
}

.dropdowns .dropdown.dropdown-initial .dropdown-content hr {
  background: #8a5227;
}

.dropdowns .dropdown.dropdown-search {
  background: #4b4142;
  color: #ffffff;
}

.dropdowns .dropdown.dropdown-search .dropdown-content {
  padding: 30px 0;
}

@media (min-width: 576px) {
  .dropdowns .dropdown .dropdown-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .dropdowns .dropdown .dropdown-content ul {
    display: block !important;
  }

  .dropdowns .dropdown .dropdown-content .toggle-list {
    pointer-events: none;
    display: none;
  }

  .dropdowns .dropdown .dropdown-content .toggle-list span {
    display: none;
  }
}
@media (min-width: 992px) {
  .dropdowns.opened {
    top: 0;
  }

  .dropdowns {
    bottom: auto;
    height: 100%;
    top: -100%;
    -webkit-transition: top 400ms ease-in;
    -o-transition: top 400ms ease-in;
    transition: top 400ms ease-in;
  }

  .dropdowns .dropdown .dropdown-heading {
    background: #ffffff;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #dededd;
    padding: 15px 0;
  }

  .dropdowns .dropdown .dropdown-heading .text {
    font-size: 3rem;
    line-height: 3.6rem;
  }

  .dropdowns .dropdown .dropdown-heading h2.text {
    margin-bottom: 0;
    letter-spacing: normal;
  }

  .dropdowns .dropdown .dropdown-heading .close-dropdowns {
    color: #808080;
    top: 6px;
  }

  .dropdowns .dropdown .dropdown-heading .close-dropdowns:hover,
.dropdowns .dropdown .dropdown-heading .close-dropdowns:focus {
    color: #000000;
  }

  .dropdowns .dropdown .dropdown-heading .close-dropdowns span {
    display: inline;
  }

  .dropdowns .dropdown .dropdown-heading .close-dropdowns i {
    margin-left: 5px;
  }

  .dropdowns .dropdown .dropdown-icons .icons a {
    max-width: 10%;
  }

  .dropdowns .dropdown .dropdown-buttons .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 15px -15px -10px;
  }

  .dropdowns .dropdown .dropdown-buttons .buttons a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: transparent;
    border: 1px solid #b8b8b8;
    color: #505050;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 1.7rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 15px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
  }

  .dropdowns .dropdown .dropdown-buttons .buttons a:hover,
.dropdowns .dropdown .dropdown-buttons .buttons a:focus {
    border: 2px solid #17687c;
    color: #17687c;
    padding: 9px;
  }

  .dropdowns .dropdown .dropdown-content h5 {
    font-size: 2rem;
    line-height: 2.4rem;
  }

  .dropdowns .dropdown .dropdown-content h5 .text {
    margin: 0 5px;
    padding: 10px 0;
  }

  .dropdowns .dropdown .dropdown-content h5 .toggle-list {
    display: none;
  }

  .dropdowns .dropdown .dropdown-content ul {
    font-size: 1.6rem;
  }
}
.side-menu-wrap {
  margin: -30px 0 0;
  padding: 80px 0 0 0;
  position: relative;
}

.side-menu-wrap .row > div {
  position: static;
}

.side-menu-wrap .side-menu.side-menu-initial {
  display: block;
}

.side-menu-wrap .side-menu {
  background: #ffffff;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  z-index: 1;
}

header .side-menu-wrap .side-menu {
  max-height: calc(100vh - 55px);
}

.side-menu-wrap .side-menu .menu-toggle .disabled {
  opacity: 1;
}

.side-menu-wrap .side-menu .menu-toggle {
  background: #17687c;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.4rem;
  margin: 0;
}

.side-menu-wrap .side-menu .menu-toggle .img-wrap {
  display: none;
}

.side-menu-wrap .side-menu .menu-toggle .section-title {
  display: none;
}

.side-menu-wrap .side-menu .menu-toggle a {
  color: #ffffff;
  display: block;
  margin: 0;
  padding: 13px 50px 13px 20px;
  outline: none;
  position: relative;
  text-decoration: none;
}

.side-menu-wrap .side-menu .menu-toggle a .icons {
  font-size: 1.6rem;
  position: absolute;
  right: 20px;
  top: 13px;
}

.side-menu-wrap .side-menu .menu-toggle a .icons i:last-child {
  display: none;
}

.side-menu-wrap .side-menu .menu-toggle a.opened .icons i:first-child {
  display: none;
}

.side-menu-wrap .side-menu .menu-toggle a.opened .icons i:last-child {
  display: inline;
}

.side-menu-wrap .side-menu .menu-toggle button {
  background: none;
  color: #ffffff;
  border: none;
  width: 100%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 13px 20px 13px 20px;
  outline: none;
  position: relative;
  text-decoration: none;
}

.side-menu-wrap .side-menu .menu-toggle button:hover .menu-toggle-title,
.side-menu-wrap .side-menu .menu-toggle button:focus .menu-toggle-title {
  text-decoration: underline;
}

.side-menu-wrap .side-menu .menu-toggle button .icons i:last-child {
  display: none;
}

.side-menu-wrap .side-menu .menu-toggle button.opened .icons i:first-child {
  display: none;
}

.side-menu-wrap .side-menu .menu-toggle button.opened .icons i:last-child {
  display: inline;
}

.side-menu-wrap .side-menu .menu-lists {
  border-bottom: 1px solid #dededd;
  display: none;
}

.side-menu-wrap .side-menu .menu-lists ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-menu-wrap .side-menu .menu-lists ul li {
  display: block;
  margin: 0;
  position: relative;
}

.side-menu-wrap .side-menu .menu-lists ul li a.on {
  background: #dededd;
  font-weight: 700;
}

.side-menu-wrap .side-menu .menu-lists ul li a:hover,
.side-menu-wrap .side-menu .menu-lists ul li a:focus {
  background: #f4f3f3;
}

.side-menu-wrap .side-menu .menu-lists ul li a {
  border-top: 1px solid #dededd;
  color: #505050;
  display: block;
  font-size: 1.5rem;
  line-height: 2.1rem;
  padding: 10px 50px 10px 20px;
  text-decoration: none;
}

.side-menu-wrap #mobileLeftNav.menu-lists ul li a {
  padding: 10px 20px;
  width: 100%;
}

.side-menu-wrap .side-menu .menu-lists ul li .target-icon {
  font-size: 2rem;
  padding: 10px 20px;
  position: absolute;
  right: 0;
  top: 0;
}

.side-menu-wrap .side-menu .menu-lists ul li.back a,
.side-menu-wrap #mobileLeftNav.menu-lists ul li.back a {
  font-weight: 700;
  padding-left: 35px;
}

.side-menu-wrap .side-menu .menu-lists ul li.back a i {
  color: #b6491a;
  left: 20px;
  font-size: 2rem;
  position: absolute;
  top: 12px;
}

.side-menu-wrap .side-menu .menu-lists ul li.parent div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.side-menu-wrap .side-menu .menu-lists ul li.parent ul {
  border-top: 1px solid #dededd;
  display: none;
}

.side-menu-wrap .side-menu .menu-lists ul li.parent ul li:first-child a {
  border-top: none;
}

.side-menu-wrap .side-menu .menu-lists ul li.parent ul li {
  margin-left: 15px;
}

.side-menu-wrap .side-menu .menu-lists ul li button {
  background: #ffffff;
  color: #505050;
  border: none;
  border-top: 1px solid #dededd;
  border-left: 1px solid #dededd;
  padding: 10px 20px;
  line-height: 2.1rem;
}

.side-menu-wrap .side-menu .menu-lists ul li button:hover,
.side-menu-wrap .side-menu .menu-lists ul li button:focus {
  background: #f4f3f3;
}

.side-menu-wrap .side-menu .menu-lists ul li button i:last-child {
  display: none;
}

.side-menu-wrap .side-menu .menu-lists ul li.opened button i:first-child {
  display: none;
}

.side-menu-wrap .side-menu .menu-lists ul li.opened button i:last-child {
  display: inline;
}

.side-menu-wrap .side-menu .menu-filters {
  display: none;
}

.side-menu-wrap .side-menu .menu-filters h6 {
  padding: 10px 20px 0;
}

.side-menu-wrap .side-menu .menu-filters hr {
  margin: 0 0 15px;
}

.side-menu-wrap .side-menu .menu-filters .list-checklist li a {
  padding: 5px 20px 5px 45px;
}

.side-menu-wrap .side-menu .menu-filters .list-checklist li a:after {
  left: 20px;
}

.side-menu-wrap .side-menu .menu-filters .list-checklist-icons li a {
  padding: 5px 20px 5px 45px;
}

.side-menu-wrap .side-menu .menu-filters .list-checklist-icons li a i {
  left: 20px;
}

.side-menu-wrap .side-menu .side-accordion {
  border-bottom: 1px solid #dededd;
}

.side-menu-wrap .side-menu .side-accordion ul {
  margin: 0 0 15px;
}

.side-menu-wrap .side-menu .side-accordion .toggle {
  margin: 0;
  padding-top: 0;
}

.side-menu-wrap .side-menu .side-accordion .toggle a {
  display: block;
  color: #505050;
  padding: 10px 30px 10px 0;
  position: relative;
  text-decoration: none;
}

.side-menu-wrap .side-menu .side-accordion .toggle a:after {
  content: "+";
  font-size: 2rem;
  position: absolute;
  right: 0;
  top: 10px;
}

.side-menu-wrap .side-menu .side-accordion.opened .toggle a:after {
  content: "–";
}

.side-menu-wrap .side-menu-initial .banner-title.title {
  padding: 20px;
  font-size: 2rem;
  line-height: 2.4rem;
  margin: 0;
}

#micrositeMobileNav .side-menu .menu-lists ul li.parent div {
  width: 100%;
}

#micrositeMobileNav .side-menu .menu-lists ul li.parent div a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#micrositeMobileNav .side-menu .menu-lists ul li.parent button {
  background: none;
  color: #FFF;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  line-height: 2.1rem;
}

#micrositeMobileNav .side-menu .menu-lists ul li.parent button:hover,
#micrositeMobileNav .side-menu .menu-lists ul li.parent button:focus {
  background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .side-menu-wrap {
    padding: 94px 0 0 0;
  }

  .side-menu-wrap .side-menu .menu-toggle a {
    padding: 20px 50px 20px 20px;
  }

  .side-menu-wrap .side-menu .menu-toggle a .icons {
    top: 20px;
  }
}
@media (min-width: 992px) {
  .side-menu-wrap {
    margin: 0;
    padding: 0;
  }

  .side-menu-wrap .side-menu {
    -webkit-box-shadow: none;
            box-shadow: none;
    left: auto;
    margin-right: 20px;
    max-height: none;
    max-width: 300px;
    min-width: 300px;
    position: static;
    top: auto;
  }

  .side-menu-wrap .side-menu .menu-toggle {
    margin: 0 0 20px;
  }

  .side-menu-wrap .side-menu .menu-toggle .img-wrap {
    display: block;
  }

  .side-menu-wrap .side-menu .menu-toggle a {
    padding: 13px 8px;
    pointer-events: none;
  }

  .side-menu-wrap .side-menu .menu-toggle .title {
    color: #ffffff;
    display: block;
    margin: 0;
    padding: 13px 8px;
    outline: none;
    position: relative;
    text-decoration: none;
  }

  .side-menu-wrap .side-menu .menu-toggle button {
    display: none;
  }

  .side-menu-wrap .side-menu .menu-lists {
    display: block !important;
  }

  .side-menu-wrap .side-menu .menu-lists ul li .target-icon {
    padding: 10px;
  }

  .side-menu-wrap .side-menu .menu-lists ul li button {
    padding: 10px;
  }

  .side-menu-wrap .side-menu .menu-lists ul li.back a {
    padding-left: 25px;
  }

  .side-menu-wrap .side-menu .menu-lists ul li.back a i,
.side-menu-wrap .side-menu .menu-lists ul li.back button i {
    left: 5px;
  }

  .side-menu-wrap .side-menu.side-menu-filters {
    max-width: 250px;
    min-width: 250px;
  }

  .side-menu-wrap .side-menu .menu-filters {
    display: block !important;
  }

  .side-menu-wrap .side-menu .menu-filters h6 {
    padding: 10px 0 0;
  }

  .side-menu-wrap .side-menu .menu-filters .list-checklist li a {
    padding: 5px 20px 5px 30px;
  }

  .side-menu-wrap .side-menu .menu-filters .list-checklist li a:after {
    left: 5px;
  }
}
.category-filters {
  border: 1px solid #CCC;
  margin-bottom: 20px;
}

.category-filter button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  width: 100%;
  padding: 15px 12px;
  margin: 0;
  background: #F0F0F0;
  border: none;
  border-bottom: 1px solid #CCC;
  font-weight: 600;
  outline: none;
}

.category-filter:last-of-type button {
  border-bottom: none;
}

.category-filter:last-of-type button[aria-expanded=true] {
  border-bottom: 1px solid #CCC;
}

.category-filter button:hover span,
.category-filter button:focus span {
  text-decoration: underline;
}

.category-filter button i:last-child {
  display: none;
}

.category-filter button[aria-expanded=true] i:last-child {
  display: block;
}

.category-filter button[aria-expanded=true] i:first-child {
  display: none;
}

.category-filter ul {
  max-height: 300px;
  overflow-y: auto;
  background: #FAFAFA;
  list-style-type: none;
  margin: 0;
  padding: 10px;
  border-bottom: 1px solid #CCC;
}

.category-filter:last-of-type ul {
  border-bottom: none;
}

.category-filter ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}

.category-filter ul li label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 0 0 5px;
  padding: 4px;
}

.category-filter ul li label:hover,
.category-filter ul li input:hover + label,
.category-filter ul li input:focus + label {
  text-decoration: underline;
}

.clear-filters-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.clear-filters-container .clear-filters {
  border: 1px solid #CCC;
  background: #F0F0F0;
  padding: 5px 10px;
  outline: none;
}

.clear-filters-container .clear-filters:hover,
.clear-filters-container .clear-filters:focus {
  text-decoration: underline;
}

.filterable-item {
  border-top: 1px solid #DDD;
}

.filterable-item.listing .content {
  padding: 20px 0 10px 0;
}

.filterable-item.listing .content p {
  margin-bottom: 10px;
}

.filterable-thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.filterable-thumb .col-sm-auto {
  padding: 0;
  margin-bottom: 10px;
}

.accordions .accordion {
  border-bottom: 1px solid #cccccc;
  margin: 0 0 20px;
}

.accordions .accordion .toggle {
  font-size: 2.1rem;
  line-height: 2.4rem;
  margin: 0;
}

.accordions .accordion .toggle a {
  color: #303030;
  display: block;
  padding: 10px 20px 10px 30px;
  position: relative;
  text-decoration: none;
}

.accordions .accordion .toggle a:after {
  color: #17687c;
  content: "\f0fe";
  font-family: "Font Awesome 5 Free";
  font-size: 1.6rem;
  left: 5px;
  position: absolute;
  top: 10px;
}

.accordions .accordion.opened .toggle a:after {
  content: "\f146";
}

.accordions .accordion .content {
  padding: 20px 0 20px 30px;
}

.accordions .accordion .content p {
  margin: 0 0 10px;
}

.accordions .accordion .content .data-table-wrap {
  margin: -20px 0 0 -30px;
}

.banner {
  margin: -30px 0 30px;
  position: relative;
}

.banner .banner-bar {
  background: #351e16;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.banner .slick-slider {
  margin: 0 -20px;
}

@media (min-width: 768px) {
  .banner .banner-bar {
    height: 130px;
  }
}
@media (min-width: 992px) {
  .banner .slick-slider {
    margin: 0;
  }
}
.body-copy .h2,
.body-copy h2 {
  margin: 0 0 15px;
}

.body-copy .h3 a,
.body-copy h3 a {
  color: #505050;
}

.body-copy .h3 a:hover,
.body-copy .h3 a:focus,
.body-copy h3 a:hover,
.body-copy h3 a:focus {
  -webkit-text-decoration-color: #000000;
          text-decoration-color: #000000;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
}

.box-upcoming-events {
  border: #cccccc;
  border-style: solid;
  width: -webkit-fill-available;
  border-width: 1px;
  padding: 20px;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.box-upcoming-events p {
  margin: 0;
}

.box-alert {
  background: #17687c;
  margin: 0 0 30px;
  padding: 2px;
}

.box-alert .content {
  background: #f4f3f3;
  padding: 20px 20px 10px;
}

.box-alert .content p {
  margin: 0 0 10px;
}

.box-index {
  border: 1px solid #cccccc;
  margin: 0 0 30px;
  padding: 20px 20px;
}

.box-index ul {
  list-style: none;
  margin: 0;
}

.box-index ul li {
  margin: 0 0 5px;
}

.box-index ul li a {
  color: #4c4c4c;
}

.box-core {
  height: 100%;
  padding: 0 0 30px;
}

.box-core .content {
  background: #ffffff;
  border: 1px solid #cccccc;
  color: #505050;
  font-size: 1.3rem;
  height: 100%;
  line-height: 1.7rem;
  padding: 15px 15px 15px;
  position: relative;
  -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: -webkit-box-shadow 0.2s ease-in-out;
  -o-transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}

.box-core .content .h5,
.box-core .content h5 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 2.6rem;
}

.box-core .content .h5 a,
.box-core .content h5 a {
  color: #505050;
}

.box-core .content p {
  margin: 0 0 10px;
}

.box-core .content .img-wrap {
  margin: -15px -15px 15px;
}

.box-core:hover .content,
.box-core:focus .content {
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.box-event {
  height: 100%;
}

.box-event .content {
  background: #ffffff;
  border: 1px solid #cccccc;
  color: #505050;
  font-size: 1.8rem;
  height: 100%;
  line-height: 2.4rem;
  margin: 0 -1px;
  padding: 15px 15px 5px;
  position: relative;
  -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: -webkit-box-shadow 0.2s ease-in-out;
  -o-transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}

.box-event .content h5 {
  font-size: 1.4rem;
  line-height: 2rem;
}

.box-event .content h5 a {
  color: #505050;
}

.box-event .content p {
  margin: 0 0 10px;
}

.box-event .content p a {
  color: #505050;
}

.box-event .content .day {
  font-size: 5rem;
  font-weight: 300;
  line-height: 5rem;
  margin: 0 0 5px;
}

.box-event .content .date,
.box-event .content .time {
  color: #303030;
  font-weight: 700;
  margin: 0 0 5px;
}

.box-event .content .border-bar {
  background: #351e16;
  height: 4px;
  margin: 0 0 5px;
  width: 65px;
}

.box-event:hover .content,
.box-event:focus .content {
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.box-blog {
  height: 100%;
  padding: 0 0 30px;
}

.box-blog .content {
  background: transparent;
  border-bottom: 1px solid #cccccc;
  color: #505050;
  font-size: 1.5rem;
  height: 100%;
  line-height: 2.5rem;
}

.box-blog .content .h4,
.box-blog .content h4 {
  font-size: 2.2rem;
  line-height: 2.6rem;
}

.box-blog .content .h4 a,
.box-blog .content h4 a {
  color: #505050;
}

.box-blog .content p {
  margin: 0 0 15px;
}

.box-cta {
  height: 100%;
  padding: 0 0 30px;
}

.box-cta .content {
  background: #ffffff;
  border: 1px solid #cccccc;
  color: #505050;
  font-size: 1.4rem;
  height: 100%;
  line-height: 1.8rem;
  padding: 15px 15px 15px;
  position: relative;
  -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: -webkit-box-shadow 0.2s ease-in-out;
  -o-transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}

.box-cta .content h5 {
  font-size: 1.6rem;
  line-height: 2.2rem;
}

.box-cta .content p {
  margin: 0 0 10px;
}

.box-cta:hover .content,
.box-cta:focus .content {
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.box-info {
  background: #f4f3f3;
  margin: 0 0 30px;
  padding: 50px 50px 40px;
}

.box-info .content {
  color: #303030;
}

.box-info .content h3 {
  margin: 0 0 30px;
}

.box-info .content p {
  margin: 0 0 10px;
}

.box-link {
  height: 100%;
  padding: 0 0 30px;
}

.box-link .content {
  background: #ffffff;
  border: 1px solid #cccccc;
  color: #505050;
  font-size: 1.4rem;
  height: 100%;
  line-height: 1.8rem;
  padding: 15px 15px 15px;
  position: relative;
  -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: -webkit-box-shadow 0.2s ease-in-out;
  -o-transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}

.box-link .content .h5,
.box-link .content h5 {
  font-size: 1.8rem;
  line-height: 2rem;
}

.box-link .content p {
  margin: 0 0 10px;
}

.box-link .content .border-bar {
  background: #351e16;
  left: -1px;
  height: 4px;
  position: absolute;
  right: -1px;
  top: -2px;
}

.box-link .content .icon {
  color: #17687c;
  bottom: 5px;
  font-size: 1.8rem;
  position: absolute;
  right: 7px;
  -webkit-transition: right 0.2s ease-in-out;
  -o-transition: right 0.2s ease-in-out;
  transition: right 0.2s ease-in-out;
}

.box-link:hover .content,
.box-link:focus .content {
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.box-link:hover .content .icon,
.box-link:focus .content .icon {
  right: 5px;
}

.box-profile {
  height: 100%;
  padding: 0 0 30px;
}

.box-profile .content {
  background: #ffffff;
  border: 1px solid #cccccc;
  color: #505050;
  font-size: 1.6rem;
  height: 100%;
  line-height: 2rem;
  padding: 20px 20px 10px;
  position: relative;
  -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: -webkit-box-shadow 0.2s ease-in-out;
  -o-transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}

.box-profile .content .h5,
.box-profile .content h5 {
  font-size: 2rem;
  line-height: 2.2rem;
  margin: 0 0 10px;
}

.box-profile .content .h5 a,
.box-profile .content h5 a {
  color: #17687c;
  font-weight: 400;
}

.box-profile .content p {
  margin: 0 0 10px;
}

.box-profile .content .border-bar {
  background: #351e16;
  left: -1px;
  height: 4px;
  position: absolute;
  right: -1px;
  top: -2px;
}

.box-profile:hover .content,
.box-profile:focus .content {
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.box-tabs {
  background: #ffffff;
  margin: 0 0 45px;
}

.box-tabs .box-tab-nav {
  border-bottom: 1px solid #cccccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.box-tabs .box-tab-nav a {
  background: #f4f3f3;
  border: 1px solid #cccccc;
  border-bottom: none;
  color: #505050;
  font-size: 2.4rem;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 50%;
}

.box-tabs .box-tab-nav a span {
  display: inline-block;
  position: relative;
}

.box-tabs .box-tab-nav a span:after {
  background: #351e16;
  bottom: -10px;
  content: " ";
  height: 4px;
  left: -10px;
  opacity: 0;
  position: absolute;
  right: -10px;
  -webkit-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

.box-tabs .box-tab-nav a:hover span:after,
.box-tabs .box-tab-nav a:focus span:after {
  opacity: 1;
}

.box-tabs .box-tab-nav a.on {
  background: #ffffff;
  color: #aa6631;
}

.box-tabs .box-tab-nav a.on span:after {
  opacity: 1;
}

.box-tabs .tabs .tile {
  margin: 0 0 15px;
  padding: 0;
}

.box-tabs .tabs .tile .inner {
  border-top: none;
}

.button-row {
  text-align: center;
}

.button-row a {
  margin: 0 10px 10px 10px;
}

.button-row a:hover,
.button-row a:focus {
  background: #0b323b !important;
}

.buttons-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -5px -5px 25px;
}

.buttons-icons a {
  margin: 5px;
}

.buttons-svgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -2px -5px 25px;
}

.buttons-svgs a {
  margin: 5px 5px 0;
}

.buttons-svgs a svg {
  height: 36px;
  width: 36px;
}

.buttons-svgs a svg {
  fill: #006838;
}

.buttons-svgs a:hover svg,
.buttons-svgs a:focus svg {
  fill: #0273cb;
}

@media (min-width: 768px) {
  .button-row {
    text-align: left;
  }

  .button-row a {
    margin: 0 10px 10px 0;
  }
}
.buttons-tile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -9px 30px;
}

.buttons-tile a {
  background: #ffffff;
  border: 1px solid #cccccc;
  color: #808080;
  display: block;
  font-size: 1.5rem;
  line-height: 1.8rem;
  margin: 9px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: -webkit-box-shadow 0.2s ease-in-out;
  -o-transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  width: 100px;
}

.buttons-tile a:hover,
.buttons-tile a:focus {
  border-color: #351e16;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  color: #351e16;
}

.buttons-tile .icon {
  display: block;
  font-size: 2.6rem;
  margin: 0 0 10px;
}

.buttons-tile .text {
  display: block;
}

.card {
  font-size: 1.5rem;
  line-height: 2.1rem;
  margin: 0 0 30px;
  padding: 20px 20px 10px;
}

.card h5 {
  margin: 0 0 15px;
}

.card p {
  margin: 0 0 15px;
}

.card .icon {
  margin-right: 5px;
}

.crumbs {
  color: #505050;
  display: none;
  font-size: 1.3rem;
  line-height: 1.6rem;
  margin: 0 0 30px;
  text-transform: uppercase;
}

.crumbs a {
  color: #505050;
  text-decoration: none;
}

.crumbs a:hover,
.crumbs a:focus {
  color: #17687c;
}

@media (min-width: 576px) {
  .crumbs {
    display: block;
  }
}
/* Full Calendar */
.fc table {
  margin: 0;
}

.flex-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-buttons a {
  font-size: 1.8rem;
  line-height: 2.4rem;
  padding: 10px;
  text-decoration: none;
  width: 50%;
}

.flex-buttons a span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #17687c;
  color: #4c4c4c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  text-align: center;
  -webkit-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  width: 100%;
}

.flex-buttons a:hover span,
.flex-buttons a:focus span {
  background: #17687c;
  color: #ffffff;
}

@media (min-width: 576px) {
  .flex-buttons a {
    width: 33.333333%;
  }
}
@media (min-width: 768px) {
  .flex-buttons a {
    width: 25%;
  }
}
@media (min-width: 992px) {
  .flex-buttons a {
    width: 20%;
  }
}
.front-intro .row {
  margin-bottom: 20px;
}

.front-intro .row:first-child,
.front-intro .row:last-child {
  margin-bottom: 0;
}

.front-intro .box-alert:last-child {
  margin-bottom: 0;
}

.link-cta {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2rem;
}

.link-cta i {
  margin-left: 5px;
}

.link-list {
  height: 100%;
  padding: 0 0 30px;
}

.link-list ul {
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  font-size: 1.6rem;
  height: 100%;
  line-height: 2.6rem;
  list-style: none;
  margin: 0 0 0 -1px;
  padding: 0 15px;
}

.link-list ul li {
  margin: 0 0 10px;
}

.list-checklist {
  list-style: none;
  margin: 0 0 30px;
}

.list-checklist li {
  margin: 0;
}

.list-checklist li a {
  color: #505050;
  display: block;
  padding: 5px 0 5px 25px;
  position: relative;
}

.list-checklist li a.on:after {
  content: "\f14a";
}

.list-checklist li a:after {
  content: "\f0c8";
  font-family: "Font Awesome 5 Free";
  left: 0;
  position: absolute;
  top: 5px;
}

.list-checklist-icons {
  list-style: none;
  margin: 0 0 30px;
}

.list-checklist-icons li {
  margin: 0;
}

.list-checklist-icons li a {
  color: #505050;
  display: block;
  padding: 5px 0 5px 25px;
  position: relative;
}

.list-checklist-icons li a i {
  left: 0;
  position: absolute;
  top: 10px;
}

.list-dots {
  list-style: none;
}

.list-dots li {
  position: relative;
}

.list-dots li:before {
  background: #000000;
  border-radius: 100%;
  content: " ";
  display: block;
  height: 2px;
  left: -12px;
  position: absolute;
  top: 12px;
  width: 2px;
}

.list-icons {
  list-style: none;
  margin-left: 15px;
}

.list-inline {
  position: relative;
  overflow: hidden;
}

.list-inline ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.5rem;
  line-height: 1.7rem;
  list-style: none;
  margin: -5px -11px 15px;
}

.list-inline li:nth-child(1),
.list-inline li:nth-child(2) {
  border-left: none;
}

.list-inline li {
  border-left: 1px solid #cccccc;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  line-height: 2rem;
  margin: 5px 0;
  overflow: hidden;
  padding: 2px 10px;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.list-inline li .icon {
  padding-left: 18px;
  position: relative;
}

.list-inline li > .icon > span {
  left: 0;
  position: absolute;
  top: 0;
}

.list-inline li > .pipe {
  margin: 0 2px;
}

.list-item-icon {
  padding-left: 20px;
  position: relative;
}

.list-item-icon a {
  color: #505050;
  margin-right: 5px;
}

.list-item-icon a:hover,
.list-item-icon a:focus {
  color: #000000;
}

.list-item-icon .icon {
  color: #17687c;
  left: 0;
  position: absolute;
  top: 0;
}

.list-item-icon .meta {
  white-space: nowrap;
}

.list-no-bull {
  list-style: none;
  margin-left: 0;
}

.listing .h3 a,
.listing h3 a {
  color: #505050;
}

.listing .h4 a,
.listing h4 a {
  color: #505050;
}

.listing .h5,
.listing h5 {
  font-weight: 400;
}

.listing .h5 a,
.listing h5 a {
  color: #505050;
}

.listing .content {
  font-size: 1.5rem;
  line-height: 2.1rem;
  padding: 0 0 15px;
}

.listing .content h4 {
  font-weight: 300;
  margin: 0 0 15px;
}

.listing .content h5 {
  font-weight: 400;
  margin: 0 0 15px;
}

.listing .content p {
  margin: 0 0 15px;
}

.listing .content a:hover,
.listing .content a:focus {
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
}

.listing .content .category {
  color: #505050;
  font-size: 1.3rem;
  line-height: 1.8rem;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.listing .content .link {
  font-size: 1.3rem;
  line-height: 1.8rem;
}

.listing .content .meta {
  font-size: 1.3rem;
  line-height: 1.8rem;
  margin: 0 0 10px;
}

.listing .content .pipe {
  margin: 0 3px;
}

.formatted-list h2 {
  background: #351e16;
  border: 1px solid #351e16;
  color: #fff;
  font-weight: 400;
  padding: 12px 15px;
  text-transform: uppercase;
  margin: 0;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: normal;
}

.formatted-list ul {
  list-style-type: none;
  margin-left: 0;
}

.formatted-list ul li {
  padding: 10px 15px;
  border: 1px solid #CCC;
  border-top: none;
  margin: 0;
  font-size: 1.4rem;
  line-height: 2rem;
}

.formatted-list ul li a {
  overflow-wrap: break-word;
}

.formatted-list ul li .icon {
  left: 15px;
  top: 10px;
}

.formatted-list ul li .name {
  margin-left: 20px;
}

.formatted-list ul li:nth-child(even) {
  background: #f4f3f3;
}

.filter-box {
  margin: 0 0 30px;
  position: relative;
}

.filter-box .toggle {
  background: #f4f3f3;
  border: 1px solid #cccccc;
  color: #505050;
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 7px 40px 7px 15px;
  position: relative;
  text-decoration: none;
}

.filter-box .toggle .icons {
  font-size: 1.4rem;
  position: absolute;
  right: 15px;
  top: 7px;
}

.filter-box .toggle .icons i:last-child {
  display: none;
}

.filter-box .toggle.opened .icons i:first-child {
  display: none;
}

.filter-box .toggle.opened .icons i:last-child {
  display: inline;
}

.filter-box .content {
  background: #f4f3f3;
  border: 1px solid #cccccc;
  border-top: none;
  display: none;
  left: 0;
  padding: 15px 15px 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1;
}

.filters {
  background: #f4f3f3;
  border: 1px solid #cccccc;
  margin: 0 0 30px;
  padding: 15px 15px 5px;
}

.filters .search-wrap {
  margin: 0 0 10px;
}

.filters .select-box {
  margin: 0 0 10px;
}

.filters .select-box label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 10px;
}

.filters .select-box select {
  width: 150px;
}

.filters .select-box .label-text {
  margin: 0 10px 0 0;
  white-space: nowrap;
}

.filters .switch-wrap {
  margin: 0 0 10px;
}

.filters .switch-wrap .switch {
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 36px;
  color: #505050;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 4px;
  text-decoration: none;
}

.filters .switch-wrap .switch > span {
  border-radius: 36px;
  display: block;
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 4px 10px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.filters .switch-wrap .switch > span:first-child {
  width: 40%;
}

.filters .switch-wrap .switch > span:last-child {
  width: 60%;
}

.filters .switch-wrap .switch > span.on {
  background: #505050;
  color: #ffffff;
  font-weight: 700;
  display: inline;
}

.filters .switch-wrap .switch a {
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 36px;
  display: block;
  height: 36px;
  outline: none;
  overflow: hidden;
}

.filters .switch-wrap .switch a > span {
  border-radius: 100%;
  color: #505050;
  display: block;
  left: 7px;
  height: 22px;
  overflow: hidden;
  position: absolute;
  text-decoration: none;
  top: 7px;
  -webkit-transition: left 0.2s ease-in-out;
  -o-transition: left 0.2s ease-in-out;
  transition: left 0.2s ease-in-out;
  width: 22px;
}

.filters .switch-wrap .switch a.switched > span {
  left: 40px;
}

.filters .toggle-view {
  margin: 0 0 10px;
}

.filters .toggle-view label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.filters .toggle-view .label-text {
  margin: 0 10px 0 0;
}

.filters .toggle-view a {
  background: #ffffff;
  border: 1px solid #cccccc;
  color: #505050;
  font-size: 1.8rem;
  line-height: 2.2rem;
  padding: 8px;
  position: relative;
  text-align: center;
  width: 42px;
}

.filters .toggle-view a:last-child {
  left: -1px;
}

.filters .toggle-view a.on {
  background: #505050;
  border-color: #505050;
  color: #ffffff;
}

@media (min-width: 992px) {
  .filters .switch-wrap {
    float: right;
  }

  .filters .switch-wrap .switch {
    width: 360px;
  }
}
.filters-checklist ul {
  list-style: none;
  margin: 0 0 15px;
}

.filters-checklist ul li {
  margin: 0 0 3px;
  padding-left: 23px;
  position: relative;
}

.filters-checklist ul li input {
  left: 0;
  position: absolute;
  top: 7px;
}

.filters-parks form {
  margin: 0 0 10px;
  max-width: 500px;
  padding-right: 100px;
  position: relative;
}

.filters-parks form button {
  position: absolute;
  right: 0;
  top: 0;
}

.filters-parks .icon {
  align-item: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 10px;
  padding: 0 15px;
  white-space: nowrap;
}

.form-search {
  position: relative;
}

.form-search input {
  padding-right: 100px;
}

.form-search button {
  background: transparent;
  border: none;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
}

.form-select label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-select label span {
  font-size: 1.6rem;
  margin: 0 10px 0 0;
  white-space: nowrap;
}

.img-thumb {
  overflow: hidden;
  padding-bottom: 75%;
  position: relative;
}

.img-thumb img {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.img-window {
  margin: -30px 0;
}

.img-window img {
  max-width: 100%;
}

.img-wrap img {
  max-width: 100%;
}

.img-wrap .caption {
  display: block;
  font-size: 1.4rem;
  line-height: 2rem;
  padding: 10px 0;
}

.img-wrap a .caption {
  color: #4c4c4c;
}

.img-wrap a:hover .caption,
.img-wrap a:focus .caption {
  color: #17687c;
}

@media (min-width: 576px) {
  .img-max-width-sm-270 {
    max-width: 270px;
  }
}
@media (min-width: 768px) {
  .img-max-width-md-200 {
    max-width: 200px;
  }

  .img-max-width-md-270 {
    max-width: 270px;
  }

  .img-max-width-md-350 {
    max-width: 350px;
  }

  .img-float-right-md-360 {
    float: right;
    margin: 4px 0 30px 30px;
    max-width: 360px;
  }
}
@media (min-width: 992px) {
  .img-max-width-lg-270 {
    max-width: 270px;
  }

  .img-max-width-lg-534 {
    max-width: 534px;
  }
}
.map-wrap {
  padding-bottom: 70%;
  position: relative;
}

.map-wrap iframe,
.map-wrap object {
  border: none;
  bottom: 0;
  left: 0;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.mfp-iframe-holder .mfp-content {
  border: 40px solid #000000;
  margin-top: -60px;
}

.mfp-iframe-holder .mfp-content .mfp-close {
  height: 40px;
  padding-right: 0;
  position: absolute;
  right: -40px;
  text-align: center;
  top: -40px;
  width: 40px;
}

.mfp-iframe-holder .mfp-content .mfp-title {
  background: #000000;
  color: #ffffff;
  font-size: 1.6rem;
  left: -40px;
  line-height: 2rem;
  position: absolute;
  padding: 30px 40px 40px;
  right: -40px;
  top: 100%;
}

.mfp-image-holder .mfp-content .mfp-close {
  height: 40px;
  padding-right: 0;
  position: absolute;
  right: 0;
  text-align: center;
  width: 40px;
}

.mfp-content {
  background: #000000;
  padding: 40px;
}

.mfp-content .mfp-figure::after {
  display: none;
}

.mfp-content img.mfp-img {
  padding: 0 0 20px;
}

.mfp-content .mfp-bottom-bar {
  margin-top: 0;
  position: static;
}

.mfp-content .mfp-bottom-bar .mfp-title {
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 2rem;
  margin: 0 0 20px;
}

.mfp-content .mfp-bottom-bar .mfp-counter {
  color: #ffffff;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 2rem;
  position: static;
  text-align: center;
}

.mfp-content .mfp-bottom-bar .mfp-counter::before {
  content: "\f030";
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  margin-right: 8px;
}

.mfp-content .mfp-arrow {
  height: 80px;
  margin-top: -80px;
  width: 40px;
}

.mfp-content .mfp-arrow:active {
  margin-top: -80px;
}

.mfp-content .mfp-arrow::before {
  display: none;
}

.mfp-content .mfp-arrow::after {
  top: 0;
  margin-top: 25px;
}

.mfp-content .mfp-arrow-left::after {
  margin-left: 6px;
}

.mfp-content .mfp-arrow-right::after {
  margin-left: 13px;
}

@media (max-width: 577px) {
  .mobile-hidden {
    display: none;
  }
}
.page-links {
  font-size: 1.5rem;
  line-height: 2.1rem;
}

.page-links a {
  color: #505050;
  display: inline-block;
  margin: 0 0 5px;
  white-space: nowrap;
}

.page-links hr {
  margin: 30px 0;
}

.page-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-nav .pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 10px 20px;
}

.page-nav .pager span,
.page-nav .pager a {
  border: 1px solid #cccccc;
  color: #505050;
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2rem;
  margin-right: -1px;
  outline: none;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  width: 42px;
}

.page-nav .pager a:first-child,
.page-nav .pager a:last-child {
  color: #17687c;
}

.page-nav .pager a.disabled {
  color: #505050;
}

.page-nav .pager a.on,
.page-nav .pager a.on:hover,
.page-nav .pager a.on:focus {
  background: #505050;
  color: #ffffff;
  font-weight: 700;
}

.page-nav .pager a:hover,
.page-nav .pager a:focus {
  background: #f4f3f3;
}

.page-nav .count {
  margin: 0 10px 20px;
  max-width: 140px;
}

.page-nav .count select {
  border-radius: 0;
  font-size: 1.5rem;
}

.park-feature-icon {
  margin: 5px;
  width: 40px;
  opacity: 0.85;
}

.search {
  position: relative;
}

.search input {
  background: rgba(255, 255, 255, 0.9);
  padding-right: 50px;
}

.search input:focus {
  background: #ffffff;
}

.search button {
  background: transparent;
  border: none;
  border-left: 1px solid #dededd;
  color: #17687c;
  height: 36px;
  position: absolute;
  right: 3px;
  top: 3px;
  width: 40px;
}

.search-lg input {
  height: 62px;
  padding: 20px;
  padding-right: 80px;
}

.search-lg button {
  height: 56px;
  width: 56px;
}

.search-options label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0 0 10px;
}

.search-options select {
  width: 170px;
}

.search-options .label-text {
  margin: 0 10px 0 0;
  white-space: nowrap;
  text-transform: uppercase;
}

.search-options .select-sm {
  width: 120px;
}

.share {
  color: #808080;
  display: none;
  font-size: 1.3rem;
  line-height: 1.6rem;
  margin: 0 0 30px;
  text-align: right;
}

.share span {
  display: inline-block;
  margin: 0 5px 0 0;
}

.share a {
  color: #505050;
  display: inline-block;
  font-size: 2rem;
  margin: 0 5px 0 0;
  padding: 0 2px;
}

.share a:hover,
.share a:focus {
  color: #000000;
}

.share button {
  color: #505050;
  display: inline-block;
  font-size: 2rem;
  margin: 0 5px 0 0;
  padding: 0 2px;
  background: transparent;
  border: none;
}

.share button:hover,
.share button:focus {
  color: black;
}

.share button:focus {
  outline: 1px dotted #b6491a;
}

@media (min-width: 576px) {
  .share {
    display: block;
  }
}
.slick-slider-wrap .slick-slider {
  min-width: 100%;
  width: 0;
}

.slick-slider {
  display: none !important;
}

.slick-slider.slick-initialized {
  display: block !important;
}

.slick-slider .img-wrap img {
  width: 100%;
}

.slick-arrow {
  background: #ffffff;
  border: none;
  border-radius: 100%;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  height: 32px;
  line-height: 24px;
  margin-top: -16px;
  overflow: hidden;
  outline: none;
  position: absolute;
  text-indent: -999px;
  top: 50%;
  width: 32px;
  z-index: 1;
}

.slick-arrow:after {
  color: #17687c;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: 600;
  position: absolute;
  text-indent: 0;
  top: 4px;
}

.slick-arrow.slick-prev {
  left: 20%;
  margin-left: -16px;
}

.slick-arrow.slick-prev:after {
  content: "\f053";
  left: 8px;
}

.slick-arrow.slick-next {
  margin-right: -16px;
  right: 20%;
}

.slick-arrow.slick-next:after {
  content: "\f054";
  right: 8px;
}

.slick-arrow:focus {
  outline: 2px dotted #17687c;
}

.slick-dots {
  bottom: 10px;
  line-height: 15px;
  list-style: none;
  left: 50%;
  margin: 0 0 0 -100px;
  position: absolute;
  text-align: center;
  width: 200px;
  z-index: 1;
}

.slick-dots li {
  display: inline-block;
  line-height: 10px;
  margin: 0 5px 0;
}

.slick-dots li button {
  background: transparent;
  border: 3px solid #ffffff;
  border-radius: 100%;
  cursor: pointer;
  height: 15px;
  overflow: hidden;
  padding: 0;
  text-indent: -1000px;
  width: 15px;
  color: #ffffff;
}

.slick-dots li.slick-active button {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

.slick-dots li.play-pause a {
  color: #fff;
}

.slick-dots li.play-pause a:first-child {
  display: none;
}

.slick-dots li.play-pause a:last-child {
  display: inline-block;
}

.slick-dots li.play-pause.playing a:first-child {
  display: inline-block;
}

.slick-dots li.play-pause.playing a:last-child {
  display: none;
}

@media (min-width: 992px) {
  .slick-dots {
    bottom: -50px;
  }

  .slick-dots li button {
    border: 3px solid #505050;
  }

  .slick-dots li.play-pause a {
    color: #505050;
  }

  .slick-dots li.slick-active button {
    background: #17687c;
    border-color: #17687c;
    color: #ffffff;
  }
}
.slider-blog .content {
  position: relative;
  z-index: 1;
}

.slider-blog .content .text {
  color: #ffffff;
  padding: 20px 20px 30px;
  text-align: center;
}

.slider-blog .content .text p {
  margin: 0 0 30px;
}

.slider-blog .content .text a {
  color: #ffffff;
}

@media (min-width: 768px) {
  .slider-blog .content .text {
    left: 50%;
    margin-left: -230px;
    margin-top: -20px;
    max-width: 460px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    -webkit-transition: opacity 0.8s ease-in-out;
    -o-transition: opacity 0.8s ease-in-out;
    transition: opacity 0.8s ease-in-out;
    width: 100%;
  }

  .slider-blog .content .text .h3,
.slider-blog .content .text h3 {
    font-size: 3.6rem;
    line-height: 4.6rem;
    margin: 0 0 45px;
  }

  .slider-blog .content .text p {
    margin: 0;
  }

  .slider-blog .slide {
    border-left: 5px solid #fff;
    border-right: 5px solid #fff;
    border-top: 10px solid #fff;
  }

  .slider-blog .slide.slick-current .content .text {
    opacity: 1;
  }
}
@media (min-width: 992px) {
  .slider-blog .content .img-wrap {
    overflow: hidden;
  }

  .slider-blog .content .img-wrap img {
    margin: -30px 0;
  }

  .slider-blog .slick-dots {
    bottom: -30px;
  }
}
.slider-microsite .content {
  position: relative;
  z-index: 1;
}

.slider-microsite .content .text {
  color: #ffffff;
  font-size: 2rem;
  line-height: 2.6rem;
  padding: 20px 20px 30px;
}

.slider-microsite .content .text p {
  margin: 0 0 15px;
}

.slider-microsite .content .text a {
  color: #ffffff;
}

.slider-microsite .content .text .link-cta {
  font-size: 1.8rem;
  line-height: 2rem;
}

@media (min-width: 768px) {
  .slider-microsite .content .text.text-position-right > div > div {
    float: right;
  }

  .slider-microsite .content .text {
    font-size: 3rem;
    line-height: 3.6rem;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }

  .slider-microsite .content .text > div > div {
    margin-top: 40px;
    max-width: 540px;
    padding: 25px 30px;
  }
}
@media (min-width: 992px) {
  .slider-microsite .content .img-wrap {
    overflow: hidden;
  }

  .slider-microsite .content .img-wrap img {
    margin: -4.7% 0;
  }

  .slider-microsite .content .text > div > div {
    margin-top: 60px;
  }
}
.slider-section-front .content {
  position: relative;
  z-index: 1;
}

.slider-section-front .content .text {
  color: #ffffff;
  font-size: 2rem;
  line-height: 2.6rem;
  padding: 20px 20px 30px;
}

.slider-section-front .content .text p {
  margin: 0 0 15px;
}

.slider-section-front .content .text a {
  color: #ffffff;
}

@media (min-width: 768px) {
  .slider-section-front .content .text {
    font-size: 3rem;
    line-height: 3.6rem;
    max-width: 500px;
    padding: 50px 150px 30px 20px;
    position: absolute;
    left: 0;
    top: 0;
  }

  .slider-section-front .content .text.text-position-right {
    left: auto;
    right: 0;
  }
}
@media (min-width: 992px) {
  .slider-section-front .content .text {
    padding: 85px 150px 30px 50px;
  }
}
.tags-blog {
  font-size: 1.4rem;
  margin: 0 0 30px;
}

.tags-blog span {
  background: #aa6631;
  color: #ffffff;
  border: 1px solid #aa6631;
  display: inline-block;
  margin-right: 10px;
  padding: 0 10px;
  text-transform: uppercase;
}

.tags-blog a {
  background: #dededd;
  color: #4c4c4c;
  border: 1px solid #dededd;
  display: inline-block;
  margin-right: 10px;
  padding: 0 10px;
  text-decoration: none;
}

.tags-search {
  margin: -20px 0 30px;
}

.tags-search a {
  color: #4c4c4c;
  border: 1px solid #cccccc;
  display: inline-block;
  font-size: 1.4rem;
  margin: 0 15px 10px 0;
  padding: 0 10px 0 22px;
  position: relative;
  text-decoration: none;
}

.tags-search a:before {
  color: #17687c;
  content: "x";
  font-weight: 700;
  left: 8px;
  position: absolute;
  top: -1px;
}

.text-heading h3 {
  margin: 0 0 10px;
}

.text-heading hr {
  height: 4px;
}

.tile {
  height: 100%;
  padding: 0 0 30px;
}

.tile .inner {
  border: 1px solid #cccccc;
  height: 100%;
}

.tile .inner .content {
  font-size: 1.6rem;
  line-height: 2.6rem;
  padding: 15px 15px 5px;
}

.tile .inner .content .h3,
.tile .inner .content h3 {
  margin: 0 0 20px;
}

.tile .inner .content .h3 a,
.tile .inner .content h3 a {
  color: #303030;
}

.tile .inner .content .h4,
.tile .inner .content h4 {
  font-weight: 400;
  margin: 0 0 15px;
}

.tile .inner .content .h4 a,
.tile .inner .content h4 a {
  color: #505050;
}

.tile .inner .content .h5,
.tile .inner .content h5 {
  font-weight: 400;
  margin: 0 0 15px;
}

.tile .inner .content .h5 a,
.tile .inner .content h5 a {
  color: #505050;
}

.tile .inner .content p {
  margin: 0 0 15px;
}

.tile .inner .content a:hover,
.tile .inner .content a:focus {
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
}

.tile .inner .content .meta {
  font-size: 1.5rem;
  line-height: 1.8rem;
  margin: 0 0 10px;
}

.tile .inner .content .link {
  font-size: 1.4rem;
  line-height: 1.8rem;
  margin: 0 0 10px;
}

.tile .inner .content .pipe {
  color: #b8b8b8;
  margin: 0 3px;
}

.tile-featured .inner .content {
  font-size: 1.6rem;
  line-height: 2.6rem;
}

.tile-featured .inner .content h3 {
  font-size: 2.4rem;
  line-height: 3rem;
}

.tiles-icon {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -9px 30px;
}

.tiles-icon a {
  background: #ffffff;
  border: 1px solid #cccccc;
  color: #808080;
  display: block;
  font-size: 1.4rem;
  line-height: 1.8rem;
  margin: 9px;
  padding: 10px 5px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: -webkit-box-shadow 0.2s ease-in-out;
  -o-transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  width: 112px;
}

.tiles-icon a:hover,
.tiles-icon a:focus {
  border-color: #351e16;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  color: #351e16;
}

.tiles-icon span {
  display: block;
}

.tiles-icon .icon {
  font-size: 2rem;
  margin: 0 0 5px;
}

.vid-wrap {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.vid-wrap iframe {
  bottom: 0;
  left: 0;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.tray {
  padding: 30px 0;
  position: relative;
}

.tray-name {
  background: #000000;
  border-bottom: 2px solid #000000;
  border-top: 2px solid #000000;
  color: #ffffff;
  display: block;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3rem;
  padding: 13px 30px;
  text-align: center;
}

.tray-img-box-link .box-link .content .border-bar {
  display: none;
}

.tray-img-copy p {
  margin: 0 0 15px;
}

.tray-img-copy .list-icons {
  margin-left: 0;
}

.tray-img-copy .list-item-icon {
  padding-left: 25px;
}

.tray-img-copy a,
.tray-img-copy .list-item-icon a {
  color: #ffffff;
}

.tray-img-copy a:hover,
.tray-img-copy .list-item-icon a:hover,
.tray-img-copy a:focus,
.tray-img-copy .list-item-icon a:focus {
  outline: 1px dotted #ffffff;
}

.tray-heading {
  background: #351e16;
  color: #ffffff;
  display: none;
}

.tray-heading a {
  color: #ffffff;
  text-decoration: none;
}

.tray-heading .h1, .tray-heading h1 {
  margin: 0;
}

.tray-heading p {
  margin: 0 0 5px;
}

.tray-heading .search {
  display: none;
  margin: 0;
  min-width: 370px;
  width: 100%;
}

.tray-heading .search input:focus {
  border-bottom: 3px solid #17687c;
  padding-bottom: 8px;
}

.tray-heading .radios {
  margin: 5px 0 0;
  font-size: 1.4rem;
  width: 460px;
}

.tray-heading .radios a {
  display: inline-block;
  padding-left: 20px;
  position: relative;
}

.tray-heading .radios a:first-child {
  margin-right: 15px;
}

.tray-heading .radios a.on:after {
  content: "\f192";
}

.tray-heading .radios a:after {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  left: 0;
  position: absolute;
  top: 0;
}

.tray-heading .radios .search-select {
  display: inline-block;
}

.tray-heading .radios .search-select:first-child {
  margin-right: 15px;
}

.tray-heading .radios .search-select input[type=radio] {
  position: absolute;
  opacity: 0;
}

.tray-heading .radios .search-select input[type=radio]:hover + label::before,
.tray-heading .radios .search-select input[type=radio]:focus + label::before {
  -webkit-box-shadow: 0 0 8px 1px #fff;
          box-shadow: 0 0 8px 1px #fff;
}

.tray-heading .radios .search-select input[type=radio] + label {
  position: relative;
  display: inline-block;
  margin: 0 0 0 20px;
}

.tray-heading .radios .search-select input[type=radio] + label::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  display: inline-block;
  top: 6px;
  left: -20px;
  border-radius: 50%;
  line-height: 14px;
}

.tray-heading .radios .search-select input[type=radio]:checked + label::before {
  content: "\f192";
}

@media (min-width: 992px) {
  .tray-heading {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 135px;
  }

  .tray-heading .search {
    display: block;
  }
}
.tray-banner-home {
  padding: 0;
  position: relative;
}

.tray-banner-home .img img {
  max-width: 100%;
}

.tray-banner-home .content .search input:focus {
  border-bottom: 3px solid #17687c;
  padding-bottom: 18px;
}

.tray-banner-home .content {
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
  width: 100%;
}

.tray-banner-home .content .popular {
  background: #000000;
  color: #ffffff;
  font-size: 1.5rem;
  margin-top: 10px;
  white-space: nowrap;
}

.tray-banner-home .content .popular a {
  color: #b8b8b8;
  display: inline-block;
}

.tray-banner-home .content .popular .text-label {
  background: #aa6631;
  display: inline-block;
  margin-right: 15px;
  padding: 5px 20px 5px 15px;
  position: relative;
}

.tray-banner-home .content .popular .text-label:after {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #aa6631;
  display: block;
  content: " ";
  height: 0;
  left: 100%;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 0;
}

.tray-banner-home .links {
  background: rgba(0, 0, 0, 0.7);
  border-top: 1px solid #ffffff;
  bottom: 0;
  color: #ffffff;
  left: 0;
  position: absolute;
  width: 100%;
}

.tray-banner-home .links .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tray-banner-home .links .icons .icon {
  font-size: 3rem;
}

.tray-banner-home .links .icons a {
  color: #dededd;
  font-size: 1.5rem;
  padding: 20px 7px;
  text-align: center;
}

.tray-banner-home .links .icons .text {
  display: block;
  line-height: 2.2rem;
}

.tray-banner-home .links .seal {
  display: none;
  margin-top: -90px;
  max-width: 150px;
}

.tray-banner-home .links .seal img {
  max-width: 100%;
}

@media (min-width: 768px) {
  .tray-banner-home .content {
    margin-top: -50px;
  }
}
@media (min-width: 992px) {
  .tray-banner-home {
    height: calc(100vh - 90px);
    max-height: 800px;
  }

  .tray-banner-home .img {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute !important;
    right: 0;
    top: -1px;
  }

  .tray-banner-home .img img {
    left: 50%;
    max-width: none;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 0;
    width: auto;
  }

  .tray-banner-home .links .icons a {
    padding: 20px 15px;
  }

  .tray-banner-home .links .seal {
    display: block;
  }
}
@media (min-width: 1200px) {
  .tray-banner-home .links .icons a {
    font-size: 1.6rem;
  }

  .tray-banner-home .links .seal {
    margin-top: -153px;
    max-width: 220px;
    padding: 10px;
  }
}
.tray-banner-img {
  padding: 0;
  position: relative;
}

.tray-banner-img .img img {
  max-width: 100%;
}

@media (min-width: 992px) {
  .tray-banner-img {
    height: calc(100vh - 90px);
    max-height: 800px;
  }

  .tray-banner-img .img {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute !important;
    right: 0;
    top: -1px;
  }

  .tray-banner-img .img img {
    left: 50%;
    max-width: none;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 0;
    width: auto;
  }

  .tray-banner-img .links .icons a {
    padding: 20px 15px;
  }

  .tray-banner-img .links .seal {
    display: block;
  }
}
.tray-news .tile {
  padding: 0 0 15px;
}

.tray-profile h3 {
  font-size: 3.6rem;
  line-height: 3.8rem;
  margin: 0 0 20px;
}

.tray-slider {
  background: #351e16;
  padding: 0;
}

.tray-tiles-icon .tiles-icon {
  margin: 0;
}

.tray-core .text-section-heading {
  color: #aa6631;
}

.tray-departments .text-section-heading {
  color: #aa6631;
}

.tray-tiles .text-section-heading {
  color: #aa6631;
}

.tray-tiles .tile .inner .content {
  font-size: 1.5rem;
  line-height: 2rem;
}

/*
===================================================================================================
Microsite
===================================================================================================
*/
.microsite #page {
  background: #ffffff;
  padding-top: 80px;
}

.microsite #page.no-top {
  padding-top: 55px;
}

.microsite #page.no-top header {
  height: 55px;
}

.microsite #page.top.no-top {
  padding-top: 55px;
}

.microsite #page.top.no-top header {
  height: 55px;
}

@media (min-width: 992px) {
  .microsite #page {
    padding-top: 120px;
  }

  .microsite #page.top {
    padding-top: 231px;
  }

  .microsite #page.no-top {
    padding-top: 120px;
  }

  .microsite #page.no-top header {
    height: 120px;
  }

  .microsite #page.top.no-top {
    padding-top: 186px;
  }

  .microsite #page.top.no-top header {
    height: 186px;
  }
}
/*
===================================================================================================
Header
===================================================================================================
*/
.microsite header {
  height: 80px;
  padding: 0;
}

.microsite header.menu-opened {
  position: absolute;
}

.microsite header .header-top {
  background: #303030;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 2.5rem;
}

.microsite header .header-top a {
  color: #ffffff;
  text-decoration: none;
}

.microsite header .header-top a:hover,
.microsite header .header-top a:focus {
  text-decoration: underline;
}

.microsite header .header-top .link-county {
  text-align: center;
  width: 100%;
}

.microsite header .header-top .link-county a {
  color: #bf943b;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.microsite header .header-top .link-site {
  text-align: center;
  width: 100%;
}

.microsite header .header-top .link-site a {
  display: inline-block;
  margin: 0 15px;
}

.microsite header .header-top .link-option {
  text-align: right;
  width: 100%;
}

.microsite header .header-top .translate-wrap {
  margin-top: 10px;
}

.microsite header .header-inner .logo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 5px 30px;
}

.microsite header .header-inner .logo a {
  white-space: normal;
}

.microsite header .header-inner .logo a img {
  display: none;
  height: 45px;
}

.microsite header .header-inner .logo a .text span {
  display: block;
}

.microsite header .header-inner .logo a .text span:first-child {
  color: #351e16;
  font-size: 1.2rem;
  line-height: 1.6rem;
}

.microsite header .header-inner .logo a .text span:last-child {
  font-size: 1.5rem;
  line-height: 1.9rem;
}

.microsite header .header-inner .search {
  margin: 0;
}

.microsite header .header-inner .search .radios {
  margin: 5px 0 0;
  font-size: 1.4rem;
}

.microsite header .header-inner .search .radios a {
  display: inline-block;
  padding-left: 20px;
  position: relative;
}

.microsite header .header-inner .search .radios a:first-child {
  margin-right: 15px;
}

.microsite header .header-inner .search .radios a.on:after {
  content: "\f192";
}

.microsite header .header-inner .search .radios a:after {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  left: 0;
  position: absolute;
  top: 0;
}

.microsite header .header-nav .links {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  margin: 0 -10px;
}

.microsite header .header-nav .links li {
  margin: 0;
  position: relative;
}

.microsite header .header-nav .links .nav-visible {
  display: block;
}

.microsite header .header-nav .links li:hover ul,
.microsite header .header-nav .links li:focus ul {
  display: block;
}

.microsite header .header-nav .links li:last-child ul {
  left: auto;
  right: 0;
}

.microsite header .header-nav .links a {
  color: #ffffff;
  display: block;
  font-size: 1.6rem;
  line-height: 2rem;
  padding: 10px;
  position: relative;
  text-decoration: none;
}

.microsite header .header-nav .links a:hover,
.microsite header .header-nav .links a:focus {
  text-decoration: underline;
}

.microsite header .header-nav .links a.on {
  text-decoration: none;
}

.microsite header .header-nav .links a.on:after {
  background: rgba(255, 255, 255, 0.6);
  bottom: 0;
  content: " ";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  width: 100%;
}

.microsite header .header-nav .links ul {
  display: none;
  left: 0;
  list-style: none;
  margin: 0;
  position: absolute;
  top: 100%;
  width: 260px;
}

.microsite header .header-nav .links ul li {
  margin: 0;
}

.microsite header .header-nav .links ul li a {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 15px !important;
}

.microsite header .header-nav .links ul li a:hover,
.microsite header .header-nav .links ul li a:focus {
  background: rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

.microsite header .toggle-side-menu {
  border: none;
  background: none;
  font-size: 2rem;
  height: 40px;
  line-height: 4rem;
  margin-top: -20px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  top: 50%;
  width: 40px;
}

.microsite header .toggle-side-menu i:last-child {
  display: none;
}

.microsite header .toggle-side-menu.opened i:first-child {
  display: none;
}

.microsite header .toggle-side-menu.opened i:last-child {
  display: inline;
}

.microsite header .toggle-side-menu {
  color: #4c4c4c;
  left: 5px;
}

.microsite header .side-menu-wrap {
  display: none;
  margin: 0;
  padding: 0;
}

.microsite header .side-menu-wrap .side-menu-initial .menu-lists {
  display: block;
}

.microsite header .side-menu-wrap .side-menu {
  background: #351e16;
  left: auto;
  position: static;
  top: auto;
}

.microsite header .side-menu-wrap .side-menu .menu-lists {
  border-bottom: none;
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  overflow-y: scroll;
  background: #351e16;
}

.microsite header .side-menu-wrap .side-menu .menu-lists {
  top: 80px;
}

.microsite .no-top header .side-menu-wrap .side-menu .menu-lists {
  top: 55px;
}

.microsite header .side-menu-wrap .side-menu .menu-lists ul li a.on {
  background: rgba(0, 0, 0, 0.2);
}

.microsite header .side-menu-wrap .side-menu .menu-lists ul li a {
  border-top-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.microsite header .side-menu-wrap .side-menu .menu-lists ul li a:hover,
.microsite header .side-menu-wrap .side-menu .menu-lists ul li a:focus {
  background: rgba(255, 255, 255, 0.2);
}

.microsite header .side-menu-wrap .side-menu .menu-lists ul li.parent ul {
  border-top-color: rgba(255, 255, 255, 0.3);
}

.microsite header .side-menu-wrap .side-menu .menu-lists ul li.back a i {
  color: #ffffff;
}

.microsite header .side-menu-wrap .side-menu {
  position: absolute;
}

.microsite header .side-menu-wrap .side-menu .menu-lists > ul {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0;
}

.microsite header .side-menu-wrap .side-menu .menu-lists > ul > li:first-child > a {
  border-top: none;
}

.microsite header .side-menu-wrap .side-menu .menu-lists .side-menu-lower {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 30px;
}

@media (min-width: 992px) {
  .microsite #page.top header {
    height: 231px;
    padding: 0;
  }

  .microsite #page.top header .header-top {
    display: block;
  }

  .microsite #page.top header .header-inner .logo {
    height: 116px;
  }

  .microsite #page.top header .header-inner .logo a {
    height: 116px;
  }

  .microsite #page.top header .header-nav a {
    padding: 15px;
  }

  .microsite header {
    height: 120px;
  }

  .microsite header .header-top {
    display: none;
    padding: 10px 0;
  }

  .microsite header .header-top .link-county {
    text-align: left;
  }

  .microsite header .header-inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .microsite header .header-inner .logo {
    display: block;
    height: 60px;
    margin: 10px 0;
  }

  .microsite header .header-inner .logo a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
  }

  .microsite header .header-inner .logo a img {
    display: block;
    height: 100%;
  }

  .microsite header .header-inner .logo a .text {
    margin: 0 15px;
  }

  .microsite header .header-inner .logo a .text span:first-child {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }

  .microsite header .header-inner .logo a .text span:last-child {
    font-size: 3rem;
    letter-spacing: -1px;
    line-height: 3.6rem;
  }

  .microsite header .header-inner .search {
    min-width: 400px;
  }

  .microsite header .header-nav .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .microsite header .toggle-side-menu {
    display: none;
  }
}
/*
===================================================================================================
Main
===================================================================================================
*/
.microsite main {
  min-height: 100vh;
}

.microsite main .side-menu-wrap {
  margin: 0;
  padding: 30px 0 0 0;
}

.microsite main .side-menu-wrap .side-menu {
  top: -30px;
}

.microsite main .side-menu-wrap .side-menu .menu-toggle a {
  padding: 13px 50px 13px 20px;
}

.microsite main .side-menu-wrap .side-menu .menu-toggle a .icons {
  top: 13px;
}

@media (min-width: 992px) {
  .microsite main .side-menu-wrap {
    padding: 0;
  }

  .microsite main .menu-toggle .truncate {
    overflow: visible;
    white-space: normal;
  }
}
/*
===================================================================================================
Dropdowns
===================================================================================================
*/
.microsite .dropdowns {
  top: 80px;
  z-index: 1;
}

@media (min-width: 992px) {
  .microsite .dropdowns {
    top: -100%;
  }

  .microsite .dropdowns.opened {
    top: 0;
    z-index: 3;
  }
}
/*
===================================================================================================
Print Style
===================================================================================================
*/
@media print {
  header .links-dropdowns,
header .links-pages,
header .alert-count,
header .global-alerts,
main .tray-heading,
footer,
.crumbs,
.share,
#side-menu-2,
.side-menu-wrap .side-menu,
.toggle-menu,
.toggle-search,
.filter-box {
    display: none !important;
  }

  body {
    background: none !important;
    font: 12pt Georgia, "Times New Roman", Times, serif !important;
    line-height: 1.3 !important;
  }

  .microsite main {
    min-height: 0;
  }

  h1,
.text-section-heading {
    font-size: 24pt !important;
    line-height: 35px !important;
  }

  h2 {
    font-size: 22pt !important;
    margin-top: 25px !important;
    line-height: 32px !important;
  }

  h3 {
    font-size: 20pt !important;
    line-height: 30px !important;
  }

  h4 {
    font-size: 18pt !important;
    line-height: 28px !important;
  }

  h5 {
    font-size: 16pt !important;
    line-height: 25px !important;
  }

  h6 {
    font-size: 14pt !important;
    line-height: 22px !important;
  }

  .tray {
    padding: 0 !important;
  }

  #page {
    padding-top: 0 !important;
  }

  header {
    position: absolute !important;
  }

  a {
    color: #000;
  }

  .accordion div {
    display: block !important;
  }

  div#PrintedBibliography {
    border: 1px solid black;
    padding: 0 3rem;
  }
}
/*# sourceMappingURL=main.css.map */

.left-margin-addtdates {
    margin-left: 163px;
}
.goog-te-banner-frame {
    display: none !important;
}
.maphighlight-link {
    margin-top: -20px;
}

.contact-form {
    border-top: 1px solid #CCC;
    padding-top: 15px;
    position: relative;
}

.contact-form .input-field {
    margin-bottom: 20px;
}

.contact-form legend, .contact-form label {
    font-weight: 600;
}

.contact-form .required-indicator {
    vertical-align: super;
}

.contact-form .required-indicator-right {
    margin-left: 5px;
}

.contact-form .required-indicator-left {
    margin-right: 5px;
}

.contact-form .topic-select {
    margin: 0;
    list-style-type: none;
}

.contact-form .topic-select li {
    display: flex;
}

.contact-form .topic-select label {
    padding-left: 10px;
    font-weight: normal;
}

.contact-form input[type="radio"] {
    box-shadow: none;
    display: inline;
    height: auto;
    width: auto;
}

.contact-form select {
    width: 400px;
    max-width: 100%;
}

.contact-form button:disabled {
    background: #595959;
    color: #FFF;
}

.contact-form .submit-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgba(0,0,0,.3);
    border-radius: 10px;
}

.contact-form .submit-overlay.hidden {
    display: none;
}

.contact-form .submit-overlay p {
    font-size: 3rem;
    padding: 25px;
    background: #FFF;
    border-radius: 5px;
}

.contact-form textarea {
    min-height: 200px;
}

@media (min-width: 768px) {
    .contact-form textarea {
        min-height: 120px;
    }
}

.contact-form fieldset ul {
    padding: 10px 0 0 10px;
    border: 1px solid transparent;
}

.contact-form fieldset ul:focus-within {
    border: 1px solid #808080;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    padding: 10px 0 0 10px;
}

.contact-form input[type="text"], .contact-form input[type="email"]{
    width: 500px;
    max-width: 100%;
}

.contact-form input[type="tel"] {
    width: 275px;
    max-width: 100%;
}

.contact-form #contactUsZip {
    width: 150px;
    max-width: 100%;
}

#successDialog, #errorDialog {
    border-top: 1px solid #CCC;
    padding-top: 15px;
}

.fc table tbody tr:nth-child(even) {
    background: none;
}

.fc .fc-h-event {
    padding: 2px;
    white-space: normal;
    font-size: 1.2rem;
    line-height: 1.4em;
    outline: none;
}

.fc .fc-daygrid-event-harness {
    margin-bottom: 2px;
}

.fc .fc-daygrid-block-event .fc-event-time {
    font-weight: 600;
    color: #505050;
}

.fc .fc-h-event .fc-event-title {
    font-weight: 600;
    line-height: 1.5em;
}

.fc .fc-h-event:hover .fc-event-title, .fc .fc-h-event:focus .fc-event-title {
    text-decoration: underline;
}

.fc .fc-h-event .fc-event-main-frame {
    display: block;
}

.fc .fc-popover .canceled .fc-event-main-frame::before,
.fc .canceled .fc-event-main-frame::before {
    display: block;
    content: "CANCELED";
    color: #824E26;
    font-weight: 600;
}

.fc .fc-event:hover:before, .fc .fc-event:focus:before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.fc .fc-event:hover:after, .fc .fc-event:focus:after {
    content: "";
    background: rgba(0,0,0,.1);
    position: absolute;
    z-index: 1;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
}

.filters-events .select-box .label-text {
    width: 100px;
}

.filters .toggle-view button {
    background: #ffffff;
    border: 1px solid #cccccc;
    color: #505050;
    font-size: 1.8rem;
    line-height: 2.2rem;
    padding: 8px;
    position: relative;
    text-align: center;
    width: 42px;
}

.filters .toggle-view button:last-child {
    left: -1px;
}

.filters .toggle-view button.on {
    background: #505050;
    border-color: #505050;
    color: #ffffff;
}    

.microsite .dropdowns.no-top {
    top: 55px;
}

@media (min-width: 768px) {
    .img-float-left-md-360 {
        float: left;
        margin: 4px 30px 30px 0;
        max-width: 360px;
    }
}

.responsive-table {
    overflow-x: auto;
}

@media all and (min-width: 993px) {
    .responsive-table {
        max-width: 950px;
    }
}

.responsive-table.active {
    border: 1px solid #CCC;
    margin-bottom: 30px;
}

@media all and (max-width: 1357px) and (min-width: 992px) {
    .responsive-table {
        max-width: none;
    }
}

.responsive-table.active table {
    margin-bottom: 0;
}

@media all and (max-width: 1357px) and (min-width: 992px) {
    .responsive-table.active table {
        display: block;
        max-width: 583px;
    }
}

.responsive-table.active table thead th:first-child,
.responsive-table.active table tbody th {
    display: block;
    position: sticky;
    left: 0;
    border-right: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    border-top: none;
    border-left: none;
    box-shadow: 5px 1px 5px rgb(0 0 0 / 40%);
}

.responsive-table.active table.no-freeze thead th:first-child,
.responsive-table.active table.no-freeze tbody th {
    position: static;
    display: table-cell;
    box-shadow: none;
}

.responsive-table.active table thead th:first-child {
    border-right: none;
    border-top: 1px solid #0B6A6E;
    border-bottom: 1px solid #0B6A6E;
    margin-top: -1px;
}

.responsive-table.active table tbody tr:nth-child(even) th {
    background: #FFF;
}

.responsive-table.active table tbody tr:nth-child(odd) th {
    background: #F4F3F3;
}

.button:hover,
.button:focus {
    background: #0b323b !important;
}

