@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Libre+Franklin:300,500,500i,700,900");
/* ----------------------------------- //
//      CSS Hacks Mixins for Sass
// ----------------------------------- //

	How to use:

	@include [Mixin_Name]( 'selector', (property: value) )

	Example:

	@include only_ie9( '.my_element', (color: red) )
	@include only_ff28_above( '.my_element', (
		background-color: green,
		display: flex,
		margin: 2em,
	))

	Tips:
	  - Use firefox mixins before IE mixins. Sometimes Firefox wants to precess the IE css but it can't and skips it's own CSS!

// ----------------------------------- //

	List of Mixins:

	only_ff
	only_ff2
	only_ff2_above
	only_ff3_above
	only_ff6_above
	only_ff16_above
	only_ff21_above
	only_ff24_above
	only_ff25_above
	only_ff26_above
	only_ff27_above
	only_ff28_above
	only_ff30_above
	only_webkit
	only_chrome
	only_safari
	only_safari9
	only_ios
	only_safari_no_ios
	only_opera9_safari2
	only_opera
	only_opera11
	only_edge
	only_ie6
	only_ie7
	only_ie7_below
	only_ie8
	only_ie8_below
	only_ie9
	only_ie9_below
	only_ie10_above
	only_ie11
	only_ie11_above
	no_ie6
	only_ie9_saf4_above
	no_ie_safari6

// ----------------------------------- */
/* ----------------------------------- //
//          Firefox CSS Hacks
// ----------------------------------- */
/*--- Only Firefox ---*/
/*--- Only Firefox 1.5 and Firefox 2 ---*/
/*--- Only Firefox ≥ 2 ---*/
/*--- Only Firefox ≥ 3 ---*/
/*--- Only Firefox ≥ 6 ---*/
/*--- Only Firefox ≥ 16 ---*/
/*--- Only Firefox ≥ 21 ---*/
/*--- Only Firefox ≥ 24 ---*/
/*--- Only Firefox ≥ 25 ---*/
/*--- Only Firefox ≥ 26 ---*/
/*--- Only Firefox ≥ 27 ---*/
/*--- Only Firefox ≥ 28 ---*/
/*--- Only Firefox ≥ 30 ---*/
/* ----------------------------------- //
//          Webkit CSS Hacks
// ----------------------------------- */
/*--- Only Webkit (Chrome, Safari, Opera ≥ 14) ---*/
/*--- Only Chrome 28+, Opera ≥ 14 ---*/
/*--- Only Safari ≥ 9 ---*/
/*--- Only iOS Safari ≥ 9 ---*/
/*--- Only Safari ≥ 9 (Non iOS) ---*/
/*--- Only Opera ≤ 9.27, Safari ≤ 2 ---*/
/* ----------------------------------- //
//           Opera CSS Hacks
// ----------------------------------- */
/*--- Only Opera ≥ 9.5 ---*/
/*--- Only Opera ≤ 11 ---*/
/* ----------------------------------- //
//     Edge CSS Hacks
// ----------------------------------- */
/* ----------------------------------- //
//     Internet Explorer CSS Hacks
// ----------------------------------- */
/*--- Only IE ≤ 6 ---*/
/*--- Only IE7 ---*/
/*--- Only IE ≤ 7 ---*/
/*--- Only IE8 ---*/
/*--- Only IE ≤ 8 ---*/
/*--- Only IE9 ---*/
/*--- Only IE ≤ 9 ---*/
/*--- Only IE10 ---*/
/*--- Only IE ≤ 11 ---*/
/*--- Only IE ≥ 11 ---*/
/*--- Anything but IE6 ---*/
/*--- Only IE ≥ 9, safari4, android ≥ 2.3 ---*/
/* ----------------------------------- //
//           Other CSS Hacks
// ----------------------------------- */
/*--- Everything but IE and Safari ≤ 6 ---*/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

body h1 {
  font-size: 2.441em;
  font-family: "modesto-text",serif; }
  @media (max-width: 415px), (min-width: 416px) and (max-width: 785px) {
    body h1 {
      font-size: 2em; } }

body h2 {
  font-size: 1.753em;
  font-weight: bold; }

body h3 {
  font-size: 1.563em; }

body h4 {
  font-size: 1.25em; }

body h5 {
  font-size: 1.1em; }

body p.lead {
  font-size: 21px; }

body table {
  font-size: 13px; }
  body table tr th {
    font-size: 16px;
    text-align: center;
    vertical-align: middle; }
  body table tr td {
    vertical-align: middle; }
  body table.table tr td table {
    width: 100%;
    max-width: 100%; }

body .skip a {
  padding: 6px;
  position: absolute;
  top: -200px;
  left: 0;
  color: white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  background: transparent;
  z-index: 100;
  transition: all 1s ease-out; }
  body .skip a:focus {
    position: absolute;
    left: 0px;
    top: 0px;
    background: #008542;
    outline: 0;
    transition: all 0.25s ease-in; }

body .bg-gradient {
  min-width: 100vw;
  height: 100%;
  min-height: 45vh;
  background: rgba(0, 0, 0, 0.85);
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0)); }

body a.btn {
  padding: 0.25em 0.5em;
  margin: 0.25em auto;
  color: white;
  background-color: #008542;
  border-radius: 8px;
  border-collapse: collapse;
  border: 2px solid #008542;
  text-decoration: none;
  display: block;
  max-width: 200px;
  max-height: 40px;
  width: 100%;
  text-transform: lowercase;
  font-variant: small-caps;
  font-weight: bold;
  font-size: 1.125em; }
  body a.btn:hover {
    background-color: white;
    color: #008542; }

body.fixedPosition {
  position: fixed; }

.jumptarget::before {
  content: '';
  display: block;
  height: 150px;
  margin: -150px 0 0; }

@-moz-document url-prefix() {
  .jumptarget::before {
    content: "";
    display: inline-block;
    width: 100%;
    float: left;
    height: 150px;
    top: -200px; } }

.staff img {
  max-width: 150px !important;
  max-height: 150px;
  width: 100% !important;
  height: 100%; }

#areastudy #areas {
  padding: 0.5em 0.25em;
  margin: 0;
  list-style-type: none;
  margin-bottom: 1em;
  background-color: rgba(213, 210, 202, 0.5);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -moz-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end; }
  #areastudy #areas li {
    padding: 0 0.5em;
    text-align: center; }
    #areastudy #areas li a {
      text-decoration: none; }
    #areastudy #areas li.active {
      border-bottom: 3px solid #C75B12;
      font-weight: bold; }

#areastudy .area {
  margin: 0 1em; }

@media (max-width: 415px) {
  #areastudy #areas {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    #areastudy #areas li {
      margin: 0.5em 0; } }

.print {
  display: none; }
  @media print {
    .print {
      display: block; } }

