/*======================================================================
 Reset/Defauls
 ----------------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  border: 0 none;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  outline: none;
}
/*======================================================================
 HTML/Body
 ----------------------------------------------------------------------*/
body {
  background-color: #fff;
}
/*======================================================================
 Container/Wrapper/Columns/Table
 ----------------------------------------------------------------------*/
section {
  padding: 40px !important;
}
section.no_padding {
  padding: 0px;
}
section.top_padding {
  padding: 40px 40px 0 40px;
}
section.bottom_padding {
  padding: 0 40px 40px 40px;
}
.wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0px auto;
}
.wrapper:after {
  content: "";
  display: table;
  clear: both;
}
/*	Columns (no gutters)
 -----------------------*/
.col-1 {
  width: calc(100% / 12 * 1);
  width: 8.3333333333%;
}
.col-2 {
  width: calc(100% / 12 * 2);
  width: 16.6666666667%;
}
.col-3 {
  width: calc(100% / 12 * 3);
  width: 25%;
}
.col-4 {
  width: calc(100% / 12 * 4);
  width: 33.3333333333%;
}
.col-5 {
  width: calc(100% / 12 * 5);
  width: 41.6666666667%;
}
.col-6 {
  width: calc(100% / 12 * 6);
  width: 50%;
}
.col-7 {
  width: calc(100% / 12 * 7);
  width: 58.3333333333%;
}
.col-8 {
  width: calc(100% / 12 * 8);
  width: 66.6666666667%;
}
.col-9 {
  width: calc(100% / 12 * 9);
  width: 75%;
}
.col-10 {
  width: calc(100% / 12 * 10);
  width: 83.3333333333%;
}
.col-11 {
  width: calc(100% / 12 * 11);
  width: 91.6666666667%;
}
/*	Columns (with gutters)
 -----------------------*/
.wrapper-gutters .col-1 {
  width: calc((100% / 12 * 1) - (20px - 20px / 12 * 1));
  width: -1991.6666666667%;
}
.wrapper-gutters .col-2 {
  width: calc((100% / 12 * 2) - (20px - 20px / 12 * 2));
  width: -1983.3333333333%;
}
.wrapper-gutters .col-3 {
  width: calc((100% / 12 * 3) - (20px - 20px / 12 * 3));
  width: -1975%;
}
.wrapper-gutters .col-4 {
  width: calc((100% / 12 * 4) - (20px - 20px / 12 * 4));
  width: -1966.6666666667%;
}
.wrapper-gutters .col-5 {
  width: calc((100% / 12 * 5) - (20px - 20px / 12 * 5));
  width: -1958.3333333333%;
}
.wrapper-gutters .col-6 {
  width: calc((100% / 12 * 6) - (20px - 20px / 12 * 6));
  width: -1950%;
}
.wrapper-gutters .col-7 {
  width: calc((100% / 12 * 7) - (20px - 20px / 12 * 7));
  width: -1941.6666666667%;
}
.wrapper-gutters .col-8 {
  width: calc((100% / 12 * 8) - (20px - 20px / 12 * 8));
  width: -1933.3333333333%;
}
.wrapper-gutters .col-9 {
  width: calc((100% / 12 * 9) - (20px - 20px / 12 * 9));
  width: -1925%;
}
.wrapper-gutters .col-10 {
  width: calc((100% / 12 * 10) - (20px - 20px / 12 * 10));
  width: -1916.6666666667%;
}
.wrapper-gutters .col-11 {
  width: calc((100% / 12 * 11) - (20px - 20px / 12 * 11));
  width: -1908.3333333333%;
}
.wrapper-gutters [class*='col-'] {
  margin-right: 20px;
}
/*	Push
 -----------------------*/
.push-1 {
  margin-left: calc(100% / 12 * 1);
}
.push-2 {
  margin-left: calc(100% / 12 * 2);
}
.push-3 {
  margin-left: calc(100% / 12 * 3);
}
.push-4 {
  margin-left: calc(100% / 12 * 4);
}
.push-5 {
  margin-left: calc(100% / 12 * 5);
}
.push-6 {
  margin-left: calc(100% / 12 * 6);
}
.push-7 {
  margin-left: calc(100% / 12 * 7);
}
.push-8 {
  margin-left: calc(100% / 12 * 8);
}
.push-9 {
  margin-left: calc(100% / 12 * 9);
}
.push-10 {
  margin-left: calc(100% / 12 * 10);
}
.push-11 {
  margin-left: calc(100% / 12 * 11);
}
.wrapper-gutters .push-1 {
  margin-left: calc((100% / 12 * 1) - (20px - 20px / 12 * 1) + 20px);
}
.wrapper-gutters .push-2 {
  margin-left: calc((100% / 12 * 2) - (20px - 20px / 12 * 2) + 20px);
}
.wrapper-gutters .push-3 {
  margin-left: calc((100% / 12 * 3) - (20px - 20px / 12 * 3) + 20px);
}
.wrapper-gutters .push-4 {
  margin-left: calc((100% / 12 * 4) - (20px - 20px / 12 * 4) + 20px);
}
.wrapper-gutters .push-5 {
  margin-left: calc((100% / 12 * 5) - (20px - 20px / 12 * 5) + 20px);
}
.wrapper-gutters .push-6 {
  margin-left: calc((100% / 12 * 6) - (20px - 20px / 12 * 6) + 20px);
}
.wrapper-gutters .push-7 {
  margin-left: calc((100% / 12 * 7) - (20px - 20px / 12 * 7) + 20px);
}
.wrapper-gutters .push-8 {
  margin-left: calc((100% / 12 * 8) - (20px - 20px / 12 * 8) + 20px);
}
.wrapper-gutters .push-9 {
  margin-left: calc((100% / 12 * 9) - (20px - 20px / 12 * 9) + 20px);
}
.wrapper-gutters .push-10 {
  margin-left: calc((100% / 12 * 10) - (20px - 20px / 12 * 10) + 20px);
}
.wrapper-gutters .push-11 {
  margin-left: calc((100% / 12 * 11) - (20px - 20px / 12 * 11) + 20px);
}
[class*='col-'] {
  float: left;
}
[class*='col-']:last-of-type {
  margin-right: 0;
}
/*	Tables
 -----------------------*/
