@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Fjalla+One:400,700");
@import url("../apps/js/polls/polls-pack.html");
body, body .dark, body .light, body table, body .neutral, body .pale {
  font-family: Arial, sans-serif;
  font-size: 100%;
}

html {
  height: 100%;
  background: url("../common_pics/html_bg.jpg") top center repeat;
}
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;
}

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

#header_main {
  position: relative;
  z-index: 99;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  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;
  max-width: none;
  background: url("../common_pics/header_background.jpg") center center/cover no-repeat;
  color: black;
  border-bottom: 10px solid black;
  border-bottom: 6px solid black;
}
@media screen and (min-width: 1024px) {
  #header_main {
    padding-top: 0px;
    display: grid;
    grid-template-areas: "name motto" "sitenav sitenav";
    justify-content: space-evenly;
    height: 170px;
  }
  #header_main #header_title {
    grid-area: name;
  }
  #header_main #motto {
    grid-area: motto;
  }
  #header_main #topnav_holder {
    grid-area: sitenav;
  }
}

#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: #fff;
}

#header_title {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 50px;
  padding-bottom: 0;
  margin: 0;
}
#header_title .logo-image {
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  #header_title {
    padding-left: 20px;
    padding-right: 0;
    padding-top: 33px;
  }
}

#motto {
  padding-top: 0.8em;
  font-weight: 700;
  font-style: italic;
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #motto {
    max-width: 650px;
    font-size: 1.5rem;
  }
}

#search {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 17px;
  width: 132px;
  display: block;
  margin: 0 10px;
  background: white;
  border-radius: 2px;
}
#search input#q {
  margin: 0;
  height: 17px;
  line-height: 17px;
  border: none;
  vertical-align: top;
  background: transparent;
  -webkit-appearance: none;
  box-sizing: content-box;
}
#search .edlio-search-button {
  margin: 0 0 0 -4px;
  vertical-align: top;
}
#search input#q {
  color: black;
}
#search input#q::-webkit-input-placeholder {
  color: black;
}
@media screen and (max-width: 767px) {
  #search {
    margin: 20px 0;
  }
}
#search input#q {
  padding: 0 10px;
  width: 87px;
  font-size: 0.75em;
}

#school_selector {
  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: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  height: 50px;
}
#school_selector a svg {
  width: 100px;
  height: 40px;
  fill: white;
}
#school_selector ul {
  margin: 0;
  padding: 0;
}
#school_selector ul li {
  list-style: none;
}
#school_selector ul li:hover ul {
  display: block;
}
#school_selector ul li:hover ul ul {
  display: none;
}
#school_selector ul li a {
  color: transparent;
  text-decoration: none;
  margin-left: 0;
  padding: 5px;
  display: block;
  width: 110px;
}
#school_selector ul li ul {
  background: white;
  display: none;
  margin: 0;
  padding: 0;
}
#school_selector ul li ul li {
  position: relative;
  list-style: none;
}
#school_selector ul li ul li a {
  padding: 5px;
  color: black;
  text-decoration: none;
}
#school_selector ul li ul li a:hover {
  background: black;
  color: #ec8d3e;
}
#school_selector ul li:hover ul {
  display: block;
}

