article.page .frame {
  font-size: 7px;
  height: 100%;
  width: 100%;
  position: relative;
  background-color: white;
}
@media (max-width: 1100px) {
  article.page .frame {
    font-size: 16px;
  }
}
article.page .frame .bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 1100px) {
  article.page .frame .bottom {
    position: static;
  }
}
article.page * {
  box-sizing: border-box;
}
@media (min-width: 1101px) {
  article.page .offset-up-2 {
    margin-top: -30px !important;
  }
  article.page .offset-up-1 {
    margin-top: -10px !important;
  }
}
article.page .rounded-design {
  border-radius: 7px;
}
@media (min-width: 701px) {
  article.page .phone-only {
    display: none;
  }
}
@media (max-width: 700px) {
  article.page .without-phone {
    display: none;
  }
}
@media (min-width: 1101px) {
  article.page .mobile-only {
    display: none;
  }
}
@media (max-width: 1100px) {
  article.page .desktop-only {
    display: none;
  }
}
@media (min-width: 1101px) {
  article.page .hover-zoom {
    transition: transform .2s;
  }
  article.page .hover-zoom:hover {
    transform: scale(1.05);
  }
}
article.page .box {
  width: 100%;
  height: auto;
  padding: 0.5px 0 0.5px 0;
}
article.page .box.over-img {
  position: relative;
}
article.page .two-column-layout .column {
  display: inline-block;
  padding: 2% 5% 2% 5%;
  width: 50%;
  float: left;
}
@media (max-width: 1100px) {
  article.page .two-column-layout.split-mobile .column {
    float: initial;
    width: 100%;
    display: block;
  }
}
@media (max-width: 700px) {
  article.page .two-column-layout.split-phone .column {
    float: initial;
    width: 100%;
    display: block;
  }
}
article.page .absolute-positioning-layout {
  position: relative;
  z-index: 0;
}
article.page .absolute-positioning-layout > div {
  position: absolute;
  width: 75%;
  padding: 2.5%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
article.page .absolute-positioning-layout > div.center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
article.page .absolute-positioning-layout > div.bottom-center {
  transform: translate(-50%);
  top: auto;
  bottom: 0;
}
article.page .absolute-positioning-layout > div.bottom-right {
  transform: none;
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
}
article.page .absolute-positioning-layout > div.bottom-left {
  transform: none;
  top: auto;
  bottom: 0;
  left: 0;
}
article.page .absolute-positioning-layout > div.right-center {
  transform: translate(0, 50%);
  top: auto;
  right: 0;
  bottom: 50%;
  left: auto;
}
article.page .absolute-positioning-layout > div.left-center {
  transform: translate(0, 50%);
  top: auto;
  left: 0;
  bottom: 50%;
}
article.page .absolute-positioning-layout > div.top-center {
  transform: translate(-50%);
  top: 0;
  left: 50%;
}
article.page .absolute-positioning-layout > div.top-right {
  transform: none;
  top: 0;
  right: 0;
  left: auto;
}
article.page .absolute-positioning-layout > div.top-left {
  transform: none;
  top: 0;
  left: 0;
}
article.page .absolute-positioning-layout > div.full-width {
  width: 100%;
}
@media (max-width: 700px) {
  article.page .absolute-positioning-layout > div {
    padding: 2.5% 0 2.5% 0;
    width: 90%;
  }
  article.page .absolute-positioning-layout > div.phone-prepend {
    position: static;
    margin: auto;
    transform: none;
  }
  article.page .absolute-positioning-layout > div.full-width {
    width: 90%;
  }
}
article.page .grid {
  display: inline-flex;
  flex-wrap: wrap;
  width: calc(100% + 10px);
  margin-left: -5px;
}
article.page .grid .grid-item {
  padding: 5px;
  position: relative;
  overflow: hidden;
}
article.page .grid .grid-item.no-padding {
  padding: 0;
}
article.page .grid .grid-item.no-padding .hover-item {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
article.page .grid .grid-item img {
  display: block;
  width: 100%;
}
article.page .grid .grid-item img:not(:first-child) {
  padding-top: 10px;
}
article.page .grid .grid-item .textbox {
  height: 100%;
  margin: 0;
  padding: 25px 30px;
}
article.page .grid .grid-item .hover-item .textbox {
  height: auto;
}
article.page .grid .hover-item {
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}
article.page .grid .hover-item:hover {
  opacity: 1;
}
article.page .grid.margin-40 {
  display: inline-flex;
  flex-wrap: wrap;
  width: calc(100% + 10px);
  margin-left: -5px;
}
article.page .grid.margin-40 .grid-item {
  padding: 20px;
  position: relative;
  overflow: hidden;
}
article.page .grid.margin-40 .grid-item.no-padding {
  padding: 0;
}
article.page .grid.margin-40 .grid-item.no-padding .hover-item {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
article.page .grid.margin-40 .grid-item img {
  display: block;
  width: 100%;
}
article.page .grid.margin-40 .grid-item img:not(:first-child) {
  padding-top: 40px;
}
article.page .grid.margin-40 .grid-item .textbox {
  height: 100%;
  margin: 0;
  padding: 25px 30px;
}
article.page .grid.margin-40 .grid-item .hover-item .textbox {
  height: auto;
}
article.page .grid.margin-40 .hover-item {
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}
article.page .grid.margin-40 .hover-item:hover {
  opacity: 1;
}
article.page .grid.margin-5 {
  display: inline-flex;
  flex-wrap: wrap;
  width: calc(100% + 10px);
  margin-left: -5px;
}
article.page .grid.margin-5 .grid-item {
  padding: 2.5px;
  position: relative;
  overflow: hidden;
}
article.page .grid.margin-5 .grid-item.no-padding {
  padding: 0;
}
article.page .grid.margin-5 .grid-item.no-padding .hover-item {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
article.page .grid.margin-5 .grid-item img {
  display: block;
  width: 100%;
}
article.page .grid.margin-5 .grid-item img:not(:first-child) {
  padding-top: 5px;
}
article.page .grid.margin-5 .grid-item .textbox {
  height: 100%;
  margin: 0;
  padding: 25px 30px;
}
article.page .grid.margin-5 .grid-item .hover-item .textbox {
  height: auto;
}
article.page .grid.margin-5 .hover-item {
  display: block;
  position: absolute;
  top: 2.5px;
  left: 2.5px;
  right: 2.5px;
  bottom: 2.5px;
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}
article.page .grid.margin-5 .hover-item:hover {
  opacity: 1;
}
article.page .center-horizontal > div,
article.page .center-horizontal .image img {
  margin: auto;
}
@media (max-width: 1100px) {
  article.page .center-horizontal {
    padding-right: 2.5%;
    padding-left: 2.5%;
  }
}
@media (min-width: 1101px) {
  article.page .center-vertical {
    position: relative;
  }
  article.page .center-vertical > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 1100px) {
  article.page .center-vertical {
    padding-top: 2.5%;
    padding-bottom: 2.5%;
  }
}
article.page .textbox {
  position: relative;
  z-index: 0;
  padding: 0 5% 0 5%;
  margin: 2% 0 2% 0;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  font-family: Muli, sans-serif;
  font-size: 1em;
  line-height: 1.45em;
  text-align: justify;
  -moz-column-fill: balance;
  column-fill: balance;
  column-gap: 10px;
}
article.page .textbox p {
  margin: 0;
}
article.page .textbox a {
  text-decoration-color: #00539E;
  color: black;
}
article.page .textbox.white-text a {
  color: white;
}
article.page .textbox p.no-break,
article.page .textbox div.no-break {
  page-break-inside: avoid;
  break-inside: avoid;
}
@media (min-width: 701px) {
  article.page .textbox div.break-before {
    break-before: column;
  }
}
article.page .textbox span.end-mark {
  font-style: italic;
}
article.page .textbox .end-square {
  color: #00539E;
}
@media (max-width: 700px) {
  article.page .textbox {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    text-align: left;
  }
  article.page .textbox.always-two-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
@media (max-width: 1100px) {
  article.page .textbox {
    column-gap: 20px;
  }
}
article.page .textbox.rounded-design {
  padding: 2% 2% 2% 2%;
  margin: 2% 3% 2% 3%;
}
article.page .textbox.one-column {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  padding: 0 5% 0 10%;
}
article.page .textbox.one-column.invert-padding {
  padding: 0 10% 0 5%;
}
@media (max-width: 700px) {
  article.page .textbox.one-column {
    padding: 0 5% 0 5% !important;
  }
}
article.page .textbox.three-columns:not(.manual) {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}
article.page .textbox.four-columns:not(.manual) {
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;
}
article.page .textbox.manual {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
}
@media (min-width: 701px) {
  article.page .textbox.manual .column {
    float: left;
    width: calc(50% - 5px);
  }
  article.page .textbox.manual .column:first-child {
    margin-right: 10px;
  }
  article.page .textbox.manual.three-columns .column {
    float: left;
    width: calc(33.33% - 5px);
  }
  article.page .textbox.manual.three-columns .column:first-child,
  article.page .textbox.manual.three-columns .column:nth-child(2) {
    margin-right: 7.5px;
  }
  article.page .textbox.manual.four-columns .column {
    float: left;
    width: calc(25% - 5px);
  }
  article.page .textbox.manual.four-columns .column:first-child,
  article.page .textbox.manual.four-columns .column:nth-child(2),
  article.page .textbox.manual.four-columns .column:nth-child(3) {
    margin-right: 6.667px;
  }
}
@media (min-width: 701px) and (max-width: 1100px) {
  article.page .textbox.manual .column {
    width: calc(50% - 10px);
  }
  article.page .textbox.manual .column:first-child {
    margin-right: 20px;
  }
}
@media (min-width: 701px) and (max-width: 1100px) {
  article.page .textbox.manual.three-columns .column {
    width: calc(33.33% - 10px);
  }
  article.page .textbox.manual.three-columns .column:first-child,
  article.page .textbox.manual.three-columns .column:nth-child(2) {
    margin-right: 15px;
  }
}
@media (min-width: 701px) and (max-width: 1100px) {
  article.page .textbox.manual.four-columns .column {
    width: calc(25% - 10px);
  }
  article.page .textbox.manual.four-columns .column:first-child,
  article.page .textbox.manual.four-columns .column:nth-child(2),
  article.page .textbox.manual.four-columns .column:nth-child(3) {
    margin-right: 13.334px;
  }
}
@-moz-document url-prefix() {
  article.page .textbox {
    letter-spacing: 0.01em;
  }
}
article.page .navbar {
  width: 100%;
  height: 20px;
  color: white;
  text-align: center;
  font-family: Muli, sans-serif;
  background-color: #00539E;
}
@media (min-width: 1101px) {
  article.page .navbar.right .pageNum {
    float: right;
  }
  article.page .navbar.right .section {
    padding-left: 4.5%;
  }
}
@media (max-width: 1100px) {
  article.page .navbar.right .pageNum {
    float: left;
  }
  article.page .navbar.right .section {
    padding-right: 4.5%;
  }
}
article.page .navbar.left .pageNum {
  float: left;
}
article.page .navbar.left .section {
  padding-right: 4.5%;
}
article.page .navbar div {
  vertical-align: top;
  display: inline-block;
  font-size: 1.15em;
  line-height: 20px;
}
@media (max-width: 320px) {
  article.page .navbar div {
    font-size: 0.9em;
  }
}
article.page .navbar .pageNum {
  position: relative;
  margin: 0 1.5%;
  width: 3%;
}
@media (max-width: 320px) {
  article.page .navbar .pageNum {
    min-width: 30px;
  }
}
@media (max-width: 1100px) {
  article.page .navbar {
    height: 30px;
  }
  article.page .navbar div {
    line-height: 30px;
  }
}
article.page .headline-description {
  font-style: italic;
  font-family: Muli, sans-serif;
  text-align: justify;
  font-size: 1.2em;
  padding: 0 5% 0 5%;
  margin: 2% 0 2% 0;
  text-align-last: center;
  line-height: 1.5em;
}
@media (max-width: 700px) {
  article.page .headline-description {
    text-align: left;
    text-align-last: left;
  }
}
article.page .description {
  font-style: italic;
  font-weight: 400;
  font-family: Arimo, sans-serif;
  color: #3f3f3e;
  text-align: center;
  font-size: 1em;
  line-height: 1.5em;
  padding: 0 5% 0 5%;
  margin: 3.5px 0 3.5px 0;
}
article.page .textbox .description {
  padding: 0;
  padding-top: inherit;
  padding-bottom: inherit;
}
article.page .footer {
  width: 100%;
  height: 20px;
  font-family: Muli, sans-serif;
  color: #808080;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 1100px) {
  article.page .footer {
    height: 40px;
  }
}
@media (min-width: 1101px) {
  article.page .footer.right .container,
  article.page .footer.right .page,
  article.page .footer.right .magazine {
    float: right;
  }
}
@media (max-width: 1100px) {
  article.page .footer.right .container,
  article.page .footer.right .page,
  article.page .footer.right .magazine {
    float: left;
  }
}
article.page .footer.left .container,
article.page .footer.left .page,
article.page .footer.left .magazine {
  float: left;
}
article.page .footer .container {
  width: 100%;
}
article.page .footer .magazine {
  font-family: Muli, sans-serif;
  font-size: 1em;
  text-align: center;
  line-height: 20px;
  padding: 0 8px;
  width: calc(100% - 40px);
}
@media (max-width: 1100px) {
  article.page .footer .magazine {
    line-height: 40px;
    font-size: 0.8em;
    padding: 0 4px;
  }
}
article.page .footer .page {
  height: 20px;
  width: 20px;
  font-family: Muli, sans-serif;
  color: black;
  text-align: center !important;
  font-size: 1em;
  line-height: 20px;
}
@media (max-width: 1100px) {
  article.page .footer .page {
    height: 40px;
    width: 40px;
    line-height: 40px;
  }
}
article.page .spacer {
  width: 100%;
}
article.page .stylistic-bar {
  height: 5px;
  width: 100%;
}
article.page .list {
  padding: 0.5em 0 0.5em 0;
  text-align: left;
  margin-left: 1.65em;
}
@media (max-width: 1100px) {
  article.page .list {
    margin-left: 1.25em;
  }
}
article.page .list ul {
  list-style: square;
  padding: 0;
  margin: 1em 0;
}
article.page .list ul li a {
  text-decoration: none;
  text-align: left;
}
article.page .list ul li a:hover {
  text-decoration: underline;
}
article.page .list ol {
  padding: 0;
  margin: 1em 0;
}
article.page .list ol li a {
  text-decoration: none;
  text-align: left;
}
article.page .list ol li a:hover {
  text-decoration: underline;
}
article.page .list.no-list-style {
  margin-left: 0;
}
article.page .list.no-list-style ul {
  list-style-type: none;
}
article.page .list.less-list-padding ul {
  padding: 0;
  margin: 0;
}
article.page .table {
  overflow-x: auto;
}
article.page .table table {
  font-family: Roboto, sans-serif;
  border-spacing: 0;
  width: 100%;
  border-bottom: 1px solid #cbcccc;
}
@media (max-width: 1100px) {
  article.page .table table:not(.no-scroll) {
    min-width: 500px;
  }
}
article.page .table table th {
  background-color: #00539E;
  color: white;
  padding: 2px;
}
article.page .table table th:not(.text-left):not(.text-right) {
  text-align: center;
}
article.page .table table th:not(:first-child):not(.no-border-left) {
  border-left: 1px solid #efefef;
}
article.page .table table tr:nth-child(odd) {
  background-color: #efefef;
}
article.page .table table tr:nth-child(even) {
  background-color: #ffffff;
}
article.page .table table tr td {
  padding: 2px;
}
article.page .table table tr td:not(.text-left):not(.text-right) {
  text-align: center;
}
article.page .table table tr td:not(.no-border-left) {
  border-left: 1px solid #cbcccc;
}
article.page .table table tr td:last-child:not(.no-border-right) {
  border-right: 1px solid #cbcccc;
}
article.page .fair-label {
  border: 1px solid #00539E;
  background-color: white;
  padding: 2%;
}
article.page .fair-label div.text {
  width: 70%;
  float: left;
  display: inline-block;
  font-family: Muli, sans-serif;
}
article.page .fair-label div.text div.label {
  color: red;
  font-weight: bold;
}
article.page .fair-label div.text div.location {
  color: black;
}
article.page .fair-label div.icon-box {
  width: 30%;
  display: inline-block;
  padding-left: 5%;
}
article.page .fair-label div.icon-box img.icon {
  float: right;
  height: auto;
  width: 100%;
  max-width: 80px;
}
article.page .fair-label::after {
  display: block;
  content: "";
  clear: both;
}
@media (min-width: 1101px) {
  article.page .fair-label.center-bottom-position {
    position: absolute;
    bottom: -32.5%;
    left: 50%;
    transform: translate(-50%);
  }
}
article.page .fair-label.no-image div.text {
  width: 100%;
}
article.page .learn-more {
  margin: 4% 12%;
  border-radius: 5px;
  box-shadow: 2px 2px 5px black;
  padding: 2% 5% 5% 5%;
  text-align: left;
  line-height: 1.4em;
  position: relative;
  z-index: 1;
  background-color: #efefef;
  color: #00539E;
}
article.page .learn-more.less-bottom-padding {
  padding: 2% 5% 2% 5%;
}
article.page .learn-more img.info-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 7%;
  height: auto;
}
article.page .learn-more img.preimg {
  width: 100%;
  margin: 2% auto;
  display: block;
}
article.page .learn-more span {
  display: inline-block;
  margin: 1% 0 2% 9%;
  font-size: 1.4em;
  font-family: Muli, sans-serif;
  font-weight: bold;
}
article.page .learn-more ul {
  list-style: square;
  padding: 0 0 0 13%;
  margin: 1em 0;
  -moz-column-count: 2;
  -moz-column-gap: 20px;
  -webkit-column-count: 2;
  -webkit-column-gap: 30px;
  column-count: 2;
  column-gap: 30px;
}
article.page .learn-more ul li {
  break-inside: avoid-column;
  -webkit-column-break-inside: avoid;
}
article.page .learn-more ul li a {
  text-decoration: none;
  color: black !important;
  text-align: left;
  font-family: Muli, sans-serif;
}
article.page .learn-more ul li a:hover {
  text-decoration: underline;
  text-decoration-color: #00539E;
  -webkit-text-decoration-color: #00539E;
}
article.page .learn-more ul.one-column {
  -moz-column-count: 1;
  -webkit-column-count: 1;
  column-count: 1;
}
@media (min-width: 1101px) {
  article.page .learn-more.flush {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border-top: solid 1px lightgrey;
    border-bottom: solid 1px lightgrey;
    padding: 1% 3% 1% 8%;
  }
  article.page .learn-more.flush ul {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
  article.page .learn-more.flush img.info-icon {
    width: 10%;
  }
}
article.page .learn-more-container img.preimg {
  display: block;
  width: 25%;
  height: 60px;
  margin: 0;
  float: left;
}
article.page .learn-more-container .learn-more {
  width: 50%;
  height: 60px;
  float: left;
}
article.page .learn-more-container img.postimg {
  display: block;
  width: 25%;
  height: 60px;
  margin: 0;
  float: left;
}
@media (max-width: 1100px) {
  article.page .learn-more-container img {
    display: none !important;
  }
  article.page .learn-more-container .learn-more {
    height: auto;
    width: 100%;
    float: none;
  }
}
@media (max-width: 700px) {
  article.page .learn-more {
    margin: 4% 0;
    padding: 5% 8% 4% 8%;
    margin: 2% 5%;
  }
  article.page .learn-more img.info-icon {
    width: 11%;
  }
  article.page .learn-more span {
    margin: 1% 0 2% 13%;
  }
  article.page .learn-more ul {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
  article.page .learn-more span {
    font-size: 1.3em;
  }
}
article.page .textbox .learn-more {
  margin: 4% 0;
  padding: 5% 8% 4% 8%;
}
article.page .textbox .learn-more img.info-icon {
  width: 11%;
}
article.page .textbox .learn-more span {
  margin: 1% 0 2% 13%;
}
article.page .textbox .learn-more ul {
  -moz-column-count: 1;
  -webkit-column-count: 1;
  column-count: 1;
}
article.page a.article-link {
  display: block;
  clear: both;
}
article.page a.article-link div {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 31%, #ffffff 37%, #4ea3f9 100%);
  margin: 2% 0;
  padding: 0 2%;
  display: block;
  color: black;
  float: right;
  opacity: 0.8;
  height: 22px;
}
article.page a.article-link div img.info-icon {
  float: left;
  height: 22px;
  padding: 2px;
  width: auto;
  display: block;
}
article.page a.article-link div span.title {
  line-height: 22px;
  display: inline-block;
}
article.page a.article-link div:hover {
  opacity: 1;
}
article.page a.article-link.dark div {
  color: white;
  background: linear-gradient(to right, rgba(122, 122, 122, 0) 0%, #315f8e 38%, #064f99 60%);
}
article.page .slider {
  width: 100%;
  margin: 2% 0 2% 0;
}
article.page .slider.no-margin {
  margin: 0;
}
article.page .slider.fade-animation .slider-main .slider-item {
  animation-name: fade;
  animation-duration: 1.5s;
}
article.page .slider .slider-main {
  position: relative;
  width: 100%;
}
article.page .slider .slider-main .slider-item {
  display: none;
  width: 100%;
}
article.page .slider .slider-main .slider-item img {
  width: 100%;
  height: auto;
  max-height: 400px;
  margin: auto;
}
article.page .slider .slider-main .slider-item .slider-description {
  display: none;
}
article.page .slider .slider-main .item-1 {
  display: block;
}
article.page .slider .slider-main .previous {
  left: 1.5%;
}
article.page .slider .slider-main .next {
  right: 1.52%;
}
article.page .slider .slider-main .previous,
article.page .slider .slider-main .next {
  position: absolute;
  z-index: 2;
  top: 45%;
  cursor: pointer;
  padding: 0 1.5% 1.5%;
  text-align: center;
  font-size: 2.8em;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 1.0;
  text-shadow: 2px 2px 4px #b4b4b4;
  color: #00539E;
}
article.page .slider .slider-main .previous:active,
article.page .slider .slider-main .next:active {
  color: #4E4E4E;
}
article.page .slider .slider-top {
  display: none;
  font-family: Muli, sans-serif;
  position: relative;
  text-align: center;
  line-height: 22px;
  background-color: #00539E;
}
article.page .slider .slider-top .location {
  font-weight: bold;
}
article.page .slider .slider-bottom {
  margin-top: 0.8%;
}
@media (max-width: 1100px) {
  article.page .slider .previous,
  article.page .slider .next {
    line-height: 45px !important;
    height: 45px !important;
    width: 45px !important;
  }
}
article.page .slider:hover {
  opacity: 0.999;
}
@-webkit-keyframes fade {
  from {
    opacity: 0.42;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.42;
  }
  to {
    opacity: 1;
  }
}
article.page .youtube-player {
  margin: 2% 0 2% 0;
  padding: 0 2% 0 2%;
}
@media (max-width: 1100px) and (min-width: 700px) {
  article.page .youtube-player {
    padding: 0 26% 0 26%;
  }
}
article.page .overlay-box {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1% 0 3% 0;
}
article.page .overlay-box h1 {
  color: white;
}
article.page h1 {
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  display: block;
  font-size: 2.75em;
  line-height: 1.15em;
  text-align: center;
  padding: 0 5% 0 5%;
  margin: 2% 0 2% 0;
  color: #00539E;
}
@media (max-width: 1100px) {
  article.page h1 {
    font-size: 2.2em;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
  }
}
@media (max-width: 700px) {
  article.page h1 {
    font-size: 1.6em;
  }
}
article.page h1.abs-margin {
  margin: 3px 0 3px 0;
}
article.page .textbox h1 {
  padding: 0;
}
article.page h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  display: block;
  font-size: 2em;
  line-height: 1.15em;
  text-align: center;
  padding: 0 5% 0 5%;
  margin: 2% 0 2% 0;
  color: #00539E;
}
@media (max-width: 1100px) {
  article.page h2 {
    font-size: 1.5em;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
  }
}
@media (max-width: 700px) {
  article.page h2 {
    font-size: 1.1em;
  }
}
article.page .textbox h2 {
  padding: 0;
}
article.page h3 {
  font-family: Muli, sans-serif;
  font-weight: normal;
  display: block;
  padding: 1em 0 0.2085em 0;
  margin: 0;
  font-size: 1.2em;
  line-height: 1.2085em;
  text-align: left;
  text-transform: uppercase;
  color: #00539E;
}
@media (max-width: 1100px) {
  article.page h3 {
    line-height: 1.2085em;
  }
}
@media (min-width: 701px) {
  article.page h3.top-aligned {
    padding: 0 0 1.2085em 0;
  }
}
article.page h3.top-aligned + .list {
  margin-top: -1em;
}
article.page h3 + .list {
  margin-top: -1em;
}
article.page h4 {
  font-family: Muli, sans-serif;
  font-weight: normal;
  font-style: italic;
  display: inline;
  font-size: 1em;
  line-height: 1em;
  text-align: left;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  color: #00539E;
}
article.page h4:not(:first-child)::before {
  content: "\a";
  white-space: pre;
}
article.page h4.occupy-line {
  display: block;
  text-align: left;
  margin: 0;
  padding: 0;
}
article.page .legal-box {
  margin: 2% 5% 2% 5%;
}
article.page .legal-box div.header {
  height: 18px;
  background-color: #00539E;
}
article.page .legal-box div.header div.title {
  font-family: Muli, sans-serif;
  height: 100%;
  vertical-align: top;
  display: inline-block;
  line-height: 18px;
  padding: 0 10px 0 10px;
  color: white;
}
article.page .legal-box div.header img.logo {
  display: inline-block;
  padding: 4px 8px 4px 8px;
  height: 18px;
  float: right;
  vertical-align: top;
}
@media (max-width: 1100px) {
  article.page .legal-box div.header {
    height: 23.4px;
  }
  article.page .legal-box div.header div.title {
    line-height: 23.4px;
  }
  article.page .legal-box div.header img.logo {
    height: 23.4px;
  }
}
article.page .legal-box div.content {
  font-family: Muli, sans-serif;
  font-size: 0.91em;
  border: 1px solid #878787;
  padding: 6px;
}
article.page .legal-box div.content span.primary {
  font-weight: bold;
}
article.page .legal-box div.content em {
  font-style: normal;
  color: #00539E;
}
article.page .legal-box div.content a {
  color: black;
  text-decoration-color: #00539E;
}
@media (max-width: 1100px) {
  article.page .legal-box div.content {
    padding: 4%;
  }
}
article.page .media-links {
  padding: 0 5% 0 5%;
  margin: 2% 0 2% 0;
}
article.page .media-links div.links {
  width: 4%;
  display: inline-block;
  vertical-align: top;
}
article.page .media-links div.links a.link {
  display: block;
  width: 100%;
  margin-bottom: 4px;
}
article.page .media-links div.links a.link img.icon {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 700px) {
  article.page .media-links div.links {
    width: 100%;
    text-align: center;
  }
  article.page .media-links div.links a.link {
    margin: 5% 10% 0 10%;
    display: inline-block;
    width: 10%;
  }
}
article.page .media-links div.description {
  display: inline-block;
  vertical-align: top;
  width: 90%;
  padding: 0.25% 2% 0.25% 2%;
  margin: 0;
  text-align: left;
}
@media (max-width: 700px) {
  article.page .media-links div.description {
    width: 100%;
    padding: 2% 5% 2% 5%;
  }
}
article.page .image img {
  display: none;
  width: 100%;
  height: auto;
}
@media (min-width: 1101px) {
  article.page .image img.desktop {
    display: block;
  }
}
@media (max-width: 1100px) and (min-width: 700px) {
  article.page .image img.tablet {
    display: block;
  }
}
@media (max-width: 700px) {
  article.page .image img.phone {
    display: block;
  }
}
article.page .image img:not(.desktop):not(.tablet):not(.phone) {
  display: block;
}
article.page .image-box {
  position: relative;
  z-index: 0;
}
article.page .image-box img {
  display: none;
  width: 100%;
  height: auto;
}
@media (min-width: 1101px) {
  article.page .image-box img.desktop {
    display: block;
  }
}
@media (max-width: 1100px) and (min-width: 700px) {
  article.page .image-box img.tablet {
    display: block;
  }
}
@media (max-width: 700px) {
  article.page .image-box img.phone {
    display: block;
  }
}
article.page .image-box img:not(.desktop):not(.tablet):not(.phone) {
  display: block;
}
article.page .image-box > div {
  position: absolute;
  width: 75%;
  padding: 5%;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
}
article.page .image-box > div.center-center {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
}
article.page .image-box > div.bottom-center {
  transform: translate(-50%);
  top: auto;
  bottom: 0;
}
article.page .image-box > div.bottom-right {
  transform: none;
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
}
article.page .image-box > div.bottom-left {
  transform: none;
  top: auto;
  bottom: 0;
  left: 0;
}
article.page .image-box > div.right-center {
  transform: translate(0, 50%);
  top: auto;
  right: 0;
  bottom: 50%;
  left: auto;
}
article.page .image-box > div.left-center {
  transform: translate(0, 50%);
  top: auto;
  left: 0;
  bottom: 50%;
}
article.page .image-box > div.top-center {
  transform: translate(-50%);
  top: 0;
  left: 50%;
}
article.page .image-box > div.top-right {
  transform: none;
  top: 0;
  right: 0;
  left: auto;
}
article.page .image-box > div.top-left {
  transform: none;
  top: 0;
  left: 0;
}
article.page .image-box > div.complete-width {
  width: 100%;
}
article.page .image-box > div.full-width {
  width: 100%;
}
@media (max-width: 700px) {
  article.page .image-box > div {
    padding: 2.5% 0 2.5% 0;
    width: 90%;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
  }
  article.page .image-box > div.phone-prepend {
    position: static;
    margin: auto;
    transform: none !important;
  }
  article.page .image-box > div.complete-width {
    width: 90%;
  }
}
article.page .gallery {
  display: block;
  text-align: center;
  font-family: Muli, sans-serif;
}
article.page .gallery > a,
article.page .gallery > div,
article.page .gallery > img {
  display: inline-block;
  width: 22.5%;
  height: auto;
  padding: 2px;
}
article.page .gallery > a img,
article.page .gallery > div img,
article.page .gallery > img img {
  display: block;
  height: 100%;
  width: 100%;
  padding-bottom: 3px;
}
@media (max-width: 700px) {
  article.page .gallery > a,
  article.page .gallery > div,
  article.page .gallery > img {
    width: 35%;
  }
}
article.page .gallery > a {
  text-decoration: none;
  color: black;
}
article.page .cover-header div.header {
  position: relative;
  background-image: url("/elements/v1/data/cover-top-background.jpg");
  background-size: 100% 100%;
  height: 98.25px;
}
@media (max-width: 1100px) {
  article.page .cover-header div.header {
    height: 150px;
  }
}
@media (max-width: 700px) {
  article.page .cover-header div.header {
    height: 110px;
  }
}
article.page .cover-header div.header img.cover-logo {
  height: 30px;
  width: auto;
  display: block;
  position: absolute;
  top: 15px;
  left: 25px;
}
@media (max-width: 1100px) {
  article.page .cover-header div.header img.cover-logo {
    left: 50%;
    height: 50px;
    transform: translateX(-50%);
  }
}
@media (max-width: 700px) {
  article.page .cover-header div.header img.cover-logo {
    height: 40px;
  }
}
article.page .cover-header div.header div.cover-release {
  background-color: #00539E;
  height: 30px;
  width: 115px;
  display: block;
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 5px;
  border: solid white 1px;
  box-shadow: 0 0 10px white;
  font-family: Muli, sans-serif;
}
article.page .cover-header div.header div.cover-release div.cover-slogan {
  color: white;
  margin-top: 3px;
  font-size: 1em;
}
article.page .cover-header div.header div.cover-release div.cover-date {
  background-color: white;
  color: #00539E;
  font-size: 1.1em;
}
article.page .cover-header div.header div.cover-release div {
  margin: auto;
  width: 80%;
  height: 10px;
  text-align: center;
  line-height: 10px;
  font-weight: bold;
}
@media (max-width: 1100px) {
  article.page .cover-header div.header div.cover-release {
    display: none;
  }
}
article.page .cover-header div.header img.cover-title {
  height: auto;
  width: 100%;
  padding: 0 4%;
  display: block;
  position: absolute;
  bottom: -5%;
}
@media (max-width: 1100px) {
  article.page .cover-header div.header img.cover-title {
    height: 65%;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 700px) {
  article.page .cover-header div.header img.cover-title {
    height: 40%;
    width: auto;
    max-width: 100%;
    margin-bottom: 2%;
  }
}
article.page .cover-header div.stripe {
  width: 100%;
  text-align: center;
  height: 6px;
  background-color: #eac423;
}
@media (max-width: 1100px) {
  article.page .cover-header div.stripe {
    height: 18px;
  }
}
article.page .cover-header div.stripe span {
  font-style: italic;
  line-height: 18px;
  font-family: Muli, sans-serif;
  vertical-align: top;
  font-size: 0.9em;
}
@media (min-width: 1101px) {
  article.page .cover-header div.stripe span {
    display: none;
  }
}
article.page .cover-stripe-bottom {
  width: 100%;
  text-align: center;
  height: 4px;
  background-color: #00539E;
}
article.page .text-center {
  text-align: center;
  text-align-last: center;
}
article.page .text-left {
  text-align: left;
  text-align-last: left;
}
article.page .text-right {
  text-align: right;
  text-align-last: right;
}
article.page .text-justify {
  text-align: justify;
}
article.page .black-shadow {
  text-shadow: 2px 2px 3px black;
}
article.page .white-shadow {
  text-shadow: 2px 2px 3px white;
}
article.page .bold {
  font-weight: bold;
}
article.page sup {
  vertical-align: top;
  position: relative;
  top: -0.4em;
  font-size: 0.9em;
}
article.page sub {
  vertical-align: top;
  position: relative;
  bottom: -0.4em;
  font-size: 0.9em;
}
article.page .big {
  font-size: 1.2em;
}
article.page .bigger {
  font-size: 1.5em;
}
article.page .small {
  font-size: 0.8em;
}
article.page .smaller {
  font-size: 0.5em;
}
article.page .no-italic {
  font-style: normal;
}
article.page .italic {
  font-style: italic;
}
article.page .white-text {
  color: white;
}
article.page .black-text {
  color: black;
}
article.page .no-link-style {
  text-decoration: none;
  color: black;
}
article.page .link {
  text-decoration-color: #00539E;
  color: black;
}
article.page .no-underline {
  text-decoration: none;
}
article.page .uppercase {
  text-transform: uppercase;
}
article.page .padding-small {
  padding: 1.5%;
}
article.page .padding-medium {
  padding: 5%;
}
article.page .padding-large {
  padding: 7.5%;
}
article.page .black-background {
  background-color: black;
}
article.page .border {
  border: solid 1px #00539E;
}
article.page .no-shadow {
  box-shadow: none;
}
#image-view {
  display: none;
  position: fixed;
  z-index: 4;
  padding: 2%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: auto;
  background-color: rgba(0, 83, 158, 0.7);
}
#image-view .image {
  margin: auto;
  display: block;
}
#image-view .description {
  margin: auto;
  display: none;
  width: 80%;
  text-align: center;
  color: white;
  padding: 12px 0;
  height: 20px;
}
#image-view .image,
#image-view .description {
  animation-name: scale;
  animation-duration: 0.6s;
}
@keyframes scale {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
#image-view .close {
  position: absolute;
  top: -3px;
  right: 7px;
  color: #efefef;
  text-shadow: none;
  font-size: 30px;
  font-weight: bold;
  transition: 0.3s;
}
#image-view .close:hover,
#image-view .close:focus {
  cursor: pointer;
}
@media (min-width: 900px) {
  article.page .viewable {
    cursor: pointer;
    transition: 0.3s;
  }
  article.page .viewable:hover {
    opacity: 0.6;
  }
}
/*# sourceMappingURL=elements.css.map */