/*! * lazyYT (lazy load YouTube videos) * v1.3.0 - 2016-03-06 * (CC) This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. * http://creativecommons.org/licenses/by-sa/4.0/ * Contributors: https://github.com/tylerpearson/lazyYT/graphs/contributors || https://github.com/daugilas/lazyYT/graphs/contributors */
.lazyYT-container {
  position: relative;
  display: block;
  height: 0;
  padding: 0 0 56.25% 0;
  overflow: hidden;
  background-color: #000000;
}

.lazyYT-container iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* * Video Title (YouTube style) */
.ytp-gradient-top {
  top: 0;
  z-index: 21;
  width: 100%;
  height: 98px;
  position: absolute;
  pointer-events: none;
  background-repeat: repeat-x;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABiCAQAAAA7fHH2AAAAQUlEQVQYV22KQQoAIAzDyv7/Et/oVlGZVCfkkIYamsENXESyi8vc0u/PKZ6o8+7fZ0h8ShRYnD+BFKToRJkHFpkM2hZSxuyWpEYAAAAASUVORK5CYII=);
  -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  -moz-transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
}

.ytp-chrome-top {
  position: absolute;
  left: 12px;
  right: 10px;
  top: 0;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  color: #eee;
  text-align: left;
  direction: ltr;
  font-size: 11px;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  z-index: 60;
  -moz-transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
}

.ytp-title {
  font-size: 150%;
  overflow: hidden;
  padding-right: 20px;
  white-space: nowrap;
}

.ytp-title-text {
  padding-top: 15px;
  display: inline-block;
  line-height: 1.1;
  vertical-align: top;
  max-width: 100%;
  margin-left: 4px;
}

.ytp-title-link {
  max-width: 100%;
  overflow: hidden;
  color: #eee;
  text-decoration: none;
  white-space: nowrap;
  word-wrap: normal;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  float: left;
}