html {
  -ms-overflow-style: -ms-autohiding-scrollbar; }
  @media all and (-ms-high-contrast: none) {
    html *::-ms-backdrop, html body.internal .container-header {
      z-index: auto; } }
  html body {
    font-family: "Libre Franklin", sans-serif;
    font-size: 16px;
    background-image: url(/studentaffairs/img/spiration-light.png);
    background-blend-mode: multiply;
    background-repeat: repeat;
    background-position: top left;
    background-color: rgba(213, 210, 202, 0.25);
    height: 100%; }
    html body a {
      color: #008542; }
    html body.internal .container-header {
      height: auto;
      min-height: 0;
      width: 100vw;
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-position: center bottom; }
      html body.internal .container-header nav.main.fixedNav {
        position: fixed;
        top: 80px;
        padding: 1.5em 0; }

@-moz-document url-prefix() {
  html body.internal .container-header nav.main.fixedNav {
    top: 92px; } }
      @media all and (-ms-high-contrast: none) {
        html body.internal .container-header *::-ms-backdrop, html body.internal .container-header nav.main.fixedNav {
          top: 92px; } }
    html body.internal.slideshow .container-header {
      height: 90vh; }
    html body.internal.slideshow .content-wrapper .main-content {
      position: relative;
      padding-bottom: 7em;
      margin: 0 auto -26em;
      top: -25em; }
      @media (max-width: 415px), (min-width: 786px) and (max-width: 1096px), (min-width: 416px) and (max-width: 785px) {
        html body.internal.slideshow .content-wrapper .main-content {
          top: 0em;
          padding-bottom: 0;
          margin-bottom: -3em; } }
      html body.internal.slideshow .content-wrapper .main-content .slideshow-container {
        text-align: center;
        margin-bottom: 5em;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease; }
        html body.internal.slideshow .content-wrapper .main-content .slideshow-container button::before {
          color: black; }
        html body.internal.slideshow .content-wrapper .main-content .slideshow-container .slick-slide img {
          margin: 0 auto;
          max-width: 1100px;
          height: auto; }
          @media (max-width: 415px), (min-width: 416px) and (max-width: 785px), (min-width: 786px) and (max-width: 1096px) {
            html body.internal.slideshow .content-wrapper .main-content .slideshow-container .slick-slide img {
              max-width: 100%; } }
        html body.internal.slideshow .content-wrapper .main-content .slideshow-container.slick-initialized {
          visibility: visible;
          opacity: 1; }
    html body.internal.sub-page .container-header {
      height: auto;
      min-height: 0; }
    html body.internal.sub-page .content-wrapper {
      padding-left: 0;
      padding-right: 0;
      height: 100%; }
      html body.internal.sub-page .content-wrapper .background-image {
        width: 100vw;
        height: 45vh;
        background-size: cover; }
      html body.internal.sub-page .content-wrapper .main-content {
        margin: -13em auto -1em; }
        html body.internal.sub-page .content-wrapper .main-content #intro {
          padding-bottom: 3em; }
    html body.internal.sub-page.no-top .container-header .bg-gradient {
      display: none; }
    html body.internal.sub-page.no-top .content-wrapper .main-content {
      margin: 7em auto -1em;
      top: 0; }
      html body.internal.sub-page.no-top .content-wrapper .main-content section#intro {
        padding-bottom: 0; }
    html body.internal.sub-page.top .container-header {
      height: 37vh; }
      html body.internal.sub-page.top .container-header h1 {
        position: absolute;
        left: 0;
        top: 20vh;
        max-width: 32%; }
      html body.internal.sub-page.top .container-header .bg-gradient {
        height: 37vh; }
    html body.internal.sub-page.top .content-wrapper .main-content {
      margin-top: -1em; }
    html body .container-header {
      height: 65vh;
      min-height: 500px;
      background-image: url("/studentaffairs/redesign/img/sa-bg.jpg");
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-position: bottom center;
      position: relative;
      z-index: initial;
      width: 100vw; }
      html body .container-header.full-vh {
        height: 100vh; }
        html body .container-header.full-vh .logo-container {
          position: absolute;
          width: 50%;
          top: 36vh;
          display: block; }
          html body .container-header.full-vh .logo-container .logo {
            color: white;
            padding-bottom: 1em;
            margin-bottom: 1.5em; }
            html body .container-header.full-vh .logo-container .logo svg {
              width: 35%;
              height: 35%;
              display: block;
              margin: 0 auto;
              fill: white; }
            html body .container-header.full-vh .logo-container .logo a.dept-home {
              position: relative;
              z-index: 1;
              display: inline; }
              html body .container-header.full-vh .logo-container .logo a.dept-home .lock-up {
                display: inline;
                align-self: center;
                text-align: center; }
                html body .container-header.full-vh .logo-container .logo a.dept-home .lock-up h3 {
                  color: white;
                  text-transform: lowercase;
                  font-variant: all-small-caps;
                  font-weight: bold;
                  letter-spacing: 0.05em;
                  padding-bottom: 0;
                  margin-bottom: 0;
                  margin-top: 5px; }
                html body .container-header.full-vh .logo-container .logo a.dept-home .lock-up h4 {
                  letter-spacing: 0.025em;
                  padding: 0;
                  margin: 0; }
      html body .container-header h1 {
        position: relative;
        right: 0;
        top: 40vh;
        max-width: 40%;
        width: 100%;
        padding: 0.25em 0.5em;
        text-align: right;
        background-color: rgba(255, 255, 255, 0.7);
        border-radius: 0 8px 8px 0;
        min-width: 20%; }
        @media (max-width: 800px) {
          html body .container-header h1 {
            top: 35vh;
            min-width: 50%;
            width: auto;
            text-align: right; } }
        @media (min-width: 416px) and (max-width: 785px), (min-width: 786px) and (max-width: 1096px), (max-width: 415px) {
          html body .container-header h1 {
            max-width: 90%; } }

