@import url("http://fonts.googleapis.com/css?family=Fira+Sans+Condensed:400,400italic,700,700italic,600");
@import url("../apps/js/polls/polls-pack.html");
body, body .dark, body .light, body table, body .neutral, body .pale {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 100%;
}

html {
  height: 100%;
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  margin: 0;
}

body.index #content_main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

#header_main, #footer_main {
  -webkit-box-flex: none;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}

#content_main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

body, #footer_main {
  min-width: 320px;
}

#skip_to_content {
  color: #00568d;
}

#header_main {
  position: relative;
  z-index: 99;
  width: 100%;
  background: white;
}

@media screen and (min-width: 1024px) {
  #header_main:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 86px;
    background: #00568d;
    box-shadow: inset 0 13px 10px -10px rgba(0, 0, 0, 0.3);
  }
  #header_main:after {
    content: "";
    position: absolute;
    top: 55px;
    right: 0;
    width: 18%;
    height: 58px;
    background: #00568d;
  }
}

@media screen and (min-width: 1350px) {
  #header_main:after {
    width: 25%;
  }
}

@media screen and (min-width: 2000px) {
  #header_main:after {
    width: 32%;
  }
}

#header_main #header_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1024px;
  position: relative;
}

#skip_to_content {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#skip_to_content:focus {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  color: white;
  clip: auto;
}

#header_title {
  width: 100%;
  margin: 0;
  font-size: 1rem;
}

#header_title a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  position: relative;
  width: auto;
  padding: 0 0 0 130px;
  height: 150px;
  line-height: 1em;
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: left;
  text-decoration: none;
  color: #00568d;
  background-image: url("../common_pics/header_logo.html");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 110px auto;
}

@media screen and (min-width: 768px) {
  #header_title a {
    padding: 0 0 0 226px;
    font-size: 42px;
    background-size: auto;
  }
}

@media screen and (min-width: 1024px) {
  #header_title a {
    font-size: 56px;
  }
}

#header_title a span {
  display: inline-block;
  width: 100%;
}

#header_title .top-line {
  letter-spacing: 0;
  font-weight: 700;
}

#header_marquee {
  display: none;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: 20px;
  color: white;
}

#header_marquee .marquee-inner {
  display: inline-block;
  padding-left: 100%;
}

#header_marquee .marquee-inner:hover {
  animation-play-state: paused;
}

#header_marquee.marquee-speed-18 .marquee-inner {
  animation: marquee 35s linear infinite;
}

#header_marquee.marquee-speed-35 .marquee-inner {
  animation: marquee 70s linear infinite;
}

#header_marquee.marquee-speed-7 .marquee-inner {
  animation: marquee 17.5s linear infinite;
}

#header_marquee .marquee-content {
  float: left;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

#google_tools {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

#google_tools #google_translate_element {
  margin-bottom: 35px;
}

#header_social_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  z-index: 9;
  width: 100%;
  padding: 14px 0;
  background: #00568d;
  box-shadow: inset 0 13px 10px -10px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 1024px) {
  #header_social_nav {
    position: absolute;
    top: 55px;
    right: 0;
    width: auto;
    padding: 14px 10px;
    border-radius: 20px;
    box-shadow: none;
  }
}

#header_social_nav .social-link {
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  background-color: none;
  border-radius: 100%;
  margin: 0 10px;
}

#header_social_nav .social-link svg {
  display: block;
  width: 18px;
  height: 18px;
  margin: 6px;
  fill: white;
}

#header_social_nav .social-link:hover, #header_social_nav .social-link:focus {
  background: #1e2948;
}

#footer_social_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding: 6px 0;
}

@media screen and (min-width: 1024px) {
  #footer_social_nav {
    position: absolute;
    top: 55px;
    left: 0;
    width: auto;
  }
}

#footer_social_nav a {
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background-color: white;
  border-radius: 100%;
  margin: 0 5px;
}

#footer_social_nav a svg {
  display: block;
  width: 24px;
  height: 24px;
  margin: 8px;
  fill: #1e2948;
}

#footer_social_nav a:hover, #footer_social_nav a:focus {
  background: rgba(255, 255, 255, 0.5);
}

#footer_social_nav a:hover svg, #footer_social_nav a:focus svg {
  fill: white;
}