/* * Thumbnail */
.ytp-thumbnail {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 12;
  cursor: pointer;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -moz-transition: opacity 0.5s cubic-bezier(0, 0, 0.2, 1);
  -webkit-transition: opacity 0.5s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.5s cubic-bezier(0, 0, 0.2, 1);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.lazyYT-image-loaded .ytp-spinner {
  display: none;
}

.ytp-thumbnail button.ytp-button {
  visibility: hidden;
}

.ytp-thumbnail.lazyYT-image-loaded button.ytp-button {
  visibility: visible;
}

/* * Spinner pre-loader */
.ytp-spinner {
  position: absolute;
  left: 45%;
  top: 45%;
  width: 10%;
  height: 10%;
  z-index: 16;
}

.ytp-spinner-message {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 300px;
  font-size: 127%;
  line-height: 182%;
  margin-left: -150px;
  display: none;
  text-align: center;
  background-color: black;
  opacity: 0.5;
}

@keyframes ytp-spinner-dot-fade {
  0% {
    opacity: 0.5;
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  50% {
    opacity: 0.15;
    -moz-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  to {
    opacity: 0.15;
    -moz-transform: scale(0.85, 0.85);
    -ms-transform: scale(0.85, 0.85);
    -webkit-transform: scale(0.85, 0.85);
    transform: scale(0.85, 0.85);
  }
}
@-moz-keyframes ytp-spinner-dot-fade {
  0% {
    opacity: 0.5;
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  50% {
    opacity: 0.15;
    -moz-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  to {
    opacity: 0.15;
    -moz-transform: scale(0.85, 0.85);
    -ms-transform: scale(0.85, 0.85);
    -webkit-transform: scale(0.85, 0.85);
    transform: scale(0.85, 0.85);
  }
}
@-webkit-keyframes ytp-spinner-dot-fade {
  0% {
    opacity: 0.5;
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  50% {
    opacity: 0.15;
    -moz-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  to {
    opacity: 0.15;
    -moz-transform: scale(0.85, 0.85);
    -ms-transform: scale(0.85, 0.85);
    -webkit-transform: scale(0.85, 0.85);
    transform: scale(0.85, 0.85);
  }
}
.ytp-spinner-dot {
  -moz-animation: ytp-spinner-dot-fade 0.8s ease infinite;
  -webkit-animation: ytp-spinner-dot-fade 0.8s ease infinite;
  animation: ytp-spinner-dot-fade 0.8s ease infinite;
  opacity: 0;
  fill: #ccc;
  -moz-transform-origin: 4px 4px;
  -ms-transform-origin: 4px 4px;
  -webkit-transform-origin: 4px 4px;
  transform-origin: 4px 4px;
}

.ytp-spinner-dot-1 {
  -moz-animation-delay: 0.1s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.ytp-spinner-dot-2 {
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.ytp-spinner-dot-3 {
  -moz-animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.ytp-spinner-dot-4 {
  -moz-animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.ytp-spinner-dot-5 {
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.ytp-spinner-dot-6 {
  -moz-animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.ytp-spinner-dot-7 {
  -moz-animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

/* * Play button (YouTube style) */
.ytp-button:focus, .ytp-button {
  border: none;
  outline: 0;
  color: inherit;
  text-align: inherit;
  font-size: 100%;
  font-family: inherit;
  cursor: default;
  line-height: inherit;
  /* margin: 0;
   */
  padding: 0;
  background: transparent;
}

.ytp-large-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 48px;
  margin-left: -34px;
  margin-top: -24px;
  -moz-transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
}

.ytp-button:not([aria-disabled=true]):not([disabled]):not([aria-hidden=true]) {
  cursor: pointer;
}

.ytp-large-play-button-bg {
  -moz-transition: fill 0.1s cubic-bezier(0.4, 0, 1, 1), opacity 0.1s cubic-bezier(0.4, 0, 1, 1);
  -webkit-transition: fill 0.1s cubic-bezier(0.4, 0, 1, 1), opacity 0.1s cubic-bezier(0.4, 0, 1, 1);
  transition: fill 0.1s cubic-bezier(0.4, 0, 1, 1), opacity 0.1s cubic-bezier(0.4, 0, 1, 1);
  fill: #1f1f1f;
  opacity: 0.9;
}

.ytp-thumbnail:hover .ytp-large-play-button-bg {
  -moz-transition: fill 0.1s cubic-bezier(0, 0, 0.2, 1), opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
  -webkit-transition: fill 0.1s cubic-bezier(0, 0, 0.2, 1), opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
  transition: fill 0.1s cubic-bezier(0, 0, 0.2, 1), opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
  fill: #cc181e;
  opacity: 1;
}

/* * Video time (YouTube style) */
.video-time {
  position: absolute;
  right: 2px;
  bottom: 2px;
  height: 14px;
  padding: 0 4px;
  font-family: Arial, Helvetica, Sans-serif;
  font-size: 11px;
  font-weight: bold;
  line-height: 14px;
  color: #fff !important;
  background-color: #000;
  opacity: 0.75;
  filter: alpha(opacity=75);
  zoom: 1;
}

/* vietnamese */
@font-face {
  font-family: "Crimson";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uBsoa5M_tv7IihmnkabARekYxwDeChrlWhBw.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Crimson";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uBsoa5M_tv7IihmnkabARekY1wDeChrlWhBw.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Crimson";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uBsoa5M_tv7IihmnkabARekYNwDeChrlU.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: "Crimson";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uBsoa5M_tv7IihmnkabARekYxwDeChrlWhBw.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Crimson";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uBsoa5M_tv7IihmnkabARekY1wDeChrlWhBw.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Crimson";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uBsoa5M_tv7IihmnkabARekYNwDeChrlU.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: "Crimson";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uBsoa5M_tv7IihmnkabARekYxwDeChrlWhBw.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Crimson";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uBsoa5M_tv7IihmnkabARekY1wDeChrlWhBw.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Crimson";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uBsoa5M_tv7IihmnkabARekYNwDeChrlU.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: "Crimson";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uDsoa5M_tv7IihmnkabARUoYF6CsKjnlQ.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Crimson";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uDsoa5M_tv7IihmnkabARVoYF6CsKjnlQ.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Crimson";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uDsoa5M_tv7IihmnkabARboYF6CsKj.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: "Crimson";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uDsoa5M_tv7IihmnkabARUoYF6CsKjnlQ.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Crimson";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uDsoa5M_tv7IihmnkabARVoYF6CsKjnlQ.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Crimson";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uDsoa5M_tv7IihmnkabARboYF6CsKj.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: "Crimson";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uDsoa5M_tv7IihmnkabARUoYF6CsKjnlQ.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Crimson";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uDsoa5M_tv7IihmnkabARVoYF6CsKjnlQ.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Crimson";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v21/q5uDsoa5M_tv7IihmnkabARboYF6CsKj.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdh18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdo18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdg18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdv18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdj18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdi18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSds18S0xR41.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJB9cme_xc.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJB9cme_xc.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJB9cme_xc.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJB9cme_xc.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJB9cme_xc.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJB9cme_xc.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDJB9cme.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdh18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdo18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdg18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdv18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdj18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18S0xR41.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklydh18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklydo18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklydg18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklydv18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklydj18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklydi18S0xR41YDw.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Milo";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklyds18S0xR41.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wmhdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wkxdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wmxdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wlBdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wmBdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wmRdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wlxdu3cOWxw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lujVj9_mf.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lujVj9_mf.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lujVj9_mf.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lujVj9_mf.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lujVj9_mf.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lujVj9_mf.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7lujVj9w.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu3cOWxw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwmhdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwkxdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwmxdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwlBdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwmBdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwmRdu3cOWxy40.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Milo";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwlxdu3cOWxw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/*
 * University of Houston
 * Style sheet for UH headers and footers
 * Created Summer 2016 by UH Web Marketing Team
 * Contact Rainer Schuhsler for assistance with this file.
 *
 * Table of Contents:
 * ------------------
 * Import Web Fonts
 * Import normalize.css
 * Base Styles
 * Grid Container
 * Accessibility
 * General Header Styles
 * Global Navigation Container
 * Tactical Links
 * Search
 * Site Name
 * Site Navigation Container
 * Menu Button
 * Primary Navigation
 * Responsive Menu Styles
 * General Footer Styles
 * Site Footer
 * Global Footer
 * Browser Upgrade
 *
 */
/* ==========================================================================
   Import Web Fonts
   ========================================================================== */
/*@import url('https://www.uh.edu/css/fonts.css');*/
/* ==========================================================================
   Import normalize.css
   ========================================================================== */
/*@import url('https://www.uh.edu/css/refresh/normalize.css');*/
/* ==========================================================================
   Base Styles
   ========================================================================== */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

@-moz-viewport {
  width: device-width;
}
@-ms-viewport {
  width: device-width;
}
@-webkit-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
head br {
  display: none;
}

html, body {
  background: white;
  overflow-x: hidden;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  color: #111;
  font: 1rem "Source Sans Pro", sans-serif; /* 16px */
  line-height: 1.3125em;
  line-height: calc(1.5em - 3px);
  min-height: 100vh;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

body > main {
  overflow: hidden;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

@media screen and (min-width: 1921px) {
  html {
    background: #333;
  }
  body {
    background: white;
    margin: 0 auto;
    max-width: 1920px;
  }
}
[tabindex="-1"]:focus {
  outline: none !important;
}

abbr {
  text-decoration: inherit;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

[role=button] {
  cursor: pointer;
}

a,
area,
button,
[role=button],
input,
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

nav ul,
nav ol,
nav li {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

/* ==========================================================================
   Grid Container
   ========================================================================== */
.container {
  margin-right: auto;
  margin-left: auto;
  max-width: 1600px;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .container {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
/* ==========================================================================
   Accessibility
   ========================================================================== */
.skipToContent {
  background: #c8102e;
  color: #FFF9D9;
  font-size: 0.875rem; /* 14px */
  padding: 0.5em 1em;
  position: absolute;
  margin-left: -1000px;
}

.skipToContent:focus {
  margin-left: 0;
}

/* ==========================================================================
   General Header Styles
   ========================================================================== */
.uh-header {
  background-color: #c8102e;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.uh-header-secondary-red {
  background-color: #54585A;
}

.uh-header a,
.uh-header a:visited {
  color: #FFF9D9;
  text-decoration: none;
}

.uh-header a:hover,
.uh-header a:focus,
.uh-header a:visited:hover {
  color: white;
  text-decoration: none;
}

/* ==========================================================================
   Search
   ========================================================================== */
.uh-header .global-search {
  background: #eee;
  display: block;
  font-size: 1rem; /* 16px */
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  position: relative;
  transition: margin 0.25s ease;
}

.uh-header-primary .global-search {
  margin-top: 3rem;
}

.uh-header .global-search.collapse.in {
  margin-top: 0;
}

.uh-header .global-search .container {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  /* position: relative; */
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.uh-header .global-search input,
.uh-header .global-search button {
  color: #222;
}

.uh-header .global-search ::-webkit-input-placeholder {
  color: #222;
  opacity: 0.54;
}

.uh-header .global-search ::-ms-input-placeholder {
  color: #888;
  opacity: 1;
}

.uh-header .global-search .search-field {
  border: none;
  border-radius: 20px;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.125), 0 0 0 1px rgba(0, 0, 0, 0.2);
  padding: 0.25rem 0.75em;
  font-size: 1.125rem; /* 18px */
  line-height: 1.5rem;
  /* line-height: 1.5; */
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

.uh-header .global-search .search-field:focus {
  outline: 0;
}

.uh-header .global-search label {
  margin: 0.25em 0 0;
  padding: 0.25em 0;
  display: none;
}

.uh-header .global-search input[type=checkbox] {
  margin-right: 0.25em;
}

.uh-header .global-search button {
  border: none;
  border-radius: 0.25em;
  font-size: inherit;
  line-height: 1.5;
  padding: 0.25em 0.75em;
}

.uh-header .global-search .search-submit {
  color: #FFF9D9;
  background-color: #c8102e;
}

.uh-header .global-search .search-close {
  background: none;
  color: #c8102e;
  display: none;
  margin-right: -0.75em;
}

.uh-header .global-search button svg {
  display: block;
  fill: currentColor;
  float: left;
  height: 1.5em;
  margin-right: 0.25em;
  width: 1.5em;
}

.uh-header .global-search .search-submit {
  background-color: transparent;
  border: 0;
  color: transparent;
  /*font: 0/0 a;*/
  height: 2rem;
  text-indent: 999em; /* needed for older android devices */
  text-shadow: none;
  overflow: hidden;
  padding: 0.25em;
  width: 2rem;
  position: absolute;
  top: 0.5rem;
  right: 1.75rem;
}

.uh-header .global-search .search-submit svg {
  fill: #c8102e;
  float: none;
  margin: 0;
}

@media screen and (min-width: 992px) {
  .uh-header .global-search {
    margin-top: -3rem;
  }
  .uh-header .global-search .container {
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .uh-header .global-search .search-field,
  .uh-header .global-search .search-submit {
    -webkit-order: -1;
    order: -1;
  }
  .uh-header .global-search .search-field,
  .uh-header .global-search label,
  .uh-header .global-search .search-submit {
    margin-right: 1em;
  }
  .uh-header .global-search label {
    margin: 0 1em 0 0;
    /* padding: .25em 0; */
  }
  .uh-header .global-search .search-submit {
    position: static;
    margin: 0;
    margin-left: -3.25rem;
    margin-right: 1.125rem;
  }
  .uh-header .global-search .search-close {
    display: block;
  }
}
/* ==========================================================================
   Global Navigation Container
   ========================================================================== */
.uh-header .global-nav {
  overflow: hidden;
  padding: 0;
}

.uh-header .global-logo {
  left: 0;
  height: 3rem; /* fixes bug in IE11 */
  padding: 0 1.25rem;
  position: absolute;
  top: 0;
  right: 4.25rem;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-flex;
  display: flex;
}

.uh-header .global-logo a {
  display: block;
  max-width: 260px;
  min-width: 220px;
  width: 50%;
}

.uh-header .global-logo img,
.uh-header .global-logo svg {
  display: block;
  height: auto;
  width: 100%;
}

.uh-header-secondary-red .global-logo a img {
  filter: grayscale(100%);
}

.uh-header .global-logo svg {
  fill: white;
}

@media screen and (min-width: 768px) {
  .uh-header .global-logo {
    padding: 0 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .uh-header {
    display: block;
    z-index: 100;
  }
  .uh-header .global-nav {
    /* https://www.smashingmagazine.com/2016/05/fluid-typography/#controlling-the-rate-of-scale */
    font-size: calc(14px + 2 * (100vw - 992px) / 208); /* scale between 14px and 16px (see above link) */
  }
  .uh-header-primary .global-nav {
    margin-bottom: -3em;
    position: relative;
  }
  .uh-header .global-nav .container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  .uh-header-primary .global-nav .container {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .uh-header .global-logo {
    margin-right: 2.5rem;
    padding: 0;
    position: static;
    -webkit-align-self: center;
    align-self: center;
    -webkit-flex-basis: 260px;
    flex-basis: 260px;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
  }
  .uh-header-primary .global-logo {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .uh-header .global-nav {
    font-size: 1rem; /* 16px */
  }
}
/* ==========================================================================
   Tactical Links
   ========================================================================== */
.uh-header .nav-tactical {
  line-height: 1.5;
  margin: 0 -0.75em;
  /*padding-top: .5em;*/
}

.uh-header .nav-tactical a {
  display: block;
  padding: 0.5em 0.75em;
}

.uh-header .nav-tactical a svg,
.uh-header .nav-tactical a img {
  display: block;
  float: left;
  height: 1.5em;
  margin-right: 0.5em;
  width: 1.5em;
}

.uh-header .nav-tactical a svg,
.uh-header .nav-tactical a svg * {
  fill: currentColor !important;
}

.uh-header .nav-tactical .nav-link-search {
  display: none;
}

/**Covid-19 Tactical Nav Styling**/
a.nav-link-covid {
  background-color: #F6BE00;
  color: #C8102E !important;
  text-transform: uppercase;
  font-weight: bold;
}

@media screen and (min-width: 992px) {
  .uh-header .nav-tactical {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    /*padding-top: 0;*/
  }
  .uh-header .nav-tactical a {
    padding: 0.75em;
  }
  .uh-header .nav-tactical .nav-link-search {
    display: block;
    opacity: 1;
    transition: opacity 0.25s ease, color 0.25s ease;
  }
  .active-search .uh-header .nav-tactical .nav-link-search {
    color: black;
    opacity: 0.25;
  }
}
/* ==========================================================================
   Site Name
   ========================================================================== */
.uh-header:not(.uh-header-primary) .site-name {
  margin-top: 3rem;
  -webkit-order: -1;
  order: -1;
}

.uh-header-primary .site-name {
  display: none;
}

.uh-header-secondary .site-name {
  background-color: #960C22;
  color: white;
  font-family: "League Gothic", sans-serif;
  /* https://www.smashingmagazine.com/2016/05/fluid-typography/#controlling-the-rate-of-scale */
  font-size: calc(22px + 22 * (100vw - 320px) / 672); /* scale between 22px and 44px (see above link) */
  line-height: 1.0681818182em;
  line-height: calc(1em + 3px);
  padding: 0.25em 0 calc(0.25em + 3px);
}

.uh-header-secondary-slate .site-name {
  background-color: #54585A;
}

.uh-header-secondary-red .site-name {
  background-color: #c8102e;
}

.uh-header-secondary-white .site-name {
  background-color: white;
  color: #54585A;
}

.uh-header-secondary .site-name h1 {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  margin: 0;
  padding: 0;
  text-transform: none;
}

.uh-header .site-name a,
.uh-header .site-name svg,
.uh-header .site-name img {
  display: block;
}

.uh-header .site-name a,
.uh-header .site-name a:visited {
  color: white;
}

.uh-header-primary .site-name a {
  display: block;
  height: 0;
  padding: 0 0 20.337%;
  position: relative;
  width: 100%;
}

.uh-header-primary .site-name img,
.uh-header-primary .site-name svg {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.uh-header-primary .site-name svg {
  fill: white;
}

.uh-header-secondary-white .site-name a,
.uh-header-secondary-white .site-name a:visited {
  color: inherit;
}

.uh-header-custom .site-name {
  background-color: white;
  padding: 2.5rem 0;
}

.uh-header-custom .site-name img {
  max-width: 500px;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .uh-header:not(.uh-header-primary) .site-name {
    margin-top: 0;
  }
  .uh-header-primary .site-name {
    display: block;
    min-width: 0; /* fixes a bug where Edge ignores flex-basis here */
    -webkit-flex-basis: 300px;
    flex-basis: 300px;
    -webkit-flex-grow: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
  }
  .uh-header-secondary .site-name {
    font-size: 3.75rem; /* 60px */
    /* https://www.smashingmagazine.com/2016/05/fluid-typography/#controlling-the-rate-of-scale */
    font-size: calc(44px + 16 * (100vw - 992px) / 208); /* scale between 44px and 60px (see above link) */
    margin-top: 0;
    padding: 0.25em 0 calc(0.25em - 3px);
  }
  .uh-header-custom .site-name {
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .uh-header-secondary .site-name {
    font-size: 3.75rem; /* 60px */
  }
}
/* ==========================================================================
   Site Navigation Container
   ========================================================================== */
.uh-header-secondary .site-nav {
  background-color: #960C22;
}

.uh-header-secondary-slate .site-nav {
  background-color: #54585A;
}

.uh-header-secondary-red .site-nav {
  background-color: #c8102e;
}

.uh-header-secondary-white .site-nav {
  background-color: #54585A;
}

@media screen and (min-width: 992px) {
  .uh-header-primary .site-nav {
    padding: 2rem 0;
    /*padding: calc(32px + (40 - 32) * (100vw - 992px) / (1200 - 992)) 0;*/
  }
  .uh-header-primary .site-nav .container {
    display: -webkit-flex;
    display: flex;
  }
}
@media screen and (min-width: 1200px) {
  .uh-header-primary .site-nav {
    /*padding: 2.5rem 0;*/
  }
}
/* ==========================================================================
   Menu Button
   ========================================================================== */
.uh-header .menu-button {
  background: none;
  border: none;
  color: #fff9d9;
  cursor: pointer;
  display: block;
  height: 3rem;
  padding: 0.75rem;
  position: absolute;
  right: 1.25rem;
  top: 0;
  width: 3rem;
}

.uh-header .menu-button svg {
  fill: currentColor;
  height: 1.5rem;
  width: 1.5rem;
}

.uh-header .menu-button-active {
  background-color: #960C22;
}

@media only screen and (min-width: 768px) {
  .uh-header .menu-button {
    right: 2.55rem;
  }
  .uh-header .global-search .search-submit {
    right: 3rem;
  }
}
@media only screen and (min-width: 992px) {
  .uh-header .menu-button {
    display: none;
  }
}
/* ==========================================================================
   Primary Navigation
   ========================================================================== */
.uh-header .nav-primary {
  font-weight: bold;
  line-height: 1.5;
  margin: 0 -1.25rem;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.uh-header .nav-primary li {
  position: relative;
}

/*.uh-header .nav-primary > li:last-child {
    padding-bottom: .5em;
}*/
.uh-header .nav-primary a {
  display: block;
  padding: 0.5em 1.25rem;
}

.uh-header .nav-primary a:empty {
  /*display: none;*/
}

.uh-header .nav-primary .caret {
  /* border-top: .25em solid #FFF9D9; */
  /* border-right: .25em solid transparent; */
  /* border-bottom: none; */
  /* border-left: .25em solid transparent; */
  position: absolute;
  right: 1.75rem;
  top: 0.25em;
  width: 2rem;
  height: 2rem;
  border: none;
  padding: 0.25rem;
  display: block;
  transition: transform 0.25s ease;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.uh-header .nav-primary .opened .caret {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.uh-header .nav-primary .caret svg {
  fill: #fff9d9;
  height: 1.5rem;
  width: 1.5rem;
}

.uh-header .nav-primary .children {
  background-color: rgba(0, 0, 0, 0.25);
  font-weight: normal;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.uh-header .nav-primary .opened + .children {
  max-height: 50rem;
}

@media screen and (min-width: 768px) {
  .uh-header .nav-primary {
    margin: 0 -2.5rem;
  }
  .uh-header .nav-primary a {
    padding: 0.5em 2.5rem;
  }
  .uh-header .nav-primary .caret {
    right: 2.5rem;
  }
}
@media screen and (min-width: 992px) and (max-width: 1399.99px) {
  .uh-header .nav-primary a {
    padding: 0.75rem 0.5rem;
  }
}
@media screen and (min-width: 1400px) {
  .uh-header .nav-primary a {
    padding: 0.75rem;
  }
}
@media screen and (min-width: 992px) {
  .uh-header .nav-primary {
    /* https://www.smashingmagazine.com/2016/05/fluid-typography/#controlling-the-rate-of-scale */
    font-size: calc(15px + 3 * (100vw - 970px) / 230); /* scale between 15px and 18px (see above link) */
    margin: 0 -0.75rem;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  .uh-header-primary .nav-primary {
    margin-left: calc(2.5rem - 0.75em);
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .uh-header .nav-primary > li {
    transition: background 0.25s ease;
  }
  /*.uh-header .nav-primary > li:last-child {
      padding-bottom: 0;
  }*/
  .uh-header-primary .nav-primary > li {
    margin: auto 0 -1.125rem;
  }
  .uh-header .nav-primary li:hover {
    background: rgba(0, 0, 0, 0.25);
  }
  .uh-header .nav-primary .caret {
    border-top: 0.25em solid #FFF9D9;
    border-right: 0.25em solid transparent;
    border-bottom: none;
    border-left: 0.25em solid transparent;
    margin: 0;
    opacity: 0.5;
    position: relative;
    right: -0.25em;
    top: auto;
    width: 0;
    height: 0;
    display: inline-block;
    padding: 0;
  }
  .uh-header .nav-primary li:hover .caret {
    opacity: 1;
  }
  .uh-header .nav-primary .caret svg {
    display: none;
  }
  .uh-header .nav-primary .children {
    background-color: #f2f2f2;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top-width: 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    font-size: 1rem; /* 16px */
    line-height: 1.3125em;
    line-height: calc(1.5em - 3px);
    left: -999em;
    max-height: none;
    opacity: 0;
    overflow: visible;
    position: absolute;
    width: 260px;
  }
  .uh-header .nav-primary > li:hover > .children {
    left: -1px;
    opacity: 1;
    transition: opacity 0.25s ease 0.25s, left 0 ease 0.25s;
  }
  .uh-header .nav-primary > li:last-child:hover > .children {
    left: auto;
    right: 0;
  }
  .uh-header .nav-primary li:hover .children li:hover {
    background-color: #e5e5e5;
  }
  .uh-header .nav-primary .children a,
  .uh-header .nav-primary .children a:visited {
    color: #c8102e;
  }
  .uh-header .nav-primary .children a:hover,
  .uh-header .nav-primary .children a:visited:hover {
    color: #960C22;
  }
  .uh-header .nav-primary .children a {
    padding: 0.5em 1.5em 0.5em 0.75em;
  }
  .uh-header .nav-primary .children .caret {
    border-top: 0.25em solid transparent;
    border-right: none;
    border-bottom: 0.25em solid transparent;
    border-left: 0.25em solid #c8102e;
    position: absolute;
    right: 0.75em;
    top: 0.875em;
  }
  .uh-header .nav-primary .grandchildren {
    border-top-width: 1px;
    left: -999em;
    margin-left: 260px;
    opacity: 0;
    top: -1px;
    transition: opacity 0s linear 0.25s, left 0s linear 0.25s;
  }
  .uh-header .nav-primary .children li:hover .grandchildren {
    left: -2px;
    opacity: 1;
    transition: opacity 0.25s ease, left 0s linear;
  }
  .uh-header .nav-primary > li:last-child .children li .grandchildren {
    transition: opacity 0s linear 0.25s, right 0s linear 0.25s;
  }
  .uh-header .nav-primary > li:last-child .children li:hover .grandchildren {
    left: auto;
    opacity: 1;
    right: 258px;
    transition: opacity 0.25s ease, right 0s linear;
  }
}
@media screen and (min-width: 1200px) {
  .uh-header .nav-primary {
    font-size: 1.125rem; /* 18px */
  }
}
/* ==========================================================================
   Responsive Menu Styles
   ========================================================================== */
@media screen and (max-width: 991px) {
  .uh-header .global-search,
  .uh-header .global-nav,
  .uh-header .nav-primary {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .active-nav .uh-header .global-nav {
    max-height: 20rem;
  }
  .active-nav .uh-header .global-search {
    max-height: 10rem;
  }
  .active-nav .uh-header .nav-primary {
    max-height: 100rem;
    transition: max-height 1s ease;
  }
}
/* ==========================================================================
   General Footer Styles
   ========================================================================== */
/* fixes a flexbox column bug seen in IE11 https://github.com/philipwalton/flexbugs#5-column-flex-items-dont-always-preserve-intrinsic-aspect-ratios */
body > [name*=Footer],
body > .uh-footer {
  overflow: hidden;
}

.uh-footer {
  z-index: 100;
}

.uh-footer a,
.uh-footer a:visited {
  color: #FFF9D9;
  text-decoration: none;
}

.uh-footer a:hover,
.uh-footer a:focus,
.uh-footer a:visited:hover {
  color: white;
  text-decoration: none;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.uh-footer .site-footer {
  background-color: #c8102e;
  color: white;
  font-size: 1rem; /* 16px */
  line-height: 1.3125em;
  line-height: calc(1.5em - 3px);
  padding: calc(1.5em - 3px) 0;
}

.uh-footer-slate .site-footer {
  background-color: #54585A;
}

.uh-footer-brick .site-footer {
  background-color: #960C22;
}

.uh-footer .site-footer .container {
  display: block;
  padding: 0 1.25rem;
}

.uh-footer .site-footer h1,
.uh-footer .site-footer h2,
.uh-footer .site-footer h3 {
  font-family: "League Gothic";
  margin-top: 0;
}

.uh-footer .site-footer h1 {
  font-size: 2.25rem;
  text-transform: uppercase;
}

.uh-footer .site-footer h2 {
  font-size: 1.6875rem;
  text-transform: uppercase;
}

.uh-footer .site-footer h3 {
  font-size: 1.125rem;
}

.uh-footer .site-footer .contact-block,
.uh-footer .site-footer .footer-links-column {
  margin-bottom: calc(1.5em - 3px);
  padding: 0;
  width: 100%;
}

.uh-footer .site-footer .footer-logo {
  margin: 10px 0 30px;
  max-width: 260px;
}

.uh-footer .site-footer .footer-logo a {
  display: block;
}

.uh-footer .site-footer .footer-logo svg {
  display: block;
  fill: white;
}

.uh-footer .site-footer .contact-info {
  line-height: 1.5;
}

.uh-footer .site-footer .footer-links {
  display: block;
  width: 100%;
}

.uh-footer .site-footer .footer-links-list {
  margin: 0 0 calc(1.5em - 3px);
  padding: 0;
  width: 100%;
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}

.uh-footer .site-footer .footer-links-list li {
  margin: 0;
  padding: 9px 0 0;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}

.uh-footer .site-footer .social-media-list {
  list-style: none;
  margin-top: 0;
  padding: 9px 0 0;
  width: 100%;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.uh-footer .site-footer .social-media-list li {
  margin: 0 10px 10px 0;
  padding: 0;
}

.uh-footer .site-footer .social-media-list a {
  background: #FFF9D9;
  border-radius: 50%;
  display: block;
  height: 40px;
  padding: 8px;
  transition: background 0.25s ease;
  width: 40px;
}

.uh-footer .site-footer .social-media-list a:hover,
.uh-footer .site-footer .social-media-list a:focus {
  background: white;
}

.uh-footer .site-footer .social-media-list svg {
  fill: #c8102e;
}

.uh-footer-slate .site-footer .social-media-list svg {
  fill: #54585A;
}

.uh-footer-brick .site-footer .social-media-list svg {
  fill: #960C22;
}

@media screen and (min-width: 420px) {
  .uh-footer .site-footer .footer-links-list {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
@media screen and (min-width: 600px) {
  .uh-footer .site-footer .contact-block,
  .uh-footer .site-footer .footer-links-list,
  .uh-footer .site-footer .social-media-list,
  .uh-footer .site-footer .footer-links-column {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .uh-footer .site-footer .container {
    padding: 0;
    display: -webkit-flex;
    display: flex;
  }
  .uh-footer .site-footer .contact-block {
    width: 33%;
  }
  .uh-footer .site-footer .footer-links {
    width: 67%;
  }
  .uh-footer .site-footer .footer-links-list {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .uh-footer .site-footer .container {
    padding: 0 1.25rem;
  }
}
@media screen and (min-width: 992px) {
  .uh-footer .site-footer .footer-links {
    display: -webkit-flex;
    display: flex;
  }
  .uh-footer .site-footer .footer-links-column {
    margin-bottom: 0;
  }
  .uh-footer .site-footer .footer-links-list {
    width: 67.77777777%;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .uh-footer .site-footer .social-media-list {
    width: 33.33333333%;
  }
}
@media screen and (min-width: 1200px) {
  .uh-footer .site-footer .contact-block {
    width: 33.33333333%;
  }
  .uh-footer .site-footer .footer-links {
    width: 67.77777777%;
  }
  .uh-footer .site-footer .footer-links-list {
    width: 75%;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .uh-footer .site-footer .social-media-list {
    width: 25%;
  }
}
/* ==========================================================================
   Global Footer
   ========================================================================== */
#site-navigation .uh-header-secondary {
  background-color: initial !important;
}

#site-navigation .nav-primary {
  transition: max-height 0.35s ease !important;
}

#site-navigation .site-name {
  margin-top: 0 !important;
}

.uh-footer .global-footer {
  background-color: #54585A;
  color: white;
  font-size: 0.875rem; /* 14px */
  padding: 1em 0;
  line-height: 1.5;
}

.uh-footer-slate .global-footer,
.uh-footer-brick .global-footer {
  background-color: #c8102e;
}

.uh-footer .global-footer a,
.uh-footer .global-footer a:visited {
  color: #fff9d9;
  text-decoration: none;
}

.uh-footer .global-footer a:hover,
.uh-footer .global-footer a:focus,
.uh-footer .global-footer a:visited:hover {
  color: white;
  text-decoration: none;
}

.uh-footer .global-footer .copyright {
  display: inline;
  margin: 0 0.5em 0 0;
}

.uh-footer .global-footer .nav-required {
  display: inline;
}

.uh-footer .global-footer .nav-required li {
  display: inline-block;
  margin-right: 0.5em;
}

.uh-footer .global-footer .nav-item-highlighted a,
.uh-footer .global-footer .nav-item-highlighted a:visited {
  /*Value changed to meet 4.5:1 contrast guidelines*/
  color: #ffc400;
  text-decoration: none;
}

.uh-footer .global-footer .nav-item-highlighted a:hover,
.uh-footer .global-footer .nav-item-highlighted a:focus,
.uh-footer .global-footer .nav-item-highlighted a:visited:hover {
  color: white;
}

/* ==========================================================================
   Browser Upgrade
   ========================================================================== */
.browserupgrade {
  background: #F6BE00;
  color: black;
  font-size: 1.75em;
  line-height: 1.4;
  margin: 0;
  padding: 40px;
  position: relative;
  z-index: 9999;
}

.browserupgrade a {
  font-weight: bold;
}

.browserupgrade ~ .uh-header,
.browserupgrade ~ .uh-footer {
  height: 0;
  overflow: hidden;
}

/* * University of Houston * Style sheet for UH Bootstrap * Updated Summer 2016 by UH Web Marketing Team * Contact Rainer Schuhsler for assistance with this file. * * This style sheet imports the stock distro version of Bootstrap * (http://getbootstrap.com) and adds additional custom styles. * * Table of Contents: * ------------------ * Import Twitter Bootstrap * Base * Typography * Grid * Jumbotron * Code * Labels and badges * Alerts * Progress bars * Tables * Forms * Buttons * Button groups * List groups * Navs * Navbar * Dropdowns * Breadcrumbs * Pagination * Thumbnails * Miscellaneous * Helper classes * Legacy grid system * Themes * */
/* ======================================================================== Import Twitter Bootstrap ======================================================================== */
/* ======================================================================== Base ======================================================================== */
html {
  font-size: 16px;
}

body {
  color: #111;
  font: 1.125rem "Source Sans Pro", sans-serif;
  /* 18px */
  line-height: 1.5;
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0 auto;
  /*font-family: 'Source Sans Pro', sans-serif;
   */
  /*font-size: 18px;
   */
  /*line-height: 1.5;
   */
}

a {
  color: #c8102e;
  font-weight: inherit;
  transition: color 0.25s ease;
}

a:hover {
  color: #960C22;
  text-decoration: none;
}

a:focus {
  color: #960C22;
  text-decoration: initial;
}

a:active {
  outline: 0;
}

img {
  vertical-align: top;
}

/* * Correct overflow not hidden in IE9 */
svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

iframe, object {
  /*height: auto;
   */
  margin: 0 0 18px;
  max-width: 100%;
}

img.media-object {
  max-width: none;
}

/* ======================================================================== Typography ======================================================================== */
dfn {
  font-style: italic;
}

ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

p {
  /*line-height: 1.5;
   */
  margin: 1em 0;
}

/* * Redeclare monospace font family: h5bp.com/j */
pre, code, kbd, samp {
  font-family: monospace, serif;
  font-size: 14px;
  _font-family: "courier new", monospace;
}

q {
  quotes: none;
}

.entry-summary {
  margin-top: 6px;
  margin-bottom: 18px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  /*color: #54585A;
   */
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold;
  line-height: 1.5;
  /*margin: 1em 0 12px;
   */
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  font-size: 80%;
  padding-left: 1px;
  text-transform: none;
}

header > h1, header > h2, header > h3, header > h4, header > h5, header > h6 {
  margin-top: 0;
}

h1 + p, h2 + p, h3 + p, h4 + p, h5 + p, h6 + p {
  margin-top: 0;
}

h1 {
  font-size: 43px;
  letter-spacing: -0.015625em;
  line-height: 54px;
}

h2 {
  font-size: 32px;
  line-height: 36px;
}

h3 {
  font-size: 24px;
  line-height: 27px;
}

h4 {
  font-size: 18px;
  line-height: 27px;
}

h5 {
  font-size: 16px;
  line-height: 27px;
}

h6 {
  font-size: 16px;
  line-height: 27px;
  margin: 0;
}

h1 small {
  font-size: 24px;
  line-height: 1.5rem;
}

h2 small {
  font-size: 18px;
}

.page-header {
  margin: 24px 0 36px;
  padding-bottom: 12px;
}

.page-header h1 {
  margin-top: 0;
}

ul, ol {
  margin: 1em 0;
  padding-left: 2em;
}

li {
  /*margin-bottom: 9px;
   */
}

nav li {
  margin-bottom: 0;
}

li > ul, li > ol, li > dl {
  margin-top: 9px;
}

dl {
  margin: 18px 0;
  overflow-x: auto;
}

dt, dd {
  line-height: inherit;
}

dt {
  margin-top: 18px;
}

dl dt:first-child {
  margin-top: 0;
}

.lt-ie9 dl dt.first-child {
  margin-top: 0;
}

dd {
  margin-left: 0;
}

.dl-horizontal dt {
  /*color: #999;
   */
  /*font-size: 80%;
   */
  /*font-weight: normal;
   */
  margin-top: 0;
  width: 20%;
}

.dl-horizontal dd {
  margin-bottom: 6px;
  margin-left: 22.5%;
}

hr {
  margin: 2em 0;
}

hr:before, hr:after {
  content: "";
  display: table;
}

hr:after {
  clear: both;
}

hr {
  clear: both;
  *zoom: 1;
}

abbr[title], abbr[data-original-title] {
  border-bottom: none;
  cursor: help;
  text-decoration: none;
}

blockquote {
  border-left-color: rgba(0, 0, 0, 0.2);
}

blockquote p {
  font-size: 18px;
  line-height: 27px;
}

blockquote.pull-right {
  border-right-color: rgba(0, 0, 0, 0.2);
}

blockquote footer, blockquote small, blockquote .small {
  color: inherit;
}

address {
  line-height: 24px;
  margin-bottom: 12px;
}

.hero-unit {
  background-color: #eeeeee;
  border-radius: 6px;
  margin-bottom: 30px;
  padding: 60px;
}

.hero-unit h1 {
  color: inherit;
  font-size: 60px;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-unit p {
  color: inherit;
  font-size: 18px;
  font-weight: 200;
  line-height: 27px;
}

.text-muted {
  color: rgba(51, 51, 51, 0.5);
}

.text-primary {
  color: inherit;
}

a.text-primary:hover, a.text-primary:focus {
  color: #c8102e;
}

.text-success {
  color: #00866C;
}

a.text-success:hover, a.text-success:focus {
  color: #005950;
}

.text-info {
  color: #b97800;
}

a.text-info:hover, a.text-info:focus {
  color: #865700;
}

.text-warning {
  color: #D89B00;
}

a.text-warning:hover, a.text-warning:focus {
  color: #B97800;
}

.text-danger {
  color: #960C22;
}

a.text-danger:hover, a.text-danger:focus {
  color: #640817;
}

.bg-primary {
  color: #fff;
  background-color: #c8102e;
}

a.bg-primary:hover, a.bg-primary:focus {
  background-color: #990c23;
}

.bg-success {
  color: #fff;
  background-color: #00b388;
  text-shadow: 1px 1px 1px rgba(0, 89, 80, 0.75);
}

a.bg-success:hover, a.bg-success:focus {
  background-color: #008061;
}

.bg-info {
  background-color: #fff9d9;
}

a.bg-info:hover, a.bg-info:focus {
  background-color: #EBD8A7;
}

.bg-warning {
  color: #fff;
  background-color: #f6be00;
  text-shadow: 1px 1px 1px rgba(185, 120, 0, 0.75);
}

a.bg-warning:hover, a.bg-warning:focus {
  background-color: #c39700;
}

.bg-danger {
  color: white;
  background-color: #960c22;
}

a.bg-danger:hover, a.bg-danger:focus {
  background-color: #670817;
}

/* ======================================================================== Grid ======================================================================== */
.container {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  max-width: 1600px;
  width: 100%;
}

.container-fluid {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

/* Overwrites Bootsrap */
/* Necessary for proper alignment for interior pages with a right-nav - Kyle */
.row {
  margin-right: -1.25rem;
  margin-left: -1.25rem;
}


.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}



@media screen and (min-width: 768px) {
  .container {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
/* ======================================================================== Jumbotron ======================================================================== */
.jumbotron {
  background-color: #54585A;
  color: white;
  margin: 0 auto;
}

.jumbotron h1 {
  font-family: "League Gothic", sans-serif;
  font-size: 6em;
  font-weight: normal;
  line-height: 1;
  margin: 0 0 0.125em;
  position: relative;
  text-shadow: -0.09em 0.075em 0 rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  /* -webkit-transform: skew(0deg, -6deg);
   -ms-transform: skew(0deg, -6deg);
   transform: skew(0deg, -6deg);
   */
}

.jumbotron h1 small {
  color: #f1e6b2;
  display: block;
  font-family: sans-serif;
  text-shadow: -0.18em 0.12em 0 rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}

.jumbotron p {
  font-size: 18px;
  line-height: 1.333333333;
}

.jumbotron h1 + p {
  font-size: 24px;
}

/* ======================================================================== Code ======================================================================== */
code {
  color: #c8102e;
}

pre {
  font-size: 14px;
  margin: 0 0 24px;
  padding: 12px;
}

/* ======================================================================== Labels and badges ======================================================================== */
.label {
  padding: 0.25em 0.5em 0.25em;
  display: inline-block;
}

.label-default {
  background-color: #777777;
}

.label-default[href]:hover, .label-default[href]:focus {
  background-color: #5e5e5e;
}

.label-primary {
  background-color: #c8102e;
}

.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #990c23;
}

.label-success {
  background-color: #00b388;
}

.label-success[href]:hover, .label-success[href]:focus {
  background-color: #008061;
}

.label-info {
  color: #B97800;
  background-color: #fff9d9;
}

.label-info[href]:hover, .label-info[href]:focus {
  background-color: #EBD8A7;
}

.label-warning {
  background-color: #f6be00;
}

.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #c39700;
}

.label-danger {
  background-color: #960c22;
}

.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #670817;
}

.label-important, .badge-important {
  background-color: #c8102e;
}

.badge {
  border-radius: 12px;
  padding: 0.25em 0.5em 0.25em;
}

.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #c8102e;
  background-color: #ffffff;
}

/* ======================================================================== Alerts ======================================================================== */
.alert-success {
  background-color: #00866c;
  border-color: #005950;
  color: #ffffff;
  text-shadow: none;
  /*text-shadow: 1px 1px 1px rgba(0, 89, 80, .75);
   */
}

.alert-success hr {
  border-top-color: 1px dotted #005950;
}

.alert-success .alert-link {
  color: #FFF9D9;
}

.alert-info {
  background-color: #fff9d9;
  border-color: #ECD8A5;
  color: #640817;
  text-shadow: none;
}

.alert-info hr {
  border-top-color: 1px dotted #b97800;
}

.alert-info .alert-link {
  color: inherit;
}

.alert-warning {
  background-color: #f6be00;
  border-color: #E6AC00;
  color: #000000;
  text-shadow: none;
  /*text-shadow: 1px 1px 1px rgba(185, 120, 0,.75);
   */
}

.alert-warning hr {
  border-top-color: 1px dotted #B97800;
}

.alert-warning .alert-link {
  color: inherit;
}

.alert-danger {
  background-color: #c8102e;
  border-color: #AF0E27;
  color: #ffffff;
  text-shadow: none;
  /*text-shadow: 1px 1px 1px rgba(100, 8, 23, .75);
   */
}

.alert-danger hr {
  border-top-color: 1px dotted #640817;
}

.alert-danger .alert-link {
  color: #FFF9D9;
}

.alert .alert-link {
  font-weight: inherit;
  text-decoration: underline;
}

/* ======================================================================== Progress bars ======================================================================== */
.progress-bar {
  background-color: #c8102e;
}

.progress-bar-success {
  background-color: #00b388;
}

.progress-bar-info {
  background-color: #fff9d9;
}

.progress-bar-warning {
  background-color: #f6be00;
}

.progress-bar-danger {
  background-color: #960c22;
}

/* ======================================================================== Tables ======================================================================== */
table {
  border: none;
  margin: 0 0 24px;
}

table th, table td, table caption {
  line-height: 24px;
}

table caption {
  /*font-family: TexGyreAdventor, sans-serif;
   */
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 9px;
  text-align: center;
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
  font-size: 16px;
  line-height: 1.3125;
  padding: 6px 9px;
}

.table-small th, .table-small td {
  font-size: 15px;
  line-height: 18px !important;
}

.table th[align=center], .table td[align=center] {
  text-align: center;
}

.table tbody + thead tr:first-child th {
  /*padding-top: 27px;
   */
}

.lt-ie9 .table tbody + thead tr.first-child th {
  /*padding-top: 27px;
   */
}

.table-condensed th, .table-condensed td {
  padding: 3px 6px;
}

.table-bordered {
  border-radius: 4px;
}

.table-bordered thead th {
  background: #eee;
}

.table-bordered tr th:first-child, .table-bordered tr td:first-child {
  text-align: left;
}

.lt-ie9 .table-bordered tr th.first-child, .lt-ie9 .table-bordered tr td.first-child {
  text-align: left;
}

.table-bordered thead:last-child tr:last-child th:first-child, .table-bordered tbody:last-child tr:last-child th:first-child, .table-bordered tbody:last-child tr:last-child td:first-child, .table-bordered tfoot:last-child tr:last-child td:first-child {
  border-bottom-left-radius: 4px;
}

table-bordered thead:first-child tr:first-child > th:first-child, .table-bordered tbody:first-child tr:first-child > td:first-child {
  border-top-left-radius: 4px;
}

.table-bordered thead:first-child tr:first-child > th:last-child, .table-bordered tbody:first-child tr:first-child > td:last-child {
  border-top-right-radius: 4px;
}

.table-bordered thead:last-child tr:last-child > th:first-child, .table-bordered tbody:last-child tr:last-child > td:first-child, .table-bordered tfoot:last-child tr:last-child > td:first-child {
  border-bottom-left-radius: 4px;
}

.table-bordered thead:last-child tr:last-child > th:last-child, .table-bordered tbody:last-child tr:last-child > td:last-child, .table-bordered tfoot:last-child tr:last-child > td:last-child {
  border-bottom-right-radius: 4px;
}

.table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
  border-bottom-left-radius: 0;
}

.table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
  border-bottom-right-radius: 0;
}

.table-bordered caption + thead tr:first-child th:first-child, .table-bordered caption + tbody tr:first-child td:first-child, .table-bordered colgroup + thead tr:first-child th:first-child, .table-bordered colgroup + tbody tr:first-child td:first-child {
  border-top-left-radius: 4px;
}

.table-bordered caption + thead tr:first-child th:last-child, .table-bordered caption + tbody tr:first-child td:last-child, .table-bordered colgroup + thead tr:first-child th:last-child, .table-bordered colgroup + tbody tr:first-child td:last-child {
  border-top-right-radius: 4px;
}

.table-bordered > thead > tr > th, .table-bordered > thead > tr > td, .table > thead > tr > th {
  border-bottom-width: 1px;
}

@media screen and (max-width: 767px) {
  table {
    display: block;
    overflow-x: scroll;
  }
  .table-responsive table {
    display: table;
    overflow-x: auto;
  }
}
.table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th {
  color: white;
  background-color: #00b388;
  text-shadow: 1px 1px 1px rgba(0, 89, 80, 0.75);
}

.table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: #009a75;
}

.table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th {
  color: #B97800;
  background-color: #fff9d9;
  text-shadow: none;
}

.table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  background-color: #fff5c0;
}

.table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th {
  color: white;
  background-color: #f6be00;
  text-shadow: 1px 1px 1px rgba(185, 120, 0, 0.75);
}

.table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: #ddaa00;
}

.table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th {
  color: white;
  background-color: #c8102e;
  text-shadow: 1px 1px 1px rgba(100, 8, 23, 0.75);
}

.table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: #b00e29;
}

/* ======================================================================== Forms ======================================================================== */
label {
  font-weight: normal;
}

legend, .help-block {
  color: inherit;
}

.form-horizontal .control-label {
  /*padding-right: 5px;
   */
  /*padding-top: 9px;
   */
  /*text-transform: lowercase;
   */
}

.radio, .checkbox {
  text-align: left;
}

.radio label, .checkbox label {
  padding-left: 25px;
}

.radio input[type=radio], .radio-inline input[type=radio], .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox] {
  margin-left: -25px;
}

.radio input, .checkbox input {
  cursor: pointer;
}

.form-control {
  /*font-size: 16px;
  */
  /*height: 40px;
  */
  /*line-height: 1.5;
  */
  /*padding: 7px 12px;
  */
}

.form-control:focus {
  border-color: #66afe9;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  outline: 0;
}

.form-control::-moz-placeholder {
  color: #999999;
}

.form-control:-ms-input-placeholder {
  color: #999999;
}

.form-control::-webkit-input-placeholder {
  color: #999999;
}

.input-lg {
  font-size: 20px;
  line-height: 1.5;
  padding: 9px 12px;
  height: auto;
}

.input-sm {
  font-size: 16px;
  line-height: 1.5;
  padding: 2px 12px;
  height: 30px;
}

.form-control-static {
  margin-top: 0;
}

.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #00866C;
}

.has-success .form-control {
  border-color: #189C7A;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
  border-color: #00866C;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #00866C;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #00866C;
}

.has-success .input-group-addon {
  color: #fff;
  border-color: #189C7A;
  background-color: #00b388;
  text-shadow: 1px 1px 1px rgba(0, 89, 80, 0.75);
}

.has-success .form-control-feedback {
  color: #00866C;
}

.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #A36A00;
}

.has-warning .form-control {
  border-color: #E6AC00;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
  border-color: #A36A00;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #A36A00;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #A36A00;
}

.has-warning .input-group-addon {
  color: #fff;
  border-color: #E6AC00;
  background-color: #f6be00;
  text-shadow: 1px 1px 1px rgba(185, 120, 0, 0.75);
}

.has-warning .form-control-feedback {
  color: #A36A00;
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #c8102e;
}

.has-error .form-control {
  border-color: #AF0E27;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
  border-color: #c8102e;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c8102e;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c8102e;
}

.has-error .input-group-addon {
  color: #fff;
  border-color: #AF0E27;
  background-color: #c8102e;
  text-shadow: 1px 1px 1px rgba(100, 8, 23, 0.75);
}

.has-error .form-control-feedback {
  color: #c8102e;
}

.has-feedback label ~ .form-control-feedback {
  top: 35px;
}

/* ======================================================================== Buttons ======================================================================== */
.btn {
  border-width: 1px 1px 3px 1px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  padding: 7px 12px;
  text-shadow: none;
  white-space: normal;
}

.btn:active, .btn.active {
  border-width: 3px 1px 1px 1px;
}

.btn-link:active, .btn-link.active {
  border-width: 1px 1px 3px 1px;
}

.btn-lg, .btn-group-lg > .btn {
  font-size: 18px;
  padding: 9px 16px;
}

.btn-sm, .btn-group-sm > .btn {
  font-size: 12px;
  padding: 4px 10px;
}

.btn-xs, .btn-group-xs > .btn {
  font-size: 12px;
  padding: 0px 5px;
}

/* * btn-default, btn-submit */
.btn-submit, .btn-default {
  color: #333333;
  background-color: #f2f2f2;
  border-color: #b5b5b5;
}

.btn-submit:focus, .btn-submit.focus, .btn-default:focus, .btn-default.focus {
  color: #333333;
  background-color: #cccccc;
  border-color: #8c8c8c;
}

.btn-submit:hover, .btn-default:hover {
  color: #333333;
  background-color: #cccccc;
  border-color: #adadad;
}

.btn-submit:active, .btn-submit.active, .open > .dropdown-toggle.btn-submit, .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
  color: #333333;
  background-color: #cccccc;
  border-color: #adadad;
}

.btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus, .btn-submit:active:hover, .btn-submit.active:hover, .open > .dropdown-toggle.btn-submit:hover, .btn-submit:active:focus, .btn-submit.active:focus, .open > .dropdown-toggle.btn-submit:focus, .btn-submit:active.focus, .btn-submit.active.focus, .open > .dropdown-toggle.btn-submit.focus {
  color: #333333;
  background-color: #bababa;
  border-color: #8c8c8c;
}

.btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default, .btn-submit:active, .btn-submit.active, .open > .dropdown-toggle.btn-submit {
  background-image: none;
  border-width: 3px 1px 1px 1px;
}

.btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active, .btn-submit.disabled, .btn-submit[disabled], fieldset[disabled] .btn-submit, .btn-submit.disabled:hover, .btn-submit[disabled]:hover, fieldset[disabled] .btn-submit:hover, .btn-submit.disabled:focus, .btn-submit[disabled]:focus, fieldset[disabled] .btn-submit:focus, .btn-submit.disabled.focus, .btn-submit[disabled].focus, fieldset[disabled] .btn-submit.focus, .btn-submit.disabled:active, .btn-submit[disabled]:active, fieldset[disabled] .btn-submit:active, .btn-submit.disabled.active, .btn-submit[disabled].active, fieldset[disabled] .btn-submit.active {
  background-color: #f2f2f2;
  border-color: #bfbfbf;
}

.btn-submit .badge, .btn-default .badge {
  color: #e5e5e5;
  background-color: #333333;
}

/* * btn-primary */
.btn-primary {
  color: #ffffff;
  background-color: #c8102e;
  border-color: #960c22;
}

.btn-primary:focus, .btn-primary.focus {
  color: #ffffff;
  background-color: #990c23;
  border-color: #200307;
}

.btn-primary:hover {
  color: #ffffff;
  background-color: #990c23;
  border-color: #5d0715;
}

.btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #990c23;
  border-color: #5d0715;
}

.btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus {
  color: #ffffff;
  background-color: #780a1c;
  border-color: #200307;
}

.btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
  background-image: none;
}

.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
  background-color: #c8102e;
  border-color: #960c22;
}

.btn-primary .badge {
  color: #c8102e;
  background-color: #ffffff;
}

/* * btn-success */
.btn-success {
  color: #ffffff;
  background-color: #00866C;
  border-color: #005950;
}

.btn-success:focus, .btn-success.focus {
  color: #ffffff;
  background-color: #008061;
  border-color: #000705;
}

.btn-success:hover {
  color: #ffffff;
  background-color: #166d5c;
  border-color: #00493b;
}

.btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #008061;
  border-color: #00493b;
}

.btn-success:active:hover, .btn-success.active:hover, .open > .dropdown-toggle.btn-success:hover, .btn-success:active:focus, .btn-success.active:focus, .open > .dropdown-toggle.btn-success:focus, .btn-success:active.focus, .btn-success.active.focus, .open > .dropdown-toggle.btn-success.focus {
  color: #ffffff;
  background-color: #005c46;
  border-color: #000705;
}

.btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
  background-image: none;
}

.btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active {
  background-color: #00b388;
  border-color: #00866c;
}

.btn-success .badge {
  color: #00b388;
  background-color: #ffffff;
}

/* * btn-info */
.btn-info {
  color: #640817;
  background-color: #fff9d9;
  border-color: #d89b00;
}

.btn-info:focus, .btn-info.focus {
  color: #640817;
  background-color: #EBD8A7;
  border-color: #594000;
}

.btn-info:hover {
  color: #640817;
  background-color: #EBD8A7;
  border-color: #9b6f00;
}

.btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info {
  color: #640817;
  background-color: #EBD8A7;
  border-color: #9b6f00;
}

.btn-info:active:hover, .btn-info.active:hover, .open > .dropdown-toggle.btn-info:hover, .btn-info:active:focus, .btn-info.active:focus, .open > .dropdown-toggle.btn-info:focus, .btn-info:active.focus, .btn-info.active.focus, .open > .dropdown-toggle.btn-info.focus {
  color: #640817;
  background-color: #DCBD6F;
  border-color: #594000;
}

.btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info {
  background-image: none;
}

.btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active {
  background-color: #fff9d9;
  border-color: #d89b00;
}

.btn-info .badge {
  color: #640817;
  background-color: #b97800;
}

/* * btn-warning */
.btn-warning {
  color: #000000;
  background-color: #f6be00;
  border-color: #d89b00;
}

.btn-warning:focus, .btn-warning.focus {
  color: #000000;
  background-color: #c39700;
  border-color: #594000;
}

.btn-warning:hover {
  color: #000000;
  background-color: #c39700;
  border-color: #9b6f00;
}

.btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
  color: #000000;
  background-color: #c39700;
  border-color: #9b6f00;
}

.btn-warning:active:hover, .btn-warning.active:hover, .open > .dropdown-toggle.btn-warning:hover, .btn-warning:active:focus, .btn-warning.active:focus, .open > .dropdown-toggle.btn-warning:focus, .btn-warning:active.focus, .btn-warning.active.focus, .open > .dropdown-toggle.btn-warning.focus {
  color: #000000;
  background-color: #9f7b00;
  border-color: #594000;
}

.btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
  background-image: none;
}

.btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active {
  background-color: #f6be00;
  border-color: #d89b00;
}

.btn-warning .badge {
  color: #f6be00;
  background-color: #ffffff;
}

/* * btn-danger */
.btn-danger {
  color: #ffffff;
  background-color: #960c22;
  border-color: #640817;
}

.btn-danger:focus, .btn-danger.focus {
  color: #ffffff;
  background-color: #670817;
  border-color: #000000;
}

.btn-danger:hover {
  color: #ffffff;
  background-color: #670817;
  border-color: #2b030a;
}

.btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
  color: #ffffff;
  background-color: #670817;
  border-color: #2b030a;
}

.btn-danger:active:hover, .btn-danger.active:hover, .open > .dropdown-toggle.btn-danger:hover, .btn-danger:active:focus, .btn-danger.active:focus, .open > .dropdown-toggle.btn-danger:focus, .btn-danger:active.focus, .btn-danger.active.focus, .open > .dropdown-toggle.btn-danger.focus {
  color: #ffffff;
  background-color: #460610;
  border-color: #000000;
}

.btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
  background-image: none;
}

.btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active {
  background-color: #960c22;
  border-color: #640817;
}

.btn-danger .badge {
  color: #960c22;
  background-color: #ffffff;
}

/* * btn-link */
.btn-link {
  color: #c8102e;
  font-weight: normal;
  border-radius: 0;
}

.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}

.btn-link:hover, .btn-link:focus {
  color: #c8102e;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

/* ======================================================================== Button groups ======================================================================== */
.btn-group > .btn + .dropdown-toggle .caret {
  margin-right: 0;
  margin-left: -1px;
}

.btn-group.open .btn-primary.dropdown-toggle {
  background-color: #ae010d;
}

.btn .caret {
  margin: 0;
  margin-left: 2px;
}

.btn-large .caret {
  margin-left: 3px;
}

.btn-mini .caret {
  margin: 0;
}

.btn-group-vertical > .btn {
  min-width: 36px;
}

.btn-group > .btn + .dropdown-toggle, .input-group-btn > .btn + .btn {
  border-left-width: 1px;
}

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -3px;
}

.btn-group-vertical .btn:not(:last-child):hover {
  border-bottom-width: 1px;
  margin-bottom: 2px;
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:hover {
  border-bottom-width: 3px;
  margin-bottom: 0;
}

.btn-group-vertical > .btn-group.open:last-child:not(:first-child) > .btn:hover, .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:active:hover {
  border-bottom-width: 1px;
}

.btn-group-vertical .btn:active, .btn-group-vertical .open .btn:hover {
  margin-bottom: 0;
  z-index: 0;
}

.btn-group-vertical > .btn:not(:last-child):focus {
  border-bottom-width: 1px;
  margin-bottom: 2px;
  outline: none;
}

.btn-group-vertical > .btn:active:focus {
  margin-bottom: 0;
}

.btn-group-vertical > .btn-group > .btn:focus {
  border-bottom-width: 1px;
  margin-bottom: 2px;
}

.btn-group-vertical > .btn-group:last-child > .btn:focus {
  border-bottom-width: 3px;
  margin-bottom: 0;
}

.btn-group-vertical > .btn-group > .btn:active:focus, .btn-group-vertical > .btn-group.open > .btn:focus {
  margin-bottom: 0;
  z-index: 0;
  border-bottom-width: 1px;
}

/* ======================================================================== List groups ======================================================================== */
.list-group {
  margin-top: 0;
}

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  color: #ffffff;
  background-color: #c8102e;
  border-color: #c8102e;
}

.list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}

.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #ffffff;
}

.list-group-item-success {
  color: #ffffff;
  background-color: #00b388;
  text-color: 1px 1px 1px rgba(0, 89, 80, 0.75);
}

a.list-group-item-success, button.list-group-item-success {
  color: #ffffff;
}

a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading {
  color: inherit;
}

a.list-group-item-success:hover, button.list-group-item-success:hover, a.list-group-item-success:focus, button.list-group-item-success:focus {
  color: #ffffff;
  background-color: #009a75;
}

a.list-group-item-success.active, button.list-group-item-success.active, a.list-group-item-success.active:hover, button.list-group-item-success.active:hover, a.list-group-item-success.active:focus, button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #ffffff;
  border-color: #ffffff;
}

.list-group-item-info {
  color: #b97800;
  background-color: #fff9d9;
  text-shadow: none;
}

a.list-group-item-info, button.list-group-item-info {
  color: #b97800;
}

a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading {
  color: inherit;
}

a.list-group-item-info:hover, button.list-group-item-info:hover, a.list-group-item-info:focus, button.list-group-item-info:focus {
  color: #b97800;
  background-color: #fff5c0;
}

a.list-group-item-info.active, button.list-group-item-info.active, a.list-group-item-info.active:hover, button.list-group-item-info.active:hover, a.list-group-item-info.active:focus, button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #b97800;
  border-color: #b97800;
}

.list-group-item-warning {
  color: #ffffff;
  background-color: #f6be00;
  text-shadow: 1px 1px 1px rgba(185, 120, 0, 0.75);
}

a.list-group-item-warning, button.list-group-item-warning {
  color: #ffffff;
}

a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

a.list-group-item-warning:hover, button.list-group-item-warning:hover, a.list-group-item-warning:focus, button.list-group-item-warning:focus {
  color: #ffffff;
  background-color: #ddaa00;
}

a.list-group-item-warning.active, button.list-group-item-warning.active, a.list-group-item-warning.active:hover, button.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #ffffff;
  border-color: #ffffff;
}

.list-group-item-danger {
  color: #ffffff;
  background-color: #c8102e;
  text-shadow: 1px 1px 1px rgba(100, 8, 23, 0.75);
}

a.list-group-item-danger, button.list-group-item-danger {
  color: #ffffff;
}

a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

a.list-group-item-danger:hover, button.list-group-item-danger:hover, a.list-group-item-danger:focus, button.list-group-item-danger:focus {
  color: #ffffff;
  background-color: #b00e29;
}

a.list-group-item-danger.active, button.list-group-item-danger.active, a.list-group-item-danger.active:hover, button.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #ffffff;
  border-color: #ffffff;
}

/* ======================================================================== Panels ======================================================================== */
.panel-heading {
  margin: 0;
}

.panel-primary {
  border-color: #AF0E27;
}

.panel-primary > .panel-heading {
  color: #ffffff;
  background-color: #c8102e;
  border-color: #AF0E27;
  text-shadow: 1px 1px 1px rgba(100, 8, 23, 0.75);
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #AF0E27;
}

.panel-primary > .panel-heading .badge {
  color: #c8102e;
  background-color: #ffffff;
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #AF0E27;
}

.panel-success {
  border-color: #189C7A;
}

.panel-success > .panel-heading {
  color: #ffffff;
  background-color: #00b388;
  border-color: #189C7A;
  text-shadow: 1px 1px 1px rgba(0, 89, 80, 0.75);
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #189C7A;
}

.panel-success > .panel-heading .badge {
  color: #00b388;
  background-color: #ffffff;
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #189C7A;
}

.panel-info {
  border-color: #ECD8A5;
}

.panel-info > .panel-heading {
  color: #b97800;
  background-color: #fff9d9;
  border-color: #ECD8A5;
  text-shadow: none;
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ECD8A5;
}

.panel-info > .panel-heading .badge {
  color: #fff9d9;
  background-color: #b97800;
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ECD8A5;
}

.panel-warning {
  border-color: #E6AC00;
}

.panel-warning > .panel-heading {
  color: #ffffff;
  background-color: #f6be00;
  border-color: #E6AC00;
  text-shadow: 1px 1px 1px rgba(185, 120, 0, 0.75);
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #E6AC00;
}

.panel-warning > .panel-heading .badge {
  color: #f6be00;
  background-color: #ffffff;
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #E6AC00;
}

.panel-danger {
  border-color: #78081D;
}

.panel-danger > .panel-heading {
  color: #ffffff;
  background-color: #960C22;
  border-color: #78081D;
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #78081D;
}

.panel-danger > .panel-heading .badge {
  color: #960C22;
  background-color: #ffffff;
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #78081D;
}

.panel-title {
  font-size: 18px;
}

.close {
  filter: alpha(opacity=100);
  opacity: 1;
}

.panel-title > a:hover, .panel-title > a:active, .panel-title > a:focus, .panel-title > small > a:hover, .panel-title > .small > a:hover {
  color: inherit;
}

/* ======================================================================== Navs ======================================================================== */
nav ul, nav ol {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

.nav {
  padding: 0;
}

.nav a {
  text-decoration: none !important;
}

.nav-list > li, .nav-pills > li {
  margin-bottom: 0;
}

.nav-list {
  padding-right: 15px;
  padding-left: 15px;
}

.nav-tabs.nav-stacked > .active > a, .nav-tabs.nav-stacked > .active > a:hover {
  background-color: #c8102e;
  color: white;
}

.nav-tabs > li.disabled > a:hover {
  border-color: transparent;
}

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #c8102e;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #c8102e;
}

.nav > li.disabled > a, .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: rgba(0, 0, 0, 0.5);
}

/* ======================================================================== Navbar ======================================================================== */
.navbar {
  font-family: "Source Sans Pro", sans-serif;
}

.navbar-inner {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding-right: 15px;
  padding-left: 15px;
}

.navbar .nav > li {
  margin-bottom: 0;
}

.navbar .brand {
  padding: 7px 20px;
}

.navbar-text {
  line-height: 20px;
}

.navbar-form input, .navbar-form select, .navbar-form .radio, .navbar-form .checkbox, .navbar-form .btn {
  margin-top: 3px;
  margin-right: 3px;
  margin-bottom: 0;
}

.navbar-form input, .navbar-form select, .navbar-form .btn, .navbar-search .search-query {
  height: 28px;
}

.navbar-form input, .navbar-form select, .navbar-form .btn, .navbar-search .search-query {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-search .search-query {
  font-family: sans-serif;
}

/* ======================================================================== Dropdowns ======================================================================== */
.dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
}

.dropdown-menu li {
  margin-bottom: 0;
}

.dropdown-menu .divider {
  border-bottom: none;
  margin: 5px 1px;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #ffffff;
  background-color: #c8102e;
}

.dropdown-menu > li > a {
  text-decoration: none;
}

/* ======================================================================== Breadcrumbs ======================================================================== */
.breadcrumb {
  background: none;
  border-radius: 0;
  font-family: "Milo";
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  padding: 1em 0;
}

.breadcrumb::after {
  clear: both;
  content: "";
  display: table;
}

.breadcrumb > li {
  float: none;
  margin: 0;
  display: inline;
}

.breadcrumb > li > .divider {
  color: #CBCBCB;
  color: rgba(0, 0, 0, 0.2);
  display: none;
  padding: 0 9px;
}

.breadcrumb .active {
  color: #54585A;
  font-weight: normal;
}

.breadcrumb > li:not(:last-child):after {
  color: inherit;
  content: "> ";
  display: inline;
  padding-left: 0.5em;
  padding-right: 0.3em;
}

.breadcrumb > li + li:before {
  display: none;
}

.breadcrumb a, .breadcrumb a:visited {
  color: #c8102e;
  display: inline;
  text-decoration: none !important;
}

/* ======================================================================== Pagination ======================================================================== */
.pagination ul, .pager {
  padding: 0;
}

.pager a {
  text-decoration: none;
}

.pagination > li > a, .pagination > li > span {
  color: #c8102e;
}

.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
  color: #960C22;
  z-index: 1;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  color: #ffffff;
  background-color: #c8102e;
  border-color: #c8102e;
}

.pager li > a, .pager li > span {
  border-radius: 20px;
}

.pager li > a:hover, .pager li > a:focus {
  color: #960C22;
}

/* ======================================================================== Thumbnails ======================================================================== */
.thumbnails {
  padding: 0;
}

* + .thumbnails {
  margin-top: 24px;
}

.thumbnail {
  border-radius: 4px;
}

.thumbnail figcaption, .thumbnail .caption {
  font-size: 14px;
  line-height: 1.3;
  margin: 5px 0 1px;
  padding: 6px;
}

.thumbnail.pull-right, .thumbnail.pull-left {
  width: 50%;
}

.thumbnail.pull-right img, .thumbnail.pull-left img {
  height: auto;
  max-width: 100%;
  width: 100%;
}

@media screen and (max-width: 480px) {
  .thumbnail.pull-right, .thumbnail.pull-left {
    width: 100%;
  }
}
a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
  border-color: #c8102e;
}

/* ======================================================================== Figures ======================================================================== */
.figure {
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  margin: 0 0 12px;
  padding: 6px;
}

#article-content .figure {
	border:none;
	box-shadow:none;
}

[class*=span].figure {
  float: none;
  margin: 0 0 12px;
}

.figure figcaption {
  font-size: 13px;
  line-height: 18px;
  margin: 5px 0 1px;
  padding: 0;
}

/* ======================================================================== Miscellaneous ======================================================================== */
.caret {
  position: relative;
  vertical-align: middle;
}

.well {
  border-radius: 4px;
}

.well-large {
  border-radius: 6px;
}

/* ======================================================================== Helper classes ======================================================================== */
.pull-right {
  float: right !important;
  margin-left: 24px !important;
}

.pull-left {
  float: left !important;
  margin-right: 24px !important;
}

img.pull-right, img.pull-left, figure.pull-right, figure.pull-left {
  margin-bottom: 24px;
}

img.pull-right, img.pull-left {
  padding: 0;
}

span.hidden-xs {
  display: inline;
}

@media (max-width: 767px) {
  span.hidden-xs {
    display: none;
  }
}
/* ======================================================================== Colors ======================================================================== */
.progress-bar-primary {
  background-color: #00B388;
}

/* ======================================================================== Legacy grid system ======================================================================== */
[class*=span]:not(html) {
  float: left;
  padding: 0 20px;
}

.span16 {
  width: 100%;
}

.span15 {
  width: 93.75%;
}

.span14 {
  width: 87.5%;
}

.span13 {
  width: 81.25%;
}

.span12 {
  width: 75%;
}

.span11 {
  width: 68.75%;
}

.span10 {
  width: 62.5%;
}

.span9 {
  width: 56.25%;
}

.span8 {
  width: 50%;
}

.span7 {
  width: 43.75%;
}

.span6 {
  width: 37.5%;
}

.span5 {
  width: 31.25%;
}

.span4 {
  width: 25%;
}

.span3 {
  width: 18.75%;
}

.span2 {
  width: 12.5%;
}

.span1 {
  width: 6.25%;
}

/* Fluid column widths for nested columns */
.span15 .span15 {
  width: 100%;
}

.span15 .span14 {
  width: 93.33%;
}

.span15 .span13 {
  width: 86.67%;
}

.span15 .span12 {
  width: 80%;
}

.span15 .span11 {
  width: 73.33%;
}

.span15 .span10 {
  width: 66.67%;
}

.span15 .span9 {
  width: 60%;
}

.span15 .span8 {
  width: 53.33%;
}

.span15 .span7 {
  width: 46.67%;
}

.span15 .span6 {
  width: 40%;
}

.span15 .span5 {
  width: 33.33%;
}

.span15 .span4 {
  width: 26.67%;
}

.span15 .span3 {
  width: 20%;
}

.span15 .span2 {
  width: 13.33%;
}

.span15 .span1 {
  width: 6.67%;
}

.span14 .span14 {
  width: 100%;
}

.span14 .span13 {
  width: 92.86%;
}

.span14 .span12 {
  width: 85.71%;
}

.span14 .span11 {
  width: 78.57%;
}

.span14 .span10 {
  width: 71.43%;
}

.span14 .span9 {
  width: 64.29%;
}

.span14 .span8 {
  width: 57.14%;
}

.span14 .span7 {
  width: 50%;
}

.span14 .span6 {
  width: 42.86%;
}

.span14 .span5 {
  width: 35.71%;
}

.span14 .span4 {
  width: 28.57%;
}

.span14 .span3 {
  width: 21.43%;
}

.span14 .span2 {
  width: 14.29%;
}

.span14 .span1 {
  width: 7.14%;
}

.span13 .span13 {
  width: 100%;
}

.span13 .span12 {
  width: 92.31%;
}

.span13 .span11 {
  width: 84.62%;
}

.span13 .span10 {
  width: 76.92%;
}

.span13 .span9 {
  width: 69.23%;
}

.span13 .span8 {
  width: 61.54%;
}

.span13 .span7 {
  width: 53.85%;
}

.span13 .span6 {
  width: 46.15%;
}

.span13 .span5 {
  width: 38.46%;
}

.span13 .span4 {
  width: 30.77%;
}

.span13 .span3 {
  width: 23.08%;
}

.span13 .span2 {
  width: 15.38%;
}

.span13 .span1 {
  width: 7.69%;
}

.span12 .span12 {
  width: 100%;
}

.span12 .span11 {
  width: 91.67%;
}

.span12 .span10 {
  width: 83.33%;
}

.span12 .span9 {
  width: 75%;
}

.span12 .span8 {
  width: 66.67%;
}

.span12 .span7 {
  width: 58.33%;
}

.span12 .span6 {
  width: 50%;
}

.span12 .span5 {
  width: 41.67%;
}

.span12 .span4 {
  width: 33.33%;
}

.span12 .span3 {
  width: 25%;
}

.span12 .span2 {
  width: 16.67%;
}

.span12 .span1 {
  width: 8.33%;
}

.span11 .span11 {
  width: 100%;
}

.span11 .span10 {
  width: 90.91%;
}

.span11 .span9 {
  width: 81.82%;
}

.span11 .span8 {
  width: 72.73%;
}

.span11 .span7 {
  width: 63.64%;
}

.span11 .span6 {
  width: 54.55%;
}

.span11 .span5 {
  width: 45.45%;
}

.span11 .span4 {
  width: 36.36%;
}

.span11 .span3 {
  width: 27.27%;
}

.span11 .span2 {
  width: 18.18%;
}

.span11 .span1 {
  width: 9.09%;
}

.span10 .span10 {
  width: 100%;
}

.span10 .span9 {
  width: 90%;
}

.span10 .span8 {
  width: 80%;
}

.span10 .span7 {
  width: 70%;
}

.span10 .span6 {
  width: 60%;
}

.span10 .span5 {
  width: 50%;
}

.span10 .span4 {
  width: 40%;
}

.span10 .span3 {
  width: 30%;
}

.span10 .span2 {
  width: 20%;
}

.span10 .span1 {
  width: 10%;
}

.span9 .span9 {
  width: 100%;
}

.span9 .span8 {
  width: 88.89%;
}

.span9 .span7 {
  width: 77.78%;
}

.span9 .span6 {
  width: 66.67%;
}

.span9 .span5 {
  width: 55.56%;
}

.span9 .span4 {
  width: 44.44%;
}

.span9 .span3 {
  width: 33.33%;
}

.span9 .span2 {
  width: 22.22%;
}

.span9 .span1 {
  width: 11.11%;
}

.span8 .span8 {
  width: 100%;
}

.span8 .span7 {
  width: 87.5%;
}

.span8 .span6 {
  width: 75%;
}

.span8 .span5 {
  width: 62.5%;
}

.span8 .span4 {
  width: 50%;
}

.span8 .span3 {
  width: 37.5%;
}

.span8 .span2 {
  width: 25%;
}

.span8 .span1 {
  width: 12.5%;
}

.span7 .span7 {
  width: 100%;
}

.span7 .span6 {
  width: 85.71%;
}

.span7 .span5 {
  width: 71.43%;
}

.span7 .span4 {
  width: 57.14%;
}

.span7 .span3 {
  width: 42.86%;
}

.span7 .span2 {
  width: 28.57%;
}

.span7 .span1 {
  width: 14.29%;
}

.span6 .span6 {
  width: 100%;
}

.span6 .span5 {
  width: 83.33%;
}

.span6 .span4 {
  width: 66.67%;
}

.span6 .span3 {
  width: 50%;
}

.span6 .span2 {
  width: 33.33%;
}

.span6 .span1 {
  width: 16.67%;
}

.span5 .span5 {
  width: 100%;
}

.span5 .span4 {
  width: 80%;
}

.span5 .span3 {
  width: 60%;
}

.span5 .span2 {
  width: 40%;
}

.span5 .span1 {
  width: 20%;
}

.span4 .span4 {
  width: 100%;
}

.span4 .span3 {
  width: 75%;
}

.span4 .span2 {
  width: 50%;
}

.span4 .span1 {
  width: 25%;
}

.span3 .span3 {
  width: 100%;
}

.span3 .span2 {
  width: 66.67%;
}

.span3 .span1 {
  width: 33.33%;
}

.span2 .span2 {
  width: 100%;
}

.span2 .span1 {
  width: 50%;
}

.span1 .span1 {
  width: 100%;
}

/* * IE8 and below */
.lt-ie9 .col-sm-1, .lt-ie9 .col-sm-2, .lt-ie9 .col-sm-3, .lt-ie9 .col-sm-4, .lt-ie9 .col-sm-5, .lt-ie9 .col-sm-6, .lt-ie9 .col-sm-7, .lt-ie9 .col-sm-8, .lt-ie9 .col-sm-9, .lt-ie9 .col-sm-10, .lt-ie9 .col-sm-11, .lt-ie9 .col-sm-12, .lt-ie9 .col-md-1, .lt-ie9 .col-md-2, .lt-ie9 .col-md-3, .lt-ie9 .col-md-4, .lt-ie9 .col-md-5, .lt-ie9 .col-md-6, .lt-ie9 .col-md-7, .lt-ie9 .col-md-8, .lt-ie9 .col-md-9, .lt-ie9 .col-md-10, .lt-ie9 .col-md-11, .lt-ie9 .col-md-12, .lt-ie9 .col-lg-1, .lt-ie9 .col-lg-2, .lt-ie9 .col-lg-3, .lt-ie9 .col-lg-4, .lt-ie9 .col-lg-5, .lt-ie9 .col-lg-6, .lt-ie9 .col-lg-7, .lt-ie9 .col-lg-8, .lt-ie9 .col-lg-9, .lt-ie9 .col-lg-10, .lt-ie9 .col-lg-11, .lt-ie9 .col-lg-12 {
  float: left;
}

.lt-ie9 .col-sm-12, .lt-ie9 .col-md-12, .lt-ie9 .col-lg-12 {
  width: 100%;
}

.lt-ie9 .col-sm-11, .lt-ie9 .col-md-11, .lt-ie9 .col-lg-11 {
  width: 91.66666667%;
}

.lt-ie9 .col-sm-10, .lt-ie9 .col-md-10, .lt-ie9 .col-lg-10 {
  width: 83.33333333%;
}

.lt-ie9 .col-sm-9, .lt-ie9 .col-md-9, .lt-ie9 .col-lg-9 {
  width: 75%;
}

.lt-ie9 .col-sm-8, .lt-ie9 .col-md-8, .lt-ie9 .col-lg-8 {
  width: 66.66666667%;
}

.lt-ie9 .col-sm-7, .lt-ie9 .col-md-7, .lt-ie9 .col-lg-7 {
  width: 58.33333333%;
}

.lt-ie9 .col-sm-6, .lt-ie9 .col-md-6, .lt-ie9 .col-lg-6 {
  width: 50%;
}

.lt-ie9 .col-sm-5, .lt-ie9 .col-md-5, .lt-ie9 .col-lg-5 {
  width: 41.66666667%;
}

.lt-ie9 .col-sm-4, .lt-ie9 .col-md-4, .lt-ie9 .col-lg-4 {
  width: 33.33333333%;
}

.lt-ie9 .col-sm-3, .lt-ie9 .col-md-3, .lt-ie9 .col-lg-3 {
  width: 25%;
}

.lt-ie9 .col-sm-2, .lt-ie9 .col-md-2, .lt-ie9 .col-lg-2 {
  width: 16.66666667%;
}

.lt-ie9 .col-sm-1, .lt-ie9 .col-md-1, .lt-ie9 .col-lg-1 {
  width: 8.33333333%;
}

@media only screen and (max-width: 480px) {
  [class*=span]:not(html) {
    float: none;
    width: 100% !important;
  }
}
/* ======================================================================== Themes ======================================================================== */
[class*=theme] .modal, [class*=theme] .well, [class*=theme] .panel, [class*=theme] .list-group {
  color: #333333;
}

[class*=theme] .table > thead > tr > td.active, [class*=theme] .table > tbody > tr > td.active, [class*=theme] .table > tfoot > tr > td.active, [class*=theme] .table > thead > tr > th.active, [class*=theme] .table > tbody > tr > th.active, [class*=theme] .table > tfoot > tr > th.active, [class*=theme] .table > thead > tr.active > td, [class*=theme] .table > tbody > tr.active > td, [class*=theme] .table > tfoot > tr.active > td, [class*=theme] .table > thead > tr.active > th, [class*=theme] .table > tbody > tr.active > th, [class*=theme] .table > tfoot > tr.active > th, [class*=theme] .table-striped > tbody > tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.1);
}

[class*=theme] .table-hover > tbody > tr:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.theme-black .table > thead > tr > td.active, .theme-black .table > tbody > tr > td.active, .theme-black .table > tfoot > tr > td.active, .theme-black .table > thead > tr > th.active, .theme-black .table > tbody > tr > th.active, .theme-black .table > tfoot > tr > th.active, .theme-black .table > thead > tr.active > td, .theme-black .table > tbody > tr.active > td, .theme-black .table > tfoot > tr.active > td, .theme-black .table > thead > tr.active > th, .theme-black .table > tbody > tr.active > th, .theme-black .table > tfoot > tr.active > th, .theme-black .table-striped > tbody > tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.2);
}

.theme-black .table-hover > tbody > tr:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.theme-default .table > thead > tr > td.active, .theme-default .table > tbody > tr > td.active, .theme-default .table > tfoot > tr > td.active, .theme-default .table > thead > tr > th.active, .theme-default .table > tbody > tr > th.active, .theme-default .table > tfoot > tr > th.active, .theme-default .table > thead > tr.active > td, .theme-default .table > tbody > tr.active > td, .theme-default .table > tfoot > tr.active > td, .theme-default .table > thead > tr.active > th, .theme-default .table > tbody > tr.active > th, .theme-default .table > tfoot > tr.active > th, .theme-default .table-striped > tbody > tr:nth-of-type(odd), .theme-cream .table > thead > tr > td.active, .theme-cream .table > tbody > tr > td.active, .theme-cream .table > tfoot > tr > td.active, .theme-cream .table > thead > tr > th.active, .theme-cream .table > tbody > tr > th.active, .theme-cream .table > tfoot > tr > th.active, .theme-cream .table > thead > tr.active > td, .theme-cream .table > tbody > tr.active > td, .theme-cream .table > tfoot > tr.active > td, .theme-cream .table > thead > tr.active > th, .theme-cream .table > tbody > tr.active > th, .theme-cream .table > tfoot > tr.active > th, .theme-cream .table-striped > tbody > tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.theme-default .table-hover > tbody > tr:hover, .theme-cream .table-hover > tbody > tr:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

[class*=theme] a:not(.btn), [class*=theme] .btn-link {
  color: #FFF9D9;
  text-decoration: underline;
}

.theme-default a:not(.btn),
.theme-default .btn-link,
.theme-light-gray a:not(.btn),
.theme-light-gray .btn-link,
.theme-cream a:not(.btn),
.theme-cream .btn-link {
  color: #c81023;
}

.theme-default .btn-link,
.theme-light-gray .btn-link,
.theme-cream .btn-link {
  text-decoration: none;
}

.section-links li a {
	text-decoration:none !important;
}


.theme-default a:not(.btn):hover, .theme-default .btn-link:hover, .theme-light-gray a:not(.btn):hover, .theme-light-gray .btn-link:hover, .theme-cream a:not(.btn):hover, .theme-cream .btn-link:hover {
  color: #960C22;
  /*text-decoration: underline;
   */
}

[class*=theme] .dropdown-menu > li > a, [class*=theme] .dropdown-menu > li > a:hover {
  color: #333;
  text-decoration: none;
}

[class*=theme] .nav > li.active > a, [class*=theme] .nav > li.disabled > a {
  text-decoration: none;
}

[class*=theme] .nav > li:not(.active):not(.disabled) > a:hover, [class*=theme] .nav > li:not(.active):not(.disabled) > a:focus {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: transparent transparent #ddd;
  text-decoration: underline;
}

.theme-black .nav > li:not(.active):not(.disabled) > a:hover, .theme-black .nav > li:not(.active):not(.disabled) > a:focus {
  background-color: rgba(255, 255, 255, 0.3);
}

.theme-default .nav > li:not(.active):not(.disabled) > a:hover, .theme-default .nav > li:not(.active):not(.disabled) > a:focus, .theme-light-gray .nav > li:not(.active):not(.disabled) > a:hover, .theme-light-gray .nav > li:not(.active):not(.disabled) > a:focus, .theme-cream .nav > li:not(.active):not(.disabled) > a:hover, .theme-cream .nav > li:not(.active):not(.disabled) > a:focus {
  text-decoration: none;
}

.theme-default .nav > li:not(.active):not(.disabled) > a:hover, .theme-default .nav > li:not(.active):not(.disabled) > a:focus, .theme-light-gray .nav > li:not(.active):not(.disabled) > a:hover, .theme-light-gray .nav > li:not(.active):not(.disabled) > a:focus, .theme-cream .nav > li:not(.active):not(.disabled) > a:hover, .theme-cream .nav > li:not(.active):not(.disabled) > a:focus {
  background-color: rgba(0, 0, 0, 0.1);
  border-color: transparent transparent #ddd;
}

[class*=theme] .nav-tabs > li.active > a, [class*=theme] .nav-tabs > li.active > a:hover, [class*=theme] .nav-tabs > li.active > a:focus {
  background-color: white;
}

[class*=theme] .pagination > li > a:not(.btn), [class*=theme] .pager li > a:not(.btn), [class*=theme] .list-group a:not(.btn), [class*=theme] .well a:not(.btn), [class*=theme] .modal a:not(.btn), [class*=theme] .panel a:not(.btn) {
  color: #c8102e;
  text-decoration: none;
}

[class*=theme] .pagination > li > a:not(.btn):hover, [class*=theme] .pagination > li > a:not(.btn):focus, [class*=theme] .pager li > a:not(.btn):hover, [class*=theme] .pager li > a:not(.btn):focus {
  color: #960C22;
}

[class*=theme] .pagination > .active > a:not(.btn), [class*=theme] .pagination > .active > a:not(.btn):hover, [class*=theme] .pagination > .active > a:not(.btn):focus {
  color: white;
}

[class*=theme] .pager .disabled a:not(.btn), [class*=theme] .pager .disabled a:not(.btn):hover, [class*=theme] .pager .disabled a:not(.btn):focus {
  color: #777;
}

[class*=theme] .list-group a.list-group-item {
  color: #555;
}

[class*=theme] .list-group .list-group-item.active, [class*=theme] .list-group .list-group-item.active:hover, [class*=theme] .list-group .list-group-item.active:focus {
  color: white;
}

[class*=theme] .alert-success .alert-link {
  color: #FFF9D9;
}

[class*=theme] .alert-info .alert-link {
  color: inherit;
}

[class*=theme] .alert-warning .alert-link {
  color: inherit;
}

[class*=theme] .alert-danger .alert-link {
  color: #FFF9D9;
}

[class*=theme] .alert .alert-link {
  text-decoration: underline;
}

[class*=theme]:not(.theme-default):not(.theme-cream):not(.theme-light-gray) .breadcrumb .active {
  color: white;
}

.theme-default .breadcrumb a:hover, .theme-cream .breadcrumb a:hover {
  text-decoration: underline;
}

[class*=theme]:not(.theme-default):not(.theme-cream):not(.theme-light-gray) .text-muted {
  color: rgba(255, 255, 255, 0.5);
}

.theme-gold .text-warning, .theme-gold .has-warning .help-block, .theme-gold .has-warning .control-label, .theme-gold .has-warning .radio, .theme-gold .has-warning .checkbox, .theme-gold .has-warning .radio-inline, .theme-gold .has-warning .checkbox-inline, .theme-gold .has-warning.radio label, .theme-gold .has-warning.checkbox label, .theme-gold .has-warning.radio-inline label, .theme-gold .has-warning.checkbox-inline label {
  color: #B97800;
}

[class*=theme]:not(.theme-gold):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .text-warning, [class*=theme]:not(.theme-gold):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-warning .help-block, [class*=theme]:not(.theme-gold):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-warning .control-label, [class*=theme]:not(.theme-gold):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-warning .radio, [class*=theme]:not(.theme-gold):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-warning .checkbox, [class*=theme]:not(.theme-gold):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-warning .radio-inline, [class*=theme]:not(.theme-gold):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-warning .checkbox-inline, [class*=theme]:not(.theme-gold):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-warning.radio label, [class*=theme]:not(.theme-gold):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-warning.checkbox label, [class*=theme]:not(.theme-gold):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-warning.radio-inline label, [class*=theme]:not(.theme-gold):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-warning.checkbox-inline label {
  color: #F6BE00;
}

.theme-red .text-danger, .theme-red .has-error .help-block, .theme-red .has-error .control-label, .theme-red .has-error .radio, .theme-red .has-error .checkbox, .theme-red .has-error .radio-inline, .theme-red .has-error .checkbox-inline, .theme-red .has-error.radio label, .theme-red .has-error.checkbox label, .theme-red .has-error.radio-inline label, .theme-red .has-error.checkbox-inline label {
  color: #640817;
}

[class*=theme]:not(.theme-red):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .text-danger, [class*=theme]:not(.theme-red):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-error .help-block, [class*=theme]:not(.theme-red):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-error .control-label, [class*=theme]:not(.theme-red):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-error .radio, [class*=theme]:not(.theme-red):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-error .checkbox, [class*=theme]:not(.theme-red):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-error .radio-inline, [class*=theme]:not(.theme-red):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-error .checkbox-inline, [class*=theme]:not(.theme-red):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-error.radio label, [class*=theme]:not(.theme-red):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-error.checkbox label, [class*=theme]:not(.theme-red):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-error.radio-inline label, [class*=theme]:not(.theme-red):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-error.checkbox-inline label {
  color: #c8102e;
}

.theme-teal .text-success, .theme-teal .has-success .help-block, .theme-teal .has-success .control-label, .theme-teal .has-success .radio, .theme-teal .has-success .checkbox, .theme-teal .has-success .radio-inline, .theme-teal .has-success .checkbox-inline, .theme-teal .has-success.radio label, .theme-teal .has-success.checkbox label, .theme-teal .has-success.radio-inline label, .theme-teal .has-success.checkbox-inline label {
  color: #005950;
}

[class*=theme]:not(.theme-teal):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .text-success, [class*=theme]:not(.theme-teal):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-success .help-block, [class*=theme]:not(.theme-teal):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-success .control-label, [class*=theme]:not(.theme-teal):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-success .radio, [class*=theme]:not(.theme-teal):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-success .checkbox, [class*=theme]:not(.theme-teal):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-success .radio-inline, [class*=theme]:not(.theme-teal):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-success .checkbox-inline, [class*=theme]:not(.theme-teal):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-success.radio label, [class*=theme]:not(.theme-teal):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-success.checkbox label, [class*=theme]:not(.theme-teal):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-success.radio-inline label, [class*=theme]:not(.theme-teal):not(.theme-default):not(.theme-cream):not(.theme-light-gray) .has-success.checkbox-inline label {
  color: #00B388;
}

[class*=theme]:not(.theme-cream):not(.theme-default):not(.theme-light-gray) .text-info {
  color: #FFF9D9;
}

.theme-red, .theme-red .nav-tabs > li.active > a, .theme-red .nav-tabs > li.active > a:hover, .theme-red .nav-tabs > li.active > a:focus {
  background-color: #c8102e;
  color: white;
}

.theme-red .btn-primary:not(:hover):not(:focus):not(:active), .theme-red .alert-danger, .theme-red .bg-primary, .theme-red .label-primary, .theme-red .progress-bar:not(.progress-bar-info):not(.progress-bar-success):not(.progress-bar-warning):not(.progress-bar-danger), .theme-red .table > thead > tr:not(:hover) > td.danger, .theme-red .table > tbody > tr:not(:hover) > td.danger, .theme-red .table > tfoot > tr:not(:hover) > td.danger, .theme-red .table > thead > tr:not(:hover) > th.danger, .theme-red .table > tbody > tr:not(:hover) > th.danger, .theme-red .table > tfoot > tr:not(:hover) > th.danger, .theme-red .table > thead > tr:not(:hover).danger > td, .theme-red .table > tbody > tr:not(:hover).danger > td, .theme-red .table > tfoot > tr:not(:hover).danger > td, .theme-red .table > thead > tr:not(:hover).danger > th, .theme-red .table > tbody > tr:not(:hover).danger > th, .theme-red .table > tfoot > tr:not(:hover).danger > th, .theme-red .btn-primary:not(:hover):not(:focus):not(:active), .theme-red .list-group-item-primary, .theme-red .panel-primary > .panel-heading {
  background-color: #B80F2B;
}

.theme-red .btn-primary:not(:hover):not(:focus):not(:active), .theme-brick .btn-primary:not(:hover):not(:focus):not(:active), .theme-red .alert-danger, .theme-red .has-danger .form-control {
  border-color: #890B20;
}

.theme-red .nav-pills > li.active > a, .theme-red .nav-pills > li.active > a:hover, .theme-red .nav-pills > li.active > a:focus {
  background-color: #960C22;
}

.theme-red .list-group-item.active, .theme-red .list-group-item.active:hover, .theme-red .list-group-item.active:focus, .theme-red .pagination > .active > a:not(.btn), .theme-red .pagination > .active > span, .theme-red .pagination > .active > a:not(.btn):hover, .theme-red .pagination > .active > span:hover, .theme-red .pagination > .active > a:not(.btn):focus, .theme-red .pagination > .active > span:focus {
  background-color: #960C22;
  border-color: #960C22;
}

#banner + .theme-red {
  box-shadow: inset 0 20px 20px -20px rgba(148, 11, 36, 0.5);
}

.theme-red + #content-info {
  box-shadow: 0 -20px 20px -20px rgba(148, 11, 36, 0.5);
}

.theme-brick, .theme-brick .nav-tabs > li.active > a, .theme-brick .nav-tabs > li.active > a:hover, .theme-brick .nav-tabs > li.active > a:focus {
  background-color: #960c22;
  color: white;
}

.theme-brick .btn-danger:not(:hover):not(:focus):not(:active), .theme-chocolate .btn-danger:not(:hover):not(:focus):not(:active), .theme-brick .alert-danger, .theme-brick .bg-danger, .theme-brick .label-danger, .theme-brick .progress-bar-danger, .theme-brick .table > thead > tr:not(:hover) > td.danger, .theme-brick .table > tbody > tr:not(:hover) > td.danger, .theme-brick .table > tfoot > tr:not(:hover) > td.danger, .theme-brick .table > thead > tr:not(:hover) > th.danger, .theme-brick .table > tbody > tr:not(:hover) > th.danger, .theme-brick .table > tfoot > tr:not(:hover) > th.danger, .theme-brick .table > thead > tr:not(:hover).danger > td, .theme-brick .table > tbody > tr:not(:hover).danger > td, .theme-brick .table > tfoot > tr:not(:hover).danger > td, .theme-brick .table > thead > tr:not(:hover).danger > th, .theme-brick .table > tbody > tr:not(:hover).danger > th, .theme-brick .table > tfoot > tr:not(:hover).danger > th, .theme-brick .btn-danger:not(:hover):not(:focus):not(:active), .theme-brick .list-group-item-danger, .theme-brick .panel-danger > .panel-heading {
  background-color: #890B20;
}

.theme-brick .btn-danger:not(:hover):not(:focus):not(:active), .theme-chocolate .btn-danger:not(:hover):not(:focus):not(:active), .theme-brick .alert-danger, .theme-chocolate .alert-danger, .theme-brick .panel-danger, .theme-chocolate .panel-danger {
  border-color: #550714;
}

.theme-chocolate, .theme-chocolate .nav-tabs > li.active > a, .theme-chocolate .nav-tabs > li.active > a:hover, .theme-chocolate .nav-tabs > li.active > a:focus {
  background-color: #640817;
  color: white;
}

.theme-teal, .theme-teal .nav-tabs > li.active > a, .theme-teal .nav-tabs > li.active > a:hover, .theme-teal .nav-tabs > li.active > a:focus {
  background-color: #00b388;
  color: white;
}

.theme-teal .btn-success:not(:hover):not(:focus):not(:active), .theme-green .btn-success:not(:hover):not(:focus):not(:active), .theme-teal .alert-success, .theme-teal .bg-success, .theme-teal .label-success, .theme-teal .progress-bar-success, .theme-teal .table > thead > tr:not(:hover) > td.success, .theme-teal .table > tbody > tr:not(:hover) > td.success, .theme-teal .table > tfoot > tr:not(:hover) > td.success, .theme-teal .table > thead > tr:not(:hover) > th.success, .theme-teal .table > tbody > tr:not(:hover) > th.success, .theme-teal .table > tfoot > tr:not(:hover) > th.success, .theme-teal .table > thead > tr:not(:hover).success > td, .theme-teal .table > tbody > tr:not(:hover).success > td, .theme-teal .table > tfoot > tr:not(:hover).success > td, .theme-teal .table > thead > tr:not(:hover).success > th, .theme-teal .table > tbody > tr:not(:hover).success > th, .theme-teal .table > tfoot > tr:not(:hover).success > th, .theme-teal .btn-success:not(:hover):not(:focus):not(:active), .theme-teal .list-group-item-success, .theme-teal .panel-success > .panel-heading {
  background-color: #00A37D;
}

.theme-teal .btn-success:not(:hover):not(:focus):not(:active), .theme-green .btn-success:not(:hover):not(:focus):not(:active), .theme-teal .alert-success, .theme-green .alert-success, .theme-teal .panel-success, .theme-green .panel-success, .theme-teal .has-success .form-control, .theme-green .has-success .form-control {
  border-color: #00755E;
}

.theme-green, .theme-green .nav-tabs > li.active > a, .theme-green .nav-tabs > li.active > a:hover, .theme-green .nav-tabs > li.active > a:focus {
  background-color: #00866c;
  color: white;
}

.theme-forest, .theme-forest .nav-tabs > li.active > a, .theme-forest .nav-tabs > li.active > a:hover, .theme-forest .nav-tabs > li.active > a:focus {
  background-color: #005950;
  color: white;
}

.theme-gold, .theme-gold .nav-tabs > li.active > a, .theme-gold .nav-tabs > li.active > a:hover, .theme-gold .nav-tabs > li.active > a:focus {
  background-color: #f6be00;
  color: white;
}

.theme-gold .btn-warning:not(:hover):not(:focus):not(:active), .theme-mustard .btn-warning:not(:hover):not(:focus):not(:active), .theme-gold .alert-warning, .theme-gold .bg-warning, .theme-gold .label-warning, .theme-gold .progress-bar-warning, .theme-gold .table > thead > tr:not(:hover) > td.warning, .theme-gold .table > tbody > tr:not(:hover) > td.warning, .theme-gold .table > tfoot > tr:not(:hover) > td.warning, .theme-gold .table > thead > tr:not(:hover) > th.warning, .theme-gold .table > tbody > tr:not(:hover) > th.warning, .theme-gold .table > tfoot > tr:not(:hover) > th.warning, .theme-gold .table > thead > tr:not(:hover).warning > td, .theme-gold .table > tbody > tr:not(:hover).warning > td, .theme-gold .table > tfoot > tr:not(:hover).warning > td, .theme-gold .table > thead > tr:not(:hover).warning > th, .theme-gold .table > tbody > tr:not(:hover).warning > th, .theme-gold .table > tfoot > tr:not(:hover).warning > th, .theme-gold .btn-warning:not(:hover):not(:focus):not(:active), .theme-gold .list-group-item-warning, .theme-gold .panel-warning > .panel-heading {
  background-color: #E6B000;
}

.theme-gold .btn-warning:not(:hover):not(:focus):not(:active), .theme-mustard .btn-warning:not(:hover):not(:focus):not(:active), .theme-gold .alert-warning, .theme-mustard .alert-warning, .theme-gold .panel-warning, .theme-mustard .panel-warning, .theme-gold .has-warning .form-control, .theme-mustard .has-warning .form-control {
  border-color: #C78F00;
}

.theme-mustard, .theme-mustard .nav-tabs > li.active > a, .theme-mustard .nav-tabs > li.active > a:hover, .theme-mustard .nav-tabs > li.active > a:focus {
  background-color: #d89b00;
  color: white;
}

.theme-ocher, .theme-ocher .nav-tabs > li.active > a, .theme-ocher .nav-tabs > li.active > a:hover, .theme-ocher .nav-tabs > li.active > a:focus {
  background-color: #b97800;
  color: white;
}

.theme-gray, .theme-gray .nav-tabs > li.active > a, .theme-gray .nav-tabs > li.active > a:hover, .theme-gray .nav-tabs > li.active > a:focus {
  background-color: #888b8d;
  color: white;
}

.theme-slate, .theme-slate .nav-tabs > li.active > a, .theme-slate .nav-tabs > li.active > a:hover, .theme-slate .nav-tabs > li.active > a:focus {
  background-color: #54585a;
  color: white;
}

.theme-black, .theme-black .nav-tabs > li.active > a, .theme-black .nav-tabs > li.active > a:hover, .theme-black .nav-tabs > li.active > a:focus {
  background-color: black;
  color: white;
}

.theme-black .nav > li.disabled > a, .theme-black .nav > li.disabled > a:hover, .theme-black .nav > li.disabled > a:focus, .theme-black .breadcrumb > li > .divider {
  color: #54585A;
}

.theme-black .tooltip-inner {
  background-color: #54585A;
}

.theme-black .tooltip.top .tooltip-arrow, .theme-black .tooltip.top-left .tooltip-arrow, .theme-black .tooltip.top-right .tooltip-arrow {
  border-top-color: #54585A;
}

.theme-black .tooltip.right .tooltip-arrow {
  border-right-color: #54585A;
}

.theme-black .tooltip.left .tooltip-arrow {
  border-left-color: #54585A;
}

.theme-black .tooltip.bottom .tooltip-arrow, .theme-black .tooltip.bottom-left .tooltip-arrow, .theme-black .tooltip.bottom-right .tooltip-arrow {
  border-bottom-color: #54585A;
}

.theme-light-gray {
  background-color: hsl(0, 0%, 95%);
}

.theme-cream, .theme-cream .nav-tabs > li.active > a, .theme-cream .nav-tabs > li.active > a:hover, .theme-cream .nav-tabs > li.active > a:focus {
  background-color: #fff9d9;
}

.theme-cream .bg-info, .theme-cream .label-info, .theme-cream .alert-info, .theme-cream .progress-bar-info, .theme-cream .table > thead > tr:not(:hover) > td.info, .theme-cream .table > tbody > tr:not(:hover) > td.info, .theme-cream .table > tfoot > tr:not(:hover) > td.info, .theme-cream .table > thead > tr:not(:hover) > th.info, .theme-cream .table > tbody > tr:not(:hover) > th.info, .theme-cream .table > tfoot > tr:not(:hover) > th.info, .theme-cream .table > thead > tr:not(:hover).info > td, .theme-cream .table > tbody > tr:not(:hover).info > td, .theme-cream .table > tfoot > tr:not(:hover).info > td, .theme-cream .table > thead > tr:not(:hover).info > th, .theme-cream .table > tbody > tr:not(:hover).info > th, .theme-cream .table > tfoot > tr:not(:hover).info > th, .theme-cream .btn-info:not(:hover):not(:focus):not(:active), .theme-cream .list-group-item-info, .theme-cream .panel-info > .panel-heading {
  background-color: #F6ECB1;
}

.theme-cream .btn-info:not(:hover):not(:focus):not(:active), .theme-cream .alert-info, .theme-cream .panel-info, .theme-cream .has-info .form-control {
  border-color: #D69A20;
}

.theme-cream .progress {
  background: white;
}

blockquote {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  line-height: 1.5;
  margin: 1.5em 0;
}

h1, h2, h3 {
  /*font-weight: normal;*/
  /*margin: 30px 0 15px;*/
}

.feature {
  margin-bottom: 15px;
}

.feature img {
  width: 100%;
}

.lead {
  font-size: 1.5em;
  font-weight: 200;
  line-height: 1.25;
  -webkit-text-stroke: 0.25px;
}

[href^=tel] {
  display: inline-block;
}




main li a[href*=".pdf"]:not(:has(img))::before,
main td a[href*=".pdf"]:not(:has(img))::before,
main p a[href*=".pdf"]:not(:has(img))::before,
main .panel-body a[href*=".pdf"]:not(:has(img))::before,
{
  content: "";
  display: inline-block;
  margin-right: 0.2em;
  background: url("/_resources/images/pdf-icon-small.gif");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
}

 a[href*=".pdf"].btn::before {
/*  display: none !important; */
}

.page-section a.no-icon:before,
#page a.no-icon:before {
  background: none;
  margin: 0;
  width: 0;
  height: 0;
}

/* ========================================================================
 Embedded Content
 ======================================================================== */
iframe.youtube {
  margin-top: 15px;
  margin-bottom: 15px;
}

.addthis_toolbox:empty {
  /*display: none;*/
}

.addthis_toolbox {
  /*background: #f7f7f7;*/
  /*border: 1px solid #ccc;*/
  /*border-radius: 4px;*/
  /*margin-bottom: 18px;*/
  /*padding: 10px 0 0 10px;*/
}

.addthis_toolbox .addthis_button_facebook_like iframe {
  /*width: 85px !important;*/
}

.addthis_toolbox .twitter-share-button {
  /*width: 90px !important;*/
}

.addthis_toolbox iframe {
  /*margin: 0;*/
}

.addthis_toolbox *,
#at20mc * {
  /*-webkit-box-sizing: content-box;*/
  /*   -moz-box-sizing: content-box;*/
  /*    -ms-box-sizing: content-box;*/
  /*        box-sizing: content-box;*/
}

