:root {
    --primary_default_background_color: #006646;
    --primary_dark_background_color: #003a1f;
    --primary_light_background_color: #F9F6ED;
    --secondary_default_background_color: #EDECD4;
    --secondary_dark_background_color: #99874b;
    --secondary_light_background_color: #ffffff;
    --primary_text_color: #fcfcfc;
    --secondary_text_color: #006646;
    --divider_border_color: #BDBDBD;
    --primary_dark_background_color_rgb: rgb("0, 58, 31");
    --primary_default_background_color_rgb: rgb("0, 102, 70");
    --primary_light_background_color_rgb: rgb("65, 150, 114");
    --secondary_default_background_color_rgb: rgb("224, 209, 165");
    --secondary_dark_background_color_rgb: rgb("153, 135, 75");
    --secondary_light_background_color_rgb: rgb("255, 233, 168");
    --primary_text_color_rgb: rgb("252, 252, 252");
    --secondary_text_color_rgb: rgb("0, 102, 70");
    --divider_border_color_rgb: rgb("189, 189, 189");
    --header_height_orig: ;
    --footer_height_orig: ;
    --header_height: 210px;
    --footer_height: 40px;
    --font_family: "Roboto", sans-serif;
}#content_footer {
    margin: 0;
    padding: calc(var(--header_height) - 1em * -1) 0 0;
    height: calc(100% - var(--header_height) - 1em);
}

@media (max-width: 780px) {
    :root {
        --header_height: calc(var(--header_height_orig) - 1em * -1);
    }
}

footer {
    z-index: 1;
}

#footer {
    bottom: 0;
    text-align: center;
    width: 100%;
    height: var(--footer_height);
    z-index: 1;
    background-color: var(--primary_default_background_color);
    color: var(--secondary_default_background_color);
    box-shadow: 0 0 40px rgba(var(--primary_default_background_color_rgb), 0.9);
    font-size: 16px;
    line-height: 20px;
    font-family: var(--font_family, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
}

#footer a {
    color: var(--secondary_default_background_color);
    text-decoration: none;
    padding: 0 8px;
}

#footer a:hover {
    text-decoration: underline;
}

.tennant_colors_reversed {
    background: var(--secondary_default_background_color);
    color: var(--primary_default_background_color);
}