#search {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 18px;
  width: 132px;
  display: block;
  margin: 0 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

#search input#q {
  margin: 0;
  height: 18px;
  line-height: 18px;
  border: none;
  vertical-align: top;
  background: transparent;
  -webkit-appearance: none;
  box-sizing: content-box;
}

#search input#q {
  color: white;
}

#search input#q::-webkit-input-placeholder {
  color: white;
}

#search input#q {
  padding: 0 10px;
  width: 90px;
  font-size: .75em;
}

#topnav_holder {
  width: 100%;
}

#topnav_holder #topnav_mobile_toggle {
  position: absolute;
  display: block;
  height: 4px;
  width: 28px;
  font-size: 0;
  border-top: 14px double white;
  border-bottom: 5px solid white;
}

#topnav_holder #topnav {
  position: absolute;
  z-index: 99;
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.8s;
}

#topnav_holder #topnav.open {
  max-height: 2000px;
}

#topnav_holder .nav-menu,
#topnav_holder .sub-nav-group {
  margin: 0;
  padding: 0;
  list-style: none;
}

#topnav_holder .nav-menu a,
#topnav_holder .sub-nav-group a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: .5em 10px;
  text-decoration: none;
}

#topnav_holder .nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1024px;
}

#topnav_holder .sub-nav {
  display: none;
}

#topnav_holder .sub-nav.open {
  display: block;
}

#topnav_holder .sub-nav a {
  padding-left: 1.5em;
}

#topnav_holder .sub-nav .flyout-group {
  margin: 0;
  padding: 0;
  list-style: none;
}

#topnav_holder .sub-nav .flyout-group a {
  padding-left: 2.5em;
}

@media screen and (min-width: 1024px) {
  #topnav_holder #topnav_mobile_toggle {
    display: none;
  }
  #topnav_holder #topnav {
    position: static;
    max-height: none;
    overflow: visible;
  }
  #topnav_holder .nav-menu {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
}

@media screen and (min-width: 1024px) {
  #topnav_holder .sub-nav {
    position: absolute;
    left: 0;
    width: calc(100% - 20px*2);
    padding: 20px;
    max-width: 1024px;
  }
  #topnav_holder .sub-nav.open {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  #topnav_holder .sub-nav .sub-nav-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 60%;
  }
  #topnav_holder .sub-nav .sub-nav-group li {
    width: 50%;
  }
  #topnav_holder .sub-nav .sub-nav-group li a {
    margin: 0 1em;
  }
  #topnav_holder .sub-nav .mm-extra-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: calc(100% - 60%);
  }
  #topnav_holder .sub-nav .mm-image {
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  #topnav_holder .sub-nav {
    left: calc(50% - 1024px/2);
  }
}

@media screen and (max-width: 1023px) {
  #topnav_holder .mm-extra-content {
    display: none;
  }
}

#topnav_mobile_toggle {
  top: 15px;
  right: 20px;
}

#topnav {
  background: #00568d;
}

#topnav .nav-item > a {
  height: 42px;
  padding: 0 10px;
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: white;
}

#topnav .nav-item > a:focus, #topnav .nav-item > a:hover, #topnav .nav-item > a.open {
  color: #00568d;
  background: #1e2948;
}

@media screen and (min-width: 1024px) {
  #topnav .nav-item > a:focus .nav-item-inner, #topnav .nav-item > a:hover .nav-item-inner, #topnav .nav-item > a.open .nav-item-inner {
    background: white;
  }
}

#topnav .sub-nav a {
  color: white;
}

#topnav .sub-nav a:focus, #topnav .sub-nav a:hover, #topnav .sub-nav a.open {
  color: #00568d;
  background: #1e2948;
}

@media screen and (min-width: 1024px) {
  #topnav .sub-nav a:focus, #topnav .sub-nav a:hover, #topnav .sub-nav a.open {
    background: transparent;
    color: #1e2948;
  }
}

#topnav .icon-link svg {
  display: none;
}