/* ========================================================================
 Secondary Navigation
 ======================================================================== */
.nav-secondary {
  font-size: 16px;
  margin: 30px 0;
}

@media screen and (min-width: 992px) {
  .nav-secondary {
    float: left;
    padding: 0 20px;
    width: 25%;
    /* margin-top: 0; */
  }
}
.nav-secondary > nav,
.nav-secondary > div,
#sidebar > nav,
#sidebar > div,
#sidebar > article {
  margin: 30px 0;
}

.nav-secondary > h2 + nav,
.nav-secondary > h2 + div,
#sidebar > h2 + nav,
#sidebar > h2 + div,
#sidebar > h2 + article,
.nav-secondary > div:first-child {
  margin-top: 0;
}

.site-title,
.nav-secondary > * h3,
#sidebar > * h3 {
  border-bottom: 1px dotted #CBCBCB;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.125em;
  line-height: 21px;
  margin: 0 0 12px;
  padding: 0 0 12px;
  text-transform: uppercase;
}

.site-title,
.nav-secondary > * h4,
#sidebar > * h4 {
  border-bottom: 1px dotted #CBCBCB;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.125em;
  line-height: 21px;
  margin: 0 0 12px;
  padding: 0 0 12px;
  text-transform: uppercase;
}

.site-title a {
  text-decoration: none;
}