h1 {
    text-transform: uppercase;
    display: inline-block;
    font-family: var(--font_family, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
    vertical-align: text-top;
    line-height: 30px;
    color: var(--primary_default_background_color);
    font-size: 1.5em;
    font-weight: normal;
}

input::-webkit-input-placeholder {
    font-family: var(--font_family, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
}

input:-ms-input-placeholder {
    font-family: var(--font_family, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
}

input:-moz-placeholder {
    font-family: var(--font_family, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
}

input::-moz-placeholder {
    font-family: var(--font_family, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
}

input::placeholder {
    font-family: var(--font_family, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif) !important;
}

button {
    color: var(--secondary_default_background_color);
    background-color: var(--primary_default_background_color);
}

button svg {
    fill: var(--secondary_default_background_color);
}

.tennant_colors_text {
    color: var(--primary_default_background_color);
}

body * {
    font-family: var(--font_family, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
}.layout.horizontal,
.layout.vertical {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.layout.inline {
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
}

.layout.horizontal {
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
}
.layout.horizontal.start-justified{
    text-align: left;
}

.layout.vertical {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.layout.vertical.start{
    text-align: left;
}

.layout.wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.layout.center,
.layout.center-center {
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.layout.center-justified,
.layout.center-center {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex {
    -ms-flex: 1 1 0.000000001px;
    -webkit-flex: 1;
    flex: 1;
    -webkit-flex-basis: 0.000000001px;
    flex-basis: 0.000000001px;
}

.flex-auto {
    -ms-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
}

.flex-none {
    -ms-flex: none;
    -webkit-flex: none;
    flex: none;
}

.layout.horizontal-reverse,
.layout.vertical-reverse {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.layout.horizontal-reverse {
    -ms-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.layout.vertical-reverse {
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.layout.wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    -webkit-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

/**
* Alignment in cross axis.
*/
.layout.start {
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.layout.center,
.layout.center-center {
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.layout.end {
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.layout.baseline {
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}
/**
* Alignment in main axis.
*/
.layout.start-justified {
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.layout.center-justified,
.layout.center-center {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.layout.end-justified {
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.layout.around-justified {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.layout.justified {
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
/**
* Self alignment.
*/
.self-start {
    -ms-align-self: flex-start;
    -webkit-align-self: flex-start;
    align-self: flex-start;
}

.self-center {
    -ms-align-self: center;
    -webkit-align-self: center;
    align-self: center;
}

.self-end {
    -ms-align-self: flex-end;
    -webkit-align-self: flex-end;
    align-self: flex-end;
}

.self-stretch {
    -ms-align-self: stretch;
    -webkit-align-self: stretch;
    align-self: stretch;
}

.self-baseline {
    -ms-align-self: baseline;
    -webkit-align-self: baseline;
    align-self: baseline;
}

;
/**
* multi-line alignment in main axis.
*/
.layout.start-aligned {
    -ms-flex-line-pack: start; /* IE10 */
    -ms-align-content: flex-start;
    -webkit-align-content: flex-start;
    align-content: flex-start;
}

.layout.end-aligned {
    -ms-flex-line-pack: end; /* IE10 */
    -ms-align-content: flex-end;
    -webkit-align-content: flex-end;
    align-content: flex-end;
}

.layout.center-aligned {
    -ms-flex-line-pack: center; /* IE10 */
    -ms-align-content: center;
    -webkit-align-content: center;
    align-content: center;
}

.layout.between-aligned {
    -ms-flex-line-pack: justify; /* IE10 */
    -ms-align-content: space-between;
    -webkit-align-content: space-between;
    align-content: space-between;
}

.layout.around-aligned {
    -ms-flex-line-pack: distribute; /* IE10 */
    -ms-align-content: space-around;
    -webkit-align-content: space-around;
    align-content: space-around;
}

.flex,
.flex-1 {
    -ms-flex: 1 1 0.000000001px;
    -webkit-flex: 1;
    flex: 1;
    -webkit-flex-basis: 0.000000001px;
    flex-basis: 0.000000001px;
}

.flex-2 {
    -ms-flex: 2;
    -webkit-flex: 2;
    flex: 2;
}

.flex-3 {
    -ms-flex: 3;
    -webkit-flex: 3;
    flex: 3;
}

.flex-4 {
    -ms-flex: 4;
    -webkit-flex: 4;
    flex: 4;
}

.flex-5 {
    -ms-flex: 5;
    -webkit-flex: 5;
    flex: 5;
}

.flex-6 {
    -ms-flex: 6;
    -webkit-flex: 6;
    flex: 6;
}

.flex-7 {
    -ms-flex: 7;
    -webkit-flex: 7;
    flex: 7;
}

.flex-8 {
    -ms-flex: 8;
    -webkit-flex: 8;
    flex: 8;
}

.flex-9 {
    -ms-flex: 9;
    -webkit-flex: 9;
    flex: 9;
}

.flex-10 {
    -ms-flex: 10;
    -webkit-flex: 10;
    flex: 10;
}

.flex-11 {
    -ms-flex: 11;
    -webkit-flex: 11;
    flex: 11;
}

.flex-12 {
    -ms-flex: 12;
    -webkit-flex: 12;
    flex: 12;
}

.block {
    display: block;
}
/* IE 10 support for HTML5 hidden attr */
[hidden] {
    display: none !important;
}

.invisible {
    visibility: hidden !important;
}

.relative {
    position: relative;
}

.fit {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}



body.fullbleed {
    margin: 0;
    height: 100vh;
}

.scroll {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
}
/* fixed position */
.fixed-bottom,
.fixed-left,
.fixed-right,
.fixed-top {
    position: fixed;
}

.fixed-top {
    top: 0;
    left: 0;
    right: 0;
}

.fixed-right {
    top: 0;
    right: 0;
    bottom: 0;
}

.fixed-bottom {
    right: 0;
    bottom: 0;
    left: 0;
}

.fixed-left {
    top: 0;
    bottom: 0;
    left: 0;
}
/*******************************
Other Layout
*******************************/

.spacer_1 {
    width: 1em;
}

.spacer_2 {
    width: 2em;
}
.spacer_5 {
    width: 5em;
}
.spacer_10 {
    width: 10em; 
}
.spacer_25 {
    width: 25%;
}
.spacer_h_5 {
    height: 5em;
}
.spacer_h_2 {
    height: 2em;
}

.loading{
    font-size: 3em;
}

.hidden{
    display: none!important;
}
.start_hidden{
    display: none;
}
.resizable {
    resize: both;
    max-height: 100%;
    max-width: 100%;
    overflow: auto;
}
.resizable-h {
    resize: horizontal;
    max-width: 100%;
    overflow: auto;
}
.resizable-v {
    resize: vertical;
    max-height: 100%;
    overflow: auto;
}

.width_fill{
    width: 100%;
}
.width_100{
    width: 100px;
}
.width_150{
    width: 150px;
}
.width_200{
    width: 200px;
}
.width_250{
    width: 250px;
}
.width_400{
    width: 400px;
}
.width_600{
    width: 600px;
}/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.pre_scale_top_right {
  transition: transform 0.3s linear;
  transform-origin: top right;
  transform-style: preserve-3D;
}

.pre_scale_top_left {
  transition: transform 0.3s linear;
  transform-origin: top left;
  transform-style: preserve-3D;
}

.pre_scale_top_center {
  transition: transform 0.3s linear;
  transform-origin: top center;
  transform-style: preserve-3D;
}

.pre_scale_bottom_center {
  transition: transform 0.3s linear;
  transform-origin: bottom center;
  transform-style: preserve-3D;
}

.pre_scale_bottom_right {
  transition: transform 0.3s linear;
  transform-origin: bottom right;
  transform-style: preserve-3D;
}

.pre_scale_center_center {
  transition: transform 0.3s linear;
  transform-origin: center center;
  transform-style: preserve-3D;
}

.scale {
  transform: scale(0, 0);
}

.scale_2_4 {
  transform: scale(2, 4);
}

.scale_height {
  transform: scaleY(0);
}

.scale_width {
  transform: scaleX(0);
}

.slide_top_bottom {
  transform: translateY(20px);
}

.fade_in {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 300ms;
  -moz-animation-duration: 300ms;
  animation-duration: 300ms;
}

.fade_out {
  opacity: 1;
  /* make things invisible upon start */
  -webkit-animation: fadeOut ease-in 1;
  /* call our keyframe named fadeOut, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeOut ease-in 1;
  animation: fadeOut ease-in 1;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 300ms;
  -moz-animation-duration: 300ms;
  animation-duration: 300ms;
}

.fade_in_100 {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 100ms;
  -moz-animation-duration: 100ms;
  animation-duration: 100ms;
}

.fade_out_100 {
  opacity: 1;
  /* make things invisible upon start */
  -webkit-animation: fadeOut ease-in 1;
  /* call our keyframe named fadeOut, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeOut ease-in 1;
  animation: fadeOut ease-in 1;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 100ms;
  -moz-animation-duration: 100ms;
  animation-duration: 100ms;
}

@keyframes pulsate_green_border_keys {
  0% {
    border-color: #fff;
  }
  50% {
    border-color: green;
  }
  100% {
    border-color: #fff;
  }
}
.pulsate_green_border {
  animation: pulsate_green_border_keys 2s infinite;
}

/*# sourceMappingURL=animations.css.map */
#header_nav_container[data-astro-cid-f6vgziei]{background-color:var(--secondary_default_background_color);color:var(--primary_text_color);padding:10px 5px 0}#header_nav_inner[data-astro-cid-f6vgziei]{width:1000px}a[data-astro-cid-f6vgziei]{text-decoration:none;box-shadow:none;padding:8px;background-color:var(--primary_default_background_color);color:var(--primary_text_color);cursor:pointer;border-top-left-radius:8px;border-top-right-radius:8px;margin:0 2px;filter:brightness(130%);transition:all 500ms}a[data-astro-cid-f6vgziei] span[data-astro-cid-f6vgziei]{filter:brightness(80%);text-shadow:0 2px 3px #000}.selected[data-astro-cid-f6vgziei]{filter:brightness(100%);font-weight:bold}.selected[data-astro-cid-f6vgziei] span[data-astro-cid-f6vgziei]{filter:brightness(100%)}a[data-astro-cid-f6vgziei]:hover{filter:brightness(100%)}a[data-astro-cid-f6vgziei]:hover span[data-astro-cid-f6vgziei]{filter:brightness(100%)}#header_account_container .display_none {
  display: none;
}#header_account_container[data-astro-cid-v4kcx2b4]{width:100%;background-color:var(--secondary_default_background_color);color:var(--secondary_text_color)}#header_account_inner[data-astro-cid-v4kcx2b4]{width:1000px}a[data-astro-cid-v4kcx2b4]{color:var(--secondary_text_color);font-weight:bold;text-decoration:underline;font-size:0.9em;padding:0 5px;transition:all 0.3s ease}a[data-astro-cid-v4kcx2b4]:hover{text-decoration:none;background-color:var(--primary_default_background_color);color:var(--primary_text_color)}#header_bib_nav_container[data-astro-cid-mf5e6gjf]{width:100%;background-color:var(--secondary_default_background_color);color:var(--primary_text_color);padding:0 5px 5px;box-shadow:0px 2px 2px rgba(0,0,0,0.5)}#header_bib_nav_inner[data-astro-cid-mf5e6gjf]{width:1000px}a[data-astro-cid-mf5e6gjf]{text-decoration:none;box-shadow:none;padding:8px;background-color:var(--secondary_default_background_color);color:var(--secondary_text_color);cursor:pointer;border-bottom-left-radius:8px;border-bottom-right-radius:8px;margin:0 2px;filter:brightness(100%);transition:all 500ms}a[data-astro-cid-mf5e6gjf] span[data-astro-cid-mf5e6gjf]{filter:brightness(100%)}.selected[data-astro-cid-mf5e6gjf]{filter:brightness(100%);background-color:var(--primary_default_background_color)!important;color:var(--primary_text_color)!important;font-weight:bold}.selected[data-astro-cid-mf5e6gjf] span[data-astro-cid-mf5e6gjf]{filter:brightness(100%)}a[data-astro-cid-mf5e6gjf]:hover{filter:brightness(80%)}a[data-astro-cid-mf5e6gjf]:hover span[data-astro-cid-mf5e6gjf]{filter:brightness(120%)}#header_container[data-astro-cid-zoxaiivc]{width:100%;position:absolute;right:0px;top:0px;z-index:2}a[data-astro-cid-zoxaiivc]{text-decoration:none}#header[data-astro-cid-zoxaiivc]{opacity:1;height:var(--header_height)}#banner_container[data-astro-cid-zoxaiivc]{background-color:var(--primary_default_background_color)}.page_container[data-astro-cid-5tvkbzac]{width:100%;text-align:center;max-width:1000px;margin:20px auto 100px auto}