@media screen and (min-width: 1024px) {
  #topnav {
    background: transparent;
  }
  #topnav .nav-item > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 86px;
    padding: 0 10px;
    text-align: center;
    font-size: 1em;
    color: white;
  }
  #topnav .nav-item > a .nav-item-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 50px;
    padding: 0 20px;
    line-height: 1em;
    border-radius: 20px 20px 0 0;
    border: 3px solid white;
    background: #00568d;
  }
  #topnav .mm-extra-content {
    color: #00568d;
  }
  #topnav .mm-extra-content .mm-extra-content-title {
    margin-top: 10px;
    font-size: 1.5em;
    color: #00568d;
  }
  #topnav .sub-nav {
    background: rgba(0, 86, 141, 0.9);
  }
  #topnav .sub-nav ul ul li {
    width: 100% !important;
  }
  #topnav .icon-link .nav-item-inner {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    background-color: transparent;
  }
  #topnav .icon-link .nav-item-inner svg {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0;
    fill: #1e2948;
  }
  #topnav .icon-link:focus, #topnav .icon-link:hover, #topnav .icon-link.open {
    background: none !important;
  }
  #topnav .icon-link:focus .nav-item-inner svg, #topnav .icon-link:hover .nav-item-inner svg, #topnav .icon-link.open .nav-item-inner svg {
    fill: white;
  }
}

#content_main {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 5%);
  max-width: calc(1024px - 5%);
  position: relative;
  z-index: 9;
  padding: 25px 2.5%;
  min-height: 400px;
  overflow: visible;
  margin-top: 0;
  margin-bottom: 0;
  background: white;
}

#content_main .pages-left-column-wrapper {
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  #content_main table {
    display: block;
    overflow-x: auto;
  }
  #content_main .bell-schedule {
    display: table;
  }
  #content_main .pages-column .stack-photo figcaption,
  #content_main .slideshow-wrapper .slide .slide-caption {
    font-size: .85em;
  }
  #content_main .video-list-top #controls2,
  #content_main .video-list-top #controls3 {
    width: auto;
  }
  #content_main #more-videos {
    display: none;
  }
  #content_main #staff_list_public .user-info-wrapper span[id*="staff"] {
    display: block;
  }
  #content_main #staff_list_public .user-info-wrapper .user-position-public {
    display: block;
    margin-left: 0;
    width: 100%;
  }
  #content_main #staff_list_public .user-info-wrapper p {
    display: block;
    float: left;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  #content_main .news-list article .column {
    width: 100%;
  }
  #content_main .show-news .attached-images {
    float: none;
    margin: 0 auto 1em;
  }
  #content_main .single-video #big-video,
  #content_main .below-start #big-video {
    width: 100% !important;
  }
  #content_main .video-list .thumb_wrap {
    display: block;
    float: none;
  }
  #content_main .video-list li .description {
    padding-left: 0;
  }
  #content_main .video-list li .video-list-date {
    padding-left: 0;
  }
  #content_main .bell-schedule {
    width: 100%;
  }
  #content_main .pages-column .stack-photo figcaption,
  #content_main .slideshow-wrapper .slide .slide-caption {
    font-size: .7em;
  }
  #content_main .video-list-top .controls,
  #content_main .video-list-top #controls2,
  #content_main .video-list-top #controls3 {
    display: none;
  }
  #content_main #album_thumbnails table img {
    width: 90%;
    height: 90%;
    position: relative;
  }
  #content_main #edlio_search_form {
    max-width: 400px;
    width: auto;
  }
  #content_main #edlio_search_form input {
    width: 200px;
  }
  #content_main #contact_form {
    width: 100%;
  }
  #content_main #contact_form table {
    display: table;
    font-size: 12px;
    width: 280px !important;
  }
  #content_main #contact_form #f_name {
    width: 200px !important;
  }
  #content_main #contact_form #f_email {
    width: 200px !important;
  }
  #content_main #contact_form #f_message {
    width: 200px !important;
  }
  #content_main #calendar_wrapper .right-column {
    float: none;
    width: 100%;
  }
  #content_main #calendar_wrapper .right-column #calendar_grid table {
    display: table;
  }
  #content_main .pages-column .page-block-text,
  #content_main .pages-column .page-block-photos {
    width: 100%;
  }
  #content_main .pages-left-column-wrapper {
    margin-left: 0 !important;
    float: none;
  }
  #content_main .pages-left-column-wrapper .pages-left-column {
    margin-left: 0 !important;
  }
  #content_main .pages-right-column {
    float: none;
    width: 100% !important;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.index #content_main {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