.related-links {
  font-size: 16px;
  margin: 30px 0;
}

.related-links ul {
  list-style: none;
  list-style-image: none;
  margin: 6px 0 0;
  padding: 0;
}

.nav-secondary li,
.related-links li {
  margin: 0;
  padding: 0;
}

.nav-secondary li a,
.related-links li a {
  display: block;
  line-height: 21px;
  padding: 7px 10px 7px;
  background: white;
  margin-left: -10px;
  text-decoration: none;
}

.nav-secondary .selected ul,
.nav-secondary .opened ul {
  padding-left: 10px;
}

.nav-secondary .selected a,
.nav-secondary .opened a {
  background: #f2f2f2;
  padding-left: 10px;
}

.nav-secondary .selected > a {
  background: #c8102e;
  color: white;
}

.nav-secondary .opened > a {
  background: #E6E6E6;
}

.nav-secondary .contact h4,
.nav-secondary .contact h6 {
  margin: 0 0 9px;
}

.nav-secondary .contact p,
.nav-secondary .contact address {
  line-height: 1.5rem;
  margin-top: 0;
  margin-bottom: 9px;
}

.nav-secondary .social-media {
  list-style: none;
  margin: 15px 0 30px;
  padding: 0;
}

.nav-secondary .social-media li {
  border: none;
  display: block;
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}