@-moz-document url-prefix() {
  html body .container-header h1 {
    top: 40vh;
    width: 100%; } }
      html body .container-header div.aux {
        background-color: #c66005;
        padding: 1em;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
        justify-content: space-between;
        -ms-flex-pack: space-between;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        position: fixed;
        width: 100vw;
        max-height: 90px;
        min-height: 70px;
        height: 100%;
        top: 0;
        z-index: 9998; }
        html body .container-header div.aux .logo {
          overflow-x: auto;
          overflow-y: visible;
          max-height: 75px;
          min-width: 0;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-flow: row nowrap;
          -moz-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
          transition: margin-left 0.3s ease-in-out; }
          html body .container-header div.aux .logo a {
            color: white;
            text-decoration: none; }
            html body .container-header div.aux .logo a.dept-home {
              position: relative;
              z-index: 1;
              display: inline; }
            html body .container-header div.aux .logo a svg {
              max-width: 4em;
              width: 100%;
              min-width: 0;
              max-height: 9vh;
              height: auto;
              fill: white;
              z-index: -24;
              background-color: #C75B12; }
              @media (max-width: 800px) {
                html body .container-header div.aux .logo a svg {
                  margin-top: -5px; } }
          html body .container-header div.aux .logo .department {
            display: inline;
            color: white;
            position: relative;
            top: 3px;
            left: -500px;
            transition: all 0.4s ease-in-out;
            opacity: 0;
            z-index: -25; }
            html body .container-header div.aux .logo .department.lock-up {
              max-height: 4em;
              overflow: hidden;
              font-size: 15px;
              display: inline;
              float: right;
              padding-left: 1em; }
              html body .container-header div.aux .logo .department.lock-up a {
                color: white;
                text-decoration: none; }
              html body .container-header div.aux .logo .department.lock-up h4 {
                text-transform: lowercase;
                font-variant: all-small-caps;
                font-weight: bold;
                letter-spacing: 0.05em;
                padding-bottom: 0;
                margin-bottom: 0;
                margin-top: 5px; }
              html body .container-header div.aux .logo .department.lock-up h5 {
                letter-spacing: 0.025em;
                padding: 0;
                margin: 0; }
            html body .container-header div.aux .logo .department.active {
              transition: left 0.4s ease-in-out, opacity 0.4s ease-in-out;
              left: 0;
              opacity: 1; }
          html body .container-header div.aux .logo.hideIt {
            display: block;
            margin-left: -80px; }

@-moz-document url-prefix() {
  html body .container-header div.aux .logo {
    max-height: 70px;
    min-width: 24%;
    max-width: 31%;
    padding: 0.2em 0;
    overflow: -moz-scrollbars-none; } }
        html body .container-header div.aux .searchbox {
          width: 15%;
          margin-right: 1em; }
        html body .container-header div.aux .mobile-nav-modal-button {
          display: none; }

@-moz-document url-prefix() {
  html body .container-header div.aux {
    max-height: 93px;
    min-height: 70px;
    height: auto; } }
      @media all and (-ms-high-contrast: none) {
        html body .container-header *::-ms-backdrop, html body .container-header div.aux {
          max-height: 93px;
          min-height: 70px;
          height: auto; } }
      html body .container-header .logo-container {
        display: none; }
      html body .container-header .video-contain {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        overflow: hidden;
        z-index: -9999; }
        html body .container-header .video-contain #video-background {
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          width: 100vw; }
          @media (min-aspect-ratio: 16 / 9) {
            html body .container-header .video-contain #video-background {
              height: 300%;
              top: -100%; } }
          @media (max-aspect-ratio: 16 / 9) {
            html body .container-header .video-contain #video-background {
              width: 300%;
              left: -100%; } }
        html body .container-header .video-contain .video-overlay {
          position: absolute;
          top: 0;
          width: 100vw;
          height: 100%;
          min-width: 100%;
          min-height: 100%;
          z-index: 1;
          pointer-events: none; }
      html body .container-header .freakout {
        position: absolute;
        right: 0;
        width: 45%;
        max-height: 15em;
        height: auto;
        background-color: rgba(255, 255, 255, 0.67);
        z-index: 9;
        top: 37%;
        border-radius: 8px 0 0 8px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row wrap;
        -moz-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        padding: 1em; }
        html body .container-header .freakout img {
          -webkit-box-flex: 0 1 auto;
          -moz-box-flex: 0 1 auto;
          -webkit-flex: 0 1 auto;
          -ms-flex: 0 1 auto;
          flex: 0 1 auto;
          display: inline;
          margin-right: auto;
          max-width: 20%;
          width: 20%; }
        html body .container-header .freakout article {
          -webkit-box-flex: 0 1 auto;
          -moz-box-flex: 0 1 auto;
          -webkit-flex: 0 1 auto;
          -ms-flex: 0 1 auto;
          flex: 0 1 auto;
          display: inline;
          min-width: 0;
          margin-left: auto;
          margin-right: 2em;
          width: 70%; }
      html body .container-header #scrollDown {
        position: absolute;
        left: 50%;
        bottom: 40px;
        transform: translate(-50%, 0);
        max-width: 125px;
        max-height: 125px;
        width: 100%;
        height: 100%;
        font-size: 24px;
        border-radius: 500px;
        transition: all 0.3s ease-in-out; }
        html body .container-header #scrollDown p {
          color: white;
          text-align: center;
          margin: 10px auto;
          font-weight: bold;
          font-variant: all-small-caps; }
          html body .container-header #scrollDown p i {
            display: block; }
          html body .container-header #scrollDown p:hover {
            text-decoration: none; }
        html body .container-header #scrollDown:hover {
          bottom: 27px;
          text-decoration: none; }
      html body .container-header nav.main {
        background-color: #3e3e3e;
        width: 100vw;
        position: absolute;
        z-index: 9999;
        bottom: 0;
        color: white;
        padding: 2.5em 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        height: 1%;
        transition: all 0.1s ease-in-out; }
        html body .container-header nav.main ul {
          display: inline;
          margin: 0;
          padding: 0;
          width: 100%;
          max-width: 95vw;
          text-align: center; }
          html body .container-header nav.main ul li {
            display: inline;
            padding: 0.125em 1em;
            font-size: 1.414em;
            font-weight: 900;
            font-variant: all-small-caps; }
            html body .container-header nav.main ul li.nav--dropdown::after {
              content: "\f078";
              font-family: 'FontAwesome';
              font-style: normal;
              font-weight: normal;
              font-size: 11px;
              text-decoration: none; }
            html body .container-header nav.main ul li a {
              color: white;
              padding: 0.125em 0.35em; }
              html body .container-header nav.main ul li a:hover {
                border-collapse: collapse;
                border-bottom: 2px solid white;
                text-decoration: none; }
            html body .container-header nav.main ul li ul {
              list-style-type: none;
              margin: 50px 0 0 0;
              position: absolute;
              max-width: 300px;
              max-height: 0;
              z-index: -1;
              opacity: 0;
              overflow: hidden;
              background-color: #3e3e3e;
              -webkit-transition-duration: 0.3s;
              -moz-transition-duration: 0.3s;
              transition-duration: 0.3s; }
              html body .container-header nav.main ul li ul li {
                display: inline-block;
                width: 100%;
                text-align: left;
                text-transform: lowercase;
                float: none;
                margin: 0;
                padding: 0;
                font-size: 0.9em;
                font-weight: 200;
                font-variant: all-small-caps; }
                html body .container-header nav.main ul li ul li a {
                  display: block;
                  text-align: left;
                  padding: 0.5em 0.5em 0.25em;
                  margin: 0;
                  text-transform: lowercase;
                  text-shadow: none;
                  line-height: 0.9;
                  -webkit-transition-duration: 0.2s;
                  -moz-transition-duration: 0.2s;
                  transition-duration: 0.2s; }
                  html body .container-header nav.main ul li ul li a::after {
                    content: '';
                    display: inline-block;
                    width: 95%;
                    height: 100%;
                    border-bottom: 2px solid #696969; }
                  html body .container-header nav.main ul li ul li a:hover {
                    color: #C75B12;
                    background: #252424;
                    height: 100%;
                    border-bottom: none;
                    -webkit-transition-duration: 0.25s;
                    -moz-transition-duration: 0.25s;
                    transition-duration: 0.25s; }
                    html body .container-header nav.main ul li ul li a:hover::after {
                      border-bottom: 2px solid white; }
            html body .container-header nav.main ul li:hover ul {
              opacity: 1;
              max-height: 100vh; }
        html body .container-header nav.main.fixedNav {
          position: fixed;
          top: 0;
          padding: 1.5em 0;
          box-shadow: 0px 10px 30px -10px black; }
          html body .container-header nav.main.fixedNav ul li ul {
            margin-top: 40px; }
    html body nav.mobile {
      position: fixed;
      top: 9vh;
      right: 0;
      left: -100vw;
      bottom: 0;
      width: 50%;
      z-index: 9990;
      transition: all 0.3s ease-in-out;
      min-height: 100vh;
      min-width: 100vw;
      overflow: scroll;
      background-color: #C75B12;
      padding: 0 6.5%;
      visibility: hidden;}
      html body nav.mobile .mobile-container {
        position: relative;
        width: 100%;
        margin-top: 30px; }
        html body nav.mobile .mobile-container .logo-container {
          position: initial;
          padding-top: 0.25em;
          width: initial;
          top: 0;
          display: initial; }
          html body nav.mobile .mobile-container .logo-container .logo {
            color: white;
            padding-bottom: 1em;
            margin-bottom: 1.5em; }
            html body nav.mobile .mobile-container .logo-container .logo svg {
              width: 35%;
              height: 35%;
              display: block;
              margin: 0 auto;
              fill: white; }
            html body nav.mobile .mobile-container .logo-container .logo .lock-up {
              display: inline;
              align-self: center;
              text-align: center; }
              html body nav.mobile .mobile-container .logo-container .logo .lock-up a {
                color: white; }
              html body nav.mobile .mobile-container .logo-container .logo .lock-up h3 {
                color: white;
                text-transform: lowercase;
                font-variant: small-caps;
                font-weight: bold;
                letter-spacing: 0.05em;
                padding-bottom: 0;
                margin-bottom: 0;
                margin-top: 5px; }
              html body nav.mobile .mobile-container .logo-container .logo .lock-up h4 {
                letter-spacing: 0.025em;
                padding: 0;
                margin: 0; }
        html body nav.mobile .mobile-container ul {
          padding: 0;
          margin: 0 auto;
          list-style-type: none;
          width: 95%;
          border: none;
          vertical-align: middle; }
          html body nav.mobile .mobile-container ul li {
            max-width: 300px;
            width: 100%;
            min-height: 30px;
            text-align: left;
            margin: 0.25em 0; }
            html body nav.mobile .mobile-container ul li a {
              font-size: 18px;
              font-weight: 300;
              color: white;
              text-transform: capitalize; }
            html body nav.mobile .mobile-container ul li.nav--dropdown > a::after {
              padding-left: 0.5em;
              content: "\f078";
              font-family: 'FontAwesome';
              font-style: normal;
              font-weight: normal;
              font-size: 11px;
              text-decoration: none;
              color: white;
              position: relative; }
            html body nav.mobile .mobile-container ul li.nav--dropdown ul.active {
              display: block;
              opacity: 1;
              padding-left: 1em; }
            html body nav.mobile .mobile-container ul li span.arrow {
              position: relative; }
              html body nav.mobile .mobile-container ul li span.arrow::before {
                content: '\f107';
                font-family: 'FontAwesome';
                left: 10px;
                position: absolute;
                top: 0; }
              html body nav.mobile .mobile-container ul li span.arrow.rotate {
                transition: all 0.3s ease-in-out;
                transform: rotate(-180deg); }
            html body nav.mobile .mobile-container ul li > ul {
              opacity: 0;
              display: none;
              transition: all 0.3s ease-in-out; }
              html body nav.mobile .mobile-container ul li > ul.active {
                opacity: 1;
                display: block;
                transition: all 0.3s ease-in-out; }
        html body nav.mobile .mobile-container .cta-wrapper {
          margin: 0.5em;
          text-align: center;
          padding-bottom: 0.5em; }
          html body nav.mobile .mobile-container .cta-wrapper a.cta {
            padding: 0.25em 0.75em;
            border: 2px solid white;
            color: white;
            background-color: #008542;
            text-transform: uppercase; }
        html body nav.mobile .mobile-container .social-media {
          text-align: center;
          padding-top: 1em; }
          html body nav.mobile .mobile-container .social-media a {
            color: white; }
            html body nav.mobile .mobile-container .social-media a .fa-inverse {
              color: #C75B12; }
      html body nav.mobile.active {
        left: 0; }
    html body .content-wrapper {
      min-width: 100vw;
      background-image: url(/studentaffairs/img/spiration-light.png);
      background-blend-mode: multiply;
      background-repeat: repeat;
      background-position: top left;
      padding: 1em;
      width: 90%;
      background-color: rgba(255, 255, 255, 0.75);
      margin: 0 auto;
      position: relative;
      z-index: 1;
      max-width: 1200px; }
      html body .content-wrapper .main-content {
        min-height: 1vh;
        margin: 0 2em;
        padding: 2em;
        max-width: 1200px;
        background-color: rgba(255, 255, 255, 0.75); }
        html body .content-wrapper .main-content section {
          margin-bottom: 2em; }
        html body .content-wrapper .main-content .grid {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-flow: row wrap;
          -moz-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
          flex-flow: row wrap;
          -webkit-justify-content: space-between;
          -moz-justify-content: space-between;
          -ms-justify-content: space-between;
          justify-content: space-between;
          -ms-flex-pack: space-between; }
          html body .content-wrapper .main-content .grid .full, html body .content-wrapper .main-content .grid .half, html body .content-wrapper .main-content .grid .two-third, html body .content-wrapper .main-content .grid .third, html body .content-wrapper .main-content .grid .fourth {
            margin: 0 1% 1em;
            margin-bottom: 1em; }
            html body .content-wrapper .main-content .grid .full.card img, html body .content-wrapper .main-content .grid .half.card img, html body .content-wrapper .main-content .grid .two-third.card img, html body .content-wrapper .main-content .grid .third.card img, html body .content-wrapper .main-content .grid .fourth.card img {
              border-bottom: 5px solid #C75B12; }
          html body .content-wrapper .main-content .grid .full {
            -webkit-box-flex: 0 1 auto;
            -moz-box-flex: 0 1 auto;
            -webkit-flex: 0 1 auto;
            -ms-flex: 0 1 auto;
            flex: 0 1 auto;
            width: 92%;
            margin: 0 auto; }
            html body .content-wrapper .main-content .grid .full img {
              width: 100%; }
          html body .content-wrapper .main-content .grid .half {
            min-width: 45%;
            max-width: 45%;
            width: 100%;
            -webkit-box-flex: 1 1 auto;
            -moz-box-flex: 1 1 auto;
            -webkit-flex: 1 1 auto;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto; }
            html body .content-wrapper .main-content .grid .half img {
              max-width: 100%; }
            html body .content-wrapper .main-content .grid .half.card .copy {
              max-width: 90%;
              margin: 0 auto 1em; }
              @media (max-width: 415px) {
                html body .content-wrapper .main-content .grid .half.card .copy {
                  max-width: 100%; } }
          @supports (overflow: -webkit-marquee) and (justify-content: inherit) {
            html body .content-wrapper .main-content .grid .half {
              min-width: 45%; } }
          html body .content-wrapper .main-content .grid .two-third {
            min-width: 60%;
            max-width: 60%;
            width: 100%;
            -webkit-box-flex: 1 1 auto;
            -moz-box-flex: 1 1 auto;
            -webkit-flex: 1 1 auto;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto; }
            html body .content-wrapper .main-content .grid .two-third img {
              max-width: 100%; }
            @media (max-width: 800px) {
              html body .content-wrapper .main-content .grid .two-third {
                max-width: 65%; } }
          html body .content-wrapper .main-content .grid .third {
            min-width: 30%;
            max-width: 30%;
            width: 100%;
            -webkit-box-flex: 1 1 auto;
            -moz-box-flex: 1 1 auto;
            -webkit-flex: 1 1 auto;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto; }
            html body .content-wrapper .main-content .grid .third img {
              max-width: 100%; }
            @media (max-width: 800px) {
              html body .content-wrapper .main-content .grid .third {
                max-width: 65%; } }
          @supports (overflow: -webkit-marquee) and (justify-content: inherit) {
            html body .content-wrapper .main-content .grid .third {
              min-width: 30%; } }
          html body .content-wrapper .main-content .grid .fourth {
            min-width: 22%;
            max-width: 22%;
            width: 100%;
            -webkit-box-flex: 1 1 auto;
            -moz-box-flex: 1 1 auto;
            -webkit-flex: 1 1 auto;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto; }
            html body .content-wrapper .main-content .grid .fourth img {
              max-width: 100%;
              min-height: 130px;
              width: 100%;
              height: auto;
              max-height: 156px; }
            @media all and (-ms-high-contrast: none) {
              html body .content-wrapper .main-content .grid .fourth *::-ms-backdrop, html body .content-wrapper .main-content .grid .fourth img {
                min-height: 120px;
                height: 125px; } }
          @supports (overflow: -webkit-marquee) and (justify-content: inherit) {
            html body .content-wrapper .main-content .grid .fourth {
              min-width: 22%; } }
          html body .content-wrapper .main-content .grid .card .copy {
            margin: 0 0 1em 0; }
        @supports (overflow: -webkit-marquee) and (justify-content: inherit) {
          html body .content-wrapper .main-content .grid {
            display: block; } }
        html body .content-wrapper .main-content .intro-copy {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-flow: row wrap;
          -moz-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
          flex-flow: row wrap;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          -ms-justify-content: center;
          justify-content: center;
          -ms-flex-pack: center;
          -webkit-align-items: flex-end;
          -moz-align-items: flex-end;
          -ms-align-items: flex-end;
          align-items: flex-end;
          margin-bottom: 2em; }
          html body .content-wrapper .main-content .intro-copy .head {
            max-width: 250px;
            width: 35%;
            -webkit-align-self: center;
            -moz-align-self: center;
            -ms-align-self: center;
            align-self: center; }
            html body .content-wrapper .main-content .intro-copy .head h2 {
              margin: 0;
              text-align: right; }
            html body .content-wrapper .main-content .intro-copy .head h3 {
              font-style: italic;
              margin: 0;
              text-align: right; }
          html body .content-wrapper .main-content .intro-copy p {
            max-width: 45%;
            margin-left: 3em;
            margin-bottom: 0; }
            @media (min-width: 1601px) {
              html body .content-wrapper .main-content .intro-copy p {
                max-width: 35%; } }
        html body .content-wrapper .main-content .mobile-greeting {
          display: none; }
          @media (min-width: 416px) and (max-width: 785px), (max-width: 415px) {
            html body .content-wrapper .main-content .mobile-greeting {
              display: -webkit-box;
              display: -moz-box;
              display: -ms-flexbox;
              display: -webkit-flex;
              display: flex;
              -webkit-flex-flow: column wrap;
              -moz-flex-flow: column wrap;
              -ms-flex-flow: column wrap;
              flex-flow: column wrap;
              -webkit-justify-content: center;
              -moz-justify-content: center;
              -ms-justify-content: center;
              justify-content: center;
              -ms-flex-pack: center;
              -webkit-align-items: center;
              -moz-align-items: center;
              -ms-align-items: center;
              align-items: center; }
              html body .content-wrapper .main-content .mobile-greeting img {
                -webkit-box-flex: 0 1 auto;
                -moz-box-flex: 0 1 auto;
                -webkit-flex: 0 1 auto;
                -ms-flex: 0 1 auto;
                flex: 0 1 auto;
                -webkit-box-ordinal-group: 1;
                -moz-box-ordinal-group: 1;
                -ms-flex-order: 1;
                -webkit-order: 1;
                order: 1;
                display: block;
                margin: 10px auto 0;
                max-width: 200px;
                width: 33%; }
              html body .content-wrapper .main-content .mobile-greeting article.special-message {
                -webkit-box-flex: 0 1 auto;
                -moz-box-flex: 0 1 auto;
                -webkit-flex: 0 1 auto;
                -ms-flex: 0 1 auto;
                flex: 0 1 auto;
                -webkit-box-ordinal-group: 0;
                -moz-box-ordinal-group: 0;
                -ms-flex-order: 0;
                -webkit-order: 0;
                order: 0;
                display: inline;
                min-width: 0;
                margin: 0;
                width: 100%; }
                html body .content-wrapper .main-content .mobile-greeting article.special-message h2 {
                  text-align: center; }
                  html body .content-wrapper .main-content .mobile-greeting article.special-message h2 span {
                    white-space: nowrap; }
                html body .content-wrapper .main-content .mobile-greeting article.special-message p {
                  margin-bottom: 0; }
                  html body .content-wrapper .main-content .mobile-greeting article.special-message p a {
                    white-space: nowrap; } }
        html body .content-wrapper .main-content #eod .emblem-wrapper {
          margin: 0 0.5em; }
          html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem {
            display: flex;
            justify-content: space-around;
            flex-flow: row wrap;
            align-items: flex-start;
            width: 98%;
            margin: 0 auto; }
            html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem {
              display: flex;
              flex: 1;
              background-color: #B7B1A9;
              max-width: 20%;
              max-height: 250px;
              margin: 0.5em;
              border: none;
              position: relative;
              overflow-y: hidden; }
              html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem .emblem-holder {
                flex: 1;
                margin: 1em 0; }
                html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem .emblem-holder h4 {
                  text-align: center;
                  min-height: 35px;
                  color: white;
                  font-variant: small-caps;
                  font-weight: bold; }
                html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem .emblem-holder img {
                  max-width: 50%;
                  max-height: 75%;
                  margin: 0 auto;
                  display: block; }
              html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem .programs {
                position: absolute;
                padding: 1em;
                height: 100%;
                min-width: 100%;
                background-color: rgba(199, 91, 18, 0.9);
                display: block;
                opacity: 0;
                transition: all 0.25s ease-in-out;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0; }
                html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem .programs .programs-list {
                  padding: 0;
                  margin: 0; }
                  html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem .programs .programs-list a.program {
                    color: white;
                    line-height: 1.125;
                    margin: 0;
                    font-weight: 500;
                    font-variant: small-caps;
                    font-size: 0.95em; }
                  html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem .programs .programs-list.list a.program {
                    display: block;
                    padding-top: 0.25em; }
                    html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem .programs .programs-list.list a.program:first-of-type {
                      padding-top: 0; }
                  html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem .programs .programs-list.list:hover {
                    color: #69BE28;
                    font-weight: 900; }
                  html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem .programs .programs-list a.view {
                    color: white;
                    line-height: 1.125;
                    margin-top: 0.5em;
                    display: block;
                    font-weight: 500;
                    font-size: 0.95em; }
                    html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem .programs .programs-list a.view::after {
                      content: ' \f054';
                      font-family: FontAwesome;
                        font-family-style: normal;
                        font-family-weight: normal;
                      font-size: 0.8em;
                      font-text-decoration: inherit;
                      color: white; }
                  html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem .programs .programs-list span {
                    color: white;
                    font-size: 1.25em; }
              @media all and (-ms-high-contrast: none) {
                html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem *::-ms-backdrop, html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem .programs {
                  display: none; } }
              html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem.active .programs {
                opacity: 1; }
              @media all and (-ms-high-contrast: none) {
                html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem.active *::-ms-backdrop, html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem.active .programs {
                  display: block; } }
            @media (max-width: 800px), (min-width: 416px) and (max-width: 785px), (max-width: 415px), (min-width: 786px) and (max-width: 1096px) {
              html body .content-wrapper .main-content #eod .emblem-wrapper .container-emblem .emblem.active .programs {
                display: none; } }
        @supports (overflow: -webkit-marquee) and (justify-content: inherit) {
          html body .content-wrapper .main-content #about .third, html body .content-wrapper .main-content #about .fourth {
            max-width: 45%;
            float: left;
            margin: 0 1em 1em;
            min-height: 300px;
            height: 350px; } }
        html body .content-wrapper .main-content.programs .intro-container {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-justify-content: space-between;
          -moz-justify-content: space-between;
          -ms-justify-content: space-between;
          justify-content: space-between;
          -ms-flex-pack: space-between;
          max-width: 60%;
          width: 100%;
          margin-bottom: 1.5em; }
          html body .content-wrapper .main-content.programs .intro-container .intro .lead {
            margin-left: 2em; }
          html body .content-wrapper .main-content.programs .intro-container .other {
            position: absolute;
            z-index: 999;
            right: 90px;
            top: 30px;
            cursor: pointer; }
            html body .content-wrapper .main-content.programs .intro-container .other:hover h5 + ul, html body .content-wrapper .main-content.programs .intro-container .other:focus h5 + ul {
              display: block;
              cursor: pointer; }
            html body .content-wrapper .main-content.programs .intro-container .other h5 {
              margin-top: 20px;
              margin-bottom: 0;
              padding: 0.5em 1em;
              border-radius: 8px 8px 0 0;
              background-color: rgba(213, 210, 202, 0.5);
              border-bottom: 2px solid #A59D95; }
              html body .content-wrapper .main-content.programs .intro-container .other h5::after {
                content: '\f078';
                font-family: 'FontAwesome';
                margin-left: 0.25em; }
            html body .content-wrapper .main-content.programs .intro-container .other ul {
              padding: 0;
              margin: 0;
              display: none; }
              html body .content-wrapper .main-content.programs .intro-container .other ul li {
                list-style-type: none;
                text-align: right;
                padding: 0.5em;
                background-color: rgba(0, 133, 66, 0.8);
                cursor: pointer; }
                html body .content-wrapper .main-content.programs .intro-container .other ul li a {
                  color: white;
                  cursor: pointer; }
                  html body .content-wrapper .main-content.programs .intro-container .other ul li a:hover {
                    text-decoration: none;
                    cursor: pointer; }
                html body .content-wrapper .main-content.programs .intro-container .other ul li:hover {
                  background-color: rgba(105, 190, 40, 0.8);
                  cursor: pointer; }
            @media (max-width: 800px) {
              html body .content-wrapper .main-content.programs .intro-container .other {
                display: none; } }
          @media (max-width: 800px), (min-width: 416px) and (max-width: 785px), (min-width: 786px) and (max-width: 1096px), (max-width: 415px) {
            html body .content-wrapper .main-content.programs .intro-container {
              width: 100%;
              max-width: 100%; }
              html body .content-wrapper .main-content.programs .intro-container .intro .lead {
                margin-left: 0; } }
      @media (max-width: 1205px) {
        html body .content-wrapper {
          width: 100%; } }
    @supports (overflow: -webkit-marquee) and (justify-content: inherit) {
      html body .content-wrapper {
        overflow: hidden; } }
    html body footer {
      width: 100vw;
      background-color: #3e3e3e;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
      html body footer article {
        width: 33%;
        padding: 2em;
        -webkit-align-self: flex-start;
        -moz-align-self: flex-start;
        -ms-align-self: flex-start;
        align-self: flex-start; }
        html body footer article:first-of-type {
          padding-left: 5em; }
        html body footer article:last-of-type {
          padding-right: 5em; }
      html body footer .vr {
        border-left: 2px solid white;
        margin: 25px 7.5px;
        width: 3px;
        min-height: 75vh;
        height: 100%;
        -webkit-align-self: center;
        -moz-align-self: center;
        -ms-align-self: center;
        align-self: center; }
      html body footer .info .logo {
        color: white;
        padding-bottom: 1em;
        border-bottom: 3px solid white;
        margin-bottom: 1.5em; }
        html body footer .info .logo svg {
          width: 40%;
          height: auto;
          display: block;
          margin: 0 auto;
          fill: white; }
        html body footer .info .logo .lock-up {
          display: inline;
          align-self: center;
          text-align: center; }
          html body footer .info .logo .lock-up a {
            color: white;
              color-text-decoration: none; }
            html body footer .info .logo .lock-up a h4 {
              color: white;
              text-transform: lowercase;
              font-variant: small-caps;
              font-weight: bold;
              letter-spacing: 0.05em;
              padding-bottom: 0;
              margin-bottom: 0;
              margin-top: 5px; }
            html body footer .info .logo .lock-up a h5 {
              letter-spacing: 0.025em;
              padding: 0;
              margin: 0; }
            html body footer .info .logo .lock-up a:hover {
              text-decoration: none; }
      html body footer .info .address, html body footer .info .phone {
        color: white;
        text-align: center;
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center; }
        html body footer .info .address i, html body footer .info .phone i {
          padding-right: 0.5em; }
        html body footer .info .address h4, html body footer .info .phone h4 {
          display: inline-block;
          text-align: left;
          font-size: 18px; }
      html body footer .info .address {
        align-items: center; }
      html body footer .info .phone {
        margin: 1em 0; }
      html body footer .info .social-media {
        display: flex;
        justify-content: center; }
        html body footer .info .social-media .fa-stack {
          margin: 0 0.1em; }
          html body footer .info .social-media .fa-stack:first-of-type {
            margin-left: 0.25em; }
          html body footer .info .social-media .fa-stack:last-of-type {
            margin-right: 0.25em; }
          html body footer .info .social-media .fa-stack .fa-circle {
            color: #C75B12; }
          html body footer .info .social-media .fa-stack:hover .fa-circle {
            color: #E98300; }
      @media (min-width: 786px) and (max-width: 1096px), (min-width: 416px) and (max-width: 785px) {
        html body footer .info {
          max-width: 65%; } }
      html body footer .events h3 {
        color: white;
        font-variant: small-caps; }
      html body footer .events .comet-calendar a {
        color: white; }
        html body footer .events .comet-calendar a:hover {
          color: #E98300; }
      html body footer .events .comet-calendar .even, html body footer .events .comet-calendar .odd {
        min-height: 30px;
        padding: 10px 0;
        display: flex;
        justify-content: flex-start;
        align-items: center; }
      html body footer .events .comet-calendar .formatTime {
        min-width: 60px;
        width: 60px;
        max-height: 60px;
        color: #C75B12;
        background-color: white;
        margin-right: 1em;
        text-align: center; }
        html body footer .events .comet-calendar .formatTime .startDate .day-of-week {
          display: none; }
        html body footer .events .comet-calendar .formatTime .startDate .startMonth {
          display: block;
          width: 100%;
          text-align: center;
          clear: both;
          background-color: #C75B12;
          color: white;
          padding: 0.125em 0;
          font-variant: all-petite-caps;
          font-weight: bold;
          font-size: 1.125em; }
        html body footer .events .comet-calendar .formatTime .startDate .startDay {
          display: inline;
          text-align: center;
          margin: 0.25em 0;
          padding: 0;
          width: 100%; }
        html body footer .events .comet-calendar .formatTime .startDate .startYear {
          display: none; }
        html body footer .events .comet-calendar .formatTime .cc {
          display: inline;
          text-align: center; }
        html body footer .events .comet-calendar .formatTime .stopDate .day-of-week {
          display: none; }
        html body footer .events .comet-calendar .formatTime .stopDate .stopMonth {
          display: none; }
        html body footer .events .comet-calendar .formatTime .stopDate .stopDay {
          display: inline;
          text-align: center; }
        html body footer .events .comet-calendar .formatTime .startTime, html body footer .events .comet-calendar .formatTime .startTime ~ .ccDash, html body footer .events .comet-calendar .formatTime .stopTime {
          display: none; }
      html body footer .events .comet-calendar .location {
        display: none; }
      html body footer .events .comet-calendar .even {
        background-color: rgba(255, 255, 255, 0);
        border-top: 2px solid white;
        border-bottom: none; }
        html body footer .events .comet-calendar .even:first-of-type {
          border-top: none; }
        html body footer .events .comet-calendar .even:last-of-type {
          border-bottom: none; }
      html body footer .events .comet-calendar .odd {
        background-color: rgba(255, 255, 255, 0); }
      html body footer #sm-embed h3 {
        color: white;
        text-transform: lowercase;
        font-variant: small-caps; }
  @media (max-width: 1205px) {
    html body .content-wrapper .main-content .grid .third, html body .content-wrapper .main-content .grid .fourth {
      min-width: 0;
      max-width: 45%;
      -webkit-box-flex: 1 1 auto;
      -moz-box-flex: 1 1 auto;
      -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto; }
      html body .content-wrapper .main-content .grid .third img, html body .content-wrapper .main-content .grid .third iframe, html body .content-wrapper .main-content .grid .fourth img, html body .content-wrapper .main-content .grid .fourth iframe {
        max-width: 100%; } }
  @media (min-width: 786px) and (max-width: 1096px) {
    html body .content-wrapper .main-content .grid .half, html body .content-wrapper .main-content .grid .third, html body .content-wrapper .main-content .grid .fourth {
      min-width: 45%;
      width: 100%;
      max-width: 65%;
      -webkit-box-flex: 1;
      -moz-box-flex: 1;
      -webkit-flex: 1;
      -ms-flex: 1;
      flex: 1; }
      html body .content-wrapper .main-content .grid .half img, html body .content-wrapper .main-content .grid .half iframe, html body .content-wrapper .main-content .grid .third img, html body .content-wrapper .main-content .grid .third iframe, html body .content-wrapper .main-content .grid .fourth img, html body .content-wrapper .main-content .grid .fourth iframe {
        max-width: 100%; } }
  @media (max-width: 800px) {
    html body .container-header {
      background-size: 200%;
      background-position: inherit;
      top: 5vh; }
      html body .container-header div.aux {
        display: block;
        max-height: 10%;
        height: 100%; }
        html body .container-header div.aux .logo img {
          height: 3em;
          min-height: 50px; }
        html body .container-header div.aux .logo .department.lock-up a {
          color: rgba(255, 255, 255, 0) !important;
          text-decoration: none; }
        html body .container-header div.aux .logo .department.lock-up.active {
          display: none; }
        html body .container-header div.aux .searchbox {
          display: none; }
        html body .container-header div.aux .mobile-nav-modal-button {
          display: block;
          position: absolute;
          right: 10px;
          top: 15px;
          font-size: 32px;
          font-weight: bold;
          color: white;
          z-index: 9999; }
          html body .container-header div.aux .mobile-nav-modal-button input {
            display: none; }
          html body .container-header div.aux .mobile-nav-modal-button div, html body .container-header div.aux .mobile-nav-modal-button div::before, html body .container-header div.aux .mobile-nav-modal-button div::after {
            background: white;
            position: absolute;
            height: 5px;
            width: 50px;
            border-radius: 4px;
            transition: all 0.5s; }
          html body .container-header div.aux .mobile-nav-modal-button label {
            position: relative;
            width: 50px;
            height: 40px;
            display: inline-block;
            cursor: pointer;
            margin: 0.3em;
            transition: all .5s;
            text-align: left; }
          html body .container-header div.aux .mobile-nav-modal-button div, html body .container-header div.aux .mobile-nav-modal-button div::before, html body .container-header div.aux .mobile-nav-modal-button div::after {
            background: white;
            position: absolute;
            height: 5px;
            width: 50px;
            border-radius: 4px;
            transition: all 0.5s; }
          html body .container-header div.aux .mobile-nav-modal-button label div:first-child {
            top: 0px; }
          html body .container-header div.aux .mobile-nav-modal-button label div:nth-child(2) {
            top: 10px; }
          html body .container-header div.aux .mobile-nav-modal-button label div:nth-child(3) {
            top: 20px; }
          html body .container-header div.aux .mobile-nav-modal-button #menu35 + label div:first-child {
            transition: width .15s .15s, top .15s, right .15s, transform .15s; }
          html body .container-header div.aux .mobile-nav-modal-button #menu35 + label div:nth-child(2) {
            transition: transform .15s; }
          html body .container-header div.aux .mobile-nav-modal-button #menu35 + label div:nth-child(3) {
            right: 0;
            transition: width .15s .15s, top .15s, right .15s, transform .15s; }
          html body .container-header div.aux .mobile-nav-modal-button #menu35:checked + label div:first-child {
            top: 2%;
            left: 7%;
            width: 50%;
            transform: rotate(45deg);
            transition: width .15s, top .15s .15s, left .15s .15s, transform .15s .15s; }
          html body .container-header div.aux .mobile-nav-modal-button #menu35:checked + label div:nth-child(2) {
            transform: rotate(-45deg);
            transition: transform .15s .15s; }
          html body .container-header div.aux .mobile-nav-modal-button #menu35:checked + label div:nth-child(3) {
            width: 50%;
            right: 7%;
            top: 47%;
            transform: rotate(45deg);
            transition: width .15s, top .15s .15s, right .15s .15s, transform .15s .15s; }
      html body .container-header .logo-container {
        position: relative;
        width: 75%;
        top: 12vh;
        margin: 0 auto; }
      html body .container-header #scrollDown {
        top: 83%; }
      html body .container-header nav.main {
        display: none; }
      html body .container-header.full-vh {
        height: 50vh; }
      html body .container-header .freakout {
        display: none; }
      html body .container-header.full-vh #main--logo-container {
        display: none; }
      html body .container-header nav.mobile {
        position: fixed;
        top: 9vh;
        right: 0;
        left: -100vw;
        bottom: 0;
        width: 50%;
        z-index: 9990;
        transition: all 0.3s ease-in-out;
        min-height: 100vh;
        min-width: 100vw;
        overflow: scroll;
        background-color: #C75B12;
        padding: 0 6.5%;
      visibility: visible;}
        html body .container-header nav.mobile .mobile-container {
          position: relative;
          width: 100%;
          margin-top: 30px; }
          html body .container-header nav.mobile .mobile-container .logo-container {
            position: initial;
            padding-top: 0.25em;
            width: initial;
            top: 0;
            display: initial; }
            html body .container-header nav.mobile .mobile-container .logo-container .logo {
              color: white;
              padding-bottom: 1em;
              margin-bottom: 1.5em; }
              html body .container-header nav.mobile .mobile-container .logo-container .logo svg {
                width: 35%;
                height: 35%;
                display: block;
                margin: 0 auto;
                fill: white; }
              html body .container-header nav.mobile .mobile-container .logo-container .logo .lock-up {
                display: inline;
                align-self: center;
                text-align: center; }
                html body .container-header nav.mobile .mobile-container .logo-container .logo .lock-up a {
                  color: white; }
                html body .container-header nav.mobile .mobile-container .logo-container .logo .lock-up h3 {
                  color: white;
                  text-transform: lowercase;
                  font-variant: small-caps;
                  font-weight: bold;
                  letter-spacing: 0.05em;
                  padding-bottom: 0;
                  margin-bottom: 0;
                  margin-top: 5px; }
                html body .container-header nav.mobile .mobile-container .logo-container .logo .lock-up h4 {
                  letter-spacing: 0.025em;
                  padding: 0;
                  margin: 0; }
          html body .container-header nav.mobile .mobile-container ul {
            padding: 0;
            margin: 0 auto;
            list-style-type: none;
            width: 95%;
            border: none;
            vertical-align: middle; }
            html body .container-header nav.mobile .mobile-container ul li {
              max-width: 300px;
              width: 100%;
              min-height: 30px;
              text-align: left;
              margin: 0.25em 0; }
              html body .container-header nav.mobile .mobile-container ul li a {
                font-size: 18px;
                font-weight: 300;
                color: white;
                text-transform: capitalize; }
              html body .container-header nav.mobile .mobile-container ul li.nav--dropdown > a::after {
                padding-left: 0.5em;
                content: "\f078";
                font-family: 'FontAwesome';
                font-style: normal;
                font-weight: normal;
                font-size: 11px;
                text-decoration: none;
                color: white;
                position: relative; }
              html body .container-header nav.mobile .mobile-container ul li.nav--dropdown ul.active {
                display: block;
                opacity: 1;
                padding-left: 1em; }
              html body .container-header nav.mobile .mobile-container ul li span.arrow {
                position: relative; }
                html body .container-header nav.mobile .mobile-container ul li span.arrow::before {
                  content: '\f107';
                  font-family: 'FontAwesome';
                  left: 10px;
                  position: absolute;
                  top: 0; }
                html body .container-header nav.mobile .mobile-container ul li span.arrow.rotate {
                  transition: all 0.3s ease-in-out;
                  transform: rotate(-180deg); }
              html body .container-header nav.mobile .mobile-container ul li > ul {
                opacity: 0;
                display: none;
                transition: all 0.3s ease-in-out; }
                html body .container-header nav.mobile .mobile-container ul li > ul.active {
                  opacity: 1;
                  display: block;
                  transition: all 0.3s ease-in-out; }
          html body .container-header nav.mobile .mobile-container .cta-wrapper {
            margin: 0.5em;
            text-align: center;
            padding-bottom: 0.5em; }
            html body .container-header nav.mobile .mobile-container .cta-wrapper a.cta {
              padding: 0.25em 0.75em;
              border: 2px solid white;
              color: white;
              background-color: #008542;
              text-transform: uppercase; }
          html body .container-header nav.mobile .mobile-container .social-media {
            text-align: center;
            padding-top: 1em; }
            html body .container-header nav.mobile .mobile-container .social-media a {
              color: white; }
              html body .container-header nav.mobile .mobile-container .social-media a .fa-inverse {
                color: #C75B12; }
        html body .container-header nav.mobile.active {
          left: 0; }
    html body .content-wrapper {
      padding: 5em 0em 1.5em; }
      html body .content-wrapper .main-content {
        margin: 0 1em;
        padding-top: 0; }
        html body .content-wrapper .main-content .grid .half, html body .content-wrapper .main-content .grid .third, html body .content-wrapper .main-content .grid .fourth {
          min-width: 45%;
          -webkit-box-flex: 1;
          -moz-box-flex: 1;
          -webkit-flex: 1;
          -ms-flex: 1;
          flex: 1;
          width: 100%;
          max-width: 65%; }
          html body .content-wrapper .main-content .grid .half img, html body .content-wrapper .main-content .grid .half iframe, html body .content-wrapper .main-content .grid .third img, html body .content-wrapper .main-content .grid .third iframe, html body .content-wrapper .main-content .grid .fourth img, html body .content-wrapper .main-content .grid .fourth iframe {
            width: 100%; }
        html body .content-wrapper .main-content .intro-copy {
          display: block; }
          html body .content-wrapper .main-content .intro-copy .head {
            max-width: 100%;
            margin-bottom: 1em;
            width: 100%;
            text-align: center; }
            html body .content-wrapper .main-content .intro-copy .head h2, html body .content-wrapper .main-content .intro-copy .head h3 {
              display: inline;
              text-align: center; }
            html body .content-wrapper .main-content .intro-copy .head h3 {
              margin-bottom: 0.5em; }
          html body .content-wrapper .main-content .intro-copy p {
            max-width: 100%;
            margin-left: 0; }
    html body footer {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      padding-bottom: 1.25em; }
      html body footer .vr {
        display: none; }
      html body footer article {
        width: 95%;
        margin: 0 auto;
        padding: 2em 0;
        display: block; }
        html body footer article:first-of-type {
          padding-left: 0;
          -webkit-box-ordinal-group: 1;
          -moz-box-ordinal-group: 1;
          -ms-flex-order: 1;
          -webkit-order: 1;
          order: 1; }
        html body footer article:last-of-type {
          padding-right: 0; }
        html body footer article:nth-of-type(2) {
          -webkit-box-ordinal-group: 2;
          -moz-box-ordinal-group: 2;
          -ms-flex-order: 2;
          -webkit-order: 2;
          order: 2; }
        html body footer article .events div#cc5521 div:nth-child(1n+4) {
          display: none; }
        html body footer article .events div#cc5521 div:nth-child(3) {
          border-bottom: none; }
        html body footer article#sm-embed {
          display: none; } }
  @media (max-width: 415px) {
    html .hide--phone {
      display: none; }
    html body.internal.slideshow .container-header {
      height: 0;
      max-height: 0; }
    html body.internal.slideshow .content-wrapper .main-content {
      padding-top: 0.3em; }
      html body.internal.slideshow .content-wrapper .main-content .slideshow-container button.slick-arrow {
        display: none !important;
        visibility: hidden; }
    html body.internal.sub-page .container-header {
      max-height: 0;
      height: 0; }
    html body.internal.sub-page .content-wrapper {
      padding-top: 3em; }
      html body.internal.sub-page .content-wrapper .main-content {
        margin-top: 0;
        padding-top: 2em; }
        html body.internal.sub-page .content-wrapper .main-content #intro {
          padding-bottom: 0; }
    html body .container-header {
      max-height: 65vh;
      min-height: 50vh;
      height: auto; }
      html body .container-header nav.mobile .mobile-container .logo-container .logo .lock-up h3 {
        letter-spacing: -0.0125em; }
      html body .container-header .logo-container {
        position: relative;
        width: 100%;
        top: 6em; }
        html body .container-header .logo-container .logo .lock-up h3 {
          letter-spacing: 0; }
      html body .container-header div.aux {
        display: block;
        min-height: 10%;
        height: 100%;
        max-height: 11%;
        width: 100%; }
        html body .container-header div.aux .logo img {
          height: 3em; }
        html body .container-header div.aux .logo .department.lock-up.active {
          display: none; }
        html body .container-header div.aux .searchbox {
          display: none; }
      html body .container-header nav.main {
        display: none; }
      html body .container-header.full-vh {
        height: 50vh; }
      html body .container-header .freakout {
        display: none; }
    html body .content-wrapper .main-content {
      margin: 0 0.1em;
      padding-top: 0; }
      html body .content-wrapper .main-content .grid .two-third, html body .content-wrapper .main-content .grid .half, html body .content-wrapper .main-content .grid .third, html body .content-wrapper .main-content .grid .fourth {
        max-width: 100%;
        min-width: 100%;
        -webkit-box-flex: 0 1 auto;
        -moz-box-flex: 0 1 auto;
        -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        width: 100%; }
        html body .content-wrapper .main-content .grid .two-third img, html body .content-wrapper .main-content .grid .two-third iframe, html body .content-wrapper .main-content .grid .half img, html body .content-wrapper .main-content .grid .half iframe, html body .content-wrapper .main-content .grid .third img, html body .content-wrapper .main-content .grid .third iframe, html body .content-wrapper .main-content .grid .fourth img, html body .content-wrapper .main-content .grid .fourth iframe {
          width: 100%; }
      html body .content-wrapper .main-content .intro-copy {
        display: block; }
        html body .content-wrapper .main-content .intro-copy .head {
          margin-bottom: 1em;
          max-width: 100%; }
          html body .content-wrapper .main-content .intro-copy .head h2, html body .content-wrapper .main-content .intro-copy .head h3 {
            text-align: center; }
        html body .content-wrapper .main-content .intro-copy p {
          max-width: 100%;
          margin-left: 0; }
      html body .content-wrapper .main-content table {
        font-size: 12px; }
    html body footer {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; }
      html body footer article {
        width: 95%;
        margin: 0 auto;
        padding: 2em 0;
        display: block; }
        html body footer article:first-of-type {
          padding-left: 0;
          -webkit-box-ordinal-group: 1;
          -moz-box-ordinal-group: 1;
          -ms-flex-order: 1;
          -webkit-order: 1;
          order: 1; }
        html body footer article:last-of-type {
          padding-right: 0; }
        html body footer article:nth-of-type(2) {
          -webkit-box-ordinal-group: 2;
          -moz-box-ordinal-group: 2;
          -ms-flex-order: 2;
          -webkit-order: 2;
          order: 2; }
        html body footer article .events div#cc5521 div:nth-child(1n+4) {
          display: none; }
        html body footer article .events div#cc5521 div:nth-child(3) {
          border-bottom: none; }
        html body footer article#sm-embed {
          display: none; } }