#content_main .pages-content-wrapper {
  overflow: visible;
}

#content_main img.sub {
  border: none;
}

.index #content_main {
  background: transparent;
  box-shadow: none;
}

.pageTitle {
  margin: 0 0 15px;
  padding: 0;
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2em;
  font-weight: 700;
  color: #00568d;
}

.right-column-page-navigation {
  margin-bottom: 1.25em;
  background: #00568d;
}

@media screen and (max-width: 767px) {
  .right-column-page-navigation {
    margin: 20px auto;
  }
}

.right-column-page-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.right-column-page-navigation a {
  text-decoration: none;
  color: inherit;
  display: block;
  font-weight: 400;
  padding: .8em 6% .8em 10%;
  width: 84%;
  margin: 0;
  line-height: auto;
}

.right-column-page-navigation a:hover {
  text-decoration: underline;
}

.right-column-page-navigation a .inner {
  text-decoration: none;
}

.right-column-page-navigation a .inner:hover {
  text-decoration: underline;
}

.right-column-page-navigation ul {
  padding: 5px 0;
}

.right-column-page-navigation li a {
  color: white;
}

.right-column-page-navigation li.active a {
  background: #1e2948;
  color: white;
}

#index_top {
  position: relative;
}

.index-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1024px;
  position: relative;
  width: 96%;
  padding: 0 2%;
}

@media screen and (min-width: 768px) {
  .index-inner {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}

#index_main {
  position: relative;
}

@media screen and (min-width: 768px) {
  #index_main:after {
    content: "";
    display: block;
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: #1e2948;
  }
}

#index_main .left-column {
  width: 100%;
}

@media screen and (min-width: 768px) {
  #index_main .left-column {
    width: 42%;
    padding: 0 2%;
  }
}

#index_main .right-column {
  width: 100%;
  background: #00568d;
}

@media screen and (min-width: 768px) {
  #index_main .right-column {
    width: 50%;
    padding: 0 2%;
  }
}

#index_bottom {
  background: #00568d;
  position: relative;
}

@media screen and (min-width: 768px) {
  #index_bottom:after {
    content: "";
    display: block;
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: white;
  }
}

#index_bottom .left-column {
  width: 100%;
}

@media screen and (min-width: 768px) {
  #index_bottom .left-column {
    width: 54%;
    padding: 0 2%;
  }
}

#index_bottom .right-column {
  width: 100%;
  background: white;
}

@media screen and (min-width: 768px) {
  #index_bottom .right-column {
    width: 36%;
    padding: 0 3%;
  }
}

#bg_content {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

#bg_content .image {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center center;
}

.content-row {
  position: relative;
  z-index: 9;
  background: white;
}

.content-container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1024px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  margin: 20px auto 30px;
  padding: 0;
  width: 100%;
}

.content-container .section-title {
  margin: 0;
  font-weight: 400;
}

.content-container .section-title a {
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: inherit;
}

.content-container .section-title a:hover {
  text-decoration: none;
}

.content-container .read-more-link {
  text-decoration: none;
  display: inline-block;
}

.content-container .read-more-link:hover {
  text-decoration: underline;
}

.content-container .section-title {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1em;
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2.1875em;
  font-weight: 600;
  color: white;
}

.content-container .items-list {
  position: relative;
  margin-bottom: 30px;
}

.content-container .item {
  margin: 0 0 30px;
}

.content-container .item-text {
  width: 100%;
  line-height: 1.5em;
  font-size: 1.25em;
  font-weight: 400;
  color: white;
}

.content-container .read-more-link-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .content-container .read-more-link-group {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}

.content-container .read-more-link {
  position: relative;
  margin: 0;
  padding: 24px 60px;
  line-height: 1em;
  text-transform: uppercase;
  text-align: center;
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.25em;
  font-weight: 700;
  color: white;
}

.content-container .read-more-link:hover, .content-container .read-more-link:focus {
  text-decoration: underline;
}

.content-container [class*="-name"] {
  margin: 0 0 10px 0;
  font-size: 1em;
}

.content-container [class*="-name"] a {
  font-size: 1.25em;
  font-weight: 700;
  color: white;
}

.content-container a {
  text-decoration: none;
  color: white;
}

.content-container a:hover {
  text-decoration: underline;
}