.nav-secondary .social-media li a {
  display: block;
  height: 32px;
  margin-left: 0;
  width: 32px;
}

.nav-secondary h2 a:hover,
.nav-secondary nav[role=navigation] a:hover {
  text-decoration: none;
}

.lt-ie10 .nav-secondary h2 a:hover,
.lt-ie10 .nav-secondary nav[role=navigation] a:hover {
  text-decoration: underline;
}

/*
* Secondary navigation hover effects
*/
.nav-secondary nav[role=navigation] a {
  -webkit-transition: background 0.1s linear 0.1s, padding 0.3s ease 0.1s;
  transition: background 0.1s linear 0.1s, padding 0.3s ease 0.1s;
}

.nav-secondary nav[role=navigation] a:hover {
  background: #f2f2f2;
  padding-left: 10px;
}

.nav-secondary nav[role=navigation] > ul > li > a:hover {
  padding-right: 0;
}

.lt-ie10 .nav-secondary nav[role=navigation] a:hover {
  background: none;
  padding-left: 0;
}

.lt-ie10 .nav-secondary nav[role=navigation] > ul > li > a:hover {
  padding-right: 0;
}

.lt-ie10 .nav-secondary nav[role=navigation] .selected a:hover,
.lt-ie10 .nav-secondary nav[role=navigation] .opened a:hover {
  padding-left: 10px !important;
}

.nav-secondary nav[role=navigation] .opened > a:hover {
  background: #d9d9d9 !important;
}

.nav-secondary nav[role=navigation] .selected > a:hover {
  background: #c8102e !important;
}

.nav-secondary nav[role=navigation] .opened > ul a:hover,
.nav-secondary nav[role=navigation] .selected > ul a:hover {
  background: #e5e5e5;
}

.lt-ie10 .nav-secondary nav[role=navigation] .opened > ul a:hover,
.lt-ie10 .nav-secondary nav[role=navigation] .selected > ul a:hover {
  background: #f2f2f2;
}

.lt-ie10 .nav-secondary nav[role=navigation] .opened > a:hover {
  background: #e6e6e6 !important;
}

@media screen and (max-width: 767px) {
  .nav-secondary {
    float: none;
    width: 100%;
    -webkit-box-ordinal-group: 99;
    -moz-box-ordinal-group: 99;
    -webkit-order: 99;
    -ms-flex-order: 99;
    order: 99;
    padding: 0 20px;
  }
}
/* ========================================================================
 Main Content
 ======================================================================== */
.home-page #wrap {
  overflow: visible;
}

#page {
  /*display: flex;*/
  /*flex-direction: row;*/
  /*flex-wrap: nowrap;*/
  margin-top: 1rem;
}

#page:first-child {
  margin-top: 15px;
}

#page #main-content {
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (min-width: 768px) {
  #page #main-content:not([class*=span]) {
    float: left;
    width: 75%;
  }
}
#page #main-content.span16 {
  width: 100%;
}