@media print {
  html * {
    transition: none !important; }
  html body {
    page-break-after: avoid; }
    html body .container-header {
      max-height: 100px;
      height: 100px;
      padding-bottom: 1em; }
      html body .container-header nav.aux {
        display: none; }
      html body .container-header .logo-container {
        display: none; }
      html body .container-header h1 {
        position: static;
        display: block;
        width: 100%;
        margin: 0 auto;
        max-width: 100%;
        top: 0;
        left: 0;
        text-align: center;
        padding-bottom: 1em;
        height: 100%;
        overflow: visible;
        page-break-after: avoid; }
      html body .container-header .mobile, html body .container-header .main {
        display: none; }
      html body .container-header.full-vh {
        height: auto;
        max-height: 5em; }
        html body .container-header.full-vh .logo-container {
          display: none; }
  @-moz-document url-prefix() {
    html body .container-header h1 {
      position: absolute;
      display: block;
      top: 0; } }
      @supports (overflow: -webkit-marquee) and (justify-content: inherit) {
        html body .container-header h1 {
          position: static;
          display: block;
          top: 0;
          width: 8in;
          text-align: center; } }
      html body .container-header .video-contain, html body .container-header .freakout, html body .container-header #scrollDown, html body .container-header nav.main {
        display: none; }
  @-moz-document url-prefix() {
    html body .container-header {
      position: static;
      max-height: 50px;
      height: 50px;
      clear: both;
      display: block; } }
    html body .content-wrapper {
      position: static;
      padding: 1em 0.5em 0.5em;
      max-width: 670px; }
      html body .content-wrapper .main-content {
        padding-top: 0;
        top: 0; }
        html body .content-wrapper .main-content .grid {
          display: block; }
          html body .content-wrapper .main-content .grid > .full.card, html body .content-wrapper .main-content .grid .half.card, html body .content-wrapper .main-content .grid .two-third.card, html body .content-wrapper .main-content .grid .third.card, html body .content-wrapper .main-content .grid .fourth.card {
            max-width: 100%;
            width: 100%; }
            html body .content-wrapper .main-content .grid > .full.card img, html body .content-wrapper .main-content .grid .half.card img, html body .content-wrapper .main-content .grid .two-third.card img, html body .content-wrapper .main-content .grid .third.card img, html body .content-wrapper .main-content .grid .fourth.card img {
              display: none; }
        html body .content-wrapper .main-content h1 {
          position: static;
          display: block;
          width: 100%;
          margin: 0 auto;
          max-width: 100%;
          top: 0;
          left: 0;
          text-align: center;
          padding-bottom: 1em;
          height: 100%;
          overflow: visible;
          page-break-after: avoid; }
        html body .content-wrapper .main-content .intro-copy {
          display: block;
          width: 100%; }
          html body .content-wrapper .main-content .intro-copy .head {
            max-width: 100%;
            width: 100%;
            margin-bottom: 1em; }
            html body .content-wrapper .main-content .intro-copy .head h2, html body .content-wrapper .main-content .intro-copy .head h3 {
              text-align: center; }
          html body .content-wrapper .main-content .intro-copy p {
            max-width: 100%;
            width: 100%; }
        html body .content-wrapper .main-content .grid {
          page-break-inside: auto; }
          html body .content-wrapper .main-content .grid .half.card .copy, html body .content-wrapper .main-content .grid .third.card .copy, html body .content-wrapper .main-content .grid .fourth.card .copy {
            page-break-inside: avoid;
            max-width: 100%; }
            html body .content-wrapper .main-content .grid .half.card .copy audio, html body .content-wrapper .main-content .grid .third.card .copy audio, html body .content-wrapper .main-content .grid .fourth.card .copy audio {
              display: none; }
            html body .content-wrapper .main-content .grid .half.card .copy p.lyrics, html body .content-wrapper .main-content .grid .third.card .copy p.lyrics, html body .content-wrapper .main-content .grid .fourth.card .copy p.lyrics {
              display: block !important; }
        html body .content-wrapper .main-content.programs .intro-container {
          max-width: 100%; }
        html body .content-wrapper .main-content.programs .grid {
          page-break-inside: auto; }
          html body .content-wrapper .main-content.programs .grid .half.card .copy, html body .content-wrapper .main-content.programs .grid .third.card .copy, html body .content-wrapper .main-content.programs .grid .fourth.card .copy {
            page-break-inside: avoid;
            max-width: 100%; }
        html body .content-wrapper .main-content #eod .emblem-wrapper {
          display: none; }
    html body#vision .main-content .grid {
      max-width: 100%;
      width: 100%;
      display: block; }
      html body#vision .main-content .grid .two-third, html body#vision .main-content .grid .third {
        width: 100%;
        max-width: 100%; }
        html body#vision .main-content .grid .two-third img, html body#vision .main-content .grid .third img {
          display: none; }
    html body#contacts .main-content .grid .third {
      width: 100%;
      max-width: 100%;
      margin: 0 auto 0.5em;
      page-break-inside: avoid; }
      html body#contacts .main-content .grid .third:last-of-type {
        margin-bottom: 0; }
      html body#contacts .main-content .grid .third.staff img {
        width: 150px;
        height: 150px;
        max-width: 150px;
        max-height: 150px; }
    html body#contacts .main-content .grid#vpsa .third:last-child {
      display: none; }
  @-moz-document url-prefix() {
    html body .content-wrapper {
      height: 100%;
      overflow: visible;
      display: block; } }
    html body#traditions .main-content {
      max-width: 100%; }
      html body#traditions .main-content .revealLyrics {
        display: none; }
      html body#traditions .main-content .grid {
        max-width: 100%;
        width: 100%;
        display: block; }
        html body#traditions .main-content .grid .third, html body#traditions .main-content .grid .half {
          max-width: 100%; }
          html body#traditions .main-content .grid .third img, html body#traditions .main-content .grid .half img {
            display: none; }
    html body#departments .main-content {
      max-width: 100%;
      width: 100%; }
      html body#departments .main-content .grid {
        max-width: 100%;
        width: 100%;
        display: block; }
        html body#departments .main-content .grid .half, html body#departments .main-content .grid .third {
          max-width: 100%;
          width: 100%; }
    html body#staff .main-content .grid {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
      html body#staff .main-content .grid .profDev ul, html body#staff .main-content .grid .links ul, html body#staff .main-content .grid .marketing ul {
        padding: 0; }
    html body#dev .main-content .grid {
      max-width: 100%;
      width: 100%;
      display: block; }
      html body#dev .main-content .grid .two-third, html body#dev .main-content .grid .third {
        width: 100%;
        max-width: 100%; }
        html body#dev .main-content .grid .two-third td:first-of-type ul, html body#dev .main-content .grid .third td:first-of-type ul {
          padding: 0; }
      html body#dev .main-content .grid .third .panel-group .panel-heading {
        padding-bottom: 0; }
        html body#dev .main-content .grid .third .panel-group .panel-heading h2 {
          margin-top: 0; }
      html body#dev .main-content .grid .third .panel-group .panel-body {
        padding-top: 7px; }
        html body#dev .main-content .grid .third .panel-group .panel-body .event h3 {
          margin-top: 0;
          padding-top: 0; }
    html body#greetings .main-content img {
      display: inline-block;
      float: left; }
    html body#greetings .main-content .copy {
      float: left; }
    html body#plan .main-content .grid .two-third {
      max-width: 100%;
      width: 100%; }
      html body#plan .main-content .grid .two-third .grid .half {
        display: inline-block;
        float: left;
        width: 45%; }
    html body#plan .main-content .grid + p {
      clear: both; }
    html body#plan .main-content .grid .third {
      display: none; }
    html body footer {
      display: none; }
      html body footer .info .logo svg {
        fill: #C75B12;
        width: 25%; } }
span.hideme{
	position:absolute;
	left:-10000px;
	top:auto;
	width:1px;
	height:1px;
	overflow:hidden; }

html body .container-header .aux .flex-wrapper {
    max-width: 600px;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

html body .container-header .aux .flex-wrapper .cta-wrapper {
    padding-right: 0.75em;
}

html body .container-header .aux .flex-wrapper .cta-wrapper a {
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    max-height: 34px;
    border-radius: 4px;
    background-color: #008542;
    font-variant: small-caps;
    font-weight: bold;
}

html body .container-header .aux .flex-wrapper .cta-wrapper a:hover {
    border-collapse: collapse;
    border: 2px solid #008542;
    background-color: rgba(255, 255, 255, 1.0);
    color: #008542;
}