#news_container {
  overflow: hidden;
  border-radius: 20px;
  background: #faf7f7;
}

#news_container .section-title {
  position: relative;
  background: #00568d;
}

#news_container .items-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 1024px) {
  #news_container .items-list {
    flex-direction: row;
  }
}

#news_container .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
  background: white;
  box-shadow: inset 0 0 0 3px #1e2948;
}

@media screen and (min-width: 1024px) {
  #news_container .item {
    width: 46%;
    margin-left: 2%;
    margin-right: 2%;
  }
}

#news_container .item .item-name {
  width: 90%;
  padding: 5px 5%;
  border-radius: 0 0 20px 20px;
  background: #1e2948;
}

#news_container .item .item-name a {
  font-size: 1.125em;
  color: white;
}

#news_container .item .item-text {
  width: 90%;
  padding: 0 5%;
  margin-bottom: 20px;
  color: black;
}

#news_container .news-item-image-holder {
  width: 100%;
  margin-bottom: 15px;
  flex: none;
  text-align: center;
}

#news_container .news-item-image {
  display: block;
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 1024px) {
  #news_container .news-item-image-holder {
    margin-bottom: 0;
  }
}

#news_container .read-more-link-group {
  background: #00568d;
}

#events_container {
  overflow: hidden;
  border-radius: 20px;
  background: #00568d;
}

#events_container .items-list {
  width: 100%;
}

#events_container .items-list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  background: #1e2948;
}

#events_container .section-title {
  background: #1e2948;
}

#events_container .event-date {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  -webkit-box-flex: none;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 120px;
  height: 140px;
  margin: 0 10px 0 0;
  line-height: 1.5em;
  text-transform: uppercase;
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 3.125em;
  font-weight: 400;
  color: white;
}

#events_container .event-date .event-day {
  margin: 0 10px 0 0;
  font-weight: 700;
}

#events_container .event-summary {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 1024px) {
  #events_container .event-summary {
    max-width: 200px;
  }
}

#events_container .event-summary .item-name {
  text-transform: uppercase;
}

#events_container .event-summary em {
  font-style: normal;
  color: #ffc10f;
}

#events_container .event-image-link {
  display: none;
  max-width: 100%;
}

#events_container .event-image {
  width: 100%;
}

#events_container .read-more-link-group {
  background: #1e2948;
}

#index_links {
  background: #1e2948;
}

#links_container {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  padding: 30px 0;
}

#links_container .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0 0;
  padding: 0;
}

#links_container .slick-list:focus {
  outline: none;
}

#links_container .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

#links_container .slick-slider .slick-track,
#links_container .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#links_container .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

#links_container .slick-track:before, #links_container .slick-track:after {
  content: "";
  display: table;
}

#links_container .slick-track:after {
  clear: both;
}

.slick-loading #links_container .slick-track {
  visibility: hidden;
}

#links_container .slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] #links_container .slick-slide {
  float: right;
}

#links_container .slick-slide img {
  display: block;
}

#links_container .slick-slide.slick-loading img {
  display: none;
}

#links_container .slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized #links_container .slick-slide {
  display: block;
}

.slick-loading #links_container .slick-slide {
  visibility: hidden;
}

.slick-vertical #links_container .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

#links_container .slick-arrow {
  display: block;
  overflow: hidden;
  height: 45px;
  width: 30px;
  white-space: nowrap;
  text-indent: 200%;
  color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 99;
  top: calc(50% - 45px/2);
  border: none;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
}

#links_container .slick-arrow:hover {
  cursor: pointer;
}

#links_container .slick-arrow.slick-prev {
  left: 0;
  background-image: url(../common_pics/button_prev.png);
}

#links_container .slick-arrow.slick-next {
  right: 0;
  background-image: url(../common_pics/button_next.png);
}

#links_container .slick-arrow.slick-hidden {
  display: none;
}

#links_container .links-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1024px;
  position: relative;
  background: #00568d;
  border-radius: 40px;
}

#links_container .links-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 120px;
  margin: 0;
  text-align: center;
  font-size: 1em;
  color: white;
}

@media screen and (min-width: 768px) {
  #links_container .links-list li {
    box-shadow: inset 0 0 0 2px #1e2948;
  }
}

#links_container .link-item a {
  width: 80%;
  padding: 0 10%;
  font-size: 1.875em;
  font-weight: 600;
}