.wrapper-table {
  display: table;
  table-layout: fixed;
}
.wrapper-table div.row {
  display: table-row;
}
.wrapper-table div.row div.cell {
  display: table-cell;
  vertical-align: middle;
  float: none;
}
/*	Flex
 -----------------------*/
.wrapper-grid {
  display: grid;
  grid-gap: 10px;
  grid-auto-rows: 1fr;
}
.wrapper-grid.items-1 {
  grid-template-columns: repeat(1, 1fr);
}
.wrapper-grid.items-2 {
  grid-template-columns: repeat(2, 1fr);
}
.wrapper-grid.items-3 {
  grid-template-columns: repeat(3, 1fr);
}
.wrapper-grid.items-4 {
  grid-template-columns: repeat(4, 1fr);
}
.wrapper-grid.items-5 {
  grid-template-columns: repeat(5, 1fr);
}
.wrapper-grid.items-6 {
  grid-template-columns: repeat(6, 1fr);
}
/*	Full Width
 -----------------------*/
section.full {
  padding: 0;
}
section.full .wrapper-full {
  max-width: 100%;
}
section.full .wrapper-full .left {
  background-color: grey;
  padding-top: 40px;
  padding-bottom: 40px;
}
section.full .wrapper-full .left .wrapper {
  float: right;
  padding-left: 40px;
}
section.full .wrapper-full .right {
  background-color: grey;
  padding-top: 40px;
  padding-bottom: 40px;
}
section.full .wrapper-full .right .wrapper {
  float: left;
  padding-right: 40px;
}
section.full .wrapper-full .wrapper {
  max-width: calc(700px + 40px);
}
section.full .wrapper-full .wrapper .col-1 {
  width: calc((100% / (12 / 2) * 1));
}
section.full .wrapper-full .wrapper .col-2 {
  width: calc((100% / (12 / 2) * 2));
}
section.full .wrapper-full .wrapper .col-3 {
  width: calc((100% / (12 / 2) * 3));
}
section.full .wrapper-full .wrapper .col-4 {
  width: calc((100% / (12 / 2) * 4));
}
section.full .wrapper-full .wrapper .col-5 {
  width: calc((100% / (12 / 2) * 5));
}
section.full .wrapper-full .wrapper .col-6 {
  width: calc((100% / (12 / 2) * 6));
}
section.full .wrapper-full .wrapper .col-7 {
  width: calc((100% / (12 / 2) * 7));
}
section.full .wrapper-full .wrapper .col-8 {
  width: calc((100% / (12 / 2) * 8));
}
section.full .wrapper-full .wrapper .col-9 {
  width: calc((100% / (12 / 2) * 9));
}
section.full .wrapper-full .wrapper .col-10 {
  width: calc((100% / (12 / 2) * 10));
}
section.full .wrapper-full .wrapper .col-11 {
  width: calc((100% / (12 / 2) * 11));
}
/*======================================================================
 Globals
 ----------------------------------------------------------------------*/
img.alignright {
  float: right;
  margin: 0 0 10px 10px;
}
img.alignleft {
  float: left;
  margin: 0 10px 10px 0;
}
img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.responsive img {
  width: 100%;
  height: auto;
}
.primary_color_bg {
  background-color: #aaa;
}
.secondary_color_bg {
  background-color: #adadad;
}
.show1000 {
  display: none;
}
.show900 {
  display: none;
}
.show800 {
  display: none;
}
.show700 {
  display: none;
}
.show600 {
  display: none;
}
.show500 {
  display: none;
}
.show400 {
  display: none;
}
.lightbox_civic {
  z-index: 300;
  width: 100%;
  top: 0;
  height: 100%;
  position: fixed;
  background-color: rgba(35, 81, 81, .95);
  display: table;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}