#topnav_holder {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  max-width: none;
}
#topnav_holder #topnav_mobile {
  position: absolute;
  display: block;
  height: 4px;
  width: 28px;
  font-size: 0;
  border-top: 14px double black;
  border-bottom: 5px solid black;
}
#topnav_holder #topnav {
  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;
  position: absolute;
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.8s;
}
#topnav_holder #topnav.open {
  max-height: 2000px;
}
#topnav_holder a {
  text-decoration: none;
}
#topnav_holder .level a {
  padding: 0.5em;
  font-size: 1em;
}
#topnav_holder .level:hover > .level {
  display: block;
}
#topnav_holder .first 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;
  width: 100%;
}
#topnav_holder .first .level a {
  padding-left: 1.5em;
}
#topnav_holder .first .flyout a {
  padding-left: 2.25em;
}
#topnav_holder .second {
  display: none;
}
@media screen and (min-width: 1024px) {
  #topnav_holder {
    position: relative;
  }
  #topnav_holder #topnav_mobile {
    display: none;
  }
  #topnav_holder #topnav {
    -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;
    position: static;
    max-height: none;
    overflow: visible;
  }
  #topnav_holder #topnav section:last-child:hover .dropdown {
    left: auto;
    right: 0;
  }
  #topnav_holder #topnav section:last-child:hover .dropdown .flyout {
    right: 100%;
    left: auto;
  }
  #topnav_holder .first > header,
#topnav_holder .first a {
    width: auto;
  }
  #topnav_holder .first:hover > .dropdown {
    display: block;
    position: absolute;
    left: 0;
  }
}
@media screen and (min-width: 1024px) {
  #topnav_holder .first {
    position: relative;
  }
  #topnav_holder .first .level {
    width: 11.5em;
  }
  #topnav_holder .first .level a {
    padding-left: 0.5em;
  }
  #topnav_holder .third {
    position: relative;
  }
  #topnav_holder .third:hover .flyout {
    display: block;
  }
  #topnav_holder .flyout {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
  }
}

#topnav_mobile {
  top: 8px;
  right: 8px;
}

#topnav {
  background: #ec8d3e;
}
#topnav .first > header a {
  height: 40px;
  padding: 0 10px;
  font-size: 1em;
  font-weight: 400;
  color: white;
}
#topnav .first .level {
  background: #ec8d3e;
}
@media screen and (min-width: 1024px) {
  #topnav .first .level {
    background: white;
    box-shadow: rgba(0, 0, 0, 0.25) 0 0 5px;
  }
}
#topnav .first .level a {
  color: black;
}
#topnav .first:hover > header a {
  color: white;
  background: black;
}
@media screen and (min-width: 1024px) {
  #topnav .first:hover > header a {
    background: none;
  }
}
#topnav .first:hover .third:hover header a,
#topnav .first:hover .level a:hover {
  color: white;
  background: black;
}
@media screen and (min-width: 1024px) {
  #topnav .first:hover .third:hover header a,
#topnav .first:hover .level a:hover {
    background: black;
    color: #ec8d3e;
  }
}
@media screen and (min-width: 1024px) {
  #topnav {
    background: transparent;
    justify-content: flex-end !important;
    margin-top: -20px;
  }
  #topnav .first > header a {
    height: 40px;
    padding: 0 15px;
    font-size: 17px;
    color: black;
  }
  #topnav .first:not(:last-child) > header:before {
    content: "";
    position: absolute;
    right: 0px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: black;
  }
  #topnav .first:hover > header a {
    color: black;
    text-decoration: underline;
  }
}

#content_main {
  position: relative;
  z-index: 9;
  margin: 0 auto;
  overflow: visible;
  width: 90%;
  padding: 25px 5%;
  min-height: 400px;
  margin: 0 auto;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 15px;
}
#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: 0.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: 0.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;
  }
}
#content_main .pages-content-wrapper {
  overflow: visible;
}
#content_main img.sub {
  border: none;
}
@media screen and (min-width: 1000px) {
  #content_main {
    width: 100%;
    max-width: 950px;
    padding: 25px;
  }
}
.index #content_main {
  width: 100%;
  max-width: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.pageTitle {
  margin: 0 0 15px;
  padding: 0;
  font-family: "Fjalla One", serif;
  font-size: 1.75em;
  font-weight: 400;
  color: black;
}