#main header h1,
#page header h1 {
  /*border-bottom: 1px dotted #CBCBCB;*/
  /*border-bottom: 1px dotted rgba(0,0,0,.2);*/
  font-family: "League Gothic", sans-serif;
  font-weight: normal;
  font-size: 3rem;
  letter-spacing: 0;
  line-height: 1.0625;
  line-height: calc(1em + 3px);
  margin-top: 1rem;
  margin-bottom: 1rem;
  /*padding: 10px 0;*/
}

#main header h1 small,
#page header h1 small {
  display: block;
  margin: 1.25rem 0;
  position: relative;
  /* top: 4px; */
}

#announcement {
  /*font-family: 'Crimson', serif;*/
  font-size: 1.125rem;
  line-height: 1.5;
  /*line-height: calc(1.5em - 3px);*/
  margin: 0 0 1em;
  padding-bottom: 15px;
}

#content-well {
  /*font-family: 'Crimson', serif;*/
  font-size: 1.125rem;
  line-height: 1.5;
  /*line-height: calc(1.5em - 3px);*/
  padding-bottom: 30px;
}

#content-well > h2:first-child {
  margin-top: 18px;
}

#content-well > table:first-child {
  margin-top: 9px;
}

.feature {
  margin-bottom: 18px;
}

@media screen and (max-width: 767px) {
  #page {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
  }
  #main,
  #main-content {
    float: none;
    width: 100%;
  }
  #announcement [class*=span] {
    width: 100%;
  }
}
/* ========================================================================
 Sidebar
 ======================================================================== */
#sidebar {
  line-height: 21px;
  position: relative;
}

#sidebar > img {
  width: 100%;
}

#sidebar .featured-image,
#sidebar .sidebar-image {
  display: block;
  margin-bottom: 30px;
  width: 100%;
}

#sidebar .featured-image + *,
#sidebar .sidebar-image + * {
  margin-top: 0;
}

#sidebar .featured-image + .module.affix,
#sidebar .sidebar-image + .module.affix {
  margin-top: 30px;
}

/* ========================================================================
 Articles
 ======================================================================== */
.hentry h2 a {
  text-decoration: none;
}

.hentry time {
  display: block;
  margin-bottom: 15px;
}

.hentry footer {
  clear: both;
}

time + .author {
  margin-top: 0;
}

.author {
  margin-top: 15px;
  margin-bottom: 0;
}

.date {
  font-weight: bold;
  margin: 0;
}

.date + h3 {
  margin-top: 6px;
}

/* ========================================================================
 Cascade Server WYSIWYG Generated Classes
 ======================================================================== */
.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft {
  float: left;
  margin: 0 30px 30px 0;
}

.alignright {
  float: right;
  margin: 0 0 30px 30px;
}

/* ========================================================================
 Home Page Feature
 ======================================================================== */
.flexslider {
  display: block;
  position: relative;
  width: 100%;
}

.flexslider li {
  margin: 0;
}

.flexslider figcaption {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.75);
  bottom: 0;
  color: white;
  left: 0;
  margin: 0;
  padding: 15px 15px 10px;
  position: absolute;
  width: 100%;
}

.no-rgba .flexslider figcaption {
  background: transparent url("https://www.uh.edu/css/backgrounds/feature-caption-bg.png") repeat;
}

.flexslider p,
.flexslider h4 {
  margin: 0 0 5px;
  padding: 0;
}

.flexslider h4 {
  color: white;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 24px;
  text-decoration: none;
}

.flexslider p {
  color: white;
  font-size: 15px;
  font-weight: normal;
  line-height: 21px;
}

.flexslider a,
.flexslider a:visited {
  color: white;
  display: block;
  text-decoration: none;
}

/* Browser Resets */
.flex-container a,
.flexslider a,
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* FlexSlider Necessary Styles */
.flexslider {
  padding: 0;
}

.flexslider .slides > li {
  /* Hide the slides before the JS is loaded. Avoids image jumping */
  display: none;
}

.flexslider .slides img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  width: 100%;
}

/* Clearfix for the .slides element */
.slides:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

html[xmlns] .slides {
  display: block;
}

* html .slides {
  height: 1%;
}

/* No JavaScript Fallback */
.no-js .slides > li:first-child {
  display: block;
}

/* Suggested container for "Slide" animation setups. */
.flex-container {
  position: relative;
}

.flexslider {
  margin: 0 0 30px;
  max-height: none;
  position: relative;
  z-index: 0;
}

.flexslider .slides > li {
  position: relative;
}

.flex-direction-nav {
  height: 0;
}

.flex-direction-nav a {
  background: url("https://www.uh.edu/css/backgrounds/feature-arrows.png") no-repeat 0 center;
  cursor: pointer;
  display: block;
  height: 100%;
  margin: -30px 0 0;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  text-indent: -999em;
  top: 30px;
  width: 48px;
  z-index: 9;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.flex-direction-nav a:focus {
  outline: 0;
}

.flexslider:hover .flex-direction-nav a {
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.flex-direction-nav .flex-next {
  background-position: -48px center;
  border-radius: 5px 0 0 5px;
  right: 0;
}

.flex-direction-nav .flex-prev {
  border-radius: 0 5px 5px 0;
  left: 0;
}

.flex-direction-nav .flex-disabled {
  cursor: default;
  opacity: 0.3;
  filter: alpha(opacity=30);
}

.lt-ie9 .home-page .flexslider li {
  height: 288px;
}

@media screen and (max-width: 767px) {
  .flexslider figcaption {
    background: none;
    color: #333;
    margin: 0.8em 0;
    padding: 0;
    position: relative;
  }
  .flexslider figcaption p {
    color: #333;
  }
  .flexslider h4 {
    color: #c8102e;
    font-weight: normal;
  }
}
/* ========================================================================
 Gallery
 ======================================================================== */
#gallery {
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 30px;
  padding: 5px;
}

#carousel {
  margin-top: -13px;
}

#carousel .slides {
  height: 140px;
  overflow: hidden;
}

#carousel li {
  margin-right: 5px;
}

#carousel img {
  border: none;
  cursor: pointer;
  display: block;
  max-height: none;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

#carousel img:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

#carousel .flex-active-slide img {
  cursor: default;
  opacity: 1;
  filter: alpha(opacity=100);
}

#gallery .flexslider figcaption {
  bottom: 0;
  left: 0;
  padding: 15px 15px 10px;
  position: absolute;
  width: 100%;
}

/* ========================================================================
 Modules
 ======================================================================== */
.modules {
  margin-left: -15px;
  margin-right: -15px;
}

.module {
  border: 1px solid #ccc;
  font-size: 16px;
  line-height: 21px;
  margin: 30px 0;
  position: relative;
  width: 100%;
}

.module.affix {
  position: fixed;
}

.module.affix-bottom {
  position: absolute;
}

.module {
  line-height: 21px;
}

.module a {
  text-decoration: none;
}

.module a:hover {
  text-decoration: underline;
}

.module a.btn:hover {
  text-decoration: none;
}

.module img {
  height: auto;
  max-width: 100%;
}

.module p {
  margin: 10px 0;
}

.module ul,
.module ol,
.module dl {
  list-style: none;
  margin: 0;
  padding: 0;
}

.module li {
  border-bottom: 1px solid #ccc;
  margin: 0;
  padding: 10px 15px;
}

.module li > p:last-child,
.module dd > p:last-child {
  margin-bottom: 0;
}

.module ol {
  counter-reset: li; /* Initiate a counter */
}

.module ol > li {
  list-style: none; /* Disable the normal item numbering */
  padding-left: 35px;
  position: relative;
}

.module ol > li:before {
  content: counter(li) "."; /* Use the counter as content */
  counter-increment: li; /* Increment the counter by 1 */
  left: 15px;
  position: absolute;
}

.module ul li:last-child,
.module ol li:last-child,
.module dl dd:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.module p + ol li:first-child {
  border-top: 1px solid #ccc;
}

.module dt {
  margin: 0;
  padding: 9px 15px 0;
}

.module dt:first-of-type {
  border-top: none;
}

.module dd {
  margin: 0;
  padding: 0 15px 9px;
}

.module iframe {
  border: none;
  margin-bottom: -5px;
}

.module header {
  background-color: #f5f5f5;
  padding: 10px 15px;
  position: relative;
}

.module header h4 {
  color: #333;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  margin: 0;
  padding-bottom: 0;
  text-transform: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
}

.module footer {
  background-color: #f5f5f5;
  border-top: 1px solid #ccc;
  bottom: 0;
  color: #333;
  font-size: 15px;
  padding: 10px 15px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
  width: 100%;
}

.uh-home .module footer {
  box-shadow: 0 -1px 6px #ddd;
  position: absolute;
}

.module h5 {
  font-weight: normal;
  margin: 0 0 -2px;
}

.module h5 + p {
  margin-top: 0;
}

@media screen and (max-width: 480px) {
  .module.affix {
    position: static;
  }
}
/* ========================================================================
 RSS Module
 ======================================================================== */
.module-rss {
  font-size: 16px;
  overflow: hidden;
}

.rss-feed {
  overflow-y: scroll;
}

.lt-ie8 .module-rss {
  border: 1px solid #ccc;
}

/* ========================================================================
 News Module
 ======================================================================== */
.module-news {
  font-size: 16px;
  overflow: hidden;
}

.lt-ie8 .module-news {
  border: 1px solid #ccc;
}

/* ========================================================================
 Events Module
 ======================================================================== */
.module-events {
  font-size: 16px;
  overflow: hidden;
}

.lt-ie8 .module-events {
  border: 1px solid #ccc;
}

.module-events dl {
  margin: 0;
}

.module-events dt {
  clear: left;
  display: block;
  float: left;
  font-weight: normal;
  padding: 6px 15px 9px;
  text-align: center;
  width: 54px;
}

.lt-ie8 .module-events dt {
  border-bottom: 1px solid #ccc;
  width: 30px;
}

.module-events dd {
  border-bottom: 1px solid #ccc;
  display: block;
  margin: 0;
  min-height: 42px;
  padding: 6px 15px 9px 54px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -ms-box-sizing: content-box;
  box-sizing: content-box;
}

.lt-ie8 .module-events dd {
  margin-left: 54px;
  padding: 9px 15px 9px 0;
  width: 148px;
}

.module-events dd:last-of-type {
  border-bottom: none;
}

.module-events h5 {
  margin-bottom: -2px;
}

/* ========================================================================
 Twitter Module
 ======================================================================== */
.module-twitter {
  font-size: 16px;
}

.lt-ie8 .module-twitter {
  border: 1px solid #ccc;
}

.module-twitter img {
  display: block;
  float: left;
  height: 36px;
  margin-top: 5px;
  width: 36px;
  border-radius: 4px;
}

.module-twitter h5 {
  margin-bottom: -2px;
  padding: 0 0 0 48px;
}

.module-twitter p {
  padding: 0 0 0 48px;
}

/* ========================================================================
 SPIFF Module
 ======================================================================== */
.module-spiff,
.module-spiff header,
.module-spiff footer {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 6px 0;
}

.module-spiff {
  font-size: 16px;
  overflow: visible;
  padding: 0 20px;
}

[class*=span]:not(html) .module-spiff {
  padding: 0;
  width: 100%;
}

.nav-secondary .module-spiff,
#sidebar .module-spiff {
  padding: 0;
}

.module-spiff header {
  border-bottom: 1px solid #ccc;
}

.module-spiff footer {
  padding: 0;
  position: relative;
}

.module-spiff footer a.btn {
  color: #333;
}

.module-spiff footer a.btn:hover {
  border-bottom: 1px solid #ccc;
  color: #333;
}

.module-spiff h4 {
  border-bottom: 1px dotted #CBCBCB;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.125em;
  line-height: 21px;
  margin: 0 0 12px;
  padding: 0 0 12px;
  text-transform: uppercase;
}

.module-spiff h3,
.module-spiff h6 {
  font-size: 18px;
  font-weight: normal;
  line-height: 21px;
  margin: 12px 0 3px;
}

.module-spiff p {
  line-height: 1.5rem;
  padding: 0;
}

.module-spiff p + p {
  margin: 15px 0 0;
}

.module-spiff figure img,
.module-spiff img {
  border: none;
}

.module-spiff img {
  margin-top: -13px;
  width: 100%;
}

.module-spiff figure figcaption {
  margin: 15px 0;
  padding: 0;
}

.spiff-bank {
  background: #FFF9D9;
  display: block;
  position: relative;
  margin: 0;
  margin: 0 -200px;
  padding: 0 200px;
}

.spiff-bank .module-spiff {
  margin: 30px 0;
}

@media screen and (max-width: 767px) {
  .spiff-bank {
    background: none;
  }
  .module-spiff {
    width: 50%;
  }
  .module-spiff:nth-child(2n+1) {
    clear: left;
  }
}
/* ========================================================================
 Table of Contents
 ======================================================================== */
.table-of-contents {
  font-size: 16px;
  top: 0;
}

.lt-ie8 .table-of-contents {
  border: 1px solid #ccc;
}

.table-of-contents ul {
  background-color: white;
}

.table-of-contents li {
  padding: 0;
}

.table-of-contents li a {
  display: block;
  padding: 7px 15px 7px 15px;
}

.table-of-contents .active a,
.table-of-contents .active a:hover {
  background: #c8102e;
  color: white;
}

.table-of-contents .top-link {
  color: #999;
  display: none;
  font-size: 13px;
  margin-top: 7px;
  position: absolute;
  text-align: center;
  width: 100%;
}

.table-of-contents.affix .top-link,
.table-of-contents.affix-bottom .top-link {
  display: block;
}

.table-of-contents.affix a {
  display: block !important;
}

/*
* Old anchors list styles
*/
#anchors ul {
  margin-top: 18px;
}

#anchors li {
  margin: 0;
}

#anchors.inline ul {
  list-style: none;
  padding: 0;
}

#anchors.inline li {
  border-right: 1px solid #ccc;
  display: inline;
  margin-right: 1px;
  padding-right: 5px;
}

#anchors.inline ul li:last-child {
  border-right: none;
  display: inline;
  margin-right: 0;
  padding-right: 0;
}

/* ========================================================================
 Tactical Nav Horizontal
 ======================================================================== */
#content-well .navTactical {
  margin: 0;
}

#content-well .navTactical ul {
  list-style-type: none;
  margin: 1em 0;
  padding: 0;
}

#content-well .navTactical ul li {
  border: #666 1px;
  border-style: none none none solid;
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0 3px 0 8px;
}

#content-well .navTactical ul li:first-child {
  border: none;
  padding-left: 0;
}

/* ========================================================================
 Links List
 ======================================================================== */
.links-list {
  font-size: 16px;
  list-style: none;
  line-height: 21px;
  margin-top: 0;
  margin-bottom: 30px;
}

.links-list dt {
  border-bottom: 1px dotted #CBCBCB;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  color: #54585A;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.125em;
  line-height: 21px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  text-transform: uppercase;
}

.links-list dd,
.links-list li {
  display: block;
  margin: 12px 0;
}

/* ========================================================================
 Social Media Icons and Glyphicons
 ======================================================================== */
.social-media .email {
  background: transparent url("https://www.uh.edu/images/social/email.png") no-repeat;
}

.social-media .twitter {
  background: transparent url("https://www.uh.edu/images/social/twitter-2.png") no-repeat;
}

.social-media .facebook {
  background: transparent url("https://www.uh.edu/images/social/facebook.png") no-repeat;
}

.social-media .youtube {
  background: transparent url("https://www.uh.edu/images/social/youtube.png") no-repeat;
}

.social-media .google-plus {
  background: transparent url("https://www.uh.edu/images/social/google-plus.png") no-repeat;
}

.social-media .instagram {
  background: transparent url("https://www.uh.edu/images/social/instagram-new.png") no-repeat;
}

.social-media .linkedin {
  background: transparent url("https://www.uh.edu/images/social/linkedin.png") no-repeat;
}

.glyphicon-giving {
  background: transparent url("https://www.uh.edu/css/backgrounds/icon-giving.svg") no-repeat;
  background-size: 100%;
  display: inline-block;
  height: 24px;
  margin: -4px 2.5% 0 -2.5%;
  position: relative;
  padding: 0;
  vertical-align: middle;
  width: 24px;
}

.lt-ie8 .glyphicon-giving {
  margin-top: 7px;
}

.no-inlinesvg .glyphicon-giving {
  background: transparent url("https://www.uh.edu/css/backgrounds/icon-giving.png") no-repeat;
}

/* ========================================================================
 Non-Semantic Helper Classes
 ======================================================================== */
/*
* Image replacement
*/
.ir {
  background-color: transparent;
  border: 0;
  color: transparent !important;
  font: 0/0 a;
  text-indent: -999em; /* still needed for older android devices */
  text-shadow: none;
}

/*
* Hide from both screenreaders and browsers: h5bp.com/u
*/
.hidden {
  display: none !important;
  visibility: hidden;
}

/*
* Hide only visually, but have it available for screenreaders: h5bp.com/v
*/
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
* Extends the .visuallyhidden class to allow the element to be focusable
* when navigated to via the keyboard: h5bp.com/p
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
* Hide visually and from screenreaders, but maintain layout
*/
.invisible {
  visibility: hidden;
}

/*
* Contain floats: h5bp.com/q
*/
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  clear: both;
  zoom: 1;
}

#content-info .social-media {
  clear: both;
  display: block;
  float: right;
  list-style: none;
  margin: 15px 0 0;
  padding: 0 15px;
}

#content-info .social-media:before,
#content-info .social-media:after {
  content: "";
  display: table;
}

#content-info .social-media:after {
  clear: both;
}

#content-info .social-media li {
  display: block;
  float: left;
  margin: 0 10px 0 0;
}

#content-info .social-media li:last-child {
  margin-right: 0;
}

#content-info .social-media a {
  border-radius: 3px;
  display: block;
  height: 40px;
  width: 40px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

#content-info .social-media a:hover {
  background-color: #960c22;
}

#content-info .social-media .facebook {
  background: transparent url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2016.0.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20width%3D%2256.693px%22%20height%3D%2256.693px%22%20viewBox%3D%220%200%2056.693%2056.693%22%20enable-background%3D%22new%200%200%2056.693%2056.693%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M40.43%2C21.739h-7.646v-5.014c0-1.884%2C1.248-2.322%2C2.127-2.322c0.877%2C0%2C5.396%2C0%2C5.396%2C0V6.125l-7.431-0.028%0D%0A%09c-8.248%2C0-10.125%2C6.174-10.125%2C10.125v5.518h-4.77v8.53h4.77c0%2C10.946%2C0%2C24.137%2C0%2C24.137h10.033c0%2C0%2C0-13.32%2C0-24.137h6.771%0D%0A%09L40.43%2C21.739z%22/%3E%0D%0A%3C/svg%3E%0D%0A") no-repeat center center;
  background-size: 30px;
}

#content-info .social-media .google-plus {
  background: transparent url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2016.0.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20width%3D%2256.693px%22%20height%3D%2256.693px%22%20viewBox%3D%220%200%2056.693%2056.693%22%20enable-background%3D%22new%200%200%2056.693%2056.693%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M52.218%2C25.852h-7.512v-7.511c0-0.572-0.465-1.039-1.037-1.039H41.53c-0.576%2C0-1.041%2C0.467-1.041%2C1.039%0D%0A%09%09v7.511h-7.512c-0.572%2C0-1.039%2C0.467-1.039%2C1.041v2.139c0%2C0.574%2C0.467%2C1.039%2C1.039%2C1.039h7.512v7.514%0D%0A%09%09c0%2C0.574%2C0.465%2C1.039%2C1.041%2C1.039h2.139c0.572%2C0%2C1.037-0.465%2C1.037-1.039V30.07h7.512c0.572%2C0%2C1.039-0.465%2C1.039-1.039v-2.139%0D%0A%09%09C53.257%2C26.318%2C52.79%2C25.852%2C52.218%2C25.852z%22/%3E%0D%0A%09%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M26.974%2C32.438c-1.58-1.119-3.017-2.761-3.041-3.265c0-0.918%2C0.082-1.356%2C2.141-2.961%0D%0A%09%09c2.662-2.084%2C4.128-4.823%2C4.128-7.719c0-2.625-0.802-4.957-2.167-6.595h1.059c0.22%2C0%2C0.435-0.068%2C0.609-0.196l2.955-2.141%0D%0A%09%09c0.367-0.264%2C0.521-0.732%2C0.381-1.161c-0.141-0.428-0.537-0.72-0.988-0.72H18.835c-1.445%2C0-2.915%2C0.255-4.356%2C0.751%0D%0A%09%09c-4.816%2C1.66-8.185%2C5.765-8.185%2C9.978c0%2C5.969%2C4.624%2C10.493%2C10.806%2C10.635c-0.121%2C0.474-0.183%2C0.939-0.183%2C1.396%0D%0A%09%09c0%2C0.92%2C0.233%2C1.791%2C0.713%2C2.633c-0.056%2C0-0.109%2C0-0.17%2C0c-5.892%2C0-11.21%2C2.891-13.229%2C7.193c-0.526%2C1.118-0.794%2C2.25-0.794%2C3.366%0D%0A%09%09c0%2C1.086%2C0.278%2C2.132%2C0.826%2C3.113c1.269%2C2.271%2C3.993%2C4.031%2C7.677%2C4.961c1.9%2C0.48%2C3.943%2C0.726%2C6.064%2C0.726%0D%0A%09%09c1.906%2C0%2C3.724-0.246%2C5.403-0.732c5.238-1.521%2C8.625-5.377%2C8.625-9.828C32.032%2C37.602%2C30.659%2C35.045%2C26.974%2C32.438z%20M10.283%2C42.215%0D%0A%09%09c0-3.106%2C3.947-5.832%2C8.446-5.832h0.121c0.979%2C0.013%2C1.934%2C0.156%2C2.834%2C0.433c0.309%2C0.213%2C0.606%2C0.416%2C0.893%2C0.61%0D%0A%09%09c2.084%2C1.421%2C3.461%2C2.357%2C3.844%2C3.861c0.09%2C0.379%2C0.136%2C0.758%2C0.136%2C1.125c0%2C3.869-2.886%2C5.83-8.578%2C5.83%0D%0A%09%09C13.663%2C48.242%2C10.283%2C45.596%2C10.283%2C42.215z%20M14.377%2C12.858c0.703-0.803%2C1.624-1.228%2C2.658-1.228l0.117%2C0.002%0D%0A%09%09c2.921%2C0.086%2C5.716%2C3.342%2C6.229%2C7.257c0.289%2C2.191-0.198%2C4.253-1.301%2C5.509c-0.705%2C0.805-1.613%2C1.229-2.688%2C1.229c0%2C0%2C0%2C0-0.002%2C0%0D%0A%09%09h-0.048c-2.86-0.088-5.716-3.467-6.227-7.377C12.829%2C16.064%2C13.289%2C14.099%2C14.377%2C12.858z%22/%3E%0D%0A%3C/g%3E%0D%0A%3C/svg%3E%0D%0A") no-repeat center center;
  background-size: 30px;
}