#videos_container {
  width: 100%;
}

#videos_container video {
  display: block;
  width: 100%;
}

.spotlight-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.spotlight-container .section-title {
  position: relative;
}

.spotlight-container .spotlight-image-holder {
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 80px 80px;
}

.spotlight-container .spotlight-image {
  width: 100%;
}

.spotlight-container .spotlightmessage-text {
  display: block;
  width: 100%;
  margin: 0 0 60px;
  line-height: 2em;
  max-height: 10em;
  overflow: hidden;
}

.spotlight-container .read-more-link {
  color: black;
  border-radius: 0 20px 20px 0;
  background: #009de4;
}

.spotlight-container .spotlight-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 50px;
  margin: 0 0 24px;
  line-height: 1em;
  font-style: normal;
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.125em;
  font-weight: 400;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.spotlight-container .spotlight-link svg {
  fill: white;
  height: 26px;
  width: 26px;
  margin: 0 20px;
  flex-shrink: 0;
}

#principal_container {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

#principal_container .read-more-link {
  margin-right: -4%;
  border-radius: 20px 0 0 20px;
}

#tabpanel1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 40px 0;
  border-radius: 20px;
}

#tabpanel1 .tablist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 30%;
}

#tabpanel1 .tab-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 15px;
  border-radius: 12px 0 0 12px;
  box-shadow: rgba(0, 0, 0, 0.4) 0 3px 7px;
}

#tabpanel1 .tab-label .svg-icon {
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background-color: none;
}

#tabpanel1 .tab-label .svg-icon svg {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0;
  fill: white;
}

#tabpanel1 .tab-label.facebook {
  background-color: #3b5998;
}

#tabpanel1 .tab-label.twitter {
  background-color: #1da1f2;
}

#tabpanel1 .tab-label.facebook:hover, #tabpanel1 .tab-label.facebook:focus {
  cursor: pointer;
}

#tabpanel1 .tab-label.facebook:hover:before, #tabpanel1 .tab-label.facebook:focus:before {
  border-top-color: #3b5998;
}

#tabpanel1 .tab-label.twitter:hover, #tabpanel1 .tab-label.twitter:focus {
  cursor: pointer;
}

#tabpanel1 .tab-label.twitter:hover:before, #tabpanel1 .tab-label.twitter:focus:before {
  border-top-color: #1da1f2;
}

#tabpanel1 .tab-label svg {
  pointer-events: none;
}

#tabpanel1 .panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.4) 0 3px 7px;
  background: #faf7f7;
}

#tabpanel1 .panel .section-title {
  display: none;
  margin: 0 0 50px;
  text-align: center;
}

#tabpanel1 .panel .section-title a {
  text-decoration: none;
  font-size: 2.75rem;
  font-weight: 700;
  font-family: "Fira Sans Condensed", sans-serif;
  color: white;
}

#tabpanel1 .panel .section-title a:hover {
  text-decoration: underline;
}

#tabpanel1 .panel.hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#quicklinks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  z-index: 99;
  width: 100%;
  background: white;
}

@media screen and (min-width: 1024px) {
  #quicklinks {
    position: absolute;
    bottom: -84px;
    left: 0;
    background: none;
  }
}

#quicklinks a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 140px;
  width: 200px;
  padding: 0 30px;
  margin: 4px;
  line-height: 1.2em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.375em;
  font-weight: 700;
  color: #00568d;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

#quicklinks a:nth-of-type(1) {
  background-image: url("../common_pics/qlink1.html");
}

#quicklinks a:nth-of-type(2) {
  background-image: url("../common_pics/qlink2.html");
}

#quicklinks a:nth-of-type(3) {
  background-image: url("../common_pics/qlink3.html");
}

#quicklinks a:nth-of-type(4) {
  background-image: url("../common_pics/qlink4.html");
}

#quicklinks a .qlink-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  transition: all 0.5s ease-in-out;
}

#quicklinks a:before {
  content: "";
  display: block;
  z-index: 1;
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid #00568d;
}

#quicklinks a:after {
  content: "";
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: all 0.5s ease-in-out;
  background: rgba(0, 86, 141, 0.74);
}

#quicklinks a:hover, #quicklinks a:focus {
  color: white;
}