.lightbox_civic.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox_civic .row {
  display: table-row;
  height: 100%;
}
.lightbox_civic .row .cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.lightbox_civic .row .cell .content {
  position: relative;
  padding: 25px;
  background-color: #fff;
  display: inline-block;
  max-width: 500px;
  width: calc(100% - 60px);
}
.lightbox_civic .row .cell .content label {
  display: none !important;
}
.lightbox_civic .row .cell .content input[type="text"], .lightbox_civic .row .cell .content select, .lightbox_civic .row .cell .content .gform_wrapper .chosen-container-single .chosen-single {
  -webkit-appearance: none !important;
  width: 100%;
  padding: 10px !important;
  height: 42px !important;
  background: none !important;
  border-radius: 0 !important;
}
.lightbox_civic .row .cell .content .gform_wrapper .chosen-container-single .chosen-single div b {
  background-position: 0 10px !important;
}
.lightbox_civic .row .cell .content .gform_wrapper .chosen-container {
  width: 100% !important;
}
.lightbox_civic .row .cell .content .gform_wrapper .gform_footer {
  margin-top: 0 !important;
}
.lightbox_civic .row .cell .content .close {
  position: absolute;
  right: -20px;
  font-size: 30px;
  top: -20px;
  color: #fff;
  cursor: pointer;
}
.button_civic {
  background-color: #c92228;
  color: #fff;
  padding: 10px 20px !important;
  display: inline-block;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.25s ease;
}
.button_civic:hover {
  background-color: #235151;
}
/*======================================================================
 Text Formatting
 ----------------------------------------------------------------------*/
p {
  margin-top: 20px;
}
a {
  color: #adadad;
  text-decoration: none;
}
em {
  font-style: italic;
}
strong {
  font-weight: 700;
}
ol, ul {
  margin-top: 20px;
  padding-left: 40px;
}
ol li, ul li {
  line-height: 125%;
  margin-top: 10px;
}
/*======================================================================
 Misc
 ----------------------------------------------------------------------*/
#podcast .wrapper [class*='col-'] {
  font-size: 0;
}
#podcast .wrapper [class*='col-'] .podcast {
  width: calc(25% - (60px / 4));
  margin-right: 20px;
  margin-bottom: 20px;
  display: inline-block;
  background-position: center center;
  background-size: cover;
  position: relative;
}
#podcast .wrapper [class*='col-'] .podcast:nth-of-type(4n) {
  margin-right: 0;
}
#podcast .wrapper [class*='col-'] .podcast .overlay {
  position: absolute;
  transition: all 0.25s ease;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .55);
  display: table;
}
#podcast .wrapper [class*='col-'] .podcast .overlay:hover {
  opacity: 1;
}
#podcast .wrapper [class*='col-'] .podcast .overlay .row {
  display: table-row;
  height: 100%;
}
#podcast .wrapper [class*='col-'] .podcast .overlay .row .cell {
  width: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
#podcast .wrapper [class*='col-'] .podcast .overlay .row .cell h3 {
  color: #fff;
  font-weight: bold;
}
#podcast .wrapper [class*='col-'] .podcast img {
  width: 100%;
}
#contributors .wrapper [class*='col-'] {
  font-size: 0;
}
#contributors .wrapper [class*='col-'] .people {
  width: calc(25% - (45px / 4));
  margin-right: 15px;
  display: inline-block;
  margin-top: 15px;
  vertical-align: top;
}
#contributors .wrapper [class*='col-'] .people .image {
  background-position: center center;
  background-size: cover;
}
#contributors .wrapper [class*='col-'] .people .image img {
  width: 100%;
}
#contributors .wrapper [class*='col-'] .people h3 {
  margin-bottom: 0;
  margin-top: 15px;
}
#contributors .wrapper [class*='col-'] .people h4 {
  font-size: 15px;
  line-height: 20px;
  color: #a0a0a0;
  margin-top: 0;
}
#contributors .wrapper [class*='col-'] .people:nth-of-type(4n) {
  margin-right: 0;
}
.jeg_slide_overlay {
  background-color: rgba(0, 0, 0, .4);
  height: 100%;
  width: 100%;
  position: absolute;
}
.jeg_slider_type_4 .jeg_slide_item {
  position: relative;
}
.jeg_meta_comment {
  display: none !important;
}
.content-inner img, .content-inner figure {
  max-width: 100% !important;
}
.jeg_author_socials, .jeg_video_container {
  display: none !important;
}
.jeg_slider_type_4 .jeg_slide_item {
  padding-bottom: 75% !important;
}
.jeg_postblock_27 .jeg_post {
  width: 33.3% !important;
}

/*
     FILE ARCHIVED ON 03:10:31 Dec 07, 2022 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 09:33:53 Jun 05, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.643
  exclusion.robots: 0.065
  exclusion.robots.policy: 0.052
  esindex: 0.009
  cdx.remote: 26.676
  LoadShardBlock: 106.528 (3)
  PetaboxLoader3.datanode: 137.836 (5)
  PetaboxLoader3.resolve: 350.019 (2)
  load_resource: 426.058
  loaddict: 60.556
*/