#content-info .social-media .instagram {
  background: transparent url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C!--%20Generator%3A%20Adobe%20Illustrator%2019.1.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200)%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%22-611%202957.3%2056.7%2056.7%22%20style%3D%22enable-background%3Anew%20-611%202957.3%2056.7%2056.7%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M-582.7%2C2965.3c6.6%2C0%2C7.4%2C0%2C10%2C0.1c2.4%2C0.1%2C3.7%2C0.5%2C4.6%2C0.9c1.2%2C0.4%2C2%2C1%2C2.9%2C1.9c0.9%2C0.9%2C1.4%2C1.7%2C1.9%2C2.9c0.3%2C0.9%2C0.7%2C2.2%2C0.9%2C4.6c0.1%2C2.6%2C0.1%2C3.4%2C0.1%2C10s0%2C7.4-0.1%2C10c-0.1%2C2.4-0.5%2C3.7-0.9%2C4.6c-0.4%2C1.2-1%2C2-1.9%2C2.9s-1.7%2C1.4-2.9%2C1.9c-0.9%2C0.3-2.2%2C0.7-4.6%2C0.9c-2.6%2C0.1-3.4%2C0.1-10%2C0.1s-7.4%2C0-10-0.1c-2.4-0.1-3.7-0.5-4.6-0.9c-1.2-0.4-2-1-2.9-1.9s-1.4-1.7-1.9-2.9c-0.3-0.9-0.7-2.2-0.9-4.6c-0.1-2.6-0.1-3.4-0.1-10s0-7.4%2C0.1-10c0.1-2.4%2C0.5-3.7%2C0.9-4.6c0.4-1.2%2C1-2%2C1.9-2.9c0.9-0.9%2C1.7-1.4%2C2.9-1.9c0.9-0.3%2C2.2-0.7%2C4.6-0.9C-590.1%2C2965.4-589.3%2C2965.3-582.7%2C2965.3%20M-582.7%2C2960.9c-6.7%2C0-7.6%2C0-10.2%2C0.1c-2.6%2C0.1-4.4%2C0.5-6%2C1.2c-1.6%2C0.6-3%2C1.5-4.4%2C2.9c-1.4%2C1.4-2.2%2C2.8-2.9%2C4.4c-0.6%2C1.6-1%2C3.4-1.2%2C6c-0.1%2C2.6-0.1%2C3.5-0.1%2C10.2c0%2C6.7%2C0%2C7.6%2C0.1%2C10.2c0.1%2C2.6%2C0.5%2C4.4%2C1.2%2C6c0.6%2C1.6%2C1.5%2C3%2C2.9%2C4.4c1.4%2C1.4%2C2.8%2C2.2%2C4.4%2C2.9c1.6%2C0.6%2C3.4%2C1%2C6%2C1.2c2.6%2C0.1%2C3.5%2C0.1%2C10.2%2C0.1c6.7%2C0%2C7.6%2C0%2C10.2-0.1c2.6-0.1%2C4.4-0.5%2C6-1.2c1.6-0.6%2C3-1.5%2C4.4-2.9c1.4-1.4%2C2.2-2.8%2C2.9-4.4c0.6-1.6%2C1-3.4%2C1.2-6c0.1-2.6%2C0.1-3.5%2C0.1-10.2c0-6.7%2C0-7.6-0.1-10.2c-0.1-2.6-0.5-4.4-1.2-6c-0.6-1.6-1.5-3-2.9-4.4c-1.4-1.4-2.8-2.2-4.4-2.9c-1.6-0.6-3.4-1-6-1.2C-575.1%2C2960.9-575.9%2C2960.9-582.7%2C2960.9L-582.7%2C2960.9z%20M-582.7%2C2972.9c-7%2C0-12.7%2C5.7-12.7%2C12.7s5.7%2C12.7%2C12.7%2C12.7s12.7-5.7%2C12.7-12.7S-575.6%2C2972.9-582.7%2C2972.9z%20M-582.7%2C2993.9c-4.6%2C0-8.3-3.7-8.3-8.3c0-4.6%2C3.7-8.3%2C8.3-8.3s8.3%2C3.7%2C8.3%2C8.3C-574.4%2C2990.2-578.1%2C2993.9-582.7%2C2993.9z%20M-569.4%2C2969.4c-1.6%2C0-3%2C1.3-3%2C3s1.3%2C3%2C3%2C3c1.6%2C0%2C3-1.3%2C3-3S-567.8%2C2969.4-569.4%2C2969.4z%22%2F%3E%0A%3C%2Fsvg%3E") no-repeat center center;
  background-size: 30px;
}

#content-info .social-media .linkedin {
  background: transparent url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2016.0.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20width%3D%2256.693px%22%20height%3D%2256.693px%22%20viewBox%3D%220%200%2056.693%2056.693%22%20enable-background%3D%22new%200%200%2056.693%2056.693%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M30.212%2C25.912v-0.077c-0.016%2C0.025-0.033%2C0.052-0.051%2C0.077H30.212z%22/%3E%0D%0A%09%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M49.405%2C3.477H7.285c-2.017%2C0-3.651%2C1.597-3.651%2C3.563v42.612c0%2C1.967%2C1.635%2C3.562%2C3.651%2C3.562h42.12%0D%0A%09%09c2.02%2C0%2C3.654-1.597%2C3.654-3.562V7.041C53.059%2C5.073%2C51.423%2C3.477%2C49.405%2C3.477z%20M18.615%2C45.115H11.15v-22.46h7.466V45.115z%0D%0A%09%09%20M14.883%2C19.588h-0.05c-2.504%2C0-4.124-1.726-4.124-3.88c0-2.203%2C1.67-3.88%2C4.223-3.88c2.555%2C0%2C4.125%2C1.677%2C4.175%2C3.88%0D%0A%09%09C19.107%2C17.862%2C17.486%2C19.588%2C14.883%2C19.588z%20M45.534%2C45.115h-7.465V33.096c0-3.018-1.08-5.078-3.781-5.078%0D%0A%09%09c-2.062%2C0-3.289%2C1.39-3.83%2C2.731c-0.197%2C0.479-0.246%2C1.148-0.246%2C1.82v12.543h-7.464c0%2C0%2C0.098-20.354%2C0-22.459h7.464v3.18%0D%0A%09%09c0.992-1.53%2C2.766-3.709%2C6.729-3.709c4.912%2C0%2C8.596%2C3.211%2C8.596%2C10.109v12.881H45.534z%22/%3E%0D%0A%3C/g%3E%0D%0A%3C/svg%3E%0D%0A") no-repeat center center;
  background-size: 30px;
}

#content-info .social-media .pinterest {
  background: transparent url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2016.0.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20width%3D%2256.693px%22%20height%3D%2256.693px%22%20viewBox%3D%220%200%2056.693%2056.693%22%20enable-background%3D%22new%200%200%2056.693%2056.693%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M30.374%2C4.622c-13.586%2C0-20.437%2C9.74-20.437%2C17.864c0%2C4.918%2C1.861%2C9.293%2C5.854%2C10.922%0D%0A%09c0.655%2C0.27%2C1.242%2C0.01%2C1.433-0.715c0.132-0.5%2C0.444-1.767%2C0.584-2.295c0.19-0.717%2C0.116-0.967-0.412-1.594%0D%0A%09c-1.151-1.357-1.889-3.115-1.889-5.607c0-7.226%2C5.407-13.695%2C14.079-13.695c7.68%2C0%2C11.898%2C4.692%2C11.898%2C10.957%0D%0A%09c0%2C8.246-3.649%2C15.205-9.065%2C15.205c-2.991%2C0-5.229-2.473-4.514-5.508c0.859-3.623%2C2.524-7.531%2C2.524-10.148%0D%0A%09c0-2.34-1.258-4.292-3.856-4.292c-3.058%2C0-5.515%2C3.164-5.515%2C7.401c0%2C2.699%2C0.912%2C4.525%2C0.912%2C4.525s-3.13%2C13.26-3.679%2C15.582%0D%0A%09c-1.092%2C4.625-0.164%2C10.293-0.085%2C10.864c0.046%2C0.341%2C0.482%2C0.422%2C0.681%2C0.166c0.28-0.369%2C3.925-4.864%2C5.161-9.358%0D%0A%09c0.352-1.271%2C2.012-7.859%2C2.012-7.859c0.994%2C1.896%2C3.897%2C3.562%2C6.985%2C3.562c9.191%2C0%2C15.429-8.38%2C15.429-19.596%0D%0A%09C48.476%2C12.521%2C41.292%2C4.622%2C30.374%2C4.622z%22/%3E%0D%0A%3C/svg%3E%0D%0A") no-repeat center center;
  background-size: 30px;
}

#content-info .social-media .twitter {
  background: transparent url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2016.0.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20width%3D%2256.693px%22%20height%3D%2256.693px%22%20viewBox%3D%220%200%2056.693%2056.693%22%20enable-background%3D%22new%200%200%2056.693%2056.693%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M52.837%2C15.065c-1.811%2C0.805-3.76%2C1.348-5.805%2C1.591c2.088-1.25%2C3.689-3.23%2C4.444-5.592%0D%0A%09c-1.953%2C1.159-4.115%2C2-6.418%2C2.454c-1.844-1.964-4.471-3.192-7.377-3.192c-5.581%2C0-10.106%2C4.525-10.106%2C10.107%0D%0A%09c0%2C0.791%2C0.089%2C1.562%2C0.262%2C2.303c-8.399-0.422-15.848-4.445-20.833-10.561c-0.87%2C1.492-1.367%2C3.229-1.367%2C5.082%0D%0A%09c0%2C3.507%2C1.783%2C6.601%2C4.495%2C8.412c-1.655-0.053-3.215-0.508-4.577-1.265c-0.001%2C0.042-0.001%2C0.085-0.001%2C0.128%0D%0A%09c0%2C4.896%2C3.483%2C8.98%2C8.107%2C9.91c-0.848%2C0.229-1.741%2C0.354-2.663%2C0.354c-0.651%2C0-1.285-0.062-1.901-0.182%0D%0A%09c1.286%2C4.015%2C5.019%2C6.938%2C9.44%2C7.019c-3.459%2C2.711-7.815%2C4.327-12.552%2C4.327c-0.815%2C0-1.62-0.048-2.411-0.142%0D%0A%09c4.474%2C2.869%2C9.786%2C4.541%2C15.493%2C4.541c18.591%2C0%2C28.756-15.4%2C28.756-28.756c0-0.438-0.009-0.875-0.028-1.31%0D%0A%09C49.769%2C18.873%2C51.483%2C17.092%2C52.837%2C15.065z%22/%3E%0D%0A%3C/svg%3E%0D%0A") no-repeat center center;
  background-size: 30px;
}

#content-info .social-media .tumblr {
  background: transparent url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2016.0.4%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20width%3D%2256.693px%22%20height%3D%2256.693px%22%20viewBox%3D%220%200%2056.693%2056.693%22%20enable-background%3D%22new%200%200%2056.693%2056.693%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M29.863%2C4.831v11.381h11.379v8.787H29.863v12.619c0%2C2.855-0.036%2C4.502%2C0.266%2C5.311%0D%0A%09c0.3%2C0.805%2C1.054%2C1.641%2C1.875%2C2.123c1.091%2C0.654%2C2.332%2C0.98%2C3.734%2C0.98c2.491%2C0%2C4.971-0.809%2C7.436-2.428v7.76%0D%0A%09c-2.101%2C0.99-4.007%2C1.688-5.712%2C2.084c-1.706%2C0.396-3.549%2C0.6-5.53%2C0.6c-2.25%2C0-3.578-0.285-5.306-0.85%0D%0A%09c-1.729-0.572-3.204-1.385-4.423-2.43c-1.226-1.053-2.068-2.172-2.54-3.355c-0.473-1.186-0.709-2.904-0.709-5.154v-17.26h-6.686%0D%0A%09v-6.971c1.933-0.627%2C4.174-1.527%2C5.55-2.699c1.382-1.176%2C2.488-2.582%2C3.32-4.227c0.837-1.641%2C1.412-3.734%2C1.726-6.271H29.863z%22/%3E%0D%0A%3C/svg%3E%0D%0A") no-repeat center center;
  background-size: 30px;
}

#content-info .social-media .youtube {
  background: transparent url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C!--%20Generator%3A%20Adobe%20Illustrator%2019.1.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200)%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0A%09%20viewBox%3D%22-611%202957.3%2056.7%2056.7%22%20style%3D%22enable-background%3Anew%20-611%202957.3%2056.7%2056.7%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M-559.7%2C2975.5c0%2C0-0.5-3.4-1.9-4.9c-1.9-2-4-2-4.9-2.1c-6.9-0.5-17.2-0.5-17.2-0.5h0c0%2C0-10.3%2C0-17.2%2C0.5%0A%09c-1%2C0.1-3%2C0.1-4.9%2C2.1c-1.5%2C1.5-1.9%2C4.9-1.9%2C4.9s-0.5%2C4-0.5%2C7.9v3.7c0%2C4%2C0.5%2C7.9%2C0.5%2C7.9s0.5%2C3.4%2C1.9%2C4.9c1.9%2C2%2C4.3%2C1.9%2C5.4%2C2.1%0A%09c3.9%2C0.4%2C16.7%2C0.5%2C16.7%2C0.5s10.3%2C0%2C17.2-0.5c1-0.1%2C3-0.1%2C4.9-2.1c1.5-1.5%2C1.9-4.9%2C1.9-4.9s0.5-4%2C0.5-7.9v-3.7%0A%09C-559.2%2C2979.5-559.7%2C2975.5-559.7%2C2975.5z%20M-588.8%2C2991.7l0-13.8l13.3%2C6.9L-588.8%2C2991.7z%22%2F%3E%0A%3C%2Fsvg%3E") no-repeat center center;
  background-size: 30px;
}

#content-info .social-media .snapchat {
  background: transparent url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C!--%20Generator%3A%20Adobe%20Illustrator%2019.1.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200)%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0A%09%20viewBox%3D%22-611%202957.3%2056.7%2056.7%22%20style%3D%22enable-background%3Anew%20-611%202957.3%2056.7%2056.7%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M-582.3%2C3008.7c-0.1%2C0-0.3%2C0-0.4%2C0h0c-0.1%2C0-0.2%2C0-0.2%2C0c-2.9%2C0-4.8-1.3-6.6-2.6c-1.2-0.9-2.4-1.7-3.8-1.9%0A%09c-0.7-0.1-1.3-0.2-2-0.2c-1.2%2C0-2.1%2C0.2-2.8%2C0.3c-0.4%2C0.1-0.8%2C0.1-1%2C0.1c-0.3%2C0-0.6-0.1-0.7-0.5c-0.1-0.4-0.2-0.8-0.3-1.1%0A%09c-0.2-0.9-0.4-1.5-0.7-1.6c-4.6-0.7-5.9-1.7-6.2-2.4c0-0.1-0.1-0.2-0.1-0.3c0-0.3%2C0.2-0.5%2C0.4-0.5c7.1-1.2%2C10.3-8.4%2C10.4-8.7%0A%09c0%2C0%2C0%2C0%2C0%2C0c0.4-0.9%2C0.5-1.6%2C0.3-2.3c-0.5-1.1-2.1-1.6-3.1-2c-0.3-0.1-0.5-0.2-0.7-0.2c-2.1-0.8-2.3-1.7-2.2-2.1%0A%09c0.1-0.7%2C1.1-1.3%2C1.9-1.3c0.2%2C0%2C0.4%2C0%2C0.6%2C0.1c0.9%2C0.4%2C1.8%2C0.7%2C2.5%2C0.7c1%2C0%2C1.5-0.4%2C1.5-0.5c0-0.5-0.1-1-0.1-1.5%0A%09c-0.2-3.3-0.5-7.5%2C0.6-9.9c3.2-7.1%2C9.9-7.7%2C11.9-7.7c0.1%2C0%2C0.9%2C0%2C0.9%2C0l0.1%2C0c2%2C0%2C8.7%2C0.6%2C11.9%2C7.7c1.1%2C2.4%2C0.8%2C6.5%2C0.6%2C9.9l0%2C0.1%0A%09c0%2C0.5-0.1%2C0.9-0.1%2C1.4c0.1%2C0.1%2C0.5%2C0.4%2C1.4%2C0.5h0c0.7%2C0%2C1.5-0.2%2C2.4-0.7c0.3-0.1%2C0.5-0.1%2C0.7-0.1c0.3%2C0%2C0.6%2C0.1%2C0.9%2C0.2l0%2C0%0A%09c0.7%2C0.3%2C1.2%2C0.8%2C1.2%2C1.3c0%2C0.5-0.4%2C1.2-2.2%2C2c-0.2%2C0.1-0.4%2C0.2-0.7%2C0.2c-1.1%2C0.3-2.6%2C0.8-3.1%2C2c-0.3%2C0.6-0.2%2C1.4%2C0.3%2C2.3%0A%09c0%2C0%2C0%2C0%2C0%2C0c0.1%2C0.3%2C3.3%2C7.5%2C10.4%2C8.7c0.3%2C0%2C0.4%2C0.3%2C0.4%2C0.5c0%2C0.1%2C0%2C0.2-0.1%2C0.3c-0.3%2C0.7-1.6%2C1.7-6.2%2C2.4%0A%09c-0.4%2C0.1-0.5%2C0.5-0.7%2C1.6c-0.1%2C0.4-0.2%2C0.7-0.3%2C1.1c-0.1%2C0.3-0.3%2C0.5-0.7%2C0.5h-0.1c-0.2%2C0-0.6%2C0-1-0.1c-0.8-0.2-1.7-0.3-2.8-0.3%0A%09c-0.7%2C0-1.3%2C0.1-2%2C0.2c-1.4%2C0.2-2.6%2C1.1-3.8%2C1.9C-577.6%2C3007.4-579.4%2C3008.7-582.3%2C3008.7z%22%2F%3E%0A%3C%2Fsvg%3E") no-repeat center center;
  background-size: 30px;
}

.no-inlinesvg #content-info .social-media .facebook {
  background: transparent url("backgrounds/social-icon-facebook-light.png") no-repeat center center;
}

.no-inlinesvg #content-info .social-media .google-plus {
  background: transparent url("backgrounds/social-icon-google-plus-light.png") no-repeat center center;
}

.no-inlinesvg #content-info .social-media .instagram {
  background: transparent url("backgrounds/social-icon-instagram-light.png") no-repeat center center;
}

.no-inlinesvg #content-info .social-media .linkedin {
  background: transparent url("backgrounds/social-icon-linkedin-light.png") no-repeat center center;
}

.no-inlinesvg #content-info .social-media .pinterest {
  background: transparent url("backgrounds/social-icon-pinterest-light.png") no-repeat center center;
}

.no-inlinesvg #content-info .social-media .tumblr {
  background: transparent url("backgrounds/social-icon-tumblr-light.png") no-repeat center center;
}

.no-inlinesvg #content-info .social-media .twitter {
  background: transparent url("backgrounds/social-icon-twitter-light.png") no-repeat center center;
}

.no-inlinesvg #content-info .social-media .youtube {
  background: transparent url("backgrounds/social-icon-youtube-light.png") no-repeat center center;
}

/* news article figures */
.articleContent figure.figure {
  border: none;
  box-shadow: none;
  padding: 0;
}

.articleContent figure.figure.pull-right {
  margin: 0 0 2.5rem 2.5rem !important;
}

.articleContent figure.figure figcaption,
.articleContent figure.figure .photo-credit {
  font-size: 0.875em;
  line-height: 1.35;
  margin: 0.5em 0;
}

.articleContent figure.figure .photo-credit {
  color: #54585A;
}

.articleContent figure.figure .photo-credit a {
  color: #c8102e;
}

.articleContent figure.figure img {
  display: block;
  width: 100%;
}

.articleContent figure.figure figcaption + img,
.articleContent figure.figure figcaption + a img,
.articleContent figure.figure .photo-credit + img,
.articleContent figure.figure .photo-credit + a img {
  margin-top: 2.5rem;
}

/* ========================================================================
 Print Styles
 ======================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important; /* Black prints faster: h5bp.com/s */
    text-shadow: none !important;
    box-shadow: none !important;
  }
  /* fixes a bug in firefox that only prints one page */
  html, body, main {
    overflow: visible !important;
    float: none !important;
    position: relative !important;
    height: auto !important;
    display: block !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group; /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5in;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  /* Hide header, footer, navigation, etc */
  .uh-header .global-search,
  .uh-header .site-nav,
  .uh-header .nav-tactical,
  .uh-footer,
  #mobile-header,
  #banner .top-bar,
  #banner button,
  #banner .nav-primary,
  .breadcrumb,
  .nav-secondary,
  #sidebar,
  #content-info,
  .module {
    display: none !important;
  }
  .uh-header .site-name {
    font-size: 3.75rem;
  }
  #banner .logo {
    padding-top: 0;
    padding-bottom: 0.25in;
  }
  .uh-header .global-logo img, .uh-header .global-logo svg {
    filter: url(inverse.svg#negative);
    -webkit-filter: invert(100%);
    filter: invert(100%);
  }
  /* Make main column width 100% */
  #main,
  #main-content,
  #content-well {
    margin-left: 0;
    width: 100% !important;
  }
  /* Remove specifically UH abbr expansion on print */
  abbr[title="University of Houston"]:after {
    content: "";
  }
  a[href]:after {
    content: "";
  }
  /* Show link URLs in content well */
  main a[href]:after {
    content: " (" attr(href) ")";
  }
  /* Links inside of table cells make table widths too wide to fit on a page */
  main table a[href]:after {
    content: "";
  }
}
/*Adds hover state to a tag*/
#main-content #content-well a:hover, #main-content #content-well a:focus,
#sidebar p a:not(.btn):hover, #sidebar p a:not(.btn):focus,
.related-links li a:hover, .related-links li a:focus, #main-content #content-well .navbar a:hover {
  text-decoration: underline;
}

/*#sidebar .related-links a:hover, #sidebar .table-of-contents a:hover  {*/
/*    text-decoration:none;*/
/*}*/
/* ========================================================================
 Additional Styles - Facelift - 01/2024
 ======================================================================== */
.hentry .entry-title {
  font: 3rem/1 "League Gothic", sans-serif !important;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hentry .entry-title {
    font: 4.5rem/1 "League Gothic", sans-serif !important;
  }
}
.hentry p.entry-summary {
  font-size: 1.5em;
  font-weight: 200;
  line-height: 1.25;
  -webkit-text-stroke: 0.25px;
  margin-bottom: 20px;
}

.hentry p.byline {
  font-size: 18px;
}

.articleContent figure.figure img {
  border-radius: 8px;
  margin-bottom: 24px;
}

.hentry time {
  font-size: 16px;
}

.hentry p {
  font-size: 1.25rem;
}

.entry-content hr {
  display: none;
}

.entry-content {
  padding-bottom: 0;
}

footer #categories {
  margin-bottom: 3rem;
  font-size: 16px;
}

@media (max-width: 1300px) {
  .articleContent .span6 {
    width: 100%;
  }
}
/* CMS WIDGET */
/* carousel view */
.calendar-widgets-carousel {
  padding-top: 30px;
}

.calendar-widgets-carousel .widget-container {
  padding: 0px 26px 0px 26px;
}

