@font-face {
  font-family: "BureauEagleBook";
  src: url("/assets/fonts/bureaueaglebook.ttf");
}
body {
  font-family: Verdana, Geneva, sans-serif;
  background: #FFFFFF;
  margin: 0;
  padding: 0;
  color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
  padding-right: 15px;
  padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

h1 .subtitle {
  display: block;
  font-size: 0.8em;
  font-weight: normal;
}

h2 .subtitle {
  display: block;
  font-size: 0.7em;
  font-weight: normal;
}

.title-caption {
  font-size: 16px;
  font-weight: normal;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
  border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
  color: #42413C;
  text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

a:visited {
  color: #6E6C64;
  text-decoration: underline;
}

a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
  text-decoration: none;
}

/* ~~ Site layout ~~ */
/** Default mobile layout **/
div.main-content {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 260px auto;
  grid-template-areas: "header menu" "content content";
}
div.main-content div.heading {
  grid-area: header;
}
div.main-content div.heading h1 {
  font-size: 35px;
  font-weight: lighter;
  margin-bottom: 10px;
  margin-top: 20px;
}
div.main-content nav.main-nav {
  grid-area: menu;
  margin-top: 60px;
  width: 100%;
}
div.main-content nav.main-nav ul {
  list-style: none; /* this removes the list marker */
}
div.main-content nav.main-nav ul li a {
  text-decoration: none;
  font-size: 30px;
  color: black;
}
div.main-content nav.main-nav ul li a .subtitle {
  font-size: 15px;
  margin-left: 3px;
}
div.main-content .page-main-area {
  grid-area: content;
  margin-top: 30px;
  width: 100%;
}

div.main-expo-content {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-template-areas: "header" "content";
}
div.main-expo-content .expo-nav {
  grid-area: header;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 125px auto 125px;
  grid-template-areas: "info title buttons";
  align-items: center;
  padding: 5px 10px;
  -webkit-box-shadow: 0 7px 6px -4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 7px 6px -4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 7px 6px -4px rgba(0, 0, 0, 0.2);
}
div.main-expo-content .expo-nav .info {
  grid-area: info;
  display: flex;
  flex-direction: row;
  align-items: center;
}
div.main-expo-content .expo-nav .info a {
  text-decoration: none;
}
div.main-expo-content .expo-nav .info .logo {
  height: 30px;
}
div.main-expo-content .expo-nav .info .name {
  text-transform: uppercase;
  font-size: 15px;
}
div.main-expo-content .expo-nav .title {
  grid-area: title;
  justify-self: center;
  font-size: 17px;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
}
div.main-expo-content .expo-nav .buttons {
  grid-area: buttons;
  justify-self: flex-end;
}
div.main-expo-content .expo-nav .buttons .close-button {
  font-size: 15px;
}
div.main-expo-content div.expo-main-area {
  grid-area: content;
  margin: 20px 10px;
}

/** layout for wider devices (such as desktops) **/
@media all and (min-width: 500px) {
  div.main-expo-content .expo-nav {
    grid-template-columns: 150px auto 150px;
  }
  div.main-expo-content .expo-nav .info .name {
    font-size: 19px;
  }
  div.main-expo-content .expo-nav .title {
    font-size: 21px;
  }
  div.main-expo-content .expo-nav .buttons .close-button {
    font-size: 19px;
  }
  div.main-content {
    display: grid;
    grid-template-rows: 350px auto;
    grid-template-columns: 350px auto;
    grid-template-areas: "header content" "menu content";
  }
  div.main-content div.heading {
    grid-area: header;
    margin-left: 20px;
  }
  div.main-content div.heading a {
    text-decoration: none;
    font-size: 30px;
    color: black;
  }
  div.main-content nav.main-nav {
    grid-area: menu;
    margin-top: 0;
    margin-left: 20px;
    width: 100%;
  }
  div.main-content nav.main-nav ul {
    list-style: none; /* this removes the list marker */
  }
  div.main-content nav.main-nav ul li a {
    text-decoration: none;
    font-size: 40px;
    line-height: 50px;
    color: black;
  }
  div.main-content nav.main-nav ul li a .subtitle {
    font-size: 25px;
    margin-left: 3px;
  }
  div.main-content .page-main-area {
    grid-area: content;
    margin-left: 50px;
    margin-top: 70px;
    width: 90%;
  }
  div.main-content .page-main-area h1, div.main-content .page-main-area h2 {
    font-family: Georgia, "Times New Roman", Times, serif;
  }
}
article + [data-readmore-toggle] {
  margin-bottom: 20px;
}

.back-link {
  font-weight: bold;
  display: block;
  margin-bottom: 20px;
}

.gallery .gallery-image-title {
  letter-spacing: 1.5px;
  font-weight: 400;
  font-size: 1em;
}
.gallery .gallery-image-subtitle {
  font-weight: 100;
  font-size: 0.7em;
}

.gallery img {
  width: auto;
  height: 300px;
}

.gallery table {
  border-collapse: separate;
  text-align: center;
}

.gallery-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.gallery-flex div.gallery-image-box {
  display: inline;
  margin: 10px;
  text-align: center;
}
.gallery-flex div.gallery-image-box .gallery-image-title {
  letter-spacing: 1.5px;
  font-weight: 400;
  font-size: 1em;
  display: block;
  padding: 0;
  margin: 0;
}
.gallery-flex div.gallery-image-box .gallery-image-subtitle {
  font-weight: 100;
  font-size: 0.7em;
  display: block;
}
.gallery-flex div.gallery-image-box img {
  width: auto;
  height: 300px;
}

div.popup-press-release-content {
  justify-content: center;
  text-align: center;
  max-width: 80%;
  background-color: #b29755;
  color: #FFF;
}
div.popup-press-release-content article {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
}
div.popup-press-release-content article h2 {
  font-family: Georgia, "Times New Roman", Times, serif;
}
div.popup-press-release-content article p.quote {
  font-style: italic;
  color: #ffebb6;
}
div.popup-press-release-content article ul {
  text-align: left;
}
div.popup-press-release-content article ul li {
  text-align: left;
}
div.popup-press-release-content article div.narrower {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
}
div.popup-press-release-content a {
  color: #FFF;
}

.expo-gallery {
  display: flex;
  flex-direction: row;
}
.expo-gallery img.expo-poster {
  display: inline-block;
  width: auto;
  height: 300px;
  margin: 10px;
}
.expo-gallery .gallery-flex {
  display: inline-flex;
}
.expo-gallery .gallery-flex div.gallery-image-box img {
  height: 120px;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
  float: right;
  margin-left: 8px;
}

.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
  float: left;
  margin-right: 8px;
}

.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0px;
}

.center-text {
  text-align: center;
}

/*# sourceMappingURL=main.css.map */