.right-column-page-navigation {
  margin-bottom: 1.25em;
  position: relative;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
  background: black;
}
@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: 0.8em 6% 0.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:before {
  content: "";
  z-index: 99;
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 13px;
  background: url("../common_pics/pagenav_bg.png") top center no-repeat;
}
.right-column-page-navigation li a {
  position: relative;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.6);
  font-family: "Fjalla One", serif;
  font-size: 1.0625em;
  font-weight: 400;
  color: white;
}
.right-column-page-navigation li a:before {
  content: "";
  z-index: 9;
  position: absolute;
  top: 0;
  left: 10px;
  width: 30px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25) 25%, rgba(255, 255, 255, 0.25) 75%, rgba(255, 255, 255, 0));
}
.right-column-page-navigation li.active a {
  background: #ec8d3e;
  color: white;
}

#index_wrapper {
  width: 100%;
  z-index: 99;
  position: relative;
  background: url("../common_pics/html_bg.jpg") top center repeat;
}

#index_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;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  background: url("../common_pics/html_bg.jpg") top center repeat;
}
@media screen and (min-width: 768px) {
  #index_main {
    -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;
  }
}

#shuffle_main {
  position: relative;
  z-index: 99;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  #left_column {
    width: 65%;
  }
}
@media screen and (min-width: 1024px) {
  #left_column {
    width: 65%;
  }
}

@media screen and (min-width: 768px) {
  #right_column {
    width: 30%;
  }
}
@media screen and (min-width: 1024px) {
  #right_column {
    width: 30%;
  }
}

.content-container {
  margin: 0 0 1em;
  padding: 20px 30px;
  margin: 0 0 1.75em;
  background: white;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
}
.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%;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1em;
  font-family: "Fjalla One", serif;
  font-size: 1.5625em;
  font-weight: 400;
  color: #ec8d3e;
}
.content-container .item {
  margin: 0 0 1em;
  font-size: 0.875em;
}
.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;
}
.content-container .read-more-link {
  position: relative;
  font-size: 0.9375em;
  font-weight: 400;
  color: #ec8d3e;
}
.content-container .read-more-link:after {
  content: " »";
}
.content-container [class*=-name] {
  margin: 0;
  font-size: 1em;
}
.content-container [class*=-name] a {
  font-size: 1.25em;
  font-weight: 400;
  color: #ec8d3e;
}
.content-container a {
  text-decoration: none;
  color: #ec8d3e;
}
.content-container a:hover {
  text-decoration: underline;
}

#news_container .news-item-image-holder {
  float: left;
  margin-right: 15px;
}
#news_container .news-item-image {
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  #news_container .news-item-image {
    max-width: 150px;
  }
}
@media screen and (min-width: 1024px) {
  #news_container .news-item-image {
    max-width: 200px;
  }
}

#links_container .links-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#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;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin: 25px auto;
}
#quicklinks a {
  display: block;
  position: relative;
  height: 48px;
  width: 178px;
  margin: 6px;
  padding: 100px 0 0;
  line-height: 1.2em;
  text-align: center;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.6);
  text-decoration: none;
  font-family: "Fjalla One", serif;
  font-size: 1.4375em;
  font-weight: 400;
  color: white;
  border: 6px solid white;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.36);
  background-position: top center;
  background-repeat: no-repeat;
}
#quicklinks a:nth-of-type(1) {
  background-image: url("../common_pics/qlink1.jpg");
}
#quicklinks a:nth-of-type(2) {
  background-image: url("../common_pics/qlink2.jpg");
}
#quicklinks a:nth-of-type(3) {
  background-image: url("../common_pics/qlink3.jpg");
}
#quicklinks a:nth-of-type(4) {
  background-image: url("../common_pics/qlink4.jpg");
}
@media screen and (min-width: 768px) {
  #quicklinks a {
    width: 158px;
  }
}
@media screen and (min-width: 1024px) {
  #quicklinks a {
    width: 178px;
  }
}
#quicklinks a span {
  position: relative;
  display: inline-block;
  z-index: 99;
  width: 100%;
}
#quicklinks a:before {
  content: "";
  z-index: 9;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(178, 61, 22, 0.7);
}
#quicklinks a:after {
  content: "";
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.7));
}
#quicklinks a:hover:before {
  background: rgba(252, 136, 42, 0.7);
}