.calendar-widgets-carousel .feature {
  margin-bottom: 0px;
}

.calendar-widgets-carousel .feature h3 {
  margin-bottom: 8px;
}

.calendar-widgets-carousel .feature + p {
  margin-top: 0px;
  font-size: 18px;
  line-height: 24px;
}

.calendar-widgets-carousel .feature .photo {
  overflow: hidden;
  transition: 0.5s all;
}

.calendar-widgets-carousel .feature:hover .photo {
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.1);
}

.calendar-widgets-carousel .feature .photo img {
  transition: 0.5s all;
}

.calendar-widgets-carousel .feature:hover .photo img {
  transform: scale(1.2);
}

.calendar-widgets-carousel .feature {
  transition: 0.5s all;
}

.calendar-widgets-carousel .date-container {
  margin-top: 1vw;
  margin-left: -15px;
  position: absolute;
  background: #c8102e;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
  transition: 0.4s all;
  z-index: 99;
}

.calendar-widgets-carousel .date {
  color: #fff9d9;
}

.calendar-widgets-carousel .date-container:before {
  position: absolute;
  content: "";
  bottom: -15px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 15px solid #960C22;
  border-left: 15px solid transparent;
}

.calendar-widgets-carousel .ribbon-top {
  position: absolute;
  top: 0;
  right: -1vw;
  width: 11px;
  height: 50%;
  max-height: 84.2px;
  border-top: 4vw solid #c8102e;
  border-right: 1vw solid transparent;
}

.calendar-widgets-carousel .ribbon-bottom {
  position: absolute;
  bottom: 0;
  right: -1vw;
  width: 11px;
  height: 50%;
  max-height: 84.2px;
  border-bottom: 4vw solid #c8102e;
  border-right: 1vw solid transparent;
}

.calendar-widgets-carousel .month {
  display: block;
  padding: 0;
  text-align: center;
}

.calendar-widgets-carousel .day {
  display: block;
  text-align: center;
}

.calendar-widgets-carousel .time {
  display: block;
  text-align: center;
}

.calendar-widgets-carousel .title {
  padding: 5px 0px;
  /* min-height: 65px; */
  font-family: "League Gothic", sans-serif;
  line-height: 2.6vw;
}

.calendar-widgets-carousel .feature:hover {
  transform: scale(1.07);
}

.calendar-widgets-carousel .date {
  padding: 4.8px 6px 6px 14.4px;
}

.calendar-widgets-carousel .month {
  font-weight: 100;
  font-size: 16.8px;
}

.calendar-widgets-carousel .day {
  font-weight: 600;
  margin-top: -4px;
  font-size: 30px;
}

.calendar-widgets-carousel .time {
  font-weight: 100;
  margin-top: -6px;
  font-size: 16.8px;
}

.calendar-widgets-carousel .title {
  font-size: 24.14px;
  line-height: 30px;
}

.calendar-widgets-carousel .ribbon-top {
  position: absolute;
  top: 0;
  right: -11.99px;
  width: 11px;
  height: 50%;
  max-height: 84.2px;
  border-top: 55px solid #c8102e;
  border-right: 12px solid transparent;
}

.calendar-widgets-carousel .ribbon-bottom {
  position: absolute;
  bottom: 0;
  right: -11.99px;
  width: 11px;
  height: 50%;
  max-height: 84.2px;
  border-bottom: 55px solid #c8102e;
  border-right: 12px solid transparent;
}

/* list view */
.calendar-widgets-list {
  padding-top: 30px;
  padding-left: 0;
  list-style: none;
}

.calendar-widgets-list .widget-container {
  clear: left;
  padding-bottom: 30px;
}

.calendar-widgets-list .widget-container:after {
  content: "";
  display: table;
  clear: both;
}

.calendar-widgets-list .feature .photo {
  display: none;
}

.calendar-widgets-list .feature {
  transition: 0.5s all;
}

.calendar-widgets-list .date-container {
  margin-right: 30px;
  position: relative;
  float: left;
  clear: both;
  background: #c8102e;
  transition: 0.4s all;
}

.calendar-widgets-list .date {
  color: #fff9d9;
  width: 87px;
}

.calendar-widgets-list .month {
  display: block;
  padding: 0;
  text-align: center;
}

.calendar-widgets-list .day {
  display: block;
  text-align: center;
}

.calendar-widgets-list .time {
  display: block;
  text-align: center;
}

.calendar-widgets-list .calendar-event .title {
  font-size: 27px;
  font-family: "League Gothic", sans-serif;
}

.calendar-widgets-list .calendar-event .summary {
  font-size: 18px;
  font-family: "Milo", sans-serif;
  line-height: 25px;
  color: black;
}

.calendar-widgets-list .date {
  padding: 4.8px 6px 6px 14.4px;
}

.calendar-widgets-list .month {
  font-weight: 100;
  font-size: 16.8px;
}

.calendar-widgets-list .day {
  font-weight: 600;
  margin-top: -4px;
  font-size: 30px;
}

.calendar-widgets-list .time {
  font-weight: 100;
  margin-top: -6px;
  font-size: 16.8px;
}

.calendar-widgets-list .ribbon-top {
  position: absolute;
  top: 0;
  right: -11.99px;
  width: 11px;
  height: 50%;
  max-height: 84.2px;
  border-top: 55px solid #c8102e;
  border-right: 12px solid transparent;
}

.calendar-widgets-list .ribbon-bottom {
  position: absolute;
  bottom: 0;
  right: -11.99px;
  width: 11px;
  height: 50%;
  max-height: 84.2px;
  border-bottom: 55px solid #c8102e;
  border-right: 12px solid transparent;
}

.owl-carousel.owl-loaded li {
  width: auto;
}

/***** Global *****/
.uh-header:not(.uh-header-primary) .site-name {
  margin-top: 0 !important;
}

.site-navigation .uh-header-secondary {
  background-color: initial !important;
}

.site-navigation .nav-primary {
  transition: max-height 0.35s ease !important;
}

.site-navigation .site-name {
  margin-top: 0 !important;
}

.uh-header-secondary {
  background-color: initial;
}

.nav-primary {
  transition: max-height 0.35s ease;
}

.site-name {
  margin-top: 0;
}

.no-gutters {
  margin-left: 0;
  margin-right: 0;
}

.p-0 {
  padding-right: 0;
  padding-left: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.text-bold {
  font-weight: 700;
}

.container-fluid {
  padding-right: 0 !important;
}

/***** Navigation - Global *****/
#nav-mobile .nav-title,
#nav-desktop .nav-title {
  font: 700 18px/1.4 "Source Sans Pro";
  color: #111111;
}

#nav-mobile .nav-link,
#nav-desktop .nav-link {
  font: 400 18px/1.4 "Source Sans Pro";
  color: #111111;
}

/***** Navigation - Main *****/
@media (min-width: 992px) {
  .nav-main {
    background: #c8102e;
    padding: 12px 0;
  }
}
.nav-main .container-fluid {
  display: block;
}

@media (min-width: 992px) {
  .nav-main .container {
    display: flex;
    align-items: center;
  }
}
.nav-main .container-fluid-mobile {
  background: #c8102e;
  padding: 12px 10px;
}

#nav-mobile .mobile-nav-main-items .nav-link {
  color: #ffffff;
  font-size: 18px;
}

#nav-mobile .mobile-nav-main-items .nav-link:after {
  display: none;
}

.nav-main .flex-container {
  display: flex;
  /*justify-content: space-evenly;
  */
  justify-content: end;
  padding-top: 10px;
}

.nav-main img {
  height: 33px;
}

@media (min-width: 992px) {
  .nav-main .nav-main-list-items {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
}
.nav-main .nav-main-items {
  display: flex;
  margin: 0 auto;
}

.nav-main .nav-item {
  padding: 0 20px;
}



.nav-main .search-field {
  border-radius: 100px;
  width: 100%;
  height: 38px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(150, 12, 34) 100%);
  border: none;
  padding-right: 40px;
}

@media (min-width: 992px) {
  .nav-main .search-field {
    max-width: 350px;
  }
}
.nav-main input {
  color: #ffffff;
  padding: 0.5rem;
}

.nav-main input:focus-visible,
.nav-main input:focus {
  box-shadow: none;
  border: 1px solid #ffffff;
  outline: none;
}

.nav-main .container-search-bar {
  position: relative;
}

.nav-main .fa-magnifying-glass {
  position: absolute;
  right: 20px;
  top: 10px;
  color: #ffffff;
}

.nav-main .nav-main-item .nav-link {
  font-size: 18px;
}

.navbar-default .navbar-collapse {
  border-color: #c8102e;
}

.nav-main .magnifying-glass {
  padding: 0;
  height: 18px;
  position: absolute;
  right: 15px;
  top: 10px;
}

/***** Navigation - Mobile *****/
@media (min-width: 992px) {
  #nav-mobile {
    display: none;
  }
  /* .navbar-toggler{
    margin-right: 0 !important;
  } */
}
@media (min-width: 768px) and (max-width: 991px) {
  #nav-mobile .navbar-toggler {
    display: block;
    margin-right: 15px;
  }
}
#nav-mobile .container-fluid {
  margin: 0 -1px -1px;
  background-color: transparent;
  padding-right: 15px;
  padding-left: 15px;
}

.navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
  /* margin-right: -15px;
  margin-left: -15px; */
}

.navbar-toggler {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

#nav-mobile.navbar-default .navbar-toggler:hover, #nav-mobile.navbar-default .navbar-toggler:focus {
  background-color: transparent;
}

.navbar-toggler .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

.navbar-toggler .icon-bar + .icon-bar {
  margin-top: 4px;
}

#nav-mobile.navbar-default .navbar-toggler:hover, #nav-mobile.navbar-default .navbar-toggler:focus {
  background-color: transparent;
}

.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}

#nav-mobile {
  padding-right: 0 !important;
}

@media (min-width: 768px) and (max-width: 991px) {
  #nav-mobile .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
#nav-mobile .navbar-header {
  width: 100%;
  background-color: #c8102e;
}

#nav-mobile.navbar {
  margin-bottom: 0;
}

#nav-mobile.navbar-default .navbar-toggler {
  border-color: transparent;
}

#nav-mobile.navbar-default .navbar-toggler .icon-bar {
  background-color: #fff9d9;
}

#nav-mobile .navbar-toggler .icon-bar {
  height: 4px;
}

#nav-mobile.navbar-default .navbar-toggler:hover,
#nav-mobile.navbar-default .navbar-toggler:focus {
  background-color: transparent;
}

#nav-mobile .navbar-brand img {
  height: 28px;
}

#nav-mobile .dropdown a {
  text-decoration: none;
}

#nav-mobile.navbar-default .navbar-nav > li > a {
  color: #111111;
}

#nav-mobile.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #111111;
}

#nav-mobile.navbar-default .navbar-nav > .open > a,
#nav-mobile.navbar-default .navbar-nav > .open > a:hover,
#nav-mobile.navbar-default .navbar-nav > .open > a:focus {
  background-color: #f5f5f5;
}

#nav-mobile .navbar-nav .open .dropdown-menu {
  background-color: #f5f5f5;
}

#nav-mobile .panel-title {
  font: 400 20px/1.4 "Source Sans Pro";
}

#nav-mobile .panel-default > .panel-heading {
  color: #111111;
  background-color: transparent;
  border-color: transparent;
}

#nav-mobile .nav > li > a:hover,
.nav > li > a:focus {
  background-color: transparent;
}

#nav-mobile .panel-default > .panel-heading + .panel-collapse > .panel-body {
  background-color: #f5f5f5;
}

#nav-mobile .navbar-collapse {
  padding-left: 0;
  padding-right: 0;
}

#nav-mobile .panel-group .panel + .panel {
  margin-top: 0;
}

#nav-mobile .list-group {
  padding-left: 2rem;
}

#nav-mobile .panel-default {
  border: 0;
  position: relative;
}

#nav-mobile .panel-default:after {
  content: "";
  position: absolute;
  border-bottom: 1px solid #f5f5f5;
  width: 96%;
  top: 0;
  left: 2%;
}

#nav-mobile .link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

#nav-mobile .panel-group {
  margin-bottom: 0;
}

#nav-mobile .link .arrow-down {
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 5px;
  margin-left: auto;
  transition: all 0.6s;
}

#nav-mobile .link.collapsed > .arrow-down {
  transform: rotate(45deg);
}

#nav-mobile .link > .arrow-down {
  transform: rotate(225deg);
}

#nav-mobile .panel {
  background-color: transparent;
  box-shadow: none;
}

#nav-mobile .panel-default {
  border-color: transparent;
}

#nav-mobile .panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: transparent;
}

#nav-mobile .nav-link {
  position: relative;
}

#nav-mobile .nav-link:after {
  content: "";
  position: absolute;
  border-bottom: 1px solid #e9e9e9;
  width: 96%;
  top: 0;
  left: 2%;
}

#nav-mobile .panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: none;
}

#nav-mobile .panel-collapse {
  background-color: #f5f5f5;
}

#nav-mobile h5 a {
  position: relative;
  padding-bottom: 0.5rem;
}

#nav-mobile h5 a:after {
  content: "";
  position: absolute;
  border-bottom: 1px solid #e9e9e9;
  width: 100%;
  bottom: 0;
  left: 0;
}

#nav-mobile h5 a.no-border:after {
  display: none;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

@media (max-width: 991px) {
  .navbar-header {
    float: none;
  }
  .navbar-toggler {
    display: block;
    margin-right: 0px;
  }
  .site-nav .nav-primary {
    max-height: unset; /* override for headers-footers style */
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: 0;
  }
}
#nav-mobile.navbar {
  background-color: #c8102e;
  border-color: #c8102e;
  border-radius: 0;
}

/***** Navigation - Desktop *****/
#nav-desktop {
  background-color: #ffffff;
}

@media (max-width: 991px) {
  #nav-desktop {
    display: none;
  }
}
@media (min-width: 992px) {
  .site-nav {
    display: block !important; /* override for bootstrap collapase */
  }
}
#nav-desktop .nav {
  margin: 0;
}

#nav-desktop .dropdown {
  position: static;
}

#nav-desktop .caret {
  border: solid #111111;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 4px;
  transition: all 0.3s;
  transform: rotate(45deg);
  margin-left: 5px;
  margin-top: -5px;
}

#nav-desktop .dropdown a {
  text-decoration: none;
  color: #111111;
}

#nav-desktop .dropdown-toggle[aria-expanded=true],
#nav-desktop .dropdown-toggle:hover {
  text-decoration: underline !important;
  text-decoration-color: #c8102e !important;
  text-decoration-thickness: 4px !important;
  text-underline-offset: 28px !important;
}

/* #nav-desktop .dropdown-toggle:hover, #nav-desktop .dropdown-toggle:active, #nav-desktop .dropdown-toggle:focus {
 */
/* text-decoration: underline;
 */
/* text-decoration-color: #c8102e;
 */
/* text-decoration-thickness: 4px;
 */
/* text-underline-offset: 26px;
 */
/* 
}
*/
#nav-desktop .dropdown-menu {
  box-shadow: none;
  padding: 3rem 0;
  min-height: 650px;
  height: auto;
  font-size: 18px;
  border-radius: 0;
  width: 100%;
  border: 0;
  border-top: 1px solid #e9e9e9;
}

#nav-desktop .dropdown-menu a:hover {
  text-decoration: underline;
}

#nav-desktop .navbar-collapse {
  padding: 0;
}

#nav-desktop .nav-title {
  padding: 10px;
}

#nav-desktop [class*=col-] ul:not(:first-child) {
  margin-top: 22px;
}

#nav-desktop #undergrad li a,
#nav-desktop #grad li a {
  position: relative;
  display: block;
  padding: 10px;
}

#nav-desktop .degree-toggle {
  background-color: #f5f5f5;
  border: 1px solid #e9e9e9;
  border-radius: 41px;
  display: inline-block;
  margin: 0 0 2rem 2rem;
}

#nav-desktop .degree-toggle [name=degree-type] {
  display: none;
}

#nav-desktop .degree-toggle input[type=radio] + label {
  color: rgba(0, 0, 0, 0.8);
  padding: 10px 20px;
  cursor: pointer;
  user-select: none;
}

#nav-desktop .degree-toggle input[type=radio]:checked + label {
  background-color: #ffffff;
  color: #111111;
  border-radius: 41px;
  border: 1px solid rgba(0, 0, 0, 0.4);
}

#nav-desktop label {
  margin-bottom: 0;
}

#nav-desktop .oval {
  background-color: #f5f5f5;
  border-radius: 50px;
  max-width: 350px;
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

#nav-desktop .oval a:hover {
  text-decoration: none;
}

#nav-desktop .about-mb {
  margin-bottom: 1rem;
}

@media (min-width: 1200px) {
  #nav-desktop .mb {
    margin-bottom: 0;
  }
  #nav-desktop .about-mb-xl {
    margin-bottom: 1rem;
  }
}
#nav-desktop .about-link {
  width: 100%;
}

#nav-desktop .about-link:hover {
  background: transparent;
}

@media (min-width: 768px) and (max-width: 1399px) {
  #nav-desktop .academics-p {
    padding: 10px 15px;
  }
}
#nav-desktop .box {
  display: flex;
  align-items: center;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  font-size: 16px;
}

#nav-desktop .box p {
  margin: 0 !important;
  line-height: 1.4;
}

#nav-desktop .box-image {
  max-width: 90px;
  width: 100%;
}

#nav-desktop .box-text {
  padding: 0 1rem;
}

#nav-desktop .box-1,
#nav-desktop .box-2 {
  margin-bottom: 1rem;
}

#nav-desktop .box-4 p {
  margin: 0 !important;
}

#nav-desktop .cards .btn-primary {
  background-color: #ffffff;
  color: #000000;
}

#nav-desktop .card {
  padding: 10px 15px;
}

#nav-desktop img {
  max-width: 350px;
  width: 100%;
}

#nav-desktop .col-academics {
  width: 33.33333%;
  float: left;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

@media (min-width: 1200px) {
  #nav-desktop .col-academics {
    width: 25%;
    float: left;
  }
}
#nav-desktop .col-academics-images {
  width: 33.33333%;
  float: left;
}

@media (min-width: 1200px) {
  #nav-desktop .col-academics-images {
    width: 50%;
    float: left;
  }
}
#nav-desktop .col-card {
  width: 100%;
  float: left;
}

@media (min-width: 1200px) {
  #nav-desktop .col-card {
    width: 50%;
    float: left;
  }
}
#nav-desktop .white-btn {
  border-width: 0;
  width: 100%;
  position: relative;
  padding: 20px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-left: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  border-right: 1px solid #e9e9e9;
  font-size: 20px;
  background: #f5f5f5;
  color: #111111;
}

#nav-desktop .white-btn:after {
  content: "";
  position: absolute;
  background: no-repeat 50%/80% url(../img/arrow-right-black.png);
  width: 15px;
  height: 13px;
  top: 40%;
  left: 80%;
}

#nav-desktop .pop-health {
  padding: 10px 15px;
}

#nav-desktop .image-pop-health {
  border-radius: 8px;
  max-width: 350px;
  width: 100%;
}

@media (min-width: 768px) and (max-width: 1199px) {
  #nav-desktop .clearfix-research {
    clear: both;
  }
}
#nav-desktop .col-card .white-btn::after {
  left: 83%;
}

#nav-desktop .box-5 {
  margin-top: 2rem;
}

#nav-desktop .arrow-up-right-from-square {
  height: 15px;
  display: inline;
  width: auto;
}

#nav-desktop .arrow-up-right-from-square.menu {
  margin-top: 5px;
}

#nav-desktop .arrow-up-right-from-square.athletics {
  margin-top: 2px;
}

@media (min-width: 768px) and (max-width: 1420px) {
  #nav-desktop .caret {
    display: none;
  }
  #nav-desktop .fa-arrow-up-right-from-square {
    font-size: 13px;
  }
}
#nav-desktop .right-link a {
  color: #111111;
}

@media (min-width: 768px) and (max-width: 1260px) {
  #nav-desktop .right-link a,
  #nav-desktop .dropdown a {
    font-size: 16px;
    font-size: 1.55vw;
  }
}
#nav-desktop .right-link a:hover {
  text-decoration: none;
}

#nav-desktop.navbar {
  margin-bottom: 0;
  border: 0;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: transparent;
}

@media (min-width: 992px) and (max-width: 1420px) {
  .nav > li > a {
    padding: 10px 8px;
  }
}
.nav > li > a:hover,
.nav > li > a:focus {
  background-color: transparent;
}

#nav-desktop .navbar {
  border: 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
  #nav-desktop .clearfix-about {
    clear: both;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  #nav-desktop .clearfix-academics {
    clear: both;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  #nav-desktop .clearfix-coogs {
    clear: both;
  }
}
#nav-desktop .nav > li > a {
  padding: 10px;
}

@media (min-width: 992px) {
  #nav-desktop .nav.navbar-nav > li > a {
    padding: 27.5px 8px;
  }
}
@media (min-width: 1200px) {
  #nav-desktop .nav.navbar-nav > li > a {
    padding: 27.5px 10px;
  }
}
@media (max-width: 1510px) {
  #nav-desktop .box-image {
    display: none;
  }
  #nav-desktop .box-text {
    padding: 1rem;
  }
  #nav-desktop .box-4 p {
    margin: 15px 0 10px 0 !important;
  }
}
/** Top Stories **/
#nav-desktop .grid-image {
  background-color: #e9e9e9;
  aspect-ratio: 720/540;
  border-radius: 8px;
  margin: 0 auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
}

#nav-desktop .section-grid {
  margin: 0 -1.25rem -1.125rem;
}

#nav-desktop .article-title {
  font-size: 20px;
}

#nav-desktop p {
  margin-top: 0 !important;
}

#nav-desktop .dropdown-menu .tour {
  margin-top: 0;
  background-color: #f5f5f5;
}

#nav-desktop .dropdown-menu .tour p {
  background-color: #f5f5f5;
  margin: 0 !important;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .navbar-right {
    float: left !important;
  }
}
@media (min-width: 1200px) {
  #nav-desktop p {
    margin: 15px 0 10px 0 !important;
  }
}
/*****************/
.dropdown-menu:focus-within {
  display: block !important;
}

.search-submit {
  position: absolute;
  top: 5px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.navbar-default .navbar-brand {
  color: #777;
}

.navbar-brand > img {
  display: block;
}

@media (max-width: 991px) {
  .d-sm-block {
    display: none !important;
  }
  #nav-mobile .container-fluid {
    background-color: transparent;
  }
}
@media (min-width: 768px) {
  .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.nav-main .container-fluid-mobile {
  background: #c8102e;
  padding: 12px 10px;
}

.nav-link, .nav-link:focus, .nav-link:hover {
  color: #c8102e;	
}

li.nav-main-item.nav-item .nav-link {
  color: #FFF;
}

.nav-main .nav-link:hover {
  text-decoration: none !important;
  cursor: pointer;
  color: #FFF;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #c8102e;
}

.accordion-button:not(.collapsed)::after {
	filter: brightness(0) invert(1);
}

.accordion-button:focus {
    box-shadow: unset;
}