#quicklinks a:hover:after, #quicklinks a:focus:after {
  height: 100%;
}

#footer_main {
  position: relative;
  background-image: url("../common_pics/footer_bg.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #1e2948;
}

#footer_main:before {
  content: "";
  position: absolute;
  top: 162px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #929090;
}

#footer_main #footer_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1024px;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

#footer_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  width: 96%;
  padding: 20px 2%;
}

@media screen and (min-width: 768px) {
  #footer_row {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    padding: 20px 0;
  }
}

@media screen and (min-width: 1024px) {
  #footer_row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

#footer_address_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  position: relative;
  width: auto;
  padding: 0 0 0 130px;
  height: 124px;
  margin-bottom: 30px;
  line-height: 1em;
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: left;
  text-decoration: none;
  color: white;
  background-image: url("../common_pics/header_logo.html");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 110px auto;
}

@media screen and (min-width: 768px) {
  #footer_address_title {
    padding: 0 0 0 146px;
    font-size: 30px;
    background-size: auto;
  }
}

#footer_address_title span {
  display: inline-block;
  width: 100%;
}

#footer_address_title .top-line {
  letter-spacing: 0;
  font-weight: 700;
}

.footer-address {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  font-style: normal;
  font-size: 1.125em;
  color: white;
}

.footer-address a {
  color: inherit;
}

.footer-address svg {
  display: block;
  margin-bottom: 10px;
  width: 18px;
  height: 18px;
  fill: white;
  border-radius: 50%;
  border: 2px solid white;
  overflow: visible;
  box-shadow: 0 0 10px black;
  padding: 6px;
  vertical-align: middle;
  background: #00568d;
}

.footer-address .footer-info-block {
  display: block;
}

@media screen and (max-width: 767px) {
  .footer-address {
    width: 100%;
    margin-bottom: 20px;
  }
}

#header_main #edlio_login {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none;
  color: white;
  margin: 0 10px;
}

#header_main #edlio_login .edlio-logo {
  display: block;
  width: 24px;
  height: 16px;
  overflow: hidden;
  background-color: transparent;
  padding-right: 4px;
  margin-right: 4px;
  border-right: 2px solid white;
}

#header_main #edlio_login .edlio-logo svg {
  display: block;
  width: 24px;
  height: 16px;
  margin: 0;
  fill: white;
}

#header_main #edlio_login:hover {
  color: #1e2948;
}

#header_main #edlio_login:hover .edlio-logo {
  border-color: #1e2948;
}

#header_main #edlio_login:hover svg {
  fill: #1e2948;
}

#footer_main #edlio_login {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none;
  color: white;
  margin: 0 10px;
}

#footer_main #edlio_login .edlio-logo {
  display: block;
  width: 24px;
  height: 16px;
  overflow: hidden;
  background-color: transparent;
  padding-right: 4px;
  margin-right: 4px;
  border-right: 2px solid white;
}

#footer_main #edlio_login .edlio-logo svg {
  display: block;
  width: 24px;
  height: 16px;
  margin: 0;
  fill: white;
}

#footer_main #edlio_login:hover {
  color: #00568d;
}

#footer_main #edlio_login:hover .edlio-logo {
  border-color: #00568d;
}

#footer_main #edlio_login:hover svg {
  fill: #00568d;
}

#edlio_logo {
  display: block;
  width: 140px;
  height: 20px;
  overflow: hidden;
  background-color: transparent;
  width: 100%;
  margin: 20px 0;
  color: transparent;
}

#edlio_logo svg {
  display: block;
  width: 140px;
  height: 20px;
  margin: 0;
  fill: rgba(255, 255, 255, 0.9);
}

#edlio_logo svg {
  display: block;
  margin: 0 auto;
}

#mobile_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  position: fixed;
  z-index: 999;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: #00568d;
}

#mobile_nav a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: .75em;
  text-decoration: none;
  color: white;
}

#mobile_nav a svg {
  width: 28px;
  height: 28px;
  margin-bottom: 5px;
  fill: white;
}

#mobile_nav a:hover {
  color: #1e2948;
}

#mobile_nav a:hover svg {
  fill: #1e2948;
}

@media screen and (min-width: 768px) {
  #mobile_nav {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  #footer_main {
    padding-bottom: 64px;
  }
}