#footer_main {
  width: 100%;
  height: auto;
  background: black;
  position: relative;
  z-index: 9;
}
#footer_main #footer_inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
}
#footer_main #footer_inner {
  background: none;
}
#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;
  padding: 20px 0 60px;
}
@media screen and (min-width: 768px) {
  #footer_main #footer_inner {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 60px 0;
  }
}
@media screen and (min-width: 1024px) {
  #footer_main #footer_inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

#footer_address_logo {
  display: block;
  overflow: hidden;
  height: 73px;
  width: 73px;
  white-space: nowrap;
  text-indent: 200%;
  color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../pics/footer_logo.html");
}

#footer_address {
  font-style: normal;
  min-height: 109px;
  padding: 0 0 0 125px;
  line-height: 2em;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 1em;
  background: url("../common_pics/footer_logo.png") top left no-repeat;
}
#footer_address a {
  color: inherit;
  font-size: inherit;
}
@media screen and (max-width: 767px) {
  #footer_address {
    width: 100%;
    text-align: center;
    padding: 120px 0 0;
    background-position: center top;
  }
}
#footer_address #footer_address_title {
  display: block;
  margin: 0 0 10px;
  text-shadow: 5px 5px rgba(0, 0, 0, 0.75);
  text-transform: uppercase;
  font-family: "Fjalla One", serif;
  font-size: 1.875em;
  font-weight: 400;
  color: #ec8d3e;
}
@media screen and (min-width: 768px) {
  #footer_address {
    width: 40%;
  }
}
@media screen and (min-width: 1024px) {
  #footer_address {
    width: 55%;
  }
}
#footer_address svg {
  width: 20px;
  height: 20px;
  margin: 0 4px -4px 0;
  fill: white;
}
@media screen and (max-width: 767px) {
  #footer_address #footer_address_location, #footer_address #footer_address_phone {
    display: block;
  }
}

#footer_section {
  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: 214px;
}
@media screen and (min-width: 768px) {
  #footer_section {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
}

#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;
}
@media screen and (min-width: 768px) {
  #google_tools {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

#footer_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;
  height: 50px;
  margin: 20px 0;
}

#social_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#social_nav a {
  display: block;
  width: 32px;
  height: 32px;
  overflow: hidden;
  background-color: none;
  margin: 0 7px;
}
#social_nav a svg {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0;
  fill: #ec8d3e;
}
#social_nav a:hover svg {
  fill: white;
}
#social_nav #infinite_campus {
  width: 100px;
  height: 40px;
}
#social_nav #infinite_campus svg {
  width: 100px;
  height: 40px;
  fill: white;
}

#edlio_login {
  text-decoration: none;
  color: white;
}
#edlio_login svg {
  width: 24px;
  height: 16px;
  fill: white;
}
#edlio_login:hover {
  color: black;
}
#edlio_login:hover svg {
  fill: black;
}

#edlio_logo {
  display: block;
  width: 140px;
  height: 20px;
  overflow: hidden;
  background-color: transparent;
}
#edlio_logo svg {
  display: block;
  width: 140px;
  height: 20px;
  margin: 0;
  fill: rgba(255, 255, 255, 0.4);
}

#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: black;
}
#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: 0.75em;
  text-decoration: none;
  color: white;
}
#mobile_nav a svg {
  width: 28px;
  height: 28px;
  margin-bottom: 5px;
  fill: white;
}
#mobile_nav a:hover {
  color: #ec8d3e;
}
#mobile_nav a:hover svg {
  fill: #ec8d3e;
}
@media screen and (min-width: 768px) {
  #mobile_nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #footer_main {
    padding-bottom: 64px;
  }
}
