@charset "UTF-8";
/*------------------------------------*\
    $TABLE OF CONTENTS
    based generally on Harry Roberts excellent CSS Guidelines https://github.com/csswizardry/CSS-Guidelines
\*------------------------------------*/
/**
 * COMPASS
 * VARIABLES..............................Declarations of Sass variables
 * .....Colors
 * .....Typography
 * .....Layout
 * .....Defaults
 * .....Breakpoints
 * .....Commonly-used Image Patterns
 * MIXINS.................................Sass mixins
 * RESET..................................Set reset defaults
 * GLOBAL CLASSES.........................Set reset defaults
 * GLOBAL ELEMENTS........................Establish global styles
 * .....Main
 * .....Headings
 * .....Text-related elements (p, blockquote, lists)
 * .....Defaults
 * .....Breakpoints
 * TYPOGRAPHY------------------------------
 * MEDIA------------------------------
 * LAYOUT------------------------------
 * NAVIGATION------------------------------
 * TOC To Be Continued
 */
/*------------------------------------*\
    $VARIABLES
\*------------------------------------*/
/* line 5, scss/generic/_variables.scss */
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/* CSS Transition
    Usage: @include transition(width,0.3s,ease-out);

    These aren't used on the Cornell site, since we use Autoprefixer.
 */
/* Rem Unit font sizes with relative fallback http:/seesparkbox.com/foundry/scss_rem_mixin_now_with_a_better_fallback
    Usage: @include font-size(1, large);

    This isn't really used on the Cornell Site.
*/
/*------------------------------------*\
    $RESET
\*------------------------------------*/
/* Border-Box http:/paulirish.com/2012/box-sizing-border-box-ftw/ */
/* line 6, scss/generic/_reset.scss */
* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 11, scss/generic/_reset.scss */
html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, ol, ul, li, form, legend, label, table, header, footer, nav, section, figure, .h2, .h3, .h4 {
  margin: 0;
  padding: 0;
}

/* line 15, scss/generic/_reset.scss */
header, footer, nav, section, article, hgroup, figure {
  display: block;
}

/*------------------------------------*\
    $GLOBAL ELEMENTS
\*------------------------------------*/
/*------------------------------------*\
    $GLOBAL CLASSES
\*------------------------------------*/
/* Clearfix */
/* line 6, scss/base/_global-classes.scss */
.cf, .wrapper {
  *zoom: 1;
}

/* line 11, scss/base/_global-classes.scss */
.cf:before, .wrapper:before, .cf:after, .wrapper:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

/* line 17, scss/base/_global-classes.scss */
.cf:after, .wrapper:after {
  clear: both;
}

/*------------------------------------*\
  This is a special class to support
  accessibility. This style will expose
  the element to readers but will not
  be visual in a browser
\*------------------------------------*/
/* line 28, scss/base/_global-classes.scss */
.visually-hidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

/* line 41, scss/base/_global-classes.scss */
body:hover .visually-hidden a, body:hover .visually-hidden input, body:hover .visually-hidden button {
  display: none !important;
}

/* Completely remove from the flow and screen readers. */
/* line 47, scss/base/_global-classes.scss */
.is-hidden {
  display: none !important;
  visibility: hidden !important;
}

/* Completely remove from the flow but leave available to screen readers. */
/* line 54, scss/base/_global-classes.scss */
.is-vishidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Floats */
/* line 66, scss/base/_global-classes.scss */
.float-none {
  float: none;
  padding: 0 0 0 0;
}

/* line 72, scss/base/_global-classes.scss */
.right {
  float: right;
  padding: 0 0 1rem 1rem;
}

/* line 78, scss/base/_global-classes.scss */
.right-search {
  float: right;
  padding: 0 0 1rem 0;
}

/* line 84, scss/base/_global-classes.scss */
.left {
  float: left;
  padding: 0 1rem 1rem 0;
}

/* Text-Align */
/* line 91, scss/base/_global-classes.scss */
.align-right {
  text-align: right;
}

/* line 96, scss/base/_global-classes.scss */
.align-center {
  text-align: center;
}

/* line 101, scss/base/_global-classes.scss */
.align-left {
  text-align: left;
}

/* line 106, scss/base/_global-classes.scss */
.cornell-rectangle {
  padding: 0.75em;
  background-color: #523178;
  font-size: 1.25em;
  color: #fff;
  text-align: center;
  border-color: #666;
  border-width: thin;
}

/* line 117, scss/base/_global-classes.scss */
.center-on-page {
  display: block;
  text-align: center;
}

/* line 123, scss/base/_global-classes.scss */
.center-table-on-page {
  overflow: hidden;
}

/* line 128, scss/base/_global-classes.scss */
.center-table-on-page table {
  margin-left: auto;
  margin-right: auto;
}

/* line 134, scss/base/_global-classes.scss */
.vertical-text {
  -webkit-transform: rotate(90deg);
  -webkit-transform-origin: 50% 50%;
  /* Chrome, Safari, Opera */
  -ms-transform: rotate(90deg);
  -ms-transform-origin: 50% 50%;
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* IE 9 */
  -ms-transform: rotate(90deg);
  /* IE 9 */
  transform: rotate(90deg);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  /* I'm not fond of setting this width and height here */
  width: 5rem;
  height: 6rem;
}

/* Pull-floats */
@media all and (min-width: 46.8em) {
  /* line 157, scss/base/_global-classes.scss */
  .pull-left {
    float: left;
  }
  /* line 162, scss/base/_global-classes.scss */
  .pull-right {
    float: right;
  }
}
/* Display Classes */
/* line 169, scss/base/_global-classes.scss */
@media all and (max-width: 46.8em) {
  .hide-small {
    display: none;
  }
}

/* line 176, scss/base/_global-classes.scss */
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .hide-med {
    display: none;
  }
}

@media all and (min-width: 50em) {
  .hide-large {
    /* line 185, scss/base/_global-classes.scss */
    display: none;
  }
}

/* line 191, scss/base/_global-classes.scss */
.valid {
  color: #719949;
}

/* line 196, scss/base/_global-classes.scss */
.error {
  color: #A50050;
}

/* line 201, scss/base/_global-classes.scss */
.errorbox {
  background: #ffbaba;
  border: 1px solid #ff8787;
  color: #d8000c;
  padding: 2px;
}

/* line 209, scss/base/_global-classes.scss */
.infobox {
  background: #bde5f8;
  border: 1px solid #8fd3f3;
  color: #00529b;
}

/* line 216, scss/base/_global-classes.scss */
.errorbox, .infobox {
  display: block;
  padding: 0.5em;
  margin: 1em 0;
}

/* line 225, scss/base/_global-classes.scss */
.border-top {
  border-top-width: 5px;
  border-top-style: solid;
  border-top-color: #719949;
}
.border-top.border-top-purple, .border-top.border-top-info {
  /* line 231, scss/base/_global-classes.scss */
  border-top-color: #523178;
}
.border-top.border-top-blue, .border-top.border-top-data {
  /* line 235, scss/base/_global-classes.scss */
  border-top-color: #147BD1;
}
.border-top.border-top-red, .border-top.border-top-endorsement {
  /* line 239, scss/base/_global-classes.scss */
  border-top-color: #A50050;
}
.border-top.border-top-green, .border-top.border-top-events {
  /* line 243, scss/base/_global-classes.scss */
  border-top-color: #719949;
}
.border-top.border-top-white {
  /* line 247, scss/base/_global-classes.scss */
  border-top-color: #ffffff;
}

/*------------------------------------*\
    $MAIN BODY
\*------------------------------------*/
/* line 5, scss/base/_main.scss */
.skip a:focus, .skip a:active {
  position: relative;
  border: solid #333 2px;
  color: #fff;
  background: #555;
}

/* line 13, scss/base/_main.scss */
.skiplist {
  margin-bottom: 0;
}

/* line 18, scss/base/_main.scss */
body {
  background: #f5f5f5 url("../images/beige_paper_50.jpg");
  font: 100%/1.5 Georgia, Times, serif;
  -webkit-text-size-adjust: 100%;
  color: #555555;
}

/* line 28, scss/base/_main.scss */
.body {
  width: 100%;
  /*height: 100%;*/
  position: absolute;
  /* margin-top: -1px; */
}

/* line 36, scss/base/_main.scss */
[role=main] .text-multicolumn li a {
  text-decoration: none;
  border-bottom: none;
}
[role=main] .text-multicolumn li a[href] {
  text-decoration: none;
  border-bottom: none;
}
[role=main] li {
  font-size: 1.125rem;
  margin-top: 0.375rem;
}
[role=main] li > p {
  font-size: 1em;
}
[role=main] li a[href] {
  text-decoration: none;
  border-bottom: 1px solid #aaa;
}
[role=main] li a:hover {
  text-decoration: none;
  color: #5f2f95;
  border-bottom: 1px solid #5f2f95;
}
[role=main] li .block-faculty a {
  text-decoration: none;
  border-bottom: none;
}
[role=main] li .block-news-brief .headline a[href] {
  text-decoration: none;
  color: #523178;
  line-height: 1;
  border-bottom: none;
}
[role=main] p a[href] {
  text-decoration: none;
  border-bottom: 1px solid #aaa;
}
[role=main] p a.arrows-btn {
  border-bottom: none;
}
[role=main] p a:hover {
  text-decoration: none;
  color: #5f2f95;
  border-bottom: 1px solid #5f2f95;
}
[role=main] td a:hover {
  text-decoration: none;
  color: #5f2f95;
  border-bottom: 1px solid #5f2f95;
}
[role=main] td li p a[href] {
  text-decoration: none;
  border-bottom: 1px solid #aaa;
}
[role=main] td li p a:hover {
  text-decoration: none;
  color: #5f2f95;
  border-bottom: 1px solid #5f2f95;
}
[role=main] h3 a:hover {
  text-decoration: none;
  border-bottom: 1px solid #555;
}
[role=main] h3 a {
  text-decoration: underline;
  font-weight: 900;
}
[role=main] .h3 a:hover {
  text-decoration: none;
  border-bottom: 1px solid #555;
}
[role=main] .h3 a {
  text-decoration: underline;
  font-weight: 900;
}
[role=main] h4 a:hover {
  text-decoration: none;
  border-bottom: 1px solid #555;
}
[role=main] h4 a {
  text-decoration: underline;
  font-weight: 900;
}
[role=main] .h4 a:hover {
  text-decoration: none;
  border-bottom: 1px solid #555;
}
[role=main] .h4 a {
  text-decoration: underline;
  font-weight: 900;
}
[role=main] .sidebar li a {
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
}
[role=main] .sidebar li a:hover {
  text-decoration: underline;
  border-bottom: none;
}
[role=main] li,
[role=main] p {
  line-height: 1.5;
}
[role=main] li a:hover, [role=main] li a:focus,
[role=main] p a:hover,
[role=main] p a:focus {
  text-decoration: none;
  color: #5f2f95;
  border-bottom: 1px solid #5f2f95;
}
[role=main] h3 {
  font-size: 1.0625rem;
  line-height: 1.5;
  margin: 0.75em 0 0;
}
[role=main] .h3 {
  font-size: 1.0625rem;
  line-height: 1.5;
  margin: 0.75em 0 0;
}
[role=main] h3.headline a:hover,
[role=main] .h3.headline a:hover,
[role=main] h4.headline a:hover,
[role=main] .h4.headline a:hover {
  text-decoration: none;
  border-bottom: 1px solid #555;
}
[role=main] li > p {
  font-size: inherit;
  margin: inherit;
}
[role=main] .sidebar li a,
[role=main] .sidebar p a {
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
}

/*------------------------------------*\
    $LINK ELEMENTS
\*------------------------------------*/
/* line 5, scss/base/_links.scss */
a {
  color: #5f2f95;
  outline: 0;
  text-decoration: none;
  font-weight: 500;
  /* line 11, scss/base/_links.scss */
}
a:hover, a:focus {
  text-decoration: underline;
  color: #A50050;
}

/* line 17, scss/base/_links.scss */
a img {
  border: 0px;
}

@media all and (min-width: 46.8em) {
  /* line 23, scss/base/_links.scss */
  a[href^=tel] {
    text-decoration: none;
    color: #555555;
  }
}
/* line 33, scss/base/_links.scss */
.block-title a {
  display: block;
  color: #7b6693;
  font-weight: 300;
  font-size: 0.875em;
  line-height: 1;
}

/* line 43, scss/base/_links.scss */
a:not([href]) {
  display: block;
  position: relative;
  top: -65px;
}
@media (min-width: 46.8em) {
  a:not([href]) {
    top: -115px;
  }
}

/*------------------------------------*\
    $HEADING ELEMENTS
\*------------------------------------*/
/*Further Reading: http:/csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css/ */
/* line 6, scss/base/_headings.scss */
h1, .alpha, h2, .beta, legend, h3, .gamma, .h2, .h3 {
  margin-bottom: 1em;
}

/* line 11, scss/base/_headings.scss */
h1, .alpha {
  line-height: 1.2;
  font-size: 1.5rem;
  font-family: Georgia, serif;
  margin: 0.25em 0;
  font-style: normal;
  font-weight: normal;
  /* line 19, scss/base/_headings.scss */
}
h1 a, .alpha a {
  color: #555555;
}
h1 a:hover, h1 a:focus, .alpha a:hover, .alpha a:focus {
  text-decoration: underline;
  color: #555555;
}
@media all and (min-width: 50em) {
  h1, .alpha {
    /* line 31, scss/base/_headings.scss */
    font-size: 2.125rem;
  }
}

/* line 36, scss/base/_headings.scss */
h2, .beta, legend, .h2 {
  font-weight: 300;
  margin: 1em 0 0.5em;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
}
h2.multicol-title, .beta.multicol-title, legend.multicol-title, .h2.multicol-title {
  border-bottom: solid 2px #ccc;
}
@media all and (min-width: 50em) {
  h2, .beta, legend, .h2 {
    /* line 46, scss/base/_headings.scss */
    font-size: 1.625rem;
  }
}

/* line 51, scss/base/_headings.scss */
h3, .h3, .gamma {
  line-height: 1.5;
  font-weight: 700;
  font-size: 1.125rem;
  font-family: Georgia, Times, serif;
  margin: 0.75em 0 0;
}
@media all and (min-width: 50em) {
  h3, .h3, .gamma {
    /* line 60, scss/base/_headings.scss */
    font-size: 1.125rem;
  }
}

/* line 64, scss/base/_headings.scss */
h4, .h4, .delta {
  line-height: 1.5;
  font-weight: 700;
  font-family: Georgia, Times, serif;
  font-size: 1.125rem;
  margin: 0.75em 0 0;
}
@media all and (min-width: 50em) {
  h4, .h4, .delta {
    /* line 74, scss/base/_headings.scss */
    font-size: 1.125rem;
  }
}

/* line 79, scss/base/_headings.scss */
/* line 84, scss/base/_headings.scss */
/* line 90, scss/base/_headings.scss */
.subheading {
  font-family: Georgia, serif;
  font-style: normal;
  font-weight: normal;
}

/* line 98, scss/base/_headings.scss */
/* line 105, scss/base/_headings.scss */
.chevron-title, .section-title {
  display: block;
  position: relative;
  padding: 1rem;
  margin: 0;
  background: #523178;
  color: #ffffff;
  font-family: Georgia, Times, serif;
  text-transform: uppercase;
  font-size: 1em;
  text-align: center;
  /* line 123, scss/base/_headings.scss */
}
.chevron-title a, .section-title a {
  color: #ffffff;
}
.chevron-title:after, .section-title:after {
  content: "";
  background-image: url("../images/chevron_tail_00.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  width: 50px;
  height: 12px;
  position: absolute;
  top: 98%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media all and (min-width: 46.8em) {
  .chevron-title, .section-title {
    /* line 142, scss/base/_headings.scss */
    position: absolute;
    left: 50%;
    display: inline-block;
    z-index: 9;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .no-csstransforms .chevron-title, .no-csstransforms .section-title {
    margin: 0;
    position: static;
    display: block;
    background: none;
    color: #555555;
    text-align: center;
    font-size: 2em;
  }
}

/* line 164, scss/base/_headings.scss */
.block-title {
  text-transform: uppercase;
  font-weight: normal;
  margin: 0 0 0.5rem;
}

/* line 173, scss/base/_headings.scss */
.headline {
  margin: 0;
}

/* line 179, scss/base/_headings.scss */
.cta-title, .infographic .infographic-title {
  text-transform: uppercase;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.3em;
  line-height: 1.4;
  margin-bottom: 0;
}

/* line 190, scss/base/_headings.scss */
.feature-text-title {
  font-size: 2em;
  font-family: Georgia, serif;
  margin: 0;
  font-style: normal;
  font-weight: normal;
}
@media (min-width: 46.8em) {
  .feature-text-title {
    font-size: 2.5em;
  }
}

/* line 204, scss/base/_headings.scss */
.headline-center {
  text-align: center;
  margin-bottom: 1em;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: normal;
}

/* line 214, scss/base/_headings.scss */
.headline-center-red {
  text-align: center;
  margin-bottom: 1em;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: normal;
  color: red;
}

/* line 224, scss/base/_headings.scss */
.link-list-title {
  font-size: 0.95em;
}

/*------------------------------------*\
    $BASIC TEXT ELEMENTS
\*------------------------------------*/
/* line 5, scss/base/_text.scss */
.memberOf {
  font-size: 12px;
  color: #b3b3b3;
}

@media all and (min-width: 46.8em) {
  /* line 12, scss/base/_text.scss */
  p {
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 1.125em;
    /* line 18, scss/base/_text.scss */
  }
  p.lead {
    font-size: 1.5em;
    font-family: Georgia, serif;
    font-style: normal;
    font-weight: 300;
    line-height: 1.3;
  }
}
@media all and (max-width: 46.8em) {
  /* line 30, scss/base/_text.scss */
  p {
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 1.125em;
    /* line 36, scss/base/_text.scss */
  }
  p.lead {
    font-size: 1.5em;
    font-family: Georgia, serif;
    font-style: normal;
    font-weight: 300;
    line-height: 1.3;
  }
}
/* line 46, scss/base/_text.scss */
p a {
  text-decoration: underline;
}

/* Blockquote */
/* line 52, scss/base/_text.scss */
blockquote {
  font-family: Georgia, Times, serif;
  font-style: italic;
  font-size: 1.5em;
  border-left: 1px solid #7E7F74;
  color: #7E7F74;
  padding-left: 2rem;
  margin: 1rem 0;
  /* line 62, scss/base/_text.scss */
}
blockquote.blockquote--alt {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  color: #523178;
  border-left: 5px solid currentColor;
  font-size: 1em;
  font-style: normal;
  padding-left: 0.5rem;
}

/* Horizontal Rule */
/* line 74, scss/base/_text.scss */
hr {
  border: 0;
  height: 2px;
  background: #7E7F74;
  margin: 2rem 0;
}

/* line 82, scss/base/_text.scss */
abbr {
  border-bottom: 1px dotted #7E7F74;
  cursor: help;
}

/* line 88, scss/base/_text.scss */
.readmelink {
  font-size: 10px;
}

/*------------------------------------*\
    $LIST ITEMS
\*------------------------------------*/
/* line 5, scss/base/_lists.scss */
li > p {
  font-size: inherit;
  margin: inherit;
}

/* line 13, scss/base/_lists.scss */
ul, ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
  /* line 18, scss/base/_lists.scss */
  /* line 23, scss/base/_lists.scss */
  /* line 28, scss/base/_lists.scss */
  /* line 33, scss/base/_lists.scss */
}
ul a, ol a {
  text-decoration: underline;
}
ul ul, ul ol, ol ul, ol ol {
  margin-bottom: 0;
}
ul .square, ol .square {
  list-style-type: square;
}
ul .circle, ol .circle {
  list-style-type: circle;
}

/* line 39, scss/base/_lists.scss */
ul .circle, ol .circle {
  list-style-type: circle;
}

/* line 44, scss/base/_lists.scss */
ul .square, ol .square {
  list-style-type: square;
}

/* line 49, scss/base/_lists.scss */
ol ol {
  list-style: lower-alpha;
}

/* line 54, scss/base/_lists.scss */
ol ol ol {
  list-style: lower-roman;
}

/* line 59, scss/base/_lists.scss */
dl {
  overflow: hidden;
  margin: 0 0 1rem;
}

/* line 65, scss/base/_lists.scss */
dt {
  font-weight: bold;
}

/* line 70, scss/base/_lists.scss */
dd {
  margin-left: 0;
  margin-bottom: 0.375rem;
}

/* line 76, scss/base/_lists.scss */
nav ul, nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
  /* line 82, scss/base/_lists.scss */
}
nav ul a, nav ol a {
  text-decoration: none;
}

/*------------------------------------*\
    $MEDIA ELEMENTS
\*------------------------------------*/
/* Flexible Media */
/* line 6, scss/base/_media.scss */
img, video, object {
  max-width: 100%;
  height: auto;
}

/* line 12, scss/base/_media.scss */
iframe {
  margin-bottom: 1rem;
}

/* line 17, scss/base/_media.scss */
.cert-iframe, #cert-iframe {
  width: 200px;
  height: 180px;
  border: 0px;
  margin: 0px;
  padding: 0px;
  background: transparent;
  float: left;
}

/* line 28, scss/base/_media.scss */
.storify-iframe {
  display: block;
  background-color: transparent;
  border: medium none;
  overflow: hidden;
  width: 758px;
  max-width: 900px;
  height: 19055px;
  min-height: 19055px;
  border: none;
}

/*  Used to resize the fitvid sized IFrame */
.aspect56Small {
  /*
      @media all and (max-width: $bp-small) {
          width: 153px;
          height: 86px;
      }
  */
}
@media all and (min-width: 28em) and (max-width: 46.8em) {
  .aspect56Small {
    /* line 50, scss/base/_media.scss */
    width: 100%;
    height: auto;
  }
}
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .aspect56Small {
    /* line 55, scss/base/_media.scss */
    width: 608px;
    height: 404px;
  }
}
@media all and (min-width: 50em) and (max-width: 66em) {
  .aspect56Small {
    /* line 60, scss/base/_media.scss */
    width: 608px;
    height: 404px;
  }
}
@media all and (min-width: 66em) and (max-width: 73em) {
  .aspect56Small {
    /* line 65, scss/base/_media.scss */
    width: 506px;
    height: 285px;
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .aspect56Small {
    /* line 70, scss/base/_media.scss */
    width: 560px;
    height: 315px;
  }
}
@media all and (min-width: 89em) and (max-width: 93em) {
  .aspect56Small {
    /* line 75, scss/base/_media.scss */
    width: 683px;
    height: 384px;
  }
}
@media all and (min-width: 93em) {
  .aspect56Small {
    /* line 80, scss/base/_media.scss */
    width: 711px;
    height: 400px;
  }
}

@media all and (max-width: 28em) {
  .aspect56Medium {
    /* line 88, scss/base/_media.scss */
    width: 175px;
    height: 98px;
  }
}
@media all and (min-width: 28em) and (max-width: 46.8em) {
  .aspect56Medium {
    /* line 93, scss/base/_media.scss */
    width: 211px;
    height: 119px;
  }
}
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .aspect56Medium {
    /* line 98, scss/base/_media.scss */
    width: 410px;
    height: 231px;
  }
}
@media all and (min-width: 50em) and (max-width: 66em) {
  .aspect56Medium {
    /* line 103, scss/base/_media.scss */
    width: 438px;
    height: 246px;
  }
}
@media all and (min-width: 66em) and (max-width: 73em) {
  .aspect56Medium {
    /* line 108, scss/base/_media.scss */
    width: 579px;
    height: 326px;
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .aspect56Medium {
    /* line 113, scss/base/_media.scss */
    width: 640px;
    height: 360px;
  }
}
@media all and (min-width: 89em) and (max-width: 93em) {
  .aspect56Medium {
    /* line 118, scss/base/_media.scss */
    width: 781px;
    height: 439px;
  }
}
@media all and (min-width: 93em) {
  .aspect56Medium {
    /* line 123, scss/base/_media.scss */
    width: 813px;
    height: 457px;
  }
}

@media all and (max-width: 28em) {
  .aspect56Large {
    /* line 131, scss/base/_media.scss */
    width: 164px;
    height: 92px;
  }
}
@media all and (min-width: 28em) and (max-width: 46.8em) {
  .aspect56Large {
    /* line 136, scss/base/_media.scss */
    width: 197px;
    height: 111px;
  }
}
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .aspect56Large {
    /* line 141, scss/base/_media.scss */
    width: 385px;
    height: 217px;
  }
}
@media all and (min-width: 50em) and (max-width: 66em) {
  .aspect56Large {
    /* line 146, scss/base/_media.scss */
    width: 411px;
    height: 232px;
  }
}
@media all and (min-width: 66em) and (max-width: 73em) {
  .aspect56Large {
    /* line 151, scss/base/_media.scss */
    width: 542px;
    height: 305px;
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .aspect56Large {
    /* line 156, scss/base/_media.scss */
    width: 600px;
    height: 338px;
  }
}
@media all and (min-width: 89em) and (max-width: 93em) {
  .aspect56Large {
    /* line 161, scss/base/_media.scss */
    width: 732px;
    height: 412px;
  }
}
@media all and (min-width: 93em) {
  .aspect56Large {
    /* line 166, scss/base/_media.scss */
    width: 762px;
    height: 429px;
  }
}

@media all and (max-width: 28em) {
  .aspect70Small {
    /* line 174, scss/base/_media.scss */
    width: 164px;
    height: 109px;
  }
}
@media all and (min-width: 28em) and (max-width: 46.8em) {
  .aspect70Small {
    /* line 179, scss/base/_media.scss */
    width: 197px;
    height: 131px;
  }
}
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .aspect70Small {
    /* line 184, scss/base/_media.scss */
    width: 385px;
    height: 257px;
  }
}
@media all and (min-width: 50em) and (max-width: 66em) {
  .aspect70Small {
    /* line 189, scss/base/_media.scss */
    width: 411px;
    height: 274px;
  }
}
@media all and (min-width: 66em) and (max-width: 73em) {
  .aspect70Small {
    /* line 194, scss/base/_media.scss */
    width: 542px;
    height: 361px;
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .aspect70Small {
    /* line 199, scss/base/_media.scss */
    width: 600px;
    height: 400px;
  }
}
@media all and (min-width: 89em) and (max-width: 93em) {
  .aspect70Small {
    /* line 204, scss/base/_media.scss */
    width: 732px;
    height: 488px;
  }
}
@media all and (min-width: 93em) {
  .aspect70Small {
    /* line 209, scss/base/_media.scss */
    width: 762px;
    height: 508px;
  }
}

@media all and (max-width: 28em) {
  .aspect70Medium {
    /* line 217, scss/base/_media.scss */
    width: 192px;
    height: 137px;
  }
}
@media all and (min-width: 28em) and (max-width: 46.8em) {
  .aspect70Medium {
    /* line 222, scss/base/_media.scss */
    width: 230px;
    height: 164px;
  }
}
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .aspect70Medium {
    /* line 227, scss/base/_media.scss */
    width: 449px;
    height: 321px;
  }
}
@media all and (min-width: 50em) and (max-width: 66em) {
  .aspect70Medium {
    /* line 232, scss/base/_media.scss */
    width: 480px;
    height: 343px;
  }
}
@media all and (min-width: 66em) and (max-width: 73em) {
  .aspect70Medium {
    /* line 237, scss/base/_media.scss */
    width: 633px;
    height: 452px;
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .aspect70Medium {
    /* line 242, scss/base/_media.scss */
    width: 700px;
    height: 500px;
  }
}
@media all and (min-width: 89em) and (max-width: 93em) {
  .aspect70Medium {
    /* line 247, scss/base/_media.scss */
    width: 854px;
    height: 610px;
  }
}
@media all and (min-width: 93em) {
  .aspect70Medium {
    /* line 252, scss/base/_media.scss */
    width: 889px;
    height: 635px;
  }
}

@media all and (max-width: 28em) {
  .aspect70Large {
    /* line 260, scss/base/_media.scss */
    width: 186px;
    height: 137px;
  }
}
@media all and (min-width: 28em) and (max-width: 46.8em) {
  .aspect70Large {
    /* line 265, scss/base/_media.scss */
    width: 224px;
    height: 165px;
  }
}
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .aspect70Large {
    /* line 270, scss/base/_media.scss */
    width: 436px;
    height: 321px;
  }
}
@media all and (min-width: 50em) and (max-width: 66em) {
  .aspect70Large {
    /* line 275, scss/base/_media.scss */
    width: 466px;
    height: 343px;
  }
}
@media all and (min-width: 66em) and (max-width: 73em) {
  .aspect70Large {
    /* line 280, scss/base/_media.scss */
    width: 615px;
    height: 452px;
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .aspect70Large {
    /* line 285, scss/base/_media.scss */
    width: 680px;
    height: 500px;
  }
}
@media all and (min-width: 89em) and (max-width: 93em) {
  .aspect70Large {
    /* line 290, scss/base/_media.scss */
    width: 830px;
    height: 610px;
  }
}
@media all and (min-width: 93em) {
  .aspect70Large {
    /* line 295, scss/base/_media.scss */
    width: 864px;
    height: 635px;
  }
}

@media all and (max-width: 28em) {
  .aspect7Small {
    /* line 303, scss/base/_media.scss */
    width: 88px;
    height: 66px;
  }
}
@media all and (min-width: 28em) and (max-width: 46.8em) {
  .aspect7Small {
    /* line 308, scss/base/_media.scss */
    width: 105px;
    height: 79px;
  }
}
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .aspect7Small {
    /* line 313, scss/base/_media.scss */
    width: 205px;
    height: 154px;
  }
}
@media all and (min-width: 50em) and (max-width: 66em) {
  .aspect7Small {
    /* line 318, scss/base/_media.scss */
    width: 219px;
    height: 164px;
  }
}
@media all and (min-width: 66em) and (max-width: 73em) {
  .aspect7Small {
    /* line 323, scss/base/_media.scss */
    width: 289px;
    height: 217px;
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .aspect7Small {
    /* line 328, scss/base/_media.scss */
    width: 320px;
    height: 240px;
  }
}
@media all and (min-width: 89em) and (max-width: 93em) {
  .aspect7Small {
    /* line 333, scss/base/_media.scss */
    width: 390px;
    height: 293px;
  }
}
@media all and (min-width: 93em) {
  .aspect7Small {
    /* line 338, scss/base/_media.scss */
    width: 406px;
    height: 305px;
  }
}

@media all and (max-width: 28em) {
  .aspect75Medium {
    /* line 346, scss/base/_media.scss */
    width: 115px;
    height: 86px;
  }
}
@media all and (min-width: 28em) and (max-width: 46.8em) {
  .aspect75Medium {
    /* line 351, scss/base/_media.scss */
    width: 138px;
    height: 104px;
  }
}
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .aspect75Medium {
    /* line 356, scss/base/_media.scss */
    width: 269px;
    height: 202px;
  }
}
@media all and (min-width: 50em) and (max-width: 66em) {
  .aspect75Medium {
    /* line 361, scss/base/_media.scss */
    width: 288px;
    height: 215px;
  }
}
@media all and (min-width: 66em) and (max-width: 73em) {
  .aspect75Medium {
    /* line 366, scss/base/_media.scss */
    width: 380px;
    height: 285px;
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .aspect75Medium {
    /* line 371, scss/base/_media.scss */
    width: 420px;
    height: 315px;
  }
}
@media all and (min-width: 89em) and (max-width: 93em) {
  .aspect75Medium {
    /* line 376, scss/base/_media.scss */
    width: 512px;
    height: 384px;
  }
}
@media all and (min-width: 93em) {
  .aspect75Medium {
    /* line 381, scss/base/_media.scss */
    width: 533px;
    height: 400px;
  }
}

@media all and (max-width: 28em) {
  .aspect75Large {
    /* line 389, scss/base/_media.scss */
    width: 164px;
    height: 123px;
  }
}
@media all and (min-width: 28em) and (max-width: 46.8em) {
  .aspect75Large {
    /* line 394, scss/base/_media.scss */
    width: 197px;
    height: 148px;
  }
}
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .aspect75Large {
    /* line 399, scss/base/_media.scss */
    width: 385px;
    height: 289px;
  }
}
@media all and (min-width: 50em) and (max-width: 66em) {
  .aspect75Large {
    /* line 404, scss/base/_media.scss */
    width: 411px;
    height: 308px;
  }
}
@media all and (min-width: 66em) and (max-width: 73em) {
  .aspect75Large {
    /* line 409, scss/base/_media.scss */
    width: 542px;
    height: 406px;
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .aspect75Large {
    /* line 414, scss/base/_media.scss */
    width: 600px;
    height: 450px;
  }
}
@media all and (min-width: 89em) and (max-width: 93em) {
  .aspect75Large {
    /* line 419, scss/base/_media.scss */
    width: 732px;
    height: 549px;
  }
}
@media all and (min-width: 93em) {
  .aspect75Large {
    /* line 424, scss/base/_media.scss */
    width: 762px;
    height: 572px;
  }
}

@media all and (max-width: 28em) {
  .aspect75XLarge {
    /* line 432, scss/base/_media.scss */
    width: 175px;
    height: 131px;
  }
}
@media all and (min-width: 28em) and (max-width: 46.8em) {
  .aspect75XLarge {
    /* line 437, scss/base/_media.scss */
    width: 211px;
    height: 158px;
  }
}
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .aspect75XLarge {
    /* line 442, scss/base/_media.scss */
    width: 410px;
    height: 308px;
  }
}
@media all and (min-width: 50em) and (max-width: 66em) {
  .aspect75XLarge {
    /* line 447, scss/base/_media.scss */
    width: 438px;
    height: 329px;
  }
}
@media all and (min-width: 66em) and (max-width: 73em) {
  .aspect75XLarge {
    /* line 452, scss/base/_media.scss */
    width: 579px;
    height: 434px;
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .aspect75XLarge {
    /* line 457, scss/base/_media.scss */
    width: 640px;
    height: 480px;
  }
}
@media all and (min-width: 89em) and (max-width: 93em) {
  .aspect75XLarge {
    /* line 462, scss/base/_media.scss */
    width: 781px;
    height: 586px;
  }
}
@media all and (min-width: 93em) {
  .aspect75XLarge {
    /* line 467, scss/base/_media.scss */
    width: 813px;
    height: 610px;
  }
}

@media all and (max-width: 28em) {
  .aspect75XXLarge {
    /* line 475, scss/base/_media.scss */
    width: 219px;
    height: 164px;
  }
}
@media all and (min-width: 28em) and (max-width: 46.8em) {
  .aspect75XXLarge {
    /* line 480, scss/base/_media.scss */
    width: 263px;
    height: 197px;
  }
}
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .aspect75XXLarge {
    /* line 485, scss/base/_media.scss */
    width: 513px;
    height: 285px;
  }
}
@media all and (min-width: 50em) and (max-width: 66em) {
  .aspect75XXLarge {
    /* line 490, scss/base/_media.scss */
    width: 548px;
    height: 411px;
  }
}
@media all and (min-width: 66em) and (max-width: 73em) {
  .aspect75XXLarge {
    /* line 495, scss/base/_media.scss */
    width: 723px;
    height: 542px;
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .aspect75XXLarge {
    /* line 500, scss/base/_media.scss */
    width: 800px;
    height: 600px;
  }
}
@media all and (min-width: 89em) and (max-width: 93em) {
  .aspect75XXLarge {
    /* line 505, scss/base/_media.scss */
    width: 976px;
    height: 732px;
  }
}
@media all and (min-width: 93em) {
  .aspect75XXLarge {
    /* line 510, scss/base/_media.scss */
    width: 1016px;
    height: 762px;
  }
}

@media all and (max-width: 28em) {
  .aspect84Small {
    /* line 518, scss/base/_media.scss */
    width: 116px;
    height: 96px;
  }
}
@media all and (min-width: 28em) and (max-width: 46.8em) {
  .aspect84Small {
    /* line 523, scss/base/_media.scss */
    width: 140px;
    height: 115px;
  }
}
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .aspect84Small {
    /* line 528, scss/base/_media.scss */
    width: 272px;
    height: 224px;
  }
}
@media all and (min-width: 50em) and (max-width: 66em) {
  .aspect84Small {
    /* line 533, scss/base/_media.scss */
    width: 291px;
    height: 240px;
  }
}
@media all and (min-width: 66em) and (max-width: 73em) {
  .aspect84Small {
    /* line 538, scss/base/_media.scss */
    width: 384px;
    height: 335px;
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .aspect84Small {
    /* line 543, scss/base/_media.scss */
    width: 425px;
    height: 350px;
  }
}
@media all and (min-width: 89em) and (max-width: 93em) {
  .aspect84Small {
    /* line 548, scss/base/_media.scss */
    width: 519px;
    height: 427px;
  }
}
@media all and (min-width: 93em) {
  .aspect84Small {
    /* line 553, scss/base/_media.scss */
    width: 540px;
    height: 445px;
  }
}

@media all and (max-width: 28em) {
  .aspect84Medium {
    /* line 561, scss/base/_media.scss */
    width: 137px;
    height: 115px;
  }
}
@media all and (min-width: 28em) and (max-width: 46.8em) {
  .aspect84Medium {
    /* line 566, scss/base/_media.scss */
    width: 165px;
    height: 139px;
  }
}
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .aspect84Medium {
    /* line 571, scss/base/_media.scss */
    width: 321px;
    height: 270px;
  }
}
@media all and (min-width: 50em) and (max-width: 66em) {
  .aspect84Medium {
    /* line 576, scss/base/_media.scss */
    width: 343px;
    height: 288px;
  }
}
@media all and (min-width: 66em) and (max-width: 73em) {
  .aspect84Medium {
    /* line 581, scss/base/_media.scss */
    width: 452px;
    height: 394px;
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .aspect84Medium {
    /* line 586, scss/base/_media.scss */
    width: 500px;
    height: 420px;
  }
}
@media all and (min-width: 89em) and (max-width: 93em) {
  .aspect84Medium {
    /* line 591, scss/base/_media.scss */
    width: 610px;
    height: 512px;
  }
}
@media all and (min-width: 93em) {
  .aspect84Medium {
    /* line 596, scss/base/_media.scss */
    width: 533px;
    height: 635px;
  }
}

@media all and (max-width: 28em) {
  .aspect84Large {
    /* line 604, scss/base/_media.scss */
    width: 151px;
    height: 132px;
  }
}
@media all and (min-width: 28em) and (max-width: 46.8em) {
  .aspect84Large {
    /* line 609, scss/base/_media.scss */
    width: 181px;
    height: 258px;
  }
}
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .aspect84Large {
    /* line 614, scss/base/_media.scss */
    width: 352px;
    height: 307px;
  }
}
@media all and (min-width: 50em) and (max-width: 66em) {
  .aspect84Large {
    /* line 619, scss/base/_media.scss */
    width: 377px;
    height: 329px;
  }
}
@media all and (min-width: 66em) and (max-width: 73em) {
  .aspect84Large {
    /* line 624, scss/base/_media.scss */
    width: 497px;
    height: 434px;
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .aspect84Large {
    /* line 629, scss/base/_media.scss */
    width: 550px;
    height: 480px;
  }
}
@media all and (min-width: 89em) and (max-width: 93em) {
  .aspect84Large {
    /* line 634, scss/base/_media.scss */
    width: 671px;
    height: 586px;
  }
}
@media all and (min-width: 93em) {
  .aspect84Large {
    /* line 639, scss/base/_media.scss */
    width: 699px;
    height: 610px;
  }
}

@media all and (max-width: 28em) {
  .profileLarge {
    /* line 647, scss/base/_media.scss */
    width: 186px;
    height: 328px;
  }
}
@media all and (min-width: 28em) and (max-width: 46.8em) {
  .profileLarge {
    /* line 652, scss/base/_media.scss */
    width: 224px;
    height: 395px;
  }
}
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .profileLarge {
    /* line 657, scss/base/_media.scss */
    width: 436px;
    height: 769px;
  }
}
@media all and (min-width: 50em) and (max-width: 66em) {
  .profileLarge {
    /* line 662, scss/base/_media.scss */
    width: 466px;
    height: 822px;
  }
}
@media all and (min-width: 66em) and (max-width: 73em) {
  .profileLarge {
    /* line 667, scss/base/_media.scss */
    width: 614px;
    height: 1084px;
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .profileLarge {
    /* line 672, scss/base/_media.scss */
    width: 680px;
    height: 1200px;
  }
}
@media all and (min-width: 89em) and (max-width: 93em) {
  .profileLarge {
    /* line 677, scss/base/_media.scss */
    width: 830px;
    height: 1465px;
  }
}
@media all and (min-width: 93em) {
  .profileLarge {
    /* line 682, scss/base/_media.scss */
    width: 864px;
    height: 1525px;
  }
}

/* line 688, scss/base/_media.scss */
figure {
  margin-bottom: 1rem;
}
figure img {
  margin-bottom: 0.25rem;
}

/* line 697, scss/base/_media.scss */
.italic-class {
  font-style: italic;
}

/* line 702, scss/base/_media.scss */
.underline-class {
  text-decoration: underline;
}

/* line 707, scss/base/_media.scss */
figcaption {
  font-style: italic;
}

/* line 713, scss/base/_media.scss */
.img-rounded {
  border-radius: 100%;
}

/* line 719, scss/base/_media.scss */
.border-white {
  border: 5px solid #ffffff;
}

/* line 725, scss/base/_media.scss */
[role=main] img {
  border: 3px solid #f7f7f7;
}

/*
Make the Facebook Like box responsive (fluid width)
https://developers.facebook.com/docs/reference/plugins/like-box/
*/
/* This element holds injected scripts inside iframes that in some cases may stretch layouts. So, we're just hiding it. */
/* line 736, scss/base/_media.scss */
#fb-root {
  display: none;
}

/* To fill the container and nothing else */
/* line 741, scss/base/_media.scss */
.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
  width: 100% !important;
}

/* =WordPress Core
-------------------------------------------------------------- */
/* line 749, scss/base/_media.scss */
.alignnone {
  margin: 1.5rem 0;
}

/* line 754, scss/base/_media.scss */
.aligncenter,
div.aligncenter {
  display: block;
  margin: 1.5rem auto;
}

/* line 761, scss/base/_media.scss */
.alignright {
  display: block;
  margin-bottom: 1rem;
}
@media (min-width: 46.8em) {
  .alignright {
    /* line 767, scss/base/_media.scss */
    float: right;
    padding: 0 0 1rem 1rem;
    margin-bottom: 0;
  }
}

/* line 774, scss/base/_media.scss */
img.alignleft,
img.alignright,
img.alignnone {
  border: none;
}

/* line 781, scss/base/_media.scss */
.alignleft {
  display: block;
  margin-bottom: 1rem;
}
@media (min-width: 46.8em) {
  .alignleft {
    /* line 787, scss/base/_media.scss */
    float: left;
    padding: 0 1rem 1rem 0;
    margin-bottom: 0;
  }
}

/* line 794, scss/base/_media.scss */
a img.alignright {
  display: block;
  margin-bottom: 1rem;
}
@media (min-width: 46.8em) {
  a img.alignright {
    /* line 800, scss/base/_media.scss */
    float: right;
    margin: 0.5rem 0 1.5rem 1.5rem;
    margin-bottom: 0;
  }
}

/* line 807, scss/base/_media.scss */
a img.alignnone {
  margin: 0.5rem 1.5rem 1.5rem 0;
}

/* line 812, scss/base/_media.scss */
a img.alignleft {
  display: block;
  margin-bottom: 1rem;
}
@media (min-width: 46.8em) {
  a img.alignleft {
    /* line 818, scss/base/_media.scss */
    float: left;
    padding: 0 1rem 1rem 0;
    margin-bottom: 0;
  }
}

/* line 825, scss/base/_media.scss */
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 832, scss/base/_media.scss */
.wp-caption {
  max-width: 100%;
}

/* line 837, scss/base/_media.scss */
.wp-caption.alignnone {
  margin: 0.5rem 1.5rem 1.5rem 0;
}

/* line 842, scss/base/_media.scss */
.wp-caption.alignleft {
  margin: 0.5rem 1.5rem 1.5rem 0;
}

/* line 847, scss/base/_media.scss */
.wp-caption.alignright {
  margin: 0.5rem 0 1.5rem 1.5rem;
}

/* line 852, scss/base/_media.scss */
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}

/* line 862, scss/base/_media.scss */
.wp-caption p.wp-caption-text {
  font-style: normal;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  color: #7E7F74;
  font-size: 0.9em;
  margin: 0;
  padding: 0 0 0.5rem;
}

/*------------------------------------*\
    $FORM ELEMENTS
\*------------------------------------*/
/* line 5, scss/base/_forms.scss */
form ol, form ul {
  list-style: none;
  margin-left: 0;
}

/*------------------------------------*\
    This div usage is for accessibility
    standards the font tag is not allowed.
    Where input is required but
    the element is separate from the
    label
\*------------------------------------*/
/* line 18, scss/base/_forms.scss */
div.required > label {
  font-weight: bold;
}

/* line 23, scss/base/_forms.scss */
div.required > label:after {
  content: " *";
  color: #f00;
}

/*------------------------------------*\
    This span usage is for accessibility
    standards the font tag is not allowed.
    Where input is required but
    the element is separate from the
    label
\*------------------------------------*/
/* line 36, scss/base/_forms.scss */
span.required {
  font-weight: bold;
  color: #f00;
}

/*------------------------------------*\
    Back to standard usage
\*------------------------------------*/
/* line 45, scss/base/_forms.scss */
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

/*
legend {
    @extend .beta;
}
*/
/* line 56, scss/base/_forms.scss */
label {
  display: block;
  padding-bottom: 0.25rem;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-size: 0.9em;
  /* line 63, scss/base/_forms.scss */
}
label[for] {
  font-weight: bold;
}

/* line 69, scss/base/_forms.scss */
input[type=text], input[type=search], input[type=url],
input[type=number], input[type=tel], input[type=email],
input[type=password], input[type=date], input[type=time],
textarea, select {
  border: 2px solid #dcdcdc;
  border-radius: 2px;
  background: #ffffff;
  padding: 0.5rem 1rem;
  -webkit-appearance: none;
  width: 100%;
  display: inline-block;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-size: 1em;
}
input[type=text]:hover, input[type=text]:focus, input[type=search]:hover, input[type=search]:focus, input[type=url]:hover, input[type=url]:focus,
input[type=number]:hover,
input[type=number]:focus, input[type=tel]:hover, input[type=tel]:focus, input[type=email]:hover, input[type=email]:focus,
input[type=password]:hover,
input[type=password]:focus, input[type=date]:hover, input[type=date]:focus, input[type=time]:hover, input[type=time]:focus,
textarea:hover,
textarea:focus, select:hover, select:focus {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  outline: none;
}
@media all and (min-width: 46.8em) {
  input[type=text], input[type=search], input[type=url],
  input[type=number], input[type=tel], input[type=email],
  input[type=password], input[type=date], input[type=time],
  textarea, select {
    /* line 90, scss/base/_forms.scss */
    max-width: 40rem;
  }
}

/* line 95, scss/base/_forms.scss */
input[type=search] {
  width: 30rem;
  color: #555;
}

/* line 101, scss/base/_forms.scss */
input[type=checkbox],
input[type=radio] {
  width: auto;
  margin-right: 0.3rem;
}

/* line 108, scss/base/_forms.scss */
input[type=search] {
  -webkit-appearance: none;
  border-radius: 0;
  max-width: none;
}

/* line 115, scss/base/_forms.scss */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 121, scss/base/_forms.scss */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Validation */
/* line 128, scss/base/_forms.scss */
.has-error {
  border-color: #A50050;
}

/* line 133, scss/base/_forms.scss */
.is-valid {
  border-color: #719949;
}

/* Form Field Container */
/* line 139, scss/base/_forms.scss */
.field-container {
  margin-bottom: 1rem;
}

/* line 145, scss/base/_forms.scss */
.inline-form input {
  display: inline-block;
}

/* line 150, scss/base/_forms.scss */
@media all and (max-width: 48em) {
  input[type=search] {
    width: 100%;
  }
}

/* line 158, scss/base/_forms.scss */
.search-form {
  position: relative;
  /* line 162, scss/base/_forms.scss */
  /* line 174, scss/base/_forms.scss */
}
.search-form input[type=search] {
  border: 1px solid #523178;
  font-size: 1em;
  padding: 0.75rem;
}
@media all and (max-width: 46.8em) {
  .search-form input[type=search] {
    /* line 168, scss/base/_forms.scss */
    width: 100%;
    color: #555;
  }
}
.search-form button {
  position: relative;
  right: 1.6rem;
  vertical-align: middle;
  background: none;
  opacity: 0.5;
  font-size: 1.9em;
  color: #583D77;
  border: 0;
  /* line 184, scss/base/_forms.scss */
}
.no-csstransforms .search-form button {
  margin-top: -10px;
}
@media all and (max-width: 48em) {
  .search-form button {
    /* line 189, scss/base/_forms.scss */
    position: absolute;
    top: 25%;
    right: 0rem;
    font-size: 1.25em;
  }
}

/* line 199, scss/base/_forms.scss */
::-moz-placeholder { /* Firefox 19+ */ }

/* line 206, scss/base/_forms.scss */
.form-helper {
  font-style: italic;
  font-size: 0.8em;
}

/* line 212, scss/base/_forms.scss */
.impersonator {
  color: red;
  background: #fff;
  text-align: center;
  font-size: 1.5em;
  margin-bottom: -1em;
}

/* line 221, scss/base/_forms.scss */
.gs-spelling a {
  top: 0 !important;
}

/*------------------------------------*\
    $Table
\*------------------------------------*/
/* line 5, scss/base/_tables.scss */
table {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  font-size: 0.875em;
  margin-bottom: 2rem;
  min-width: 50%;
  /* line 15, scss/base/_tables.scss */
  /* line 20, scss/base/_tables.scss */
}
table .alt {
  background: gainsboro;
}
table:not(.layout-table) td * {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  /* line 27, scss/base/_tables.scss */
}
table:not(.layout-table) td *:last-child {
  margin-bottom: 0;
}

/* line 36, scss/base/_tables.scss */
th {
  padding: 0.5em;
  vertical-align: bottom;
  border: 1px solid #888888;
  /*border: none;  */
  /* line 42, scss/base/_tables.scss */
}
th * {
  margin-top: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  margin-bottom: 0;
}

/* line 52, scss/base/_tables.scss */
td {
  padding: 0.5em 1em 0.5em 0.5em;
  vertical-align: top;
  border: 1px solid #888888;
  line-height: 1.5;
  /* line 58, scss/base/_tables.scss */
}
td * {
  margin-top: 0;
}

/* line 64, scss/base/_tables.scss */
.table-no-border {
  border: 0;
}

/* line 69, scss/base/_tables.scss */
.tr-left-align {
  align: left;
}

/* line 74, scss/base/_tables.scss */
.table {
  margin-bottom: 2rem;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  /* line 79, scss/base/_tables.scss */
  /* line 85, scss/base/_tables.scss */
  /* line 98, scss/base/_tables.scss */
  /* line 104, scss/base/_tables.scss */
  /* line 110, scss/base/_tables.scss */
  /* line 118, scss/base/_tables.scss */
  /* line 128, scss/base/_tables.scss */
  /* line 139, scss/base/_tables.scss */
  /* line 150, scss/base/_tables.scss */
  /* line 161, scss/base/_tables.scss */
}
.table > ul {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-size: 1.125em;
}
.table th, .table td {
  padding: 0.5em;
  vertical-align: top;
  border: none;
}
@media all and (min-width: 59em) {
  .table th, .table td {
    /* line 92, scss/base/_tables.scss */
    padding: 0.75em;
  }
}
.table .alt {
  background: #dcdcdc;
}
.table.table-full {
  width: 100%;
}
.table.table-border th, .table.table-border td {
  border: 1px solid #888888;
}
.table.table-striped thead > tr {
  background: #c3c3c3;
}
.table.table-striped tr:nth-child(odd) {
  background: #dcdcdc;
}
.table.table-purple thead > tr {
  background: #523178 !important;
  color: #ffffff;
}
.table.table-purple th, .table.table-purple td {
  border-color: #523178;
}
.table.table-green thead > tr {
  background: #719949;
  color: #ffffff;
}
.table.table-green th, .table.table-green td {
  border-color: #719949;
}
.table.table-red thead > tr {
  background: #A50050;
  color: #ffffff;
}
.table.table-red th, .table.table-red td {
  border-color: #A50050;
}
.table.table-blue thead > tr {
  background: #147BD1;
  color: #ffffff;
}
.table.table-blue th, .table.table-blue td {
  border-color: #147BD1;
}

/* line 173, scss/base/_tables.scss */
.no-border {
  font-size: 1em;
  /* line 177, scss/base/_tables.scss */
}
.no-border td {
  border: none;
  padding-right: 2em;
  /* line 182, scss/base/_tables.scss */
  /* line 187, scss/base/_tables.scss */
}
.no-border td img {
  max-width: none;
}
.no-border td:last-of-type {
  padding-right: 0.5em;
}

/* line 194, scss/base/_tables.scss */
.purple {
  margin-bottom: 2rem;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  width: inherit;
  border: 1px solid #555555;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border-collapse: collapse;
  /* line 204, scss/base/_tables.scss */
  /* line 210, scss/base/_tables.scss */
  /* line 222, scss/base/_tables.scss */
  /* line 235, scss/base/_tables.scss */
  /* line 240, scss/base/_tables.scss */
  /* line 246, scss/base/_tables.scss */
  /* line 260, scss/base/_tables.scss */
  /* line 265, scss/base/_tables.scss */
}
.purple > ul {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-size: 1.125em;
}
.purple th {
  padding: 0.5em;
  vertical-align: middle;
  border: 1px solid #555555;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
@media all and (min-width: 59em) {
  .purple th {
    padding: 0.5em;
  }
}
.purple td {
  padding: 0.5em;
  vertical-align: top;
  border: 1px solid #888888;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
@media all and (min-width: 59em) {
  .purple td {
    padding: 0.5em;
  }
}
.purple .alt {
  background: #dcdcdc;
}
.purple th {
  background: #523178 !important;
  color: #ffffff;
}
.purple thead th {
  vertical-align: bottom;
  border: 1px solid #888888;
}
.purple thead td {
  vertical-align: bottom;
  border: 1px solid #888888;
}
.purple thead > tr {
  background: #523178 !important;
  color: #ffffff;
}
.purple th, .purple td {
  border-color: #523178;
}

/* line 271, scss/base/_tables.scss */
.purple-no-border {
  margin-bottom: 2rem;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  width: 100%;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border-collapse: collapse;
  /* line 280, scss/base/_tables.scss */
  /* line 286, scss/base/_tables.scss */
  /* line 298, scss/base/_tables.scss */
  /* line 303, scss/base/_tables.scss */
  /* line 309, scss/base/_tables.scss */
  /* line 314, scss/base/_tables.scss */
}
.purple-no-border > ul {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-size: 1.125em;
}
.purple-no-border th, .purple-no-border td {
  padding: 0px;
  vertical-align: middle;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
@media all and (min-width: 59em) {
  .purple-no-border th, .purple-no-border td {
    padding: 0px;
  }
}
.purple-no-border .alt {
  background: #dcdcdc;
}
.purple-no-border th {
  background: #523178 !important;
  color: #ffffff;
}
.purple-no-border thead > tr {
  background: #523178 !important;
  color: #ffffff;
}
.purple-no-border th, .purple-no-border td {
  border-color: #523178;
}

/* line 320, scss/base/_tables.scss */
.purple-striped {
  margin-bottom: 2rem;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  width: inherit;
  border: 1px solid #555555;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border-collapse: collapse;
  /* line 330, scss/base/_tables.scss */
  /* line 336, scss/base/_tables.scss */
  /* line 348, scss/base/_tables.scss */
  /* line 361, scss/base/_tables.scss */
  /* line 367, scss/base/_tables.scss */
  /* line 371, scss/base/_tables.scss */
  /* line 376, scss/base/_tables.scss */
  /* line 382, scss/base/_tables.scss */
  /* line 397, scss/base/_tables.scss */
  /* line 402, scss/base/_tables.scss */
}
.purple-striped > ul {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-size: 1.125em;
}
.purple-striped th {
  padding: 0.5em;
  vertical-align: middle;
  border: 1px solid #555555;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
@media all and (min-width: 59em) {
  .purple-striped th {
    padding: 0.5em;
  }
}
.purple-striped td {
  padding: 0.5em;
  vertical-align: top;
  border: 1px solid #888888;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
@media all and (min-width: 59em) {
  .purple-striped td {
    padding: 0.5em;
  }
}
.purple-striped .alt {
  background: #dcdcdc;
}
.purple-striped thead > tr {
  background: #c3c3c3;
}
.purple-striped tr:nth-child(odd) {
  background: #dcdcdc;
}
.purple-striped th {
  background: #523178 !important;
  color: #ffffff;
}
.purple-striped thead th {
  vertical-align: bottom;
  border: 1px solid #888888;
}
.purple-striped thead td {
  vertical-align: bottom;
  border: 1px solid #888888;
}
.purple-striped thead > tr {
  background: #523178 !important;
  color: #ffffff;
}
.purple-striped th, .purple-striped td {
  border-color: #523178;
}
@media all and (max-width: 46.8em) {
  .purple-striped {
    /* line 408, scss/base/_tables.scss */
    width: 100%;
    max-width: 95%;
  }
}

/* line 414, scss/base/_tables.scss */
.layout-table {
  font-size: 1em;
  font-family: Georgia, Times, serif;
  /* line 419, scss/base/_tables.scss */
  /* line 425, scss/base/_tables.scss */
  /* line 434, scss/base/_tables.scss */
  /* line 451, scss/base/_tables.scss */
}
.layout-table > ul {
  font-family: Georgia, Times, serif;
  font-size: 1.125em;
}
.layout-table th {
  padding: 0 0.5em 0 0;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  display: table-cell;
  vertical-align: top;
}
.layout-table td {
  border: none;
  padding: 0 0.5em;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  display: table-cell;
  vertical-align: top;
  /* line 443, scss/base/_tables.scss */
}
.layout-table td * {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.layout-table img {
  max-width: 12.5rem;
}

/* line 457, scss/base/_tables.scss */
.table-responsive-wrapper {
  margin-bottom: 2rem;
  /* line 461, scss/base/_tables.scss */
}
.table-responsive-wrapper > .table {
  margin-bottom: 0;
}
@media all and (max-width: 46.8em) {
  .table-responsive-wrapper {
    /* line 467, scss/base/_tables.scss */
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    /* line 471, scss/base/_tables.scss */
  }
  .table-responsive-wrapper > .table > thead > tr > th,
  .table-responsive-wrapper > .table > tbody > tr > th,
  .table-responsive-wrapper > .table > thead > tr > td,
  .table-responsive-wrapper > .table > tbody > tr > td,
  .table-responsive-wrapper > .table > tfoot > tr > td {
    white-space: nowrap;
  }
}

/*------------------------------------*\
    $LAYOUT
\*------------------------------------*/
/*------------------------------------*\
    $LAYOUT
\*------------------------------------*/
/* Layout Container */
/* line 6, ../scss/objects/_layout.scss */
.lc, .wrapper {
  margin: 0 auto;
  padding: 1rem 1rem;
}
@media all and (min-width: 28em) {
  .lc, .wrapper {
    padding: 1rem 3.3rem;
  }
}
@media all and (min-width: 73em) {
  .lc, .wrapper {
    padding: 1rem 5.5rem;
  }
}
@media all and (min-width: 89em) {
  .lc, .wrapper {
    max-width: 100rem;
  }
}

/*------------------------------------*\
    $TEMPLATES
\*------------------------------------*/
/* Two Column Layout */
/* line 29, ../scss/objects/_layout.scss */
@media all and (min-width: 50em) {
  .l-two-col .l-main-right {
    float: left;
    width: 75%;
    padding-right: 0;
    padding-left: 2rem;
  }
}
.l-two-col .l-main > h2:first-of-type {
  margin-top: 0;
}
.l-two-col .l-main > .h2:first-of-type {
  margin-top: 0;
}
.l-two-col .l-main > h3:first-of-type {
  margin-top: 0;
}
.l-two-col .l-main > .h3:first-of-type {
  margin-top: 0;
}
.l-two-col .l-main > p:first-of-type {
  margin-top: 0;
}
.l-two-col .l-main > a:first-of-type {
  margin-top: 0;
}
.l-two-col .l-main .body-content > :nth-child(1) {
  margin-top: 0;
}
@media all and (min-width: 73em) {
  .l-two-col .l-main {
    float: left;
    /* Changed per Jeff 07/10/2014 fix max width of main column ~736px */
    /*  width: 80%; */
    /* Jeff is overrideing Brooke and wants min-width = 60% not 80% 2014/09/04*/
    min-width: 60%;
    max-width: 53rem;
    padding-right: 2rem;
  }
}
@media all and (min-width: 50em) {
  .l-two-col .l-sidebar {
    /* line 88, ../scss/objects/_layout.scss */
    float: left;
    width: 20%;
    padding: 0 0 0 2rem;
    max-width: 300px;
  }
  .l-two-col .l-sidebar.l-sidebar-left {
    padding: 0 2rem 0 0;
  }
}

/* line 103, ../scss/objects/_layout.scss */
@media (min-width: 73em) {
  .l-two-col--wide .l-main {
    /* line 107, ../scss/objects/_layout.scss */
    max-width: 45em;
    width: -webkit-calc(100% - 20em);
    width: calc(100% - 20em);
    min-width: 0;
  }
}
@media (min-width: 89em) {
  .l-two-col--wide .l-main {
    /* line 115, ../scss/objects/_layout.scss */
    max-width: 53em;
  }
}
@media (max-width: 73em) {
  .l-two-col--wide .l-sidebar {
    /* line 121, ../scss/objects/_layout.scss */
    max-width: none;
    width: 100%;
    padding-left: 0;
  }
}
@media all and (min-width: 73em) {
  .l-two-col--wide .l-sidebar {
    /* line 130, ../scss/objects/_layout.scss */
    max-width: none;
    width: 18em;
  }
}
@media all and (min-width: 89em) {
  .l-two-col--wide .l-sidebar {
    /* line 136, ../scss/objects/_layout.scss */
    width: 34%;
    width: -webkit-calc(100% - 53em);
    width: calc(100% - 53em);
    max-width: 27em;
  }
}

/* line 148, ../scss/objects/_layout.scss */
@media (min-width: 46.8em) {
  .l-with-floating-sidebar .l-sidebar-floating {
    /* line 149, ../scss/objects/_layout.scss */
    padding: 0 1rem 0 0;
    width: 50%;
  }
}
@media all and (min-width: 50em) {
  .l-with-floating-sidebar .l-main {
    /* line 157, ../scss/objects/_layout.scss */
    padding-left: 2rem;
    width: 100%;
    padding-right: 0;
  }
}
@media all and (min-width: 73em) {
  .l-with-floating-sidebar .l-main {
    /* line 168, ../scss/objects/_layout.scss */
    display: block;
    /* Changed per Jeff 07/10/2014 fix max width of main column ~736px */
    width: 100%;
    max-width: 53rem;
  }
  .l-with-floating-sidebar .l-sidebar-floating {
    /* Changed per Jeff 07/10/2014 do not extend the right sidebar beyond the main column */
    /* margin-right: -30%; */
    float: right;
    /* Changed per Jeff 07/10/2014 do not extend the right sidebar beyond the main column so reduce the sidebar width*/
    /* width: 50%; */
    width: 40%;
    padding: 0 0 0 2rem;
    max-width: 400px;
  }
}
.flexbox .l-with-floating-sidebar .l-main {
  /* line 191, ../scss/objects/_layout.scss */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column wrap;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
}
.flexbox .l-with-floating-sidebar .l-main > *, .flexbox .l-with-floating-sidebar .l-sidebar-floating {
  -webkit-box-flex: 1;
  -webkit-flex: 1 auto;
  -ms-flex: 1 auto;
  flex: 1 auto;
}
.flexbox .l-with-floating-sidebar .l-main > * {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
.flexbox .l-with-floating-sidebar .l-sidebar-floating {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}
@media (min-width: 73em) {
  .flexbox .l-with-floating-sidebar .l-main,
  .flexbox .l-with-floating-sidebar .l-main > *,
  .flexbox .l-with-floating-sidebar .l-sidebar-floating {
    /* line 224, ../scss/objects/_layout.scss */
    display: block;
    -webkit-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }
}

/*------------------------------------*\
    $GRIDS
\*------------------------------------*/
/* line 245, ../scss/objects/_layout.scss */
.g {
  margin: 0 -1rem;
}
.g.g-2up {
  margin-top: 20px;
  margin-bottom: 20px;
  /*text-align: center;*/
}
.g.g-3up {
  margin-top: 20px;
  margin-bottom: 20px;
  /*text-align: center;*/
}
.g.g-3up-small {
  margin-top: 20px;
  margin-bottom: 20px;
  /*text-align: center;*/
}
.g::before, .g::after {
  content: "";
  display: table;
  width: 100%;
}
/* line 276, ../scss/objects/_layout.scss */
.gZero {
  margin: 0;
}
.gZero::before, .gZero::after {
  content: "";
  display: table;
  width: 100%;
}
/* line 295, ../scss/objects/_layout.scss */
.g-nopad {
  text-align: justify;
  font-size: 0px;
}
.g-nopad::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0;
}
.g-nopad .gi-nopad {
  font-size: initial;
  text-align: left;
  vertical-align: top;
}

/* line 317, ../scss/objects/_layout.scss */
.g-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.g-flex .gi-flex {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* line 344, ../scss/objects/_layout.scss */
@media all and (min-width: 50em) {
  .g-table {
    display: table;
    width: 100%;
  }
  .g-table > .gi {
    display: table-cell;
    vertical-align: top;
    float: none !important;
  }
}

/* line 360, ../scss/objects/_layout.scss */
.ga {
  padding: 1rem 1rem;
  margin: 0 auto;
}
.ga img {
  display: block;
}
@media all and (min-width: 73em) {
  .ga {
    float: left;
  }
}

/* line 374, ../scss/objects/_layout.scss */
.gi {
  padding: 1rem 1rem;
  margin: 0 auto;
}
.gi img {
  display: block;
  margin-bottom: 1rem;
}
@media all and (min-width: 73em) {
  .gi {
    float: left;
  }
}

/* line 389, ../scss/objects/_layout.scss */
.g-1up .gi {
  width: 100%;
}

/* line 397, ../scss/objects/_layout.scss */
.g-2up {
  /* 46.8em */
  /* $bp-xl = 73em */
}
.g-2up img {
  /* max-width: 500px; */
  margin: 0 auto;
}
.g-2up.contact-info .gi {
  float: left;
  width: 100%;
  padding: 0 1rem;
}
.g-2up.contact-info .gi p {
  font-size: 1em;
}
@media all and (min-width: 46.8em) {
  .g-2up > .ga {
    /* line 413, ../scss/objects/_layout.scss */
    float: left;
    width: 50%;
  }
  .g-2up > .ga:nth-of-type(odd) {
    clear: left;
  }
  .g-2up > .gi {
    float: left;
    width: 50%;
  }
  .g-2up > .gi:nth-of-type(odd) {
    clear: left;
  }
  .g-2up.contact-info .gi {
    float: left;
    width: 100%;
    padding: 0 1rem;
  }
}
@media all and (min-width: 73em) {
  .g-2up.contact-info .gi {
    /* line 441, ../scss/objects/_layout.scss */
    float: left;
    width: 50%;
    padding: 0 1rem;
  }
}

/* line 455, ../scss/objects/_layout.scss */
.contact-info-title {
  margin-top: 0;
}

/* line 461, ../scss/objects/_layout.scss */
.g-half > .gi {
  float: left;
  width: 50%;
}
.g-half > .gi:nth-of-type(odd) {
  clear: left;
}

/* line 474, ../scss/objects/_layout.scss */
.g-3up img {
  max-width: 200px;
  margin: 0 auto;
}
.g-3up > .gi {
  max-width: 40em;
}
.g-3up > .gi > .fluid-width-video-wrapper > iframe.vid {
  height: 120px;
  width: 120px;
  padding-right: 2px;
}
@media all and (min-width: 29.75em) {
  .g-3up > .gi-nopad {
    /* line 488, ../scss/objects/_layout.scss */
    display: inline-block;
    width: 48%;
  }
}
@media all and (min-width: 73em) {
  .g-3up > .gi {
    /* line 497, ../scss/objects/_layout.scss */
    width: 33.3333333%;
  }
  .g-3up > .gi:nth-of-type(2n+1) {
    clear: none;
  }
  .g-3up > .gi:nth-of-type(3n+1) {
    clear: left;
  }
  .g-3up > .gi-nopad {
    width: 31%;
  }
  .g-3up.g-flex {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .g-3up > .gi-flex {
    -webkit-box-flex: 1;
    -webkit-flex: 1 auto;
    -ms-flex: 1 auto;
    flex: 1 auto;
  }
}

/* line 532, ../scss/objects/_layout.scss */
.g-3up-small img {
  max-width: 200px;
  margin: 0 auto;
}
.g-3up-small > .gi {
  max-width: 40em;
}
@media all and (min-width: 29.75em) {
  .g-3up-small > .gi-nopad {
    /* line 542, ../scss/objects/_layout.scss */
    display: inline-block;
    width: 48%;
  }
}
@media all and (min-width: 50em) {
  .g-3up-small > .gi {
    /* line 550, ../scss/objects/_layout.scss */
    float: left;
    width: 33.3333333%;
  }
  .g-3up-small > .gi:nth-of-type(2n+1) {
    clear: none;
  }
  .g-3up-small > .gi:nth-of-type(3n+1) {
    clear: left;
  }
}

.g-3up-squeeze > .gi {
  /* line 568, ../scss/objects/_layout.scss */
  max-width: 40em;
}
@media all and (min-width: 46.8em) {
  .g-3up-squeeze > .gi {
    /* line 574, ../scss/objects/_layout.scss */
    float: left;
    width: 33.3333333%;
  }
  .g-3up-squeeze > .gi:nth-of-type(2n+1) {
    clear: none;
  }
  .g-3up-squeeze > .gi:nth-of-type(3n+1) {
    clear: left;
  }
}

/* line 592, ../scss/objects/_layout.scss */
@media all and (min-width: 29.75em) {
  .g-4up > .gi-nopad {
    /* line 594, ../scss/objects/_layout.scss */
    display: inline-block;
    width: 48%;
  }
  .g-4up.g-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .g-4up > .gi-flex {
    width: 48%;
    -webkit-box-flex: 2;
    -webkit-flex: 2 auto;
    -ms-flex: 2 auto;
    flex: 2 auto;
  }
  .g-4up > .gi-flex:nth-child(odd) {
    padding-right: 1rem;
  }
}
@media all and (min-width: 46.8em) {
  .g-4up > .gi {
    /* line 625, ../scss/objects/_layout.scss */
    float: left;
    width: 50%;
  }
  .g-4up > .gi:nth-of-type(2n+1) {
    clear: both;
  }
}
@media all and (min-width: 73em) {
  .g-4up > .gi {
    /* line 637, ../scss/objects/_layout.scss */
    width: 25%;
  }
  .g-4up > .gi:nth-of-type(2n+1) {
    clear: none;
  }
  .g-4up > .gi:nth-of-type(4n+1) {
    clear: left;
  }
  .g-4up > .gi-nopad {
    width: 23%;
  }
  .g-4up > .gi-flex {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 1rem;
  }
  .g-4up > .gi-flex:last-child {
    padding-right: 0;
  }
}

/* line 670, ../scss/objects/_layout.scss */
.g-quarter > .gi {
  float: left;
  width: 24%;
}
.g-quarter > .gi:nth-of-type(4n+1) {
  clear: left;
}

/* line 683, ../scss/objects/_layout.scss */
@media all and (min-width: 29.75em) {
  .g-max4 > .gi {
    /* line 686, ../scss/objects/_layout.scss */
    float: left;
    width: 50%;
  }
  .g-max4 > .gi:nth-of-type(2n+1) {
    clear: both;
  }
}
@media all and (min-width: 39.8em) {
  .g-max4 > .gi {
    /* line 698, ../scss/objects/_layout.scss */
    width: 33.3333333%;
  }
  .g-max4 > .gi:nth-of-type(2n+1) {
    clear: none;
  }
  .g-max4 > .gi:nth-of-type(3n+1) {
    clear: left;
  }
}
@media all and (min-width: 50em) {
  .g-max4 > .gi {
    /* line 713, ../scss/objects/_layout.scss */
    width: 25%;
  }
  .g-max4 > .gi:nth-of-type(3n+1) {
    clear: none;
  }
  .g-max4 > .gi:nth-of-type(4n+1) {
    clear: left;
  }
}

/* line 730, ../scss/objects/_layout.scss */
.g-max5 > .gi {
  float: left;
  width: 50%;
}
.g-max5 > .gi:nth-of-type(2n+1) {
  clear: both;
}
@media all and (min-width: 39.8em) {
  .g-max5 > .gi {
    /* line 742, ../scss/objects/_layout.scss */
    width: 33.3333333%;
  }
  .g-max5 > .gi:nth-of-type(2n+1) {
    clear: none;
  }
  .g-max5 > .gi:nth-of-type(3n+1) {
    clear: left;
  }
}
@media all and (min-width: 46.8em) {
  .g-max5 > .gi {
    /* line 757, ../scss/objects/_layout.scss */
    width: 25%;
  }
  .g-max5 > .gi:nth-of-type(3n+1) {
    clear: none;
  }
  .g-max5 > .gi:nth-of-type(4n+1) {
    clear: left;
  }
}
@media all and (min-width: 48em) {
  .g-max5 > .gi {
    /* line 772, ../scss/objects/_layout.scss */
    width: 20%;
  }
  .g-max5 > .gi:nth-of-type(4n+1) {
    clear: none;
  }
  .g-max5 > .gi:nth-of-type(5n+1) {
    clear: left;
  }
}

/* line 789, ../scss/objects/_layout.scss */
.gi-2-3 {
  max-width: 40em;
}
@media all and (min-width: 73em) {
  .gi-2-3 {
    /* line 792, ../scss/objects/_layout.scss */
    max-width: none;
    float: left;
    width: 66.6666%;
  }
}

/* line 802, ../scss/objects/_layout.scss */
.gi-1-3 {
  max-width: 40em;
  /* line 806, ../scss/objects/_layout.scss */
}
@media all and (min-width: 73em) {
  .gi-1-3 {
    float: left;
    width: 33.3333%;
  }
}

/* line 813, ../scss/objects/_layout.scss */
@media all and (min-width: 46.8em) {
  .g-opposites .gi {
    /* line 817, ../scss/objects/_layout.scss */
    float: right !important;
  }
  .g-opposites .gi:last-child {
    float: left !important;
  }
}

/*--------------------------------------*\
      Accessibility classes
\*--------------------------------------*/
/* line 831, ../scss/objects/_layout.scss */
.hide-block-to-support-js {
  display: none;
}

.max-width-one-hundred-percent {
  max-width: 100%;
}

.max-width-sixty-five-percent {
  max-width: 65%;
}

.max-width-sixty-percent {
  max-width: 60%;
}

.max-width-fifty-percent {
  max-width: 50%;
}

.max-width-fourty-percent {
  max-width: 40%;
}

.max-width-thirty-percent {
  max-width: 30%;
}

.widthoneheightone {
  width: 1px;
  height: 1px;
  display: none;
}

.pricecalculator {
  width: 100%;
  height: 990px;
}

.width-forty-percent {
  width: 40%;
}

.width-fifty-percent {
  width: 50%;
}

.width-sixty-percent {
  width: 60%;
}

.width-fivehundred {
  width: 500;
}

.width-fourhundred {
  width: 400;
}

.width-threehundred {
  width: 300;
}

.width-twohundred {
  width: 200;
}

.width-onefiftyfour {
  width: 154px;
}

.width-onehundredpercent {
  width: 100%;
}

.height-threefifteen {
  height: 315px;
}

.height-onehunderdpercent {
  height: 100%;
}

.withEm {
  font-style: italic;
}

.committees-list {
  width: 700px;
  height: 400px;
}

/* Special calendar coloring for the library calendar */
/* line 901, ../scss/objects/_layout.scss */
.library-calendar-today-color {
  background-color: orange;
}

.border-bottom-none {
  border-bottom: none;
}

.line-height-one-point-five {
  line-height: 1.5;
}

.line-height-one-point-two {
  line-height: 1.2;
}

.margin-bottom-point-two-five-em {
  margin-bottom: 0.25em;
}

.margin-top-zero-zero-pic {
  margin-top: 0;
}

.margin-top-zero-zero-zero-point-two-five-em {
  margin-top: 0 0 0.25;
}

.margin-top-one {
  margin-top: 1rem;
}

.padding-bottom-zero-pic {
  padding-bottom: 0;
}

.padding-bottom-twenty-pic {
  padding-bottom: 20px;
}

.vertical-align-top {
  vertical-align: top;
}

.font-size-point-nine-em {
  font-size: 0.9em;
}

.font-size-one-em {
  font-size: 0.9em;
}

.padding-twenty-five-one-point-five {
  padding: 0.25em 1em 0.5em;
}

.padding-zeros {
  padding: 0em 0em 0em;
  margin-top: 0px;
  margin-bottom: 0px;
}

/*------------------------------------*\
    $PAGE STRUCTURE
\*------------------------------------*/
/*------------------------------------*\
    $HEADER
\*------------------------------------*/
/* line 5, scss/objects/_header.scss */
.header {
  background: #583d77;
  overflow: hidden;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25);
  -webkit-transition: padding 0.2s ease-in-out;
  transition: padding 0.2s ease-in-out;
}
.header a {
  color: #ffffff;
}
.header.open {
  /* padding-top: 3.2rem; */
}
@media all and (max-width: 48em) {
  .header {
    /* line 21, scss/objects/_header.scss */
    text-align: left;
    overflow: hidden;
    padding: 0;
  }
  .header.open {
    /* padding-top: 1px; */
  }
}
@media all and (min-width: 48em) {
  .header.open {
    /* line 32, scss/objects/_header.scss */
    padding-top: 10px 0 0 0;
  }
}
@media all and (min-width: 73em) {
  .header {
    /* line 38, scss/objects/_header.scss */
    text-align: right;
    overflow: hidden;
    padding: 1px 0 0 0;
  }
  .header.open {
    padding: 1px 0 0 0;
  }
}
@media all and (min-width: 100rem) {
  .header {
    /* line 50, scss/objects/_header.scss */
    padding: 1px -webkit-calc((100% - 100rem) / 2) 0;
    padding: 1px calc((100% - 100rem) / 2) 0;
  }
  .header.open {
    padding: 1px -webkit-calc((100% - 100rem) / 2) 0;
    padding: 1px calc((100% - 100rem) / 2) 0;
  }
}
.flexbox .header {
  /* line 62, scss/objects/_header.scss */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
@media (min-width: 73em) {
  .flexbox .header {
    /* line 72, scss/objects/_header.scss */
    display: block;
    -webkit-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }
}

/* line 85, scss/objects/_header.scss */
@media all and (min-height: 500px) {
  .header-wrapper {
    position: static;
    top: 0;
    right: 0;
    left: 0;
    z-index: 11;
  }
}
.lt-ie9 .header-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
}

/* line 106, scss/objects/_header.scss */
.header-brand {
  width: 70%;
  float: left;
  position: relative;
  height: 60px;
  /* line 181, scss/objects/_header.scss */
}
.header-brand a {
  display: inline-block;
  padding: 1.2rem 1.2rem 0.8rem 1.2rem;
}
.header-brand .logo {
  max-width: 10rem;
  border: none;
}
@media all and (max-width: 48em) {
  .header-brand {
    /* line 121, scss/objects/_header.scss */
    width: 170px;
    height: 40px;
  }
  .header-brand .logo {
    max-width: 10rem;
    border: none;
  }
}
@media (min-width: 48em) and (max-width: 73em) {
  .header-brand {
    /* line 131, scss/objects/_header.scss */
    width: 280px;
    height: 60px;
  }
  .header-brand .logo {
    max-width: 10rem;
    border: none;
  }
}
@media all and (min-width: 73em) {
  .header-brand {
    /* line 141, scss/objects/_header.scss */
    display: block;
    float: left;
    width: 280px;
    padding-left: 2rem;
  }
  .header-brand a {
    display: block;
    padding: 0.6rem 0.5rem 0.3rem;
  }
  .header-brand .logo {
    max-width: 100%;
  }
}
.flexbox .header-brand {
  /* line 159, scss/objects/_header.scss */
  -webkit-box-flex: 1;
  -webkit-flex: 1 70%;
  -ms-flex: 1 70%;
  flex: 1 70%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
@media (min-width: 73em) {
  .flexbox .header-brand {
    -webkit-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }
}
.header--news .header-brand a {
  font-family: Georgia, serif;
  font-variant: small-caps;
  letter-spacing: 0.05em;
  color: #b19de0;
  font-size: 1.5em;
  padding: 1rem;
}
@media (min-width: 73em) {
  .header--news .header-brand a {
    font-size: 2.25em;
    padding: 0.2rem 1rem;
  }
}
@media (min-width: 73em) {
  .header--news .header-brand {
    /* line 195, scss/objects/_header.scss */
    width: auto;
  }
}

/* line 204, scss/objects/_header.scss */
.mega-menu-container {
  width: 100%;
}

/* line 209, scss/objects/_header.scss */
.mega-menu {
  display: block;
}
@media (max-width: 48em) {
  .mega-menu {
    display: none;
  }
}
@media (min-width: 48em) {
  .mega-menu {
    display: block;
    width: 100%;
  }
}

/* line 221, scss/objects/_header.scss */
.secondary-menu {
  width: 100%;
  display: none;
}
@media (max-width: 48em) {
  .secondary-menu {
    display: block;
  }
}
@media (min-width: 48em) {
  .secondary-menu {
    display: none;
  }
}

/* line 233, scss/objects/_header.scss */
.nav-toggle {
  display: block;
  font-size: 3em;
  line-height: 1;
  color: #ffffff;
  text-align: right;
  padding: 0.5rem;
  position: absolute;
  top: 0;
  right: 0;
}
.open .nav-toggle {
  text-shadow: 0 0 15px #ffffff;
  top: 110px;
}
@media (min-width: 48em) {
  .nav-toggle {
    /* line 250, scss/objects/_header.scss */
    top: 50px;
  }
}
@media all and (min-width: 48em) {
  .nav-toggle {
    /* line 255, scss/objects/_header.scss */
    position: static;
    display: inline-block;
    font-size: 3.8em;
    padding: 0;
    vertical-align: bottom;
  }
  .open .nav-toggle {
    color: #5f4e9b;
    background: #ffffff;
  }
}
.flexbox .nav-toggle {
  /* line 270, scss/objects/_header.scss */
  position: static;
  -webkit-box-flex: 1;
  -webkit-flex: 1 auto;
  -ms-flex: 1 auto;
  flex: 1 auto;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}
@media (min-width: 73em) {
  .flexbox .nav-toggle {
    /* line 282, scss/objects/_header.scss */
    -webkit-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }
}

/* line 295, scss/objects/_header.scss */
.pre-header {
  max-height: 0;
  overflow: hidden;
  background: #322b39;
}
.pre-header .tagline {
  display: none;
}
.pre-header .tagline a {
  text-decoration: none;
  color: #f0f0f0;
}
.pre-header .social-list {
  margin: 1rem auto;
  text-align: center;
}
.pre-header .social-list li {
  margin: 0 0.5rem;
  width: auto;
}
.pre-header .social-list a {
  color: #a0a0a0;
  font-size: 1em;
}
.pre-header .search-form {
  overflow: hidden;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.pre-header .search-form input[type=search] {
  margin-top: 0;
}
.pre-header .pre-header-logo {
  width: 200px;
  padding: 1rem;
  margin: 0 auto;
}
@media (min-width: 48em) {
  .pre-header .pre-header-logo {
    /* line 348, scss/objects/_header.scss */
    width: 160px;
    padding: 0 1rem;
  }
}
@media (min-width: 73em) {
  .pre-header .pre-header-logo {
    /* line 354, scss/objects/_header.scss */
    margin-left: 1rem;
    -webkit-transform: translateX(0.7rem);
    -ms-transform: translateX(0.7rem);
    transform: translateX(0.7rem);
  }
}
.open .pre-header {
  max-height: 40rem;
}
.open .pre-header .search-form {
  max-height: 40rem;
  opacity: 1;
}
@media (min-width: 48em) {
  .pre-header {
    /* line 372, scss/objects/_header.scss */
    width: 100%;
    float: left;
    overflow: auto;
    max-height: none;
    padding: 0.5rem;
  }
  .pre-header .tagline, .pre-header .social-list, .pre-header .search-form {
    float: left;
  }
  .pre-header .tagline {
    display: block;
    color: #ffffff;
    font-size: 0.75em;
    padding-top: 0.25rem;
    font-family: Georgia, Times, serif;
    width: 45%;
  }
  .pre-header .tagline > * {
    margin: 0;
  }
  .pre-header .tagline a {
    text-decoration: underline;
    font-style: italic;
  }
  .pre-header .social-list {
    margin: 0;
    width: 30%;
    text-align: right;
    padding-right: 1rem;
  }
  .pre-header .social-list li {
    margin: 0.25rem 0.5rem 0;
  }
  .pre-header .social-list span {
    display: none;
  }
  .pre-header .search-form {
    opacity: 1 !important;
    max-height: none !important;
    position: relative;
    width: 25%;
  }
  .pre-header .search-form input[type=search] {
    background: #52485c;
    padding: 0.5rem;
    color: #ffffff;
  }
  .pre-header .search-form button {
    color: #ffffff;
  }
}
@media (min-width: 73em) {
  .pre-header {
    /* line 436, scss/objects/_header.scss */
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 0.5rem;
    height: 50px;
  }
  .pre-header .tagline {
    float: left;
    text-align: left;
    /* the left padding here knocks the tag line into two (2) line */
    /*padding-left: 2em; */
  }
  .pre-header .social-list {
    float: left;
    margin: 0;
  }
  .pre-header .search-form {
    float: right;
    max-width: 20em;
    padding-left: 0;
    padding-right: 1rem;
  }
  .pre-header .search-form input[type=search] {
    margin-top: 0;
  }
}
@media all and (min-width: 100rem) {
  .pre-header {
    /* line 470, scss/objects/_header.scss */
    padding: 0.5rem -webkit-calc((100% - 100rem) / 2);
    padding: 0.5rem calc((100% - 100rem) / 2);
  }
}
.flexbox .pre-header {
  /* line 477, scss/objects/_header.scss */
  -webkit-box-flex: 1;
  -webkit-flex: 1 100%;
  -ms-flex: 1 100%;
  flex: 1 100%;
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}
@media (min-width: 48em) {
  .flexbox .pre-header {
    /* line 488, scss/objects/_header.scss */
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  .flexbox .pre-header .tagline {
    -webkit-box-flex: 1;
    -webkit-flex: 1 auto;
    -ms-flex: 1 auto;
    flex: 1 auto;
  }
  .flexbox .pre-header .social-list {
    -webkit-box-flex: 1;
    -webkit-flex: 1 auto;
    -ms-flex: 1 auto;
    flex: 1 auto;
  }
  .flexbox .pre-header .search-form {
    -webkit-box-flex: 1;
    -webkit-flex: 1 auto;
    -ms-flex: 1 auto;
    flex: 1 auto;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
}
@media (min-width: 73em) {
  .flexbox .pre-header .tagline {
    /* line 528, scss/objects/_header.scss */
    -webkit-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }
  .flexbox .pre-header .search-form {
    -webkit-box-flex: 1;
    -webkit-flex: 1 auto;
    -ms-flex: 1 auto;
    flex: 1 auto;
  }
}

/* line 548, scss/objects/_header.scss */
.header-second {
  float: left;
  width: 100%;
  text-align: left;
  padding-bottom: 1em;
  position: relative;
}

/* line 557, scss/objects/_header.scss */
.header-second-spanish {
  float: right;
  width: 100%;
  text-align: right;
  padding-bottom: 1em;
  position: relative;
  display: none;
}

/* line 567, scss/objects/_header.scss */
.search-span-full {
  /* width: 15%; */
  float: right;
  text-align: right;
  padding-right: 1em;
  padding-bottom: 0;
  /* padding-top: 0.2%; */
  vertical-align: bottom;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
  /*    
      @media all and (min-width: $bp-xxl) {
          padding-top: 1.75%;
      }
      @media (min-width: 55rem) and (max-width: $bp-xxl) {
          padding-top: 0.2%;
      }
      @media (min-width: $bp-med-2) and (max-width: 55rem) {
          padding-top: 0%;
      }
      @media all and (min-width: $bp-xl) {
          padding-right: 4%;
      }
      @media (min-width: $bp-big) and (max-width: $bp-xl){
          padding-right: 5%;
      }
      @media (min-width: $bp-large) and (max-width: $bp-big){
          padding-right: 6%;
      }
      @media (min-width: $bp-med-2) and (max-width: $bp-large){
          padding-right: 7%;
          padding-top: 0%;
      }
  */
}
@media (min-width: 48em) and (max-width: 55em) {
  .search-span-full {
    padding-top: 0;
  }
}

/*
.search-submit {
	margin:  1.3rem 0.625rem;
}
*/
/* line 613, scss/objects/_header.scss */
.search-toggle {
  background-color: #583D77;
  background-image: url("//www.cornellcollege.edu/assets/production/images/search.png");
  margin-top: 0 !important;
  /* margin-bottom: 0 !important; */
  max-height: 1.5rem;
  vertical-align: baseline;
  background-repeat: no-repeat;
  /*new search toggle*/
  width: 1.5rem;
  height: 1.5rem;
  background-size: 1.5rem;
  margin-bottom: 0.5rem;
  /*
      @media all and (min-width: $bp-xxl) {
          margin-top: 2.5rem;
      }
      @media (min-width: 55rem) and (max-width: $bp-xxl) {
          margin-top: 3rem;
      }
      @media (min-width: $bp-med-2) and (max-width: 55rem) {
          margin-top: 2.5rem;
      }
  */
}

/* line 640, scss/objects/_header.scss */
.searchbuttoncheck:checked ~ .mega-menu-container .search-toggle {
  width: 1.95rem;
  height: 1.95rem;
  background-size: 1.95rem;
  background-position: center;
  background-image: url("//www.cornellcollege.edu/assets/production/images/X.png");
  margin-bottom: 0 !important;
}

/* line 650, scss/objects/_header.scss */
.searchbuttoncheck {
  display: none;
}

/* line 655, scss/objects/_header.scss */
.direct-links-span {
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}

/* line 662, scss/objects/_header.scss */
.direct-links-span-inner a {
  color: #523178;
  text-decoration: underline;
}

/* line 668, scss/objects/_header.scss */
.social-span {
  background: #322b39;
  min-height: 3.1rem;
}
@media all and (max-width: 48em) {
  .social-span {
    background: #322b39;
    min-height: 3rem;
    width: 100%;
    text-align: center;
  }
}

/* line 681, scss/objects/_header.scss */
.secondary {
  overflow: hidden;
  max-height: 0;
  float: left;
  clear: left;
  width: 100%;
  background: #322b39;
  -webkit-transition: max-height 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  transition: max-height 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}
.open .secondary {
  max-height: 40em;
}
@media all and (min-width: 48em) {
  .secondary {
    /* line 697, scss/objects/_header.scss */
    background: #5f4e9b;
  }
  .open .secondary {
    box-shadow: 0px 3px 4px 0 rgba(0, 0, 0, 0.25);
  }
}
@media all and (min-width: 73em) {
  .secondary {
    /* line 706, scss/objects/_header.scss */
    width: 155px;
    position: absolute;
    top: 7rem;
    right: 0;
  }
}
@media all and (min-width: 100rem) {
  .secondary {
    /* line 715, scss/objects/_header.scss */
    right: -webkit-calc((100% - 100rem) / 2);
    right: calc((100% - 100rem) / 2);
  }
}
.flexbox .secondary {
  /* line 722, scss/objects/_header.scss */
  -webkit-box-flex: 1;
  -webkit-flex: 1 50%;
  -ms-flex: 1 50%;
  flex: 1 50%;
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
@media all and (min-width: 48em) {
  .flexbox .secondary {
    /* line 740, scss/objects/_header.scss */
    -webkit-box-flex: 1;
    -webkit-flex: 1 100%;
    -ms-flex: 1 100%;
    flex: 1 100%;
  }
}

/* line 752, scss/objects/_header.scss */
#phonesearch {
  width: 100%;
}

/* line 757, scss/objects/_header.scss */
#phonenav {
  width: 100%;
}

/* line 763, scss/objects/_header.scss */
.post-header {
  background-color: #ffffff;
  float: left;
  width: 100%;
  /* height: 11.39rem; */
  /* margin-left: -3rem; */
  display: none;
  /* line 771, scss/objects/_header.scss */
}
@media all and (max-width: 48em) {
  .post-header {
    display: none !important;
  }
}
.post-header .social-list {
  margin: 0rem auto;
  text-align: center;
  background-color: none;
}
.post-header .social-list li {
  margin: 0 1.5rem;
  width: auto;
}
.post-header .search-form {
  text-align: left;
  padding-left: -webkit-calc((100% - 30rem) / 2);
  padding-left: calc((100% - 30rem) / 2);
  padding-top: 2rem;
}

/* line 794, scss/objects/_header.scss */
.searchbuttoncheck:checked ~ .post-header {
  display: block;
}

/*------------------------------------*\
    $NAVIGATION
\*------------------------------------*/
/*------------------------------------*\
  This is a special class to support
  accessibility, The skip navigation is
  placed at the top fo every page to
  allow readers to skip to the main
  content of the page.  This navigation
  need not be show to visual browser use
  so this style will expose the navigation
  to readers but will not be visual
\*------------------------------------*/
/* line 14, ../scss/objects/_nav.scss */
.skip {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE 6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

/* line 27, ../scss/objects/_nav.scss */
body:hover .skip a, body:hover .skip input, body:hover .skip button {
  display: none !important;
}

/* line 33, ../scss/objects/_nav.scss */
.nav {
  float: left;
  clear: left;
  width: 100%;
  z-index: 1000;
  overflow: hidden;
  max-height: 0;
  padding-right: 0.5rem;
  color: #ffffff;
  font-size: 0.9em;
  text-align: left;
  background: #583d77;
  -webkit-transition: max-height 0.4s ease-in-out;
  transition: max-height 0.4s ease-in-out;
}
.nav ul {
  max-width: none;
}
.nav li {
  border-bottom: 1px dotted #5f4e9b;
  margin-bottom: 0;
}
.nav a {
  display: block;
  padding: 1rem;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  color: #ffffff;
  text-transform: uppercase;
}
.nav .student-anchor {
  padding: 0.4rem 0.75rem;
}
.nav .student-anchor:hover {
  background: #CCCCCC;
}
.nav .fac-staff-anchor {
  padding: 0.4rem 0.75rem;
}
.nav .fac-staff-anchor:hover {
  background: #CCCCCC;
}
.nav .alumni-anchor {
  padding: 0.4rem 0.825rem 0.4rem 0.75rem;
}
.nav .alumni-anchor:hover {
  background: #CCCCCC;
}
.nav .family-anchor {
  padding: 0.4rem 0.825rem 0.4rem 0.75rem;
}
.nav .family-anchor:hover {
  background: #CCCCCC;
}
.nav .give-anchor {
  background: #37788E;
  padding: 0.4rem 0.75rem;
}
.nav .give-anchor:hover {
  background: #48A4C3;
}
.open .nav {
  max-height: 40em;
}
@media all and (min-width: 48em) {
  .nav {
    /* line 111, ../scss/objects/_nav.scss */
    font-size: 0.9em;
    float: right;
    text-align: left;
    background: #5f4e9b;
  }
  .nav ul {
    overflow: hidden;
    max-width: none;
  }
  .nav li {
    float: left;
  }
  .nav a {
    padding: 0.75rem 1rem -0.25rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8em;
  }
  .nav a:hover {
    background: #523178;
  }
}
@media (min-width: 48em) and (max-width: 73em) {
  .nav {
    /* line 138, ../scss/objects/_nav.scss */
    width: auto;
    clear: none;
    float: right;
    position: relative;
    right: auto;
    top: auto;
    max-height: none;
    border: none;
    text-align: left;
    display: inline-block;
    vertical-align: top;
    padding: 0;
    padding-right: 0.5rem;
    background: #322B39;
    margin-left: -1rem;
    margin-top: 1rem;
  }
}
@media all and (min-width: 73em) {
  .nav {
    /* line 158, ../scss/objects/_nav.scss */
    width: auto;
    clear: none;
    float: none;
    position: relative;
    right: auto;
    top: auto;
    max-height: none;
    border: none;
    text-align: left;
    display: inline-block;
    vertical-align: top;
    padding: 0;
    padding-right: 1rem;
    background: #322B39;
  }
  .nav ul {
    overflow: hidden;
    max-width: none !important;
  }
  .nav li {
    float: left;
    border-bottom: none;
    position: relative;
  }
  .nav li.active::after {
    content: "";
    background: url("../images/chevron_up_white.svg") no-repeat;
    background-position: bottom;
    width: 30px;
    height: 20px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .nav a {
    border: 0;
    text-align: left;
    padding: 0.75rem 0.625rem;
    font-size: 1em;
    font-family: Georgia, serif;
    font-style: normal;
    font-weight: normal;
  }
  .nav a:hover {
    background: #5f4e9b;
  }
}
@media all and (min-width: 89em) {
  .nav a {
    /* line 219, ../scss/objects/_nav.scss */
    padding: 1.3rem 1.1rem;
  }
}
.flexbox .nav {
  /* line 226, ../scss/objects/_nav.scss */
  -webkit-box-flex: 1;
  -webkit-flex: 1 50%;
  -ms-flex: 1 50%;
  flex: 1 50%;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  text-align: right;
}
.flexbox .nav ul {
  max-width: 15rem;
  margin-left: auto;
}
@media (min-width: 48em) {
  .flexbox .nav ul {
    /* line 244, ../scss/objects/_nav.scss */
    max-width: none;
  }
}
@media (min-width: 73em) {
  .flexbox .nav {
    /* line 250, ../scss/objects/_nav.scss */
    display: inline-block;
    -webkit-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }
}

/* line 261, ../scss/objects/_nav.scss */
.with-pattern {
  float: left;
  clear: left;
  width: 100%;
  z-index: 1000;
  overflow: hidden;
  max-height: 0;
  color: #ffffff;
  font-size: 0.9em;
  text-align: left;
  background: none;
  -webkit-transition: max-height 0.4s ease-in-out;
  transition: max-height 0.4s ease-in-out;
}
@media all and (min-width: 48em) {
  .with-pattern {
    /* line 284, ../scss/objects/_nav.scss */
    font-size: 0.7em;
    max-height: none;
    text-align: left;
    background: #583d77;
    margin-bottom: -1rem;
  }
}
@media all and (min-width: 55.4rem) {
  .with-pattern {
    /* line 293, ../scss/objects/_nav.scss */
    font-size: 0.9em;
  }
}
@media all and (min-width: 48em) {
  .with-pattern {
    /* line 298, ../scss/objects/_nav.scss */
    width: auto;
    clear: none;
    float: none;
    position: relative;
    right: auto;
    top: auto;
    max-height: none;
    border: none;
    text-align: left;
    display: inline-block;
    vertical-align: top;
    margin-left: -1rem;
    margin-top: 0;
    padding: 0 1.25rem 0rem 1.25rem;
  }
}
@media all and (min-width: 89em) {
  .with-pattern {
    /* line 316, ../scss/objects/_nav.scss */
    padding: 0rem 1.5rem 0rem 1.5rem;
    font-size: 0.9em;
  }
  .with-pattern a {
    padding: 1.3rem 1.1rem;
  }
}

/* line 326, ../scss/objects/_nav.scss */
.with-pattern-one {
  float: left;
  clear: left;
  width: 100%;
  z-index: 1000;
  overflow: hidden;
  max-height: 0;
  color: #ffffff;
  font-size: 0.9em;
  text-align: left;
  background: #322B39;
  -webkit-transition: max-height 0.4s ease-in-out;
  transition: max-height 0.4s ease-in-out;
}
.with-pattern-one li {
  border: none;
}
@media all and (min-width: 48em) {
  .with-pattern-one {
    /* line 352, ../scss/objects/_nav.scss */
    font-size: 0.55em;
    max-height: none;
    text-align: left;
    background: #322B39;
  }
}
@media all and (min-width: 73em) {
  .with-pattern-one {
    /* line 360, ../scss/objects/_nav.scss */
    padding-right: 0rem;
  }
}
@media all and (min-width: 48em) {
  .with-pattern-one {
    /* line 365, ../scss/objects/_nav.scss */
    width: auto;
    clear: none;
    float: right;
    position: relative;
    right: auto;
    top: auto;
    max-height: none;
    border: none;
    text-align: left;
    display: inline-block;
    vertical-align: top;
    margin-left: -1rem;
    margin-top: 10px;
    padding: 1.3rem 1.25rem -1rem 1.25rem;
  }
}
@media all and (min-width: 48em) and (max-width: 49.125em) {
  .with-pattern-one {
    /* line 383, ../scss/objects/_nav.scss */
    padding: 0rem 0rem;
    /* width: 50%; */
  }
}
@media all and (min-width: 49.125em) and (max-width: 53.25em) {
  .with-pattern-one {
    /* line 389, ../scss/objects/_nav.scss */
    padding: 0rem 0rem;
    /* width: 65%; */
    font-size: 0.7em;
  }
}
@media all and (min-width: 53.25em) and (max-width: 55.4em) {
  .with-pattern-one {
    /* line 396, ../scss/objects/_nav.scss */
    padding: 0rem 0rem;
    /* width: 60%; */
    font-size: 0.9em;
  }
}
@media all and (min-width: 55.4em) and (max-width: 73em) {
  .with-pattern-one {
    /* line 403, ../scss/objects/_nav.scss */
    padding: 0rem 0rem;
    /* width: 60%; */
    font-size: 0.9em;
  }
}
@media (min-width: 48em) and (max-width: 73em) {
  .with-pattern-one {
    /* line 410, ../scss/objects/_nav.scss */
    padding-right: 0rem;
  }
}
@media all and (min-width: 73em) {
  .with-pattern-one {
    /* line 415, ../scss/objects/_nav.scss */
    padding-right: 0rem;
    font-size: 0.9em;
  }
}
@media all and (min-width: 89em) {
  .with-pattern-one {
    /* line 421, ../scss/objects/_nav.scss */
    padding: 0rem 0rem 0rem 0.5rem;
  }
  .with-pattern-one a {
    padding: 1.3rem 1.1rem;
  }
}

/* line 430, ../scss/objects/_nav.scss */
.roles {
  padding-left: 0;
  font-size: 0.9em;
}
.roles ul {
  max-width: none;
  margin-right: auto;
  width: auto;
}
.roles li {
  border-bottom: 1px dotted #5f4e9b;
}
.roles a {
  display: block;
  padding: 1rem;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  color: #ffffff;
  text-transform: uppercase;
}
@media all and (min-width: 48em) {
  .roles {
    /* line 455, ../scss/objects/_nav.scss */
    text-align: left;
    padding-left: 0;
  }
  .roles ul {
    max-width: none;
    overflow: auto;
  }
  .roles li {
    float: left;
  }
  .roles a {
    padding: 1.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8em;
  }
  .roles a:hover {
    background: #523178;
  }
}
@media all and (min-width: 73em) {
  .roles li {
    /* line 482, ../scss/objects/_nav.scss */
    float: none;
    border-bottom-color: #523178;
  }
  .roles a {
    padding: 1rem;
  }
}
.flexbox .roles {
  /* line 494, ../scss/objects/_nav.scss */
  -webkit-box-flex: 1;
  -webkit-flex: 1 100%;
  -ms-flex: 1 100%;
  flex: 1 100%;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  padding-left: 0.5rem;
  /* line 514, ../scss/objects/_nav.scss */
}
.flexbox .roles ul {
  max-width: 15rem;
}
@media (min-width: 48em) {
  .flexbox .roles ul {
    max-width: none;
  }
}

/* line 523, ../scss/objects/_nav.scss */
.lefthand {
  float: right;
}

.righthand {
  float: left;
}

.leftspan {
  float: left;
  min-width: 48%;
  width: 10rem;
  padding-right: 0.75rem;
}

.rightspan {
  float: right;
  min-width: 48%;
  width: 10rem;
}

/* line 543, ../scss/objects/_nav.scss */
.nav-sidebar li.active > a, .sidebar nav li.active > a {
  color: #5f2f95;
  text-decoration: underline;
}
.nav-sidebar li.extra, .sidebar nav li.extra {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ccc;
}
.nav-sidebar li a, .sidebar nav li a, .nav-sidebar li .no-link, .sidebar nav li .no-link {
  color: #7b6693;
  display: block;
  font-weight: bold;
  font-size: 0.875em;
  padding: 0.75rem 0;
  line-height: 1.2;
}
.nav-sidebar .no-link, .sidebar nav .no-link {
  font-style: italic;
  display: block;
}
.nav-sidebar > ul, .sidebar nav > ul {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: #ffffff;
  padding: 0 1rem 0.5rem;
  -webkit-transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.nav-sidebar li ul, .sidebar nav li ul {
  margin-left: 1rem;
  padding: 0;
}
.nav-sidebar li ul a, .sidebar nav li ul a {
  font-weight: normal;
}
.nav-sidebar li ul ul, .sidebar nav li ul ul {
  font-size: 0.875em;
}
.nav-sidebar.open > ul, .sidebar nav.open > ul {
  max-height: 100em;
  opacity: 1;
  margin-bottom: 0;
}
@media all and (min-width: 50em) and (max-width: 73em) {
  .nav-sidebar, .sidebar nav {
    /* line 611, ../scss/objects/_nav.scss */
    font-size: inherit;
  }
}
@media all and (min-width: 50em) {
  .nav-sidebar > ul, .sidebar nav > ul {
    /* line 617, ../scss/objects/_nav.scss */
    max-height: none;
    overflow: visible;
    opacity: 1;
    background: none;
    border: none;
    padding: 0;
  }
  .nav-sidebar li a, .sidebar nav li a, .nav-sidebar li .no-link, .sidebar nav li .no-link {
    padding: 0.4rem 0;
  }
  .nav-sidebar li a:hover, .sidebar nav li a:hover {
    color: #5f2f95;
    text-decoration: underline;
  }
  .nav-sidebar .block-title a:hover, .sidebar nav .block-title a:hover {
    color: #5f2f95;
    text-decoration: underline;
  }
}

/* line 647, ../scss/objects/_nav.scss */
.pagination {
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
}
.pagination li {
  display: inline-block;
  margin: 0 0.5rem;
}
.pagination li:last-child {
  border: 0;
}
.pagination a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  background: #f9f9f9;
  color: #555555;
}

/*------------------------------------*\
    $MAIN CONTENT AREA
\*------------------------------------*/
.wrapper--skinny {
  max-width: 50em;
}

/*------------------------------------*\
    $SIDEBAR ELEMENTS
\*------------------------------------*/
/* line 5, scss/objects/_sidebar.scss */
.sidebar {
  margin-bottom: 1rem;
}
.sidebar nav {
  font-size: inherit;
}
.sidebar ul {
  margin-left: 0;
}
.sidebar ul.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media all and (min-width: 50em) {
  /* line 27, scss/objects/_sidebar.scss */
  .l-sidebar-left {
    border-right: 1px solid #ccc;
  }
}
.sidebar-actions .btn {
  /* line 35, scss/objects/_sidebar.scss */
  width: 100%;
}

/* line 41, scss/objects/_sidebar.scss */
.nav-sidebar-toggle {
  background: #523178;
  color: #ffffff;
  padding: 0.5rem;
  display: block;
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
}
.nav-sidebar-toggle i {
  font-size: 2em;
  vertical-align: middle;
}
.nav-sidebar-toggle:hover, .nav-sidebar-toggle:focus {
  background: #5f4e9b;
  color: #ffffff;
}
.nav-sidebar-toggle.active {
  background: #523178;
  box-shadow: inset 0 0 10px 0 #555555;
}
@media all and (min-width: 50em) {
  .nav-sidebar-toggle {
    /* line 67, scss/objects/_sidebar.scss */
    display: none;
  }
}

/* line 73, scss/objects/_sidebar.scss */
.sidebar-item {
  margin-bottom: 1rem;
  font-size: 0.8em;
}
.sidebar-item li {
  font-size: 1.125em;
}
.sidebar-item.sidebar-item-bg {
  background: #ffffff;
}
.sidebar-item .sidebar-item-title {
  font-family: Georgia, Times, serif;
  text-transform: uppercase;
  padding: 1rem;
  margin-top: 0;
  font-weight: normal;
  font-size: 1.2em;
}
.sidebar-item .sidebar-item-body {
  padding: 0 1rem 1rem;
}
.sidebar-item .sidebar-item-body > *:last-child {
  margin-bottom: 0;
}
.sidebar-item img {
  border: none;
}
.sidebar-item iframe {
  margin-bottom: 0;
}

/* line 117, scss/objects/_sidebar.scss */
/*------------------------------------*\
    $FOOTER
\*------------------------------------*/
/* line 5, scss/objects/_footer.scss */
.footer {
  clear: both;
  overflow: hidden;
  background: #322b39;
  background: url("../images/wave_72x72_5white_00.png"), #322b39;
  color: #f7f7f7;
  font-family: Georgia, Times, serif;
}
.footer a {
  color: #f9f9f9;
  text-decoration: none;
}
.footer h3 {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: normal;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ffffff;
}
.footer .h3 {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: normal;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ffffff;
}
.footer .shield {
  display: block;
  text-align: center;
  padding: 1rem 0;
}
.footer img {
  border: none;
}
.footer .social-list {
  text-align: center;
}
.footer .social-list li {
  margin-right: 1rem;
}
.footer .social-list a {
  font-size: 2em;
}
.footer .social-list a:hover {
  opacity: 0.8;
}
.footer.footer-copyright {
  background: #322b39;
  padding: 0;
}
.footer.footer-copyright p {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  color: #f2f2f2;
}
@media all and (min-width: 46.8em) {
  .footer {
    /* line 63, scss/objects/_footer.scss */
    padding: 0 0;
  }
  .footer .footer-address {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 0rem;
  }
  .footer .nav-footer {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 0rem;
  }
  .footer .ctcl-logo {
    text-align: left;
    margin: 0rem 0rem 0rem 0rem;
  }
}
@media all and (max-width: 46.8em) {
  .footer {
    /* line 98, scss/objects/_footer.scss */
    text-align: center;
  }
  .footer .footer-address {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 0rem;
  }
  .footer .nav-footer {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 0rem;
  }
  .footer .ctcl-logo {
    text-align: center;
    margin: 0rem 0rem 0rem 0rem;
  }
}
@media all and (min-width: 73em) {
  .footer .shield {
    /* line 120, scss/objects/_footer.scss */
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .footer .footer-address {
    text-align: right;
  }
  .footer .gi {
    padding-top: 0;
    padding-bottom: 0;
  }
  .footer .ctcl-logo {
    text-align: left;
    margin: 1rem 2.4rem 2rem 0;
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .footer .footer-address, .footer .nav-footer {
    /* line 145, scss/objects/_footer.scss */
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 0rem;
  }
}

/* line 154, scss/objects/_footer.scss */
.nav-footer a {
  display: block;
}
.nav-footer a:hover {
  opacity: 0.8;
}

/* line 165, scss/objects/_footer.scss */
.copyright {
  text-align: center;
}

/* line 170, scss/objects/_footer.scss */
.ctcl-logo {
  text-align: center;
  margin: 4rem 0 0;
  /* line 186, scss/objects/_footer.scss */
}
.ctcl-logo a {
  display: inline-block;
  text-align: left;
  max-width: 125px;
  margin: 0 auto;
}
.ctcl-logo img {
  max-width: 150px;
  max-height: 59px;
}
@media all and (min-width: 46.8em) {
  .ctcl-logo .ctcl-logo {
    text-align: left;
    margin: 0rem 0rem 0rem 0rem;
  }
}

/* line 195, scss/objects/_footer.scss */
@media all and (min-width: 73em) {
  .g-split-middle > .ga {
    width: 50%;
  }
  .g-split-middle > .ga:nth-child(2) {
    float: right;
  }
  .lt-ie9 .g-split-middle > .ga + .ga {
    float: right;
  }
  .g-split-middle > .gi {
    width: 35%;
  }
  .g-split-middle > .gi:nth-child(2) {
    float: right;
  }
  .lt-ie9 .g-split-middle > .gi + .gi {
    float: right;
  }
}

/*------------------------------------*\
    $TEXT Styles
\*------------------------------------*/
/*------------------------------------*\
    $TEXT OBJECTS
\*------------------------------------*/
/* Global Font Classes */
/* line 6, src/scss/objects/_text.scss */
.font-secondary {
  font-family: Georgia, serif;
  font-style: normal;
  font-weight: normal;
}
.font-secondary.font-secondary-ital {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: normal;
}
.font-secondary.font-secondary-bold {
  font-family: Georgia, serif;
  font-style: normal;
  font-weight: bold;
}

/* line 25, src/scss/objects/_text.scss */
/* line 33, src/scss/objects/_text.scss */
.text-multicolumn {
  -webkit-column-gap: 3rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
}
.text-multicolumn .ul {
  margin-bottom: 0;
}
.text-multicolumn .li {
  font-size: 1.125rem;
  padding-top: 0.375rem;
  margin: 0;
  -webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
  page-break-inside: avoid; /* Deprecated Firefox */
  -moz-column-break-inside: avoid; /* Current Firefox */
  column-break-inside: avoid;
  -webkit-break-inside: avoid;
  -moz-break-inside: avoid;
  break-inside: avoid; /* IE 10+ */
  break-inside: avoid-column;
}
@media all and (min-width: 28em) {
  .text-multicolumn.text-multicolumn-2 {
    /* line 59, src/scss/objects/_text.scss */
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }
  .text-multicolumn.text-multicolumn-3 {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
  }
  .text-multicolumn.text-multicolumn-4 {
    -webkit-columns: 4;
    -moz-columns: 4;
    columns: 4;
  }
}
@media all and (min-width: 50em) {
  .text-multicolumn.text-multicolumn-3, .text-multicolumn.text-multicolumn-4 {
    /* line 80, src/scss/objects/_text.scss */
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }
}
@media all and (min-width: 73em) {
  .text-multicolumn.text-multicolumn-3 {
    /* line 89, src/scss/objects/_text.scss */
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
  }
  .text-multicolumn.text-multicolumn-4 {
    -webkit-columns: 4;
    -moz-columns: 4;
    columns: 4;
  }
}

/* line 106, src/scss/objects/_text.scss */
.feature-text {
  font-family: Georgia, serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.5em;
  text-align: center;
  max-width: 30em;
  margin: 1rem auto;
  padding: 0 1rem;
}
.feature-text p {
  font-size: 1em;
}
@media all and (min-width: 46.8em) {
  .feature-text {
    font-size: 1.25em;
  }
}

/*------------------------------------*\
    $COMPONENTS
\*------------------------------------*/
/*------------------------------------*\
    $SECTIONS
\*------------------------------------*/
/* line 5, scss/objects/_sections.scss */
section .discover-feature .flex-control-paging li a.flex-active {
  background-color: #D69A2D;
}

/* line 20, scss/objects/_sections.scss */
@media all and (min-width: 46.8em) {
  .section {
    padding: 2rem 0;
  }
}
.section.section-light {
  background: #fff;
}
.section.section-highlight {
  background: #f1f1f1;
}
.section.section-dark {
  background: #111;
}
.section.section-pattern-1 {
  background-image: url("../images/pattern_01.jpg");
}
.section.section-pattern-2 {
  background-image: url("../images/pattern_02.jpg");
}
.section.section-pattern-3 {
  background-image: url("../images/pattern_03.jpg");
}

/* line 56, scss/objects/_sections.scss */
.section-top {
  padding: 0;
}
.section-top h1 {
  margin: 0;
}
@media all and (min-width: 48em) {
  .section-top {
    padding: 1rem 0;
  }
}

/* line 70, scss/objects/_sections.scss */
.section-cornellgram {
  padding: 0.5rem 0;
}
.no-js .section-cornellgram {
  padding: 0;
}

/* line 87, scss/objects/_sections.scss */
.bg {
  background-size: cover;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  /* line 139, scss/objects/_sections.scss */
}
.bg.bg-profile {
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-color: #ffffff;
  background-position: center top;
}
@media all and (min-width: 46.8em) {
  .bg.bg-profile.bg-profile-left {
    background-position: left top;
  }
  .bg.bg-profile.bg-profile-right {
    background-position: right top;
  }
}
@media all and (min-width: 89em) {
  .bg.bg-profile.bg-profile-left {
    background-position: 25% top;
  }
  .bg.bg-profile.bg-profile-right {
    background-position: 75% top;
  }
}
.bg.bg-solo {
  margin-top: 1rem;
  background-position: 50% 50%;
}
.bg.bg-solo.bg-solo-top {
  background-position: 50% top;
}
.bg.bg-solo.bg-solo-bottom {
  background-position: 50% bottom;
}
@media all and (min-width: 46.8em) {
  .bg.bg-fixed {
    background-attachment: fixed;
  }
}

/* line 149, scss/objects/_sections.scss */
.section-has-bg {
  position: relative;
}
.section-has-bg .wrapper {
  padding-top: 0;
}
@media all and (min-width: 46.8em) {
  .section-has-bg {
    /* line 158, scss/objects/_sections.scss */
    padding: 6rem 0;
  }
  .section-has-bg .bg {
    margin: 0;
  }
  .section-has-bg > .section-title {
    top: -3rem;
  }
}
.section-has-bg *:not(.bg) {
  /* line 171, scss/objects/_sections.scss */
  position: relative;
  z-index: 1;
}
.lt-ie9 .section-has-bg .wrapper {
  /* line 178, scss/objects/_sections.scss */
  position: relative;
  z-index: 1;
}

/* line 187, scss/objects/_sections.scss */
.section-has-bg-block .bg {
  display: block;
  height: 200px;
  margin: 0 1rem;
  position: relative;
}
@media all and (min-width: 28em) {
  .section-has-bg-block .bg {
    /* line 198, scss/objects/_sections.scss */
    margin: 0 2rem;
  }
}
@media all and (min-width: 46.8em) {
  .section-has-bg-block .bg {
    /* line 205, scss/objects/_sections.scss */
    margin: 0;
    position: absolute;
    height: auto;
  }
}

/* line 214, scss/objects/_sections.scss */
.section-has-bg-solo {
  overflow-y: hidden;
  padding: 0;
  /* line 229, scss/objects/_sections.scss */
}
.section-has-bg-solo .bg-solo {
  margin: 0;
  height: 300px;
  position: static;
}
@media all and (min-width: 29.75em) {
  .section-has-bg-solo .bg-solo {
    height: 350px;
  }
}
@media all and (min-width: 46.8em) {
  .section-has-bg-solo {
    height: 60%;
  }
  .section-has-bg-solo .bg-solo {
    height: 100vh;
    max-height: 65vh;
  }
}

/* line 241, scss/objects/_sections.scss */
.section-hero {
  background-color: #523178;
  min-height: initial;
  padding-bottom: 1px;
  position: relative;
}
.section-hero .loading {
  position: absolute !important;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.section-hero .bg {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  background-position: 50% 50%;
  height: auto;
}
.section-hero .bg.active {
  opacity: 1;
}
.section-hero .message {
  padding: 8rem 1rem 2rem;
  text-transform: uppercase;
  font-weight: normal;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.js .section-hero .message {
  /* line 290, scss/objects/_sections.scss */
  opacity: 0;
  -webkit-transform: translateY(-1em);
  -ms-transform: translateY(-1em);
  transform: translateY(-1em);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.js .section-hero .message .message-cta {
  -webkit-transform: translateY(-1.5em);
  -ms-transform: translateY(-1.5em);
  transform: translateY(-1.5em);
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.js .section-hero .message.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.js .section-hero .message.active .message-cta {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.section-hero .message-text {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
  font-style: normal;
  font-weight: normal;
  text-transform: none;
  font-size: 3em;
}
.section-hero .message-cta {
  max-width: 40rem;
  margin: 0 auto;
}
.section-hero .message-cta-big {
  max-width: 40rem;
  margin: 0 auto;
}
.section-hero .message-cta-big .btn {
  max-width: 25rem;
  min-width: 25rem;
  font-size: 1.75em;
  color: #ffffff;
  font-weight: 700;
}
@media all and (min-width: 46.8em) {
  .section-hero {
    /* line 348, scss/objects/_sections.scss */
    min-height: 80vh;
    padding-top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .section-hero .bg {
    background-size: cover;
    background-position: 50%;
    background-attachment: fixed;
  }
  .section-hero .message {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 0;
    padding-bottom: 0;
    margin: auto;
  }
  .no-flexbox .section-hero .message {
    padding-top: 8rem;
    padding-bottom: 2rem;
  }
  .section-hero .message-text {
    font-size: 5em;
  }
}
.touch .section-hero .bg {
  background-attachment: scroll !important;
}

/* line 390, scss/objects/_sections.scss */
.section-feature {
  color: #ffffff;
}

/* line 396, scss/objects/_sections.scss */
.section-caption-flexslider {
  padding: 0;
  overflow: hidden;
}

/* line 403, scss/objects/_sections.scss */
.section-has-alt-blocks .wrapper {
  max-width: 70rem;
}
@media (min-width: 73em) {
  .section-has-alt-blocks .wrapper {
    padding: 1rem;
  }
}
.section-has-alt-blocks .g {
  margin-bottom: 2rem;
}

/* line 421, scss/objects/_sections.scss */
.section-has-menu .wrapper {
  max-width: 70rem;
}
@media (min-width: 73em) {
  .section-has-menu .wrapper {
    padding: 1rem;
  }
}
@media (min-width: 46.8em) {
  .section-has-menu .gi-1-3 {
    width: 33.33333%;
  }
  .section-has-menu .gi-2-3 {
    width: 66.66666%;
  }
}

/* line 445, scss/objects/_sections.scss */
.status {
  background: #523178;
  color: #ffffff;
  padding: 1rem 0;
}
.status.status-alert {
  background: #D69A2D;
}
.status.status-warning {
  background: #D69A2D;
}
.status.status-emergency {
  background: #A50050;
}
@media all and (min-width: 46.8em) {
  .status {
    /* line 464, scss/objects/_sections.scss */
    font-size: 1.3em;
    padding-bottom: 2rem;
  }
}
@media all and (min-width: 48em) {
  .status {
    /* line 470, scss/objects/_sections.scss */
    padding-top: 0rem;
  }
}
@media all and (min-width: 48em) and (max-width: 55.4em) {
  .status {
    /* line 475, scss/objects/_sections.scss */
    padding-top: 2rem;
  }
}
@media all and (min-width: 55.4em) {
  .status {
    /* line 480, scss/objects/_sections.scss */
    padding-top: 4rem;
  }
}

/* line 484, scss/objects/_sections.scss */
.cta-message {
  font-family: Georgia, serif;
  font-style: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 1.5em;
  line-height: 1.25;
}
@media all and (min-width: 89em) {
  .cta-message {
    /* line 498, scss/objects/_sections.scss */
    font-style: 1.75em;
  }
}

/* line 501, scss/objects/_sections.scss */
.cta-description {
  font-weight: 300;
  font-size: 1.2em;
}

/* line 508, scss/objects/_sections.scss */
.cta-primary {
  max-width: 70em;
  margin: 0 auto !important;
  text-align: center;
}
.cta-primary a {
  color: #555555;
}
.cta-primary img {
  max-width: 200px;
  margin: 0 auto;
}
.cta-primary p {
  font-family: Georgia, Times, serif;
  font-size: 1.2em;
}
.cta-primary .gi {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* line 535, scss/objects/_sections.scss */
/* line 537, scss/objects/_sections.scss */
.cta-admission {
  text-align: left;
}
.cta-admission a {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  color: #837395;
  display: block;
  padding: 1rem;
  text-transform: uppercase;
  font-size: 1.125em;
}
.cta-admission [class^=icon-] {
  display: inline-block;
  font-size: 1.5em;
  vertical-align: middle;
  margin-right: 0.5rem;
  background: #cec9d0;
  border-radius: 100%;
  padding: 0.8rem;
  width: 1.9em;
  height: 1.9em;
}
.cta-admission a:hover, .cta-admission a:active {
  color: #523178;
}
.cta-admission a:hover [class^=icon-], .cta-admission a:active [class^=icon-] {
  background: #523178;
  color: #837395;
}
.cta-admission .gi:first-of-type a {
  padding-top: 0;
}
.cta-admission .gi:last-of-type a {
  padding-bottom: 0;
}
.cta-admission .gi {
  padding: 1rem;
  border-bottom: 1px solid #ccc;
}
.cta-admission .gi:last-of-type {
  border-bottom: none;
}
@media all and (min-width: 29.75em) {
  .cta-admission {
    /* line 592, scss/objects/_sections.scss */
    text-align: center;
  }
}
@media all and (min-width: 46.8em) {
  .cta-admission a {
    /* line 598, scss/objects/_sections.scss */
    padding: 0;
  }
  .article .cta-admission a {
    font-size: 1em;
  }
  .cta-admission .gi {
    border-bottom: 0;
  }
}
@media all and (min-width: 73em) {
  .cta-admission .gi {
    /* line 613, scss/objects/_sections.scss */
    padding: 0 2rem;
  }
  .article .cta-admission .gi {
    padding: 1rem;
  }
}

/* line 623, scss/objects/_sections.scss */
.cornell-upcoming-events {
  padding: 1rem;
  min-width: 100%;
}
@media all and (min-width: 46.8em) {
  .cornell-upcoming-events {
    padding: 2rem;
    min-width: 95%;
  }
}

/* line 633, scss/objects/_sections.scss */
.cornell-upcoming-events > *:first-child {
  margin-top: 0;
}

/* line 638, scss/objects/_sections.scss */
.cornell-upcoming-events .event-date {
  padding-top: 1rem;
  margin-top: 0;
  border-top: 2px gainsboro solid;
}

/* line 645, scss/objects/_sections.scss */
.cornell-upcoming-events .event-title {
  display: block;
  clear: both;
  font-size: 0.95em;
}

/* line 652, scss/objects/_sections.scss */
.cornell-upcoming-events .event-location,
.cornell-upcoming-events .event-time,
.cornell-upcoming-events .event-actions,
.cornell-upcoming-events .descrpt-actions,
.cornell-upcoming-events .event-description {
  font-size: 0.9em;
}

/*
.cornell-upcoming-events .event-location,
.cornell-upcoming-events .event-time {
    float: left;
    padding-right: 0.5rem;
}
*/
/* line 669, scss/objects/_sections.scss */
.cornell-upcoming-events .event-location::after {
  padding-left: 0.5rem;
  content: "/";
}

/* line 675, scss/objects/_sections.scss */
.cornell-upcoming-events .event-time {
  clear: right;
}

/* line 680, scss/objects/_sections.scss */
.cornell-upcoming-events .event-actions {
  clear: both;
}

/* line 685, scss/objects/_sections.scss */
.cornell-upcoming-events .event-actions a {
  text-decoration: none;
  padding-right: 0.5rem;
}

/* line 691, scss/objects/_sections.scss */
.cornell-upcoming-events .descrpt-actions {
  clear: both;
}

/* line 696, scss/objects/_sections.scss */
.cornell-upcoming-events .descrpt-actions a {
  text-decoration: none;
  padding-right: 0.5rem;
}

/* line 702, scss/objects/_sections.scss */
.cornell-upcoming-events .descrpt-actions {
  /*  visibility: hidden; */
  display: none;
}

/* line 705, scss/objects/_sections.scss */
.cornell-upcoming-events [data-trigger-event-description].active {
  font-weight: bold;
}

/* line 710, scss/objects/_sections.scss */
.cornell-upcoming-events .event-description {
  clear: both;
}

/* line 715, scss/objects/_sections.scss */
.js .cornell-upcoming-events .event-description {
  display: none;
}

/* line 721, scss/objects/_sections.scss */
.today-at-cornell-headlines-title {
  margin-top: 0;
}

/* line 726, scss/objects/_sections.scss */
.today-at-cornell {
  background: #ffffff;
  padding: 1rem;
  /* line 805, scss/objects/_sections.scss */
}
.today-at-cornell > *:first-child {
  margin-top: 0;
}
.today-at-cornell .event-date {
  padding-top: 1rem;
  margin-top: 0;
  border-top: 2px gainsboro solid;
}
.today-at-cornell .event-title {
  display: block;
  clear: both;
  font-size: 0.95em;
}
.today-at-cornell .event-location,
.today-at-cornell .event-time,
.today-at-cornell .event-actions,
.today-at-cornell .descrpt-actions,
.today-at-cornell .event-description {
  font-size: 0.9em;
}
.today-at-cornell .event-location,
.today-at-cornell .event-time {
  float: left;
  padding-right: 0.5rem;
}
.today-at-cornell .event-location::after {
  padding-left: 0.5rem;
  content: "/";
}
.today-at-cornell .event-time {
  clear: right;
}
.today-at-cornell .event-actions {
  clear: both;
}
.today-at-cornell .event-actions a {
  text-decoration: none;
  padding-right: 0.5rem;
}
.today-at-cornell .descrpt-actions {
  clear: both;
}
.today-at-cornell .descrpt-actions a {
  text-decoration: none;
  padding-right: 0.5rem;
}
.today-at-cornell .descrpt-actions {
  /*  visibility: hidden; */
  display: none;
}
.today-at-cornell [data-trigger-event-description].active {
  font-weight: bold;
}
.today-at-cornell .event-description {
  clear: both;
}
.js .today-at-cornell .event-description {
  display: none;
}
@media all and (min-width: 46.8em) {
  .today-at-cornell {
    padding: 2rem;
  }
}

/* line 813, scss/objects/_sections.scss */
.section-bg-image {
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  padding-top: 30%;
}
.section-bg-image img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  transform: translateY(-25%);
}

/*------------------------------------*\
    $BLOCKS
\*------------------------------------*/
/* line 5, scss/objects/_blocks.scss */
.block {
  overflow: hidden;
}
.block p:last-child {
  margin-bottom: 0;
}
.block .b-thumb a {
  border: none;
}

/* line 19, scss/objects/_blocks.scss */
.block-thumb .b-inner {
  display: table;
  width: 100%;
  border-collapse: collapse;
  vertical-align: top;
  overflow: hidden;
}
@media all and (min-width: 46.8em) {
  .block-thumb .b-thumb {
    display: table-cell;
    vertical-align: top;
    width: 20%;
    max-width: 10em;
  }
  .block-thumb .b-thumb img {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media all and (min-width: 46.8em) {
  .block-thumb .b-text {
    display: table-cell;
    width: 70%;
    padding: 0 2rem;
  }
}

/* line 54, scss/objects/_blocks.scss */
.block-news-brief {
  max-width: inherit;
}
.block-news-brief .b-text {
  padding-left: 0;
  padding-right: 1rem;
}
.block-news-brief .headline {
  font-size: 1.0625em;
  font-weight: 700;
}
.block-news-brief .headline a {
  text-decoration: none;
  color: #523178;
  line-height: 1;
  border-bottom: none;
}
.block-news-brief .subhead {
  font-weight: normal;
  font-style: italic;
}
.block-news-brief p {
  font-size: 1em;
}
.block-news-brief .b-thumb + .b-text {
  padding-left: 1rem;
}
.block-news-brief > .headline {
  margin-bottom: 1rem;
}
.block-news-brief .b-thumb {
  width: 100%;
}
@media all and (min-width: 29.75em) {
  .block-news-brief .b-thumb {
    max-width: 60%;
    width: 100%;
  }
}
@media all and (min-width: 34.75em) {
  .block-news-brief .b-thumb {
    max-width: 50%;
    width: 100%;
  }
}
.block-news-brief .b-meta {
  font-size: 0.9em;
  font-style: italic;
}
@media all and (min-width: 46.8em) {
  .block-news-brief .b-thumb {
    /* line 115, scss/objects/_blocks.scss */
    width: 35%;
  }
}

/* line 121, scss/objects/_blocks.scss */
.block-headline-summary a {
  display: block;
  padding: 0.5rem;
}

/* line 130, scss/objects/_blocks.scss */
.block-inset {
  margin-bottom: 0.5rem;
  position: relative;
  display: block;
}
.block-inset .headline {
  font-size: 1em;
  font-family: Georgia, Times, serif;
}
.block-inset .b-thumb {
  position: relative;
  z-index: 0;
}
.block-inset .b-thumb img {
  display: block;
  border: none;
}
.block-inset .b-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 1rem;
}

/* line 163, scss/objects/_blocks.scss */
.block-thumb-summary .b-thumb {
  float: left;
  width: 50%;
}
.block-thumb-summary .b-text {
  margin-left: 50%;
  padding: 0.5rem;
}

/* line 177, scss/objects/_blocks.scss */
.block-event {
  position: relative;
  padding: 0.5rem 0;
}
.block-event .event-link {
  display: block;
  text-decoration: none;
  color: #555555;
}
.block-event .event-date {
  float: left;
  margin-right: 5%;
  color: #523178;
  width: 15%;
  font-size: 1.1em;
  font-weight: bold;
  text-align: right;
}
.block-event .event-title {
  float: left;
  width: 80%;
  font-family: Georgia, Times, serif;
  font-weight: normal;
  font-size: 1.1em;
  line-height: 1.5;
}

/* line 209, scss/objects/_blocks.scss */
.block-more {
  display: none;
  background: #ddd;
  padding: 2rem;
  text-align: center;
  font-family: Georgia, serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.5em;
  font-style: italic;
  -webkit-transition: background 0.4s ease-in-out;
  transition: background 0.4s ease-in-out;
}
.block-more:hover {
  background: #eee;
  color: #555555;
}
@media all and (min-width: 29.75em) and (max-width: 50em) {
  .block-more {
    /* line 230, scss/objects/_blocks.scss */
    display: block;
  }
}

/* line 235, scss/objects/_blocks.scss */
.block-sidebar-image {
  margin-bottom: 0;
  background: #131313;
}
.block-sidebar-image img {
  margin-bottom: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.block-sidebar-image figcaption {
  padding: 1rem;
  font-style: normal;
  background: #ffffff;
}
.block-sidebar-image figcaption h4 {
  font-size: 1.25em;
}
.block-sidebar-image figcaption h4 a {
  font-weight: bold;
  color: #555;
}
.block-sidebar-image figcaption h4 a:hover {
  text-decoration: underline;
  border-bottom: none;
}
.block-sidebar-image figcaption .h4 {
  font-size: 1.25em;
}
.block-sidebar-image figcaption .h4 a {
  font-weight: bold;
  color: #555;
}
.block-sidebar-image figcaption .h4 a:hover {
  text-decoration: underline;
  border-bottom: none;
}
.block-sidebar-image figcaption p {
  margin-bottom: 0.5rem;
}
.block-sidebar-image figcaption p:last-of-type {
  margin-bottom: 0;
}

/* line 291, scss/objects/_blocks.scss */
.block-faculty {
  max-width: inherit;
  background-color: #fff;
}
.block-faculty .faculty-name {
  font-family: Georgia, Times, serif;
  margin: 0;
  font-size: 1.1875em;
  font-weight: 700;
}
.block-faculty .job-title {
  font-weight: normal;
  font-style: italic;
}
.block-faculty .contact-info {
  margin-bottom: 1rem;
  margin-left: 0.75rem;
}
.block-faculty .action {
  font-weight: bold;
}
.block-faculty .contact-info [class*=icon] {
  margin-right: 0.5rem;
}
.block-faculty a {
  text-decoration: none;
}
.block-faculty p {
  font-size: 1em;
}
.block-faculty .b-text {
  padding: 0.25rem 1rem 1rem;
}
.block-faculty .headline {
  font-size: 1.1875em;
  font-weight: 700;
}
@media all and (min-width: 29.75em) {
  .block-faculty .b-thumb {
    /* line 340, scss/objects/_blocks.scss */
    width: 100%;
  }
}
@media all and (min-width: 34.75em) {
  .block-faculty .b-thumb {
    /* line 347, scss/objects/_blocks.scss */
    max-width: 50%;
    width: 100%;
  }
}
@media all and (min-width: 46.8em) {
  .block-faculty .b-thumb {
    /* line 355, scss/objects/_blocks.scss */
    width: 25%;
  }
}

/* line 362, scss/objects/_blocks.scss */
.block-highlight {
  background: #ffffff;
  padding: 2rem;
  margin: 0 auto;
  color: #555555;
}
.block-highlight .cta-title, .block-highlight .infographic .infographic-title, .infographic .block-highlight .infographic-title {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
.block-highlight p {
  font-weight: 300;
  margin-bottom: 1.5em;
}
.block-highlight > *:last-child {
  margin-bottom: 0;
}
.block-highlight.block-highlight-left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.block-highlight.block-highlight-right {
  margin-right: 0;
  margin-left: auto;
}
@media all and (min-width: 46.8em) {
  .block-highlight {
    /* line 397, scss/objects/_blocks.scss */
    max-width: 40em;
    margin-top: 3rem;
    margin-bottom: 5rem;
    padding: 4rem;
  }
  .block-highlight p {
    font-size: 1.1em;
  }
  .block-highlight .cta-title, .block-highlight .infographic .infographic-title, .infographic .block-highlight .infographic-title {
    font-size: 2em;
  }
}

/* line 413, scss/objects/_blocks.scss */
.block-endorsement {
  background: url("../images/pattern_03.jpg");
}
.block-endorsement .cta-title, .block-endorsement .infographic .infographic-title, .infographic .block-endorsement .infographic-title {
  font-size: 1.2em;
  font-family: Georgia, serif;
  font-style: normal;
  font-weight: normal;
  text-transform: uppercase;
  color: #9b94a3;
  letter-spacing: 0.2em;
  margin-bottom: 0.4rem;
}
.block-endorsement .block-endorsement-credentials {
  font-family: Georgia, Times, serif;
  color: #9b94a3;
  margin-bottom: 0.5rem;
}
.block-endorsement .block-endorsement-message {
  font-size: 1em;
  color: #9b94a3;
  font-family: Georgia, Times, serif;
  font-style: italic;
}
.block-endorsement .block-endorsement-message p {
  margin-bottom: 1rem;
}
@media all and (min-width: 50em) {
  .block-endorsement .block-endorsement-message {
    /* line 446, scss/objects/_blocks.scss */
    font-size: 1.7em;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: normal;
  }
}
@media all and (min-width: 46.8em) {
  .block-endorsement {
    /* line 455, scss/objects/_blocks.scss */
    max-width: 50%;
    padding: 2rem;
  }
}

/* line 462, scss/objects/_blocks.scss */
.block-upcoming-event {
  width: 100%;
}
.block-upcoming-event .upcoming-event-title {
  font-size: 1.5em;
  font-family: Georgia, serif;
  font-style: normal;
  font-weight: normal;
  border-bottom: 1px dashed #7E7F74;
}
.block-upcoming-event .upcoming-event-date {
  display: block;
  font-size: 3em;
  color: #523178;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1rem;
  width: 100%;
}
.block-upcoming-event.more a {
  text-decoration: none;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  display: block;
  margin-top: 1rem;
}

/* line 495, scss/objects/_blocks.scss */
.block-clock {
  background: #719949;
  color: #ffffff;
}
.block-clock .current-block {
  text-transform: uppercase;
}

/* line 506, scss/objects/_blocks.scss */
.block-event-announcement {
  background: #719949;
  color: #ffffff;
}
.block-event-announcement .title {
  text-transform: uppercase;
}
.block-event-announcement li a {
  color: #523178;
}
.block-event-announcement li a[href] {
  text-decoration: underline;
  color: #fff;
}

/* line 526, scss/objects/_blocks.scss */
.block-caption .cta-title, .block-caption .infographic .infographic-title, .infographic .block-caption .infographic-title {
  font-size: 1.5em;
  margin-bottom: 0.5em;
  margin-top: 0;
}
.block-caption p {
  font-weight: 300;
  margin-bottom: 1.5em;
  max-width: 40em;
}
.block-caption > *:last-child {
  margin-bottom: 0;
}

/* line 547, scss/objects/_blocks.scss */
.feature-message {
  text-align: center;
  margin: 1rem auto;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: normal;
}

/* line 557, scss/objects/_blocks.scss */
.feature-message-title {
  font-family: Georgia, serif;
  font-style: normal;
  font-weight: normal;
  font-weight: normal;
  font-size: 1.5em;
  margin: 0;
}

/* line 567, scss/objects/_blocks.scss */
.feature-message-text {
  font-weight: 300;
}

/* line 572, scss/objects/_blocks.scss */
.feature-message-cta {
  margin-top: 2rem;
}

@media all and (min-width: 46.8em) {
  .feature-message {
    /* line 579, scss/objects/_blocks.scss */
    max-width: 43em;
    margin: 0 auto;
  }
  .feature-message-title {
    font-size: 3em;
  }
  .feature-message-text {
    font-size: 1.9em;
  }
  .feature-message-text.small-text {
    font-size: 2em;
  }
  .feature-message-text p {
    font-size: 1em;
  }
}
@media all and (min-width: 73em) {
  .feature-message {
    /* line 603, scss/objects/_blocks.scss */
    max-width: 55em;
  }
  .feature-message-title {
    font-size: 3.25em;
  }
  .feature-message-text {
    font-size: 2.375em;
  }
}
/* line 616, scss/objects/_blocks.scss */
.block-headline-image .b-text {
  background: #555555;
  background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}
@media (min-width: 46.8em) {
  .block-headline-image .b-text {
    padding: 2rem;
  }
}
.block-headline-image .headline {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.5em;
  line-height: 1.2;
  margin-bottom: 0;
}
.block-headline-image .headline a {
  border: none;
  text-decoration: none;
  color: #ffffff;
}
@media (min-width: 46.8em) {
  .block-headline-image .headline {
    /* line 643, scss/objects/_blocks.scss */
    font-size: 2.25em;
  }
}
.block-headline-image .b-actions a {
  color: #ffffff;
  text-decoration: none;
  font-style: italic;
  margin-right: 0.5rem;
}
.block-headline-image .b-actions a i {
  font-size: 1.5em;
  vertical-align: middle;
}

/* line 664, scss/objects/_blocks.scss */
.block-news-item {
  text-decoration: none;
}
.block-news-item .b-thumb {
  margin-bottom: 0.5rem;
}
@media (min-width: 73em) {
  .block-news-item .b-thumb {
    position: relative;
    overflow: hidden;
    padding-top: 66.6666%;
  }
  .block-news-item .b-thumb img {
    position: absolute;
    top: 0;
  }
}
.block-news-item .b-date {
  margin-bottom: 0.5rem;
}
.block-news-item .headline {
  font-family: Georgia, Times, serif;
  font-weight: bold;
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.block-news-item .headline:hover, .block-news-item .headline:focus {
  text-decoration: underline;
}
.block-news-item .b-description {
  color: #555555;
  margin-bottom: 0.5rem;
  font-size: 0.9em;
  line-height: 1.5;
}
.block-news-item.block-news-item--below .b-text {
  padding: 1rem;
}
.block-news-item .b-comments {
  color: #837395;
}
.block-news-item .b-comments:hover, .block-news-item .b-comments:focus {
  color: #523178;
}
.block-news-item.block-inset .b-text {
  background: #555555;
  background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}
.block-news-item.block-inset .headline {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 0;
}

/* line 737, scss/objects/_blocks.scss */
.block-cornell-report .headline {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.125em;
  color: #555555;
}
.block-cornell-report .headline a {
  text-decoration: none;
  color: #837395;
}
.block-cornell-report .headline a:hover, .block-cornell-report .headline a:focus {
  color: #523178;
}
.block-cornell-report .b-thumb {
  padding: 2rem;
}
.block-cornell-report .b-thumb img {
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.15);
  width: 100%;
}
.block-cornell-report .b-text {
  padding: 0.5rem 2rem 0;
}
.block-cornell-report .b-actions a {
  text-decoration: none;
  color: #837395;
}
.block-cornell-report .b-actions a:hover, .block-cornell-report .b-actions a:focus {
  color: #523178;
}
.block-cornell-report.block-cornell-report--featured .b-thumb {
  padding: 1rem;
}
.block-cornell-report.block-cornell-report--featured .b-text {
  padding: 0 1rem;
}

/* line 790, scss/objects/_blocks.scss */
.block-event {
  text-align: center;
}
.block-event .b-category {
  text-transform: uppercase;
  color: #523178;
  padding: 0.5rem;
  display: inline-block;
  font-size: 1.25em;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.block-event .b-text {
  padding: 1rem;
}
.block-event .headline {
  font-size: 1.5em;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1rem;
}
.block-event .b-meta {
  font-size: 1.1em;
}
.block-event a {
  color: #555555;
}
.block-event .b-actions {
  margin-top: 1rem;
}
.block-event .b-actions a {
  color: #837395;
  font-size: 1.1em;
}
.block-event .b-actions a:hover, .block-event .b-actions a:focus {
  color: #523178;
}

/* line 839, scss/objects/_blocks.scss */
.block-cornell-report-story .b-category a {
  color: #837395;
}
.block-cornell-report-story .b-thumb {
  margin-bottom: 1rem;
}
.block-cornell-report-story .b-text {
  margin-bottom: 1rem;
}
.block-cornell-report-story .headline {
  font-weight: normal;
  font-size: 1.3em;
  line-height: 1.2;
}
.block-cornell-report-story .headline a {
  text-decoration: none;
  color: #555555;
}
.block-cornell-report-story .headline a:hover, .block-cornell-report-story .headline a:focus {
  text-decoration: underline;
}

/* line 874, scss/objects/_blocks.scss */
.block-cornell-report-preview {
  margin: 1rem 0;
}
.block-cornell-report-preview a {
  text-decoration: none;
}
.block-cornell-report-preview a:hover, .block-cornell-report-preview a:focus {
  text-decoration: underline;
}
.block-cornell-report-preview .b-thumb {
  padding: 0.5rem;
}
.block-cornell-report-preview .b-thumb img {
  width: 100%;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
}
.block-cornell-report-preview .headline {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 0.9rem;
  color: #523178;
  margin-bottom: 1rem;
}
.block-cornell-report-preview .b-description {
  color: #555555;
}
.block-cornell-report-preview .b-description p {
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (min-width: 46.8em) {
  .block-cornell-report-preview .b-thumb,
  .block-cornell-report-preview .b-text {
    /* line 916, scss/objects/_blocks.scss */
    width: 50%;
  }
  .block-cornell-report-preview .b-text {
    padding: 0 0 0 1rem;
  }
}

/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

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

/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
  font-family: "flexslider-icon";
  src: url("../fonts/flexslider-icon.eot");
  src: url("../fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("../fonts/flexslider-icon.woff") format("woff"), url("../fonts/flexslider-icon.ttf") format("truetype"), url("../fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0;
}
@media (min-width: 50em) {
  .flexslider {
    min-height: 360px;
  }
}
@media (min-width: 73em) {
  .flexslider {
    min-height: 419px;
  }
}

.flexslider.slider-standard {
  height: auto;
  min-height: auto;
}

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

.flexslider .slides img {
  width: 100%;
  display: block;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

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

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

* html .slides {
  height: 1%;
}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block;
}

/* FlexSlider Default Theme
*********************************/
/* .flexslider { margin: 0 0 60px; background: #fff; border: 4px solid #fff; position: relative; -webkit-border-radius: 4px; -moz-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.2); -moz-box-shadow: 0 1px 4px rgba(0,0,0,.2); -o-box-shadow: 0 1px 4px rgba(0,0,0,.2); box-shadow: 0 1px 4px rgba(0,0,0,.2); zoom: 1; } */
.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: 4px solid #fff;
  position: relative;
  -o-border-radius: 4px;
  border-radius: 4px;
  -o-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  zoom: 1;
}

/* .flex-viewport { max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; } */
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.flexslider .slides {
  zoom: 1;
}

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

/* Direction Nav */
.flex-direction-nav {
  *height: 0;
}

/* .flex-direction-nav a  { text-decoration:none; display: block; width: .35em; height: 1em; transform: translateY(-70%); position: absolute; top: 50%; z-index: 10; overflow: hidden; opacity: 0; cursor: pointer; color: rgba(0,0,0,0.8); text-shadow: 1px 1px 0 rgba(255,255,255,0.3); -webkit-transition: all .3s ease; -moz-transition: all .3s ease; transition: all .3s ease; font-size: 4em; } */
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 0.35em;
  height: 1em;
  -webkit-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  transform: translateY(-70%);
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 4em;
}

.flex-direction-nav .flex-prev {
  left: -50px;
}

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}

.flexslider:hover .flex-prev {
  opacity: 0.7;
  left: 10px;
}

.flexslider:hover .flex-next {
  opacity: 0.7;
  right: 10px;
}

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
  opacity: 1;
}

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
}

.flex-direction-nav a:before {
  font-family: "cornellicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e606";
  vertical-align: top;
  color: #ffffff;
  text-shadow: 0 0 1px #000;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.flex-direction-nav a.flex-next:before {
  content: "\e607";
}

/* Pause/Play */
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: "\f004";
}

.flex-pauseplay a:hover {
  opacity: 1;
}

.flex-pauseplay a.flex-play:before {
  content: "\f003";
}

/* Control Nav */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

/*.flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); -moz-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); -o-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); box-shadow: inset 0 0 3px rgba(0,0,0,0.3); top: auto; } */
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -o-border-radius: 20px;
  border-radius: 20px;
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  top: auto;
}

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: 0.7;
  cursor: pointer;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

.flex-direction-nav .flex-prev {
  opacity: 1;
  left: 10px;
}

.flex-direction-nav .flex-next {
  opacity: 1;
  right: 10px;
}

/*------------------------------------*\
    $INFOGRAPHICS
\*------------------------------------*/
/* line 5, scss/objects/_infographics.scss */
.infographic {
  overflow: hidden;
}
.infographic .infographic-title {
  font-style: normal;
  margin-bottom: 0.25rem;
}
.infographic .infographic-feature {
  margin-bottom: 2rem;
}
.infographic .infographic-feature a {
  display: block;
  text-decoration: none;
  text-align: center;
}
@media all and (min-width: 46.8em) {
  .infographic .infographic-feature {
    /* line 26, scss/objects/_infographics.scss */
    margin-bottom: 0;
  }
}
.infographic .infographic-feature-text {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: normal;
  font-size: 5em;
  color: #147BD1;
  display: block;
  text-transform: uppercase;
  line-height: 1;
}
.infographic .infographic-feature-text sup {
  font-size: 0.5em;
}
.infographic .infographic-feature-text a {
  color: #147BD1;
}
@media all and (min-width: 50em) {
  .infographic .infographic-feature-text {
    /* line 50, scss/objects/_infographics.scss */
    font-size: 5em;
  }
}
.infographic .infographic-caption {
  border-top: 3px solid #147BD1;
  padding-top: 1rem;
}
.infographic .infographic-caption p {
  font-family: Georgia, serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.7em;
}
.infographic .infographic-caption a {
  font-weight: bold;
  text-decoration: none;
}
.infographic .graph {
  margin: 0 auto 1rem;
  padding: 2rem 0;
}
.infographic .background {
  fill: transparent;
}
.infographic .ring, .infographic .foreground {
  fill: #147BD1;
}
.infographic .progress-meter {
  font-size: 0.5em;
  fill: #147BD1;
  text-decoration: none;
}
.js.canvas .infographic[data-animated-infographic] [data-infographic-value] {
  visibility: hidden;
}
@media all and (min-width: 73em) {
  .infographic.infographic-split {
    /* line 97, scss/objects/_infographics.scss */
  }
  .infographic.infographic-split .infographic-feature, .infographic.infographic-split .infographic-caption {
    width: 49%;
    display: inline-block;
    vertical-align: middle;
  }
}

/*------------------------------------*\
    $MAJOR PICKER
\*------------------------------------*/
/* line 5, scss/objects/_majorpicker.scss */
.major-picker {
  max-width: 70rem;
  margin: 1rem auto;
}
.major-picker .major-picker-filter {
  border-top: 3px solid #555555;
  padding: 1rem 0;
}
.major-picker .major-picker-filter a {
  font-weight: 300;
  text-transform: uppercase;
  display: block;
  padding: 0.5rem;
  color: #555555;
}
.major-picker .major-picker-filter a.active {
  color: #719949;
  font-weight: bold;
}
.major-picker .major-picker-key-list {
  border-top: 3px solid #555555;
  padding: 1rem 0;
}
.major-picker h4 {
  text-transform: uppercase;
  margin-bottom: 1em;
}
.major-picker .h4 {
  text-transform: uppercase;
  margin-bottom: 1em;
}
.major-picker li a {
  text-decoration: none;
}
@media all and (min-width: 29.75em) {
  .major-picker .major-picker-filter a {
    /* line 51, scss/objects/_majorpicker.scss */
    display: inline-block;
    padding: 0.5rem 0;
    margin-right: 1rem;
  }
}

/* line 61, scss/objects/_majorpicker.scss */
.key-major, .key-minor, .key-p, .key-i {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 0.9em;
  font-weight: 300;
  color: #ffffff;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
}

/* line 75, scss/objects/_majorpicker.scss */
.key-major {
  background-color: #523178;
}

/* line 80, scss/objects/_majorpicker.scss */
.key-minor {
  background-color: #719949;
}

/* line 85, scss/objects/_majorpicker.scss */
.key-p {
  background-color: #A50050;
}

/* line 90, scss/objects/_majorpicker.scss */
.key-i {
  background-color: #D69A2D;
}

/* line 95, scss/objects/_majorpicker.scss */
.major-picker-icons {
  float: right;
}

/* line 100, scss/objects/_majorpicker.scss */
.major-picker-list {
  list-style: none;
  padding: 0;
  margin-bottom: 4rem;
}
.major-picker-list li {
  overflow: auto;
  padding: 0.5rem;
  border-bottom: 1px solid #dcdcdc;
}
.major-picker-list li:first-of-type {
  border-top: 1px solid gainsboro;
}
.major-picker-list li:hover {
  background: #f5f5f5;
}
@media all and (min-width: 46.8em) {
  .major-picker-list {
    /* line 122, scss/objects/_majorpicker.scss */
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }
}

/* line 130, scss/objects/_majorpicker.scss */
.major-picker-key-list {
  list-style: none;
  padding: 0;
}
.major-picker-key-list li {
  display: inline-block;
  font-style: italic;
  font-size: 0.9em;
  margin-right: 0.5rem;
}

/*------------------------------------*\
    $CORNELLGRAM
\*------------------------------------*/
/*
 * Boxer v3.1.0 - 2014-03-12
 * A jQuery plugin for displaying images, videos or content in a modal overlay. Part of the Formstone Library.
 * http://formstone.it/boxer/
 *
 * Copyright 2014 Ben Plum; MIT Licensed
 */
/* line 9, scss/objects/_boxer.scss */
.boxer-lock {
  overflow: hidden !important;
}

#boxer-overlay {
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}

#boxer * {
  -webkit-transition: none;
  transition: none;
}

#boxer.animating {
  -webkit-transition: left 0.25s ease, opacity 0.25s linear, top 0.25s ease;
  transition: left 0.25s ease, opacity 0.25s linear, top 0.25s ease;
}

#boxer.animating .boxer-container {
  -webkit-transition: height 0.25s ease, width 0.25s ease;
  transition: height 0.25s ease, width 0.25s ease;
}

#boxer.animating .boxer-content {
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}

#boxer-overlay {
  background: #000;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 105;
}

#boxer {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 0 25px #000;
  opacity: 0;
  padding: 10px;
  position: absolute;
  z-index: 105;
}

#boxer.inline {
  padding: 30px;
}

.boxer-open #boxer-overlay {
  opacity: 0.75;
}

.boxer-open #boxer,
.boxer-open #boxer .boxer-content {
  opacity: 1;
}

.boxer-open #boxer.loading .boxer-content {
  opacity: 0;
}

#boxer .boxer-close {
  background: #fff url(../images/jquery.fs.boxer-icons.png) no-repeat -70px 10px;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  height: 30px;
  position: absolute;
  padding: 0;
  right: -8px;
  top: -8px;
  width: 30px;
  text-indent: -99999px;
  z-index: 106;
}

#boxer .boxer-container {
  background: #fff;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 105;
  zoom: 1;
}

#boxer .boxer-content {
  background: #fff;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  width: 10000px;
}

#boxer .boxer-image {
  float: left;
}

#boxer .boxer-video {
  height: 100%;
  width: 100%;
}

#boxer .boxer-iframe {
  border: none;
  float: left;
  height: 100%;
  overflow: auto;
  width: 100%;
}

#boxer .boxer-meta {
  clear: both;
}

#boxer .boxer-control {
  background: #fff url(../images/jquery.fs.boxer-icons.png) no-repeat 0 0;
  border-radius: 100%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: block;
  height: 40px;
  margin-right: auto;
  margin-left: auto;
  position: absolute;
  text-indent: -99999px;
  top: 0;
  width: 40px;
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}

#boxer .boxer-control.previous {
  left: 20px;
}

#boxer .boxer-control.next {
  background-position: -40px 0;
  right: 20px;
}

#boxer .boxer-control.disabled {
  opacity: 0.3;
}

#boxer .boxer-position {
  color: #999;
  font-size: 11px;
  margin: 0;
  padding: 15px 10px 5px;
}

#boxer .boxer-caption p {
  margin: 0;
  padding: 15px 10px 10px 10px;
}

#boxer .boxer-caption a {
  text-decoration: none;
  font-weight: bold;
}

#boxer .boxer-caption.gallery p {
  padding-top: 0;
}

#boxer.loading .boxer-container {
  background: #fff url(../images/jquery.fs.boxer-loading.gif) no-repeat center;
}

/* Mobile */
#boxer.mobile {
  background: #000;
  border-radius: 0;
  height: 100%;
  left: 0;
  padding: 30px 0 0;
  position: fixed;
  top: 0;
  width: 100%;
}

#boxer.mobile .boxer-close {
  background-color: #000;
  background-position: -70px -60px;
  border-radius: 0;
  right: 0;
  top: 0;
}

#boxer.mobile .boxer-container {
  background: #000;
  position: relative;
}

#boxer.mobile .boxer-content {
  background-color: #000;
}

#boxer.mobile .boxer-control {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  margin: -20px 0 0;
  top: 50%;
}

#boxer.mobile .boxer-control.previous {
  background-position: 0 -40px;
  float: left;
  left: 0;
}

#boxer.mobile .boxer-control.next {
  background-position: -40px -40px;
  float: right;
  right: 0;
}

#boxer.mobile .boxer-control.disabled {
  opacity: 0.3;
}

#boxer.mobile .boxer-meta {
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  left: 0;
  padding: 15px 50px 10px;
  position: absolute;
  width: 100%;
}

#boxer.mobile .boxer-position {
  padding: 0;
}

#boxer.mobile .boxer-caption p {
  color: #eee;
  padding: 10px 0 0;
}

#boxer.mobile .boxer-image {
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

#boxer.mobile.animated .boxer-image {
  -webkit-transition: -webkit-transform 0.25s ease-out !important;
  transition: transform 0.25s ease-out !important;
}

#boxer.mobile.loading .boxer-container {
  background: #000 url(../images/jquery.fs.boxer-loading-dark.gif) no-repeat center;
}

#boxer.mobile.inline .boxer-content,
#boxer.mobile.iframe .boxer-content {
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 980px) {
  /* line 124, scss/objects/_boxer.scss */
  #boxer .boxer-close:hover {
    background-position: -70px -20px;
  }
  #boxer .boxer-control,
  #boxer .boxer-control.disabled {
    opacity: 0;
  }
  #boxer .boxer-content:hover .boxer-control {
    opacity: 0.75;
  }
  #boxer .boxer-content:hover .boxer-control:hover {
    opacity: 1;
  }
  #boxer .boxer-content:hover .boxer-control.disabled {
    opacity: 0.3;
    cursor: default !important;
  }
  #boxer.mobile .boxer-control {
    opacity: 1 !important;
  }
  #boxer.mobile .boxer-control.disabled {
    opacity: 0.3 !important;
  }
}
@media screen and (max-width: 980px) {
  /* line 126, scss/objects/_boxer.scss */
  #boxer.mobile {
    position: fixed;
  }
}
/* line 10, scss/objects/_cornellgram.scss */
.cornellgram {
  overflow: hidden;
  position: relative;
  -webkit-transition: height 0.4s ease-in-out;
  transition: height 0.4s ease-in-out;
}
.js .cornellgram {
  height: 250px;
}
@media (min-width: 46.8em) {
  .js .cornellgram img {
    height: 250px;
  }
}
.cornellgram.disabled {
  height: 0;
}
.cornellgram .cg-prev, .cornellgram .cg-next {
  display: none;
}
.cornellgram ul {
  width: 100000px;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
}
.cornellgram.animating ul {
  -webkit-transition: none;
  transition: none;
}
.cornellgram li {
  display: inline-block;
  vertical-align: top;
}
.cornellgram li a {
  display: block;
}
.cornellgram li:first-of-type a {
  margin-left: 0;
}
.cornellgram li:last-of-type a {
  margin-right: 0;
}
.cornellgram li > a {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cornellgram li > a.loaded {
  opacity: 1;
}
.cornellgram img {
  width: 100vw;
}
.cornellgram .cornellgram-caption {
  display: none;
}
@media all and (min-width: 46.8em) {
  .cornellgram img {
    /* line 88, scss/objects/_cornellgram.scss */
    width: auto;
  }
  .cornellgram .cornellgram-caption {
    display: block;
    position: absolute;
    right: 0.25rem;
    bottom: 0;
    left: 0.25rem;
    opacity: 0;
    background: #ffffff;
    color: #555555;
    padding: 1rem;
    font-size: 0.8em;
    border-top: 5px solid #A50050;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  .cornellgram .cornellgram-caption a {
    text-decoration: none;
  }
  .cornellgram li {
    position: relative;
  }
  .cornellgram li > a {
    margin: 0 0.25rem;
    position: relative;
  }
  .cornellgram li:first-of-type .cornellgram-caption {
    left: 0;
  }
  .cornellgram li:last-of-type .cornellgram-caption {
    right: 0;
  }
  .cornellgram li:hover .cornellgram-caption {
    opacity: 0.9;
  }
  .cornellgram .cg-prev, .cornellgram .cg-next {
    display: block;
    color: #ffffff;
    position: absolute;
    z-index: 9;
    top: 0;
    bottom: 0;
    padding: 0 3rem;
    font-size: 2em;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
  }
  .cornellgram .cg-prev i, .cornellgram .cg-next i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .cornellgram .cg-prev {
    left: 0;
    padding-right: 1em;
    text-align: right;
    display: none;
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  }
  .cornellgram .cg-next {
    right: 0;
    padding-left: 1em;
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
  }
  .cornellgram:hover .cg-prev, .cornellgram:hover .cg-next {
    opacity: 1;
  }
}

/*------------------------------------*\
    $DISCOVER CORNELL
\*------------------------------------*/
/* line 5, scss/objects/_discover.scss */
.discover-cornell {
  background: url(../images/ginko_leaf_00.svg), #322b39;
  background-size: 100% auto;
  color: #ffffff;
}
.discover-cornell section:first-of-type .discover-title {
  /* line 15, scss/objects/_discover.scss */
  color: #A50050;
}
.discover-cornell section:first-of-type .discover-infographic .infographic-feature {
  background: #A50050;
}
.discover-cornell section:nth-of-type(2) .discover-title {
  color: #719949;
}
.discover-cornell section:nth-of-type(2) .discover-infographic .infographic-feature {
  background: #719949;
}
.discover-cornell section:nth-of-type(3) .discover-title {
  color: #D69A2D;
}
.discover-cornell section:nth-of-type(3) .discover-infographic .infographic-feature {
  background: #D69A2D;
}
.discover-cornell section:nth-of-type(4) .discover-title {
  color: #147BD1;
}
.discover-cornell section:nth-of-type(4) .discover-infographic .infographic-feature {
  background: #147BD1;
}
.discover-cornell .discover-title {
  /* line 56, scss/objects/_discover.scss */
  font-family: Georgia, Times, serif;
  font-size: 1.5em;
  margin-top: 0;
}
.discover-cornell .discover-caption {
  /* line 63, scss/objects/_discover.scss */
  font-size: 1.2em;
  font-weight: 300;
  margin-bottom: 2rem;
}
.discover-cornell .discover-caption > *:last-child {
  margin-bottom: 0;
}
.discover-cornell .discover-caption-title {
  /* line 74, scss/objects/_discover.scss */
  font-family: Georgia, Times, serif;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 0.9em;
  margin-bottom: 1rem;
}
.discover-cornell .discover-infographic {
  /* line 83, scss/objects/_discover.scss */
  max-width: 20rem;
}
.discover-cornell .discover-infographic .infographic-feature {
  padding-top: 1em;
  border-radius: 100%;
  color: #dcdcdc;
  width: 3em;
  height: 3em;
  margin: 0 auto 1rem;
  text-align: center;
  font-size: 2em;
}
.discover-cornell .discover-infographic .infographic-caption {
  border-top-color: #dcdcdc;
}
.discover-cornell .discover-infographic .infographic-caption p {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1em;
}
@media all and (min-width: 46.8em) {
  .discover-cornell .section-discover {
    /* line 111, scss/objects/_discover.scss */
    padding-bottom: 4rem;
  }
  .discover-cornell .discover-title {
    font-size: 3em;
    font-family: Georgia, serif;
    font-style: normal;
    font-weight: normal;
    margin-bottom: 0.5rem;
  }
  .discover-cornell .discover-infographic {
    margin-left: auto;
  }
}
@media all and (min-width: 50em) {
  .discover-cornell .wrapper {
    /* line 130, scss/objects/_discover.scss */
    max-width: 90rem;
  }
  .discover-cornell .discover-infographic .infographic-feature {
    font-size: 2.9em;
  }
  .discover-cornell .infographic-caption {
    margin-left: 1rem;
  }
}
@media (min-width: 73em) {
  .discover-cornell .discover-title {
    /* line 145, scss/objects/_discover.scss */
    font-size: 4em;
  }
}
@media (min-width: 46.8em) {
  .flexbox .discover-cornell section .gi {
    /* line 155, scss/objects/_discover.scss */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
  }
  .flexbox .discover-cornell section .gi > * {
    -webkit-box-flex: 1;
    -webkit-flex: 1 auto;
    -ms-flex: 1 auto;
    flex: 1 auto;
  }
  .flexbox .discover-cornell section:nth-of-type(odd) .discover-feature {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .flexbox .discover-cornell section:nth-of-type(odd) .discover-title {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .flexbox .discover-cornell section:nth-of-type(odd) .discover-infographic {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .flexbox .discover-cornell section:nth-of-type(odd) .discover-caption {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .flexbox .discover-cornell section:nth-of-type(even) .gi {
    float: right;
  }
}
@media (min-width: 50em) {
  .flexbox .discover-cornell section {
    /* line 213, scss/objects/_discover.scss */
    padding-bottom: 7rem;
  }
  .flexbox .discover-cornell section:nth-of-type(odd) .discover-infographic {
    -webkit-transform: translateY(25%);
    -ms-transform: translateY(25%);
    transform: translateY(25%);
  }
  .flexbox .discover-cornell section:nth-of-type(odd) .gi:last-child {
    padding-top: 9rem;
  }
  .flexbox .discover-cornell section:nth-of-type(even) .gi:first-child {
    padding-top: 9rem;
  }
}
@media (min-width: 73em) {
  .flexbox .discover-cornell section {
    /* line 239, scss/objects/_discover.scss */
    padding-bottom: 4rem;
  }
}

/*------------------------------------*\
    $INTERACTIVE QUIZ
\*------------------------------------*/
/* line 5, scss/objects/_quiz.scss */
.interactive-quiz {
  text-align: left;
}
.interactive-quiz .interactive-quiz-question {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: normal;
  font-size: 1.2em;
  margin-bottom: 1rem;
}
.interactive-quiz .interactive-quiz-answer {
  font-size: 1.3em;
  margin-bottom: 1rem;
}
.interactive-quiz .interactive-quiz-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
}
.interactive-quiz .interactive-quiz-actions button {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.interactive-quiz .interactive-quiz-actions .action-next {
  margin: 0;
}
.interactive-quiz progress[value] {
  /* Reset the default appearance */
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.interactive-quiz progress[value]::-webkit-progress-bar {
  background-color: #eee;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}
.interactive-quiz progress[value]::-webkit-progress-value {
  background: #523178;
  border-radius: 2px;
}
.interactive-quiz .interactive-quiz-percent-done {
  text-align: center;
  font-style: italic;
  color: #523178;
}
.interactive-quiz .btn-cta {
  margin-top: 1rem;
}

/* line 75, scss/objects/_quiz.scss */
.no-js .interactive-quiz dt {
  margin: 2rem 0 0.5rem;
}
.no-js .interactive-quiz dt:first-of-type {
  margin-top: 0;
}
.no-js .interactive-quiz [data-answer]::before, .no-js .interactive-quiz [data-answer]::after {
  font-weight: bold;
}
.no-js .interactive-quiz [data-answer=yes]::before {
  content: "YES: ";
}
.no-js .interactive-quiz [data-answer=no]::before {
  content: "NO: ";
}
@-webkit-keyframes animate-stripes {
  100% {
    background-position: -100px 0px;
  }
}

@keyframes animate-stripes {
  100% {
    background-position: -100px 0px;
  }
}
/*------------------------------------*\
    $NEWS BLOCKS
\*------------------------------------*/
/* NEWS BLOCKS: This defines an object-oriented "update" block which we can use to
define our other news blocks (like announcements) */
/* line 9, scss/objects/_news.scss */
.block-update, .block-blog, .block-announcement, .block-news {
  display: block;
  margin-bottom: 1rem;
  color: #333;
  background: #ffffff;
}
.block-update a, .block-blog a, .block-announcement a, .block-news a, .block-update a:visited {
  color: #333;
}
.block-update img, .block-blog img, .block-announcement img, .block-news img {
  width: 100%;
  border: none;
}
.block-update .b-text, .block-blog .b-text, .block-announcement .b-text, .block-news .b-text {
  padding: 1rem;
  color: #555;
}
.block-update h3, .block-blog h3, .block-announcement h3, .block-news h3 {
  font-size: 1.1em;
  font-family: Georgia, Times, serif;
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 0;
}
.block-update .h3, .block-blog .h3, .block-announcement .h3, .block-news .h3 {
  font-size: 1.1em;
  font-family: Georgia, Times, serif;
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 0;
}
.block-update p, .block-blog p, .block-announcement p, .block-news p {
  font-size: 0.8em;
}
@media all and (min-width: 73em) {
  .block-update, .block-blog, .block-announcement, .block-news {
    margin-bottom: 0;
  }
}

/* line 58, scss/objects/_news.scss */
@media (min-width: 46.8em) {
  .block-news .b-text {
    height: 7rem;
  }
}
@media (min-width: 89em) {
  .block-news .b-text {
    height: 5rem;
  }
}
.block-news.block-news-more {
  background: none;
  text-align: center;
  position: relative;
}
.block-news.block-news-more h4 {
  font-weight: 400;
  margin-bottom: 1rem;
}
.block-news.block-news-more .h4 {
  font-weight: 400;
  margin-bottom: 1rem;
}
.block-news.block-news-more hr {
  margin: 0.5rem 0;
}
.block-news.block-news-more h4 a:hover {
  text-decoration: underline;
}
.block-news.block-news-more .h4 a:hover {
  text-decoration: underline;
}
.block-news.block-news-more .block-news-more-title {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-weight: bolder;
  color: #523178;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.block-news.block-news-more .block-news-more-item {
  border-bottom: 1px solid #7E7F74;
  padding-bottom: 1rem;
}
.block-news.block-news-more .block-news-more-item a {
  font-family: Georgia, Times, serif;
}
.block-news.block-news-more .block-news-more-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .block-news.block-news-more {
    font-size: inherit;
  }
}

/* line 128, scss/objects/_news.scss */
.block-announcement {
  background: none;
}
.block-announcement .announcement-category {
  font-weight: bold;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-size: 0.9em;
  margin-bottom: 0.5rem;
}
.block-announcement .b-text {
  background: #ffffff;
}
@media (min-width: 46.8em) {
  .block-announcement .b-text {
    min-height: 10rem;
  }
}
.block-announcement h3 {
  margin-bottom: 0.5rem;
}
.block-announcement .h3 {
  margin-bottom: 0.5rem;
}

/* line 158, scss/objects/_news.scss */
.block-blog h3 {
  margin-bottom: 0.5rem;
}
.block-blog .h3 {
  margin-bottom: 0.5rem;
}
.block-blog .blog-author {
  display: table;
  width: 100%;
}
.block-blog .blog-author .blog-author-avatar,
.block-blog .blog-author .blog-author-name {
  display: table-cell;
  vertical-align: bottom;
}
.block-blog .blog-author .blog-author-avatar img {
  width: 50px;
  margin-left: auto;
}
.block-blog .blog-author .blog-author-name {
  font-weight: bold;
  font-size: 0.8em;
}
@media (min-width: 46.8em) {
  .block-blog .blog-author {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }
}
.block-blog .b-text {
  position: relative;
}
@media (min-width: 46.8em) {
  .block-blog .b-text {
    min-height: 17rem;
  }
}
@media (min-width: 73em) {
  .block-blog .b-text {
    height: 18rem;
  }
}

/*------------------------------------*\
    $SEARCH RESULTS PAGE
\*------------------------------------*/
/* line 6, scss/objects/_search.scss */
.results-counter {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 0.9em;
}

/* line 15, scss/objects/_search.scss */
.block-search-results {
  margin-bottom: 2rem;
}
.block-search-results img {
  display: block;
  width: 100%;
}
.block-search-results .b-thumb {
  margin-bottom: 0.5rem;
}
.block-search-results .url {
  font-size: 0.8em;
}
@media all and (min-width: 28em) {
  .block-search-results .b-thumb, .block-search-results .b-text {
    /* line 34, scss/objects/_search.scss */
    float: left;
  }
  .block-search-results .b-thumb {
    width: 30%;
    margin-right: 5%;
  }
  .block-search-results .b-text {
    width: 65%;
  }
}

/* line 49, scss/objects/_search.scss */
.directory-section-title {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* line 56, scss/objects/_search.scss */
.block-person {
  margin-bottom: 1rem;
  background: #f9f9f9;
  padding: 1rem;
}
.block-person .name {
  font-weight: bold;
}
.block-person .title, .block-person .phone, .block-person .class, .block-person .office, .block-person .building, .block-person .email {
  font-size: 0.8em;
}
.block-person .title {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
.block-person .email {
  overflow: hidden;
  text-overflow: ellipsis;
}

/*------------------------------------*\
    $ACCORDION TEMPLATES
\*------------------------------------*/
/* line 5, scss/objects/_accordion.scss */
.accordion__heading {
  -webkit-appearance: none;
  background: #523178;
  border: 0;
  color: #ffffff;
  display: block;
  font-size: 1em;
  padding: 1rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.accordion__heading .icon {
  float: left;
  margin-right: 1em;
}
.accordion__heading.yellow {
  background: #D69A2D;
}
.accordion__heading.orange {
  background: #C04C36;
}
.accordion__heading.red {
  background: #A50050;
}
.accordion__heading.green {
  background: #4BA23F;
}
.accordion__heading.blue {
  background: #147BD1;
}
.accordion__heading.teal {
  background: #4DBBB0;
}
.accordion__heading.gray {
  background: #595959;
}
.accordion__content {
  display: none;
  padding-top: 1rem;
}
.accordion__content.active {
  display: block;
}
.accordion--filled .accordion__content {
  padding: 1rem;
  border: 1px solid #7E7F74;
}
.accordion + .accordion {
  margin-top: 1rem;
}

/* line 64, scss/objects/_accordion.scss */
.sub_accordion__heading {
  -webkit-appearance: none;
  background: #523178;
  border: 0;
  color: #ffffff;
  display: block;
  font-size: 1em;
  margin: 1rem 1rem 1rem 4rem;
  padding: 1rem;
  width: 90%;
  text-align: left;
  cursor: pointer;
}
.sub_accordion__heading .icon {
  float: right;
}
.sub_accordion__heading.yellow {
  background: #D69A2D;
}
.sub_accordion__heading.orange {
  background: #C04C36;
}
.sub_accordion__heading.red {
  background: #A50050;
}
.sub_accordion__heading.green {
  background: #4BA23F;
}
.sub_accordion__heading.blue {
  background: #147BD1;
}
.sub_accordion__heading.teal {
  background: #4DBBB0;
}
.sub_accordion__heading.gray {
  background: #595959;
}
.sub_accordion__content {
  display: none;
  padding-top: 1rem;
  margin: 1rem 1rem 1rem 4rem;
}
.sub_accordion__content.active {
  display: block;
}
.accordion--filled .sub_accordion__content {
  padding: 1rem;
  border: 1px solid #7E7F74;
}

/*------------------------------------*\
    $CAROUSELS AND SLIDERS
\*------------------------------------*/
/* line 5, scss/objects/_carousels.scss */
.flexslider {
  background: none;
  border: none;
  box-shadow: none;
}
.flexslider.loading {
  min-height: 600px;
}

/* line 16, scss/objects/_carousels.scss */
.infographic-slider {
  margin-bottom: 0;
  min-height: inherit;
}

/* line 22, scss/objects/_carousels.scss */
.caption-flexslider {
  margin-bottom: 0;
}
.caption-flexslider li {
  opacity: 0.4;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.caption-flexslider li.active {
  opacity: 1;
}
.caption-flexslider .caption-flexslider-link {
  display: block;
  position: relative;
  text-decoration: none;
}
.caption-flexslider .caption-flexslider-image {
  display: block;
}
.caption-flexslider .caption-flexslider-caption {
  padding: 0.5rem;
  background: #ffffff;
  font-size: 0.8em;
  font-family: Georgia, Times, serif;
  color: #555555;
}
@media all and (min-width: 46.8em) {
  .caption-flexslider .caption-flexslider-caption {
    /* line 59, scss/objects/_carousels.scss */
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    font-size: 1.3em;
    color: #ffffff;
    text-shadow: 0 0 1px #000;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
    opacity: 0;
    -webkit-transform: translateY(2rem);
    -ms-transform: translateY(2rem);
    transform: translateY(2rem);
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
  }
  .caption-flexslider li.active .caption-flexslider-caption {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@media all and (min-width: 50em) {
  .caption-flexslider .flex-viewport {
    /* line 88, scss/objects/_carousels.scss */
    padding-left: -webkit-calc(( 100% - 900px ) / 2);
    padding-left: calc((100% - 900px) / 2);
  }
}
@media all and (min-width: 73em) {
  .caption-flexslider .flex-viewport {
    /* line 96, scss/objects/_carousels.scss */
    padding-left: -webkit-calc(( 100% - 1050px ) / 2);
    padding-left: calc((100% - 1050px) / 2);
  }
}
@media all and (min-width: 89em) {
  .caption-flexslider .flex-viewport {
    /* line 104, scss/objects/_carousels.scss */
    padding-left: -webkit-calc(( 100% - 1550px ) / 2);
    padding-left: calc((100% - 1550px) / 2);
  }
}

/*------------------------------------*\
    $ICONS
\*------------------------------------*/
/* line 5, scss/objects/_icons.scss */
@font-face {
  font-family: "cornellicons";
  src: url("../fonts/cornellicons.eot?-1zscbf");
  src: url("../fonts/cornellicons.eot?#iefix-1zscbf") format("embedded-opentype"), url("../fonts/cornellicons.woff?-1zscbf") format("woff"), url("../fonts/cornellicons.ttf?-1zscbf") format("truetype"), url("../fonts/cornellicons.svg?-1zscbf#cornellicons") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 19, scss/objects/_icons.scss */
[class^=icon-] > span, [class*=" icon-"] > span {
  font: 0/0 serif;
  text-shadow: none;
  color: transparent;
}

/* line 26, scss/objects/_icons.scss */
[class^=icon-], [class*=" icon-"] {
  font-family: "cornellicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 42, scss/objects/_icons.scss */
.icon-expand:before {
  content: "\e900";
}

/* line 47, scss/objects/_icons.scss */
.icon-open-expand:before {
  content: " ";
  display: inline-block;
  text-align: left;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  height: 10px;
  width: 10px;
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

/* line 61, scss/objects/_icons.scss */
.icon-close-expand:before {
  content: " ";
  display: inline-block;
  text-align: left;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  height: 10px;
  width: 10px;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/* line 75, scss/objects/_icons.scss */
.icon-play:before {
  content: "\e60a";
}

/* line 80, scss/objects/_icons.scss */
.icon-twitter:before {
  content: "\e600";
}

/* line 85, scss/objects/_icons.scss */
.icon-rss:before {
  content: "\e605";
}

/* line 90, scss/objects/_icons.scss */
.icon-pinterest:before {
  content: "\e603";
}

/* line 95, scss/objects/_icons.scss */
.icon-google-plus:before {
  content: "\e604";
}

/* line 100, scss/objects/_icons.scss */
.icon-linkedin:before {
  content: "\e602";
}

/* line 105, scss/objects/_icons.scss */
.icon-chevron-left:before {
  content: "\e606";
}

/* line 110, scss/objects/_icons.scss */
.icon-chevron-right:before {
  content: "\e607";
}

/*
.icon-chevron-up:before {

}
.icon-chevron-down:before {
  content: "/assets/production/images/icon-chevron-down-200px-70x70.png";
  transform: rotate(-90deg);
  max-height: 1em;
  max-width: 1em;
  color: #ffffff;
  border: 0px 0px 0px 0px;
}
*/
/* line 127, scss/objects/_icons.scss */
.icon-youtube:before {
  content: "\e60b";
}

/* line 132, scss/objects/_icons.scss */
.icon-camera:before {
  content: "\e61a";
}

/* line 137, scss/objects/_icons.scss */
.icon-share:before {
  content: "\e61d";
}

/* line 142, scss/objects/_icons.scss */
.icon-comment:before {
  content: "\e61b";
}

/* line 147, scss/objects/_icons.scss */
.icon-printer:before {
  content: "\e61c";
}

/* line 152, scss/objects/_icons.scss */
.icon-cta-visit:before {
  content: "\e617";
}

/* line 157, scss/objects/_icons.scss */
.icon-cta-request:before {
  content: "\e618";
}

/* line 162, scss/objects/_icons.scss */
.icon-cta-apply:before {
  content: "\e619";
}

/* line 167, scss/objects/_icons.scss */
.icon-compass:before {
  content: "\e615";
}

/* line 172, scss/objects/_icons.scss */
.icon-cornburger-menu:before {
  content: "\e614";
}

/* line 177, scss/objects/_icons.scss */
.icon-facebook:before {
  content: "\e601";
}

/* line 182, scss/objects/_icons.scss */
.icon-cornburger:before {
  content: "\e60e";
}

/* line 187, scss/objects/_icons.scss */
.icon-arrow-right:before {
  content: "\e60d";
}

/* line 192, scss/objects/_icons.scss */
.icon-arrow-left:before {
  content: "\e60c";
}

/* line 197, scss/objects/_icons.scss */
.icon-tag:before {
  content: "\e620";
}

/* line 202, scss/objects/_icons.scss */
.icon-google-plus-type:before {
  content: "\e61e";
}

/* line 207, scss/objects/_icons.scss */
.icon-facebook-type:before {
  content: "\e61f";
}

/* line 212, scss/objects/_icons.scss */
.icon-envelope:before {
  content: "\e610";
}

/* line 217, scss/objects/_icons.scss */
.icon-instagram:before {
  content: "\e613";
}

/* line 222, scss/objects/_icons.scss */
.icon-phone:before {
  content: "\e611";
}

/* line 227, scss/objects/_icons.scss */
.icon-location:before {
  content: "\e612";
}

/* line 232, scss/objects/_icons.scss */
.icon-search:before {
  content: "\e609";
}

/* line 237, scss/objects/_icons.scss */
.icon-menu:before {
  content: "\e608";
}

/* line 242, scss/objects/_icons.scss */
.icon-flickr:before {
  content: "\e60f";
}

/* line 247, scss/objects/_icons.scss */
.icon-tumblr:before {
  content: "\e616";
}

/* line 252, scss/objects/_icons.scss */
.icon-arrow:after {
  content: "a";
  display: inline-block;
  -webkit-transform: rotate(90deg);
  /*-moz-transform: rotate(90deg); /*commented out in out*/
  -ms-transform: rotate(90deg);
  /*-o-transform: rotate(90deg); /*commented out in out*/
  transform: rotate(90deg);
}

/* line 263, scss/objects/_icons.scss */
.icon-block {
  display: block;
  font-size: 8rem;
}

/* line 268, scss/objects/_icons.scss */
.icon-medium {
  font-size: 3em;
}

/*------------------------------------*\
    $BUTTONS
\*------------------------------------*/
/* line 5, scss/objects/_buttons.scss */
.btn {
  display: inline-block;
  position: relative;
  padding: 1rem 1rem;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: #ffffff;
  text-align: center;
  font-weight: 300;
  border: 2px solid #ffffff;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-size: 0.8em;
  font-style: normal;
  text-transform: uppercase;
}
.btn.btn-solid {
  /* line 28, scss/objects/_buttons.scss */
  background: #523178;
}
.btn.btn-action {
  /* line 35, scss/objects/_buttons.scss */
  padding-right: 3rem;
  text-align: left;
}
.btn.btn-action::after {
  content: "\e607";
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1em;
  font-family: "cornellicons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  speak: none;
  -webkit-transition: right 0.2s ease-in-out;
  transition: right 0.2s ease-in-out;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btn.btn-dark {
  /* line 65, scss/objects/_buttons.scss */
  border-color: #523178;
  color: #523178;
  background: transparent;
}
.btn.btn-dark:hover, .btn.btn-dark:focus {
  background: #523178;
  color: #ffffff;
  border-color: #ffffff;
}
.btn.btn-success {
  /* line 78, scss/objects/_buttons.scss */
  background: #719949;
}
.btn.btn-success:hover, .btn.btn-success:focus {
  background: #8bb461;
}
.btn.btn-error {
  /* line 87, scss/objects/_buttons.scss */
  border-color: #A50050;
}
.btn.btn-error:hover, .btn.btn-error:focus {
  background: #e77565;
}
.btn.btn-alt {
  /* line 98, scss/objects/_buttons.scss */
  color: #ffffff;
  background: #147BD1;
  border-color: #147BD1;
  font-family: Georgia, Times, serif;
  text-transform: none;
}
.btn.btn-alt:hover, .btn.btn-alt:focus {
  background: #ffffff;
  color: #147BD1;
  border-color: #147bd1;
}
.btn.btn-minimal {
  /* line 114, scss/objects/_buttons.scss */
  background: transparent;
  border: none;
  border-top: 2px solid gainsboro;
  padding-left: 0;
  color: #5f2f95;
}
.btn.btn-minimal::after {
  display: none;
}
.btn.btn-minimal:hover {
  background: none;
  color: #5f2f95;
}
.btn.btn-minimal:hover::after {
  display: block;
}
.btn.btn-support {
  /* line 136, scss/objects/_buttons.scss */
  background: #A50050;
}
.btn.btn-support:hover, .btn.btn-support:focus {
  background: #e77565;
  color: #ffffff;
}
.btn.btn-support:hover::after, .btn.btn-support:focus::after {
  color: #ffffff;
}
.btn:hover, .btn:focus {
  /* line 149, scss/objects/_buttons.scss */
  color: #555555;
  background: #ffffff;
  outline: 0;
}
.btn.disabled {
  /* line 156, scss/objects/_buttons.scss */
  background: #eee;
  color: #bbb;
}
.btn.btn-teal {
  /* line 162, scss/objects/_buttons.scss */
  background: #5CB8B2;
}
.btn.btn-teal:hover, .btn.btn-teal:focus {
  background: #399992;
  color: #BBBCBC;
  text-decoration: none;
}
.btn.btn-green {
  /* line 172, scss/objects/_buttons.scss */
  background: #719949;
}
.btn.btn-green:hover, .btn.btn-green:focus {
  background: #567E2D;
  color: #BBBCBC;
  text-decoration: none;
}
.btn.btn-orange {
  /* line 182, scss/objects/_buttons.scss */
  background: #C04C36;
}
.btn.btn-orange:hover, .btn.btn-orange:focus {
  background: #9D2F1A;
  color: #BBBCBC;
  text-decoration: none;
}
.btn.btn-berry {
  /* line 192, scss/objects/_buttons.scss */
  background: #A50050;
  color: #BBBCBC;
  text-decoration: none;
}
.btn.btn-berry:hover, .btn.btn-berry:focus {
  background: #870042;
}
.btn.btn-blue {
  /* line 202, scss/objects/_buttons.scss */
  background: #147BD1;
}
.btn.btn-blue:hover, .btn.btn-blue:focus {
  background: #0765B3;
  color: #BBBCBC;
  text-decoration: none;
}
.btn.btn-purple {
  /* line 212, scss/objects/_buttons.scss */
  background: #523178;
}
.btn.btn-purple:hover, .btn.btn-purple:focus {
  background: #38185C;
  color: #BBBCBC;
  text-decoration: none;
}
.btn.btn-teal-light {
  /* line 222, scss/objects/_buttons.scss */
  background: #9AD3D0;
  color: #555555;
}
.btn.btn-teal-light:hover, .btn.btn-teal-light:focus {
  background: #399992;
  color: #BBBCBC;
  text-decoration: none;
}
.btn.btn-green-light {
  /* line 233, scss/objects/_buttons.scss */
  background: #A9C192;
  color: #555555;
}
.btn.btn-green-light:hover, .btn.btn-green-light:focus {
  background: #567E2D;
  color: #BBBCBC;
  Tex-decoration: none;
}
.btn.btn-gray {
  /* line 244, scss/objects/_buttons.scss */
  background: #BBBCBC;
  color: #555555;
}
.btn.btn-gray:hover, .btn.btn-gray:focus {
  background: #999999;
  color: #555555;
  text-decoration: none;
}

/* line 255, scss/objects/_buttons.scss */
.btn-footer-support {
  display: inline-block;
  position: relative;
  padding: 1rem 1rem 1rem 2rem;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: #ffffff;
  text-align: center;
  font-weight: 300;
  border: 2px solid #ffffff;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-size: 0.65em;
  font-style: normal;
  text-transform: uppercase;
}
.btn-footer-support.btn-support-footer {
  /* line 275, scss/objects/_buttons.scss */
  margin: 0rem 0rem 0rem 0.25rem;
  max-height: 60px;
  max-width: 156px;
  min-width: 136px;
  padding: 1rem 1.25rem 1rem 1rem;
  text-align: left;
}
.btn-footer-support.btn-support-footer::after {
  content: "\e607";
  position: absolute;
  right: 0.75em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1em;
  font-family: "cornellicons";
  font-style: normal;
  font-weight: 300;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  speak: none;
  -webkit-transition: right 0.2s ease-in-out;
  transition: right 0.2s ease-in-out;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transition: right 0.2s ease-in-out;
}

/* line 312, scss/objects/_buttons.scss */
.btn-small {
  padding: 0.75rem;
}

/* line 317, scss/objects/_buttons.scss */
.btn-large {
  padding: 0.5rem;
  text-transform: uppercase;
  background: #7E7F74;
  font-size: 1.4rem;
  font-weight: normal;
}

/* line 326, scss/objects/_buttons.scss */
.btn-full {
  width: 100%;
}

/* line 331, scss/objects/_buttons.scss */
.text-btn {
  font-style: italic;
  font-size: 0.8em;
  text-transform: uppercase;
  color: #523178;
  text-decoration: none;
}

/* line 341, scss/objects/_buttons.scss */
.arrows-btn::after {
  content: " »";
}

/* line 349, scss/objects/_buttons.scss */
.btn-group .btn {
  display: block;
  margin-bottom: 1rem;
}
@media all and (min-width: 46.8em) {
  .btn-group .btn {
    display: inline-block;
    margin-right: 0.5rem;
  }
}

/*------------------------------------*\
    $LIST OBJECTS
\*------------------------------------*/
/* line 6, scss/objects/_lists.scss */
.inline-list li, .social-list li {
  display: inline-block;
}

/* line 14, scss/objects/_lists.scss */
.no-decoration, .top-stories-list, .upcoming-events-list, .recent-news-list {
  list-style: none;
  padding: 0;
}

/* line 21, scss/objects/_lists.scss */
.border-list li {
  border-bottom: 1px solid #7E7F74;
  padding: 0.5rem 0;
}
.border-list li:last-child {
  border-bottom: none;
}
.border-list.no-pad li:first-child {
  padding-top: 0;
}

/* line 39, scss/objects/_lists.scss */
.social-list {
  margin-left: 5rem;
  padding: 0;
  padding-top: 0.75rem;
}
.social-list li {
  margin: 0 3.4rem 1rem 0;
}
.social-list a {
  font-size: 1.6em;
  text-decoration: none;
  color: #666666;
}
@media all and (max-width: 48em) {
  .social-list {
    /* line 57, scss/objects/_lists.scss */
    margin-left: 0.5rem;
    padding: 0;
    padding-top: 0.5rem;
  }
  .social-list li {
    margin: 0 1rem 1rem 0;
  }
  .social-list a {
    font-size: 1.25em;
  }
}

/* line 72, scss/objects/_lists.scss */
.social-list-circle a {
  color: #ffffff;
  background: #7E7F74;
  border-radius: 100%;
  padding: 0.5rem;
  display: inline-block;
}
.social-list-circle a:hover, .social-list-circle a:focus {
  color: #ffffff !important;
  opacity: 0.9;
}
.social-list-circle .icon-facebook,
.social-list-circle .icon-facebook-type {
  background: #3b5998;
}
.social-list-circle .icon-twitter {
  background: #00aced;
}
.social-list-circle .icon-instagram {
  background: #3f729b;
}
.social-list-circle .icon-flickr {
  background: #ff0084;
}
.social-list-circle .icon-youtube {
  background: #bb0000;
}
.social-list-circle .icon-google-plus,
.social-list-circle .icon-google-plus-type {
  background: #dd4b39;
}

/* line 116, scss/objects/_lists.scss */
.recent-news-list li {
  margin-bottom: 1rem;
}

/* line 126, scss/objects/_lists.scss */
.upcoming-events-list li {
  margin: 0 1rem;
  border-bottom: 1px solid #dcdcdc;
}
.upcoming-events-list li:last-child {
  border-bottom: none;
}

/* line 141, scss/objects/_lists.scss */
.status-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
}
.status-list .message {
  font-weight: 300;
}
.status-list li {
  display: block;
}
@media all and (min-width: 46.8em) {
  .status-list li {
    display: inline-block;
  }
  .status-list li:first-child::after {
    content: "|";
    padding: 0 1rem;
  }
}
@media all and (min-width: 73em) {
  .status-list li:not(:last-child):after {
    content: "|";
    padding: 0 1rem;
  }
}

/* line 178, scss/objects/_lists.scss */
.news-brief-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-brief-list li {
  margin-bottom: 2rem;
  font-size: 1em;
}

/* line 191, scss/objects/_lists.scss */
.faculty-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 60em;
}
.faculty-list li {
  margin-bottom: 2rem;
  font-size: 1em;
}

/* line 205, scss/objects/_lists.scss */
.portal-actions {
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.portal-actions li {
  display: block;
  margin-bottom: 1rem;
}
.portal-actions a {
  display: block;
}
@media all and (min-width: 28em) {
  .portal-actions {
    /* line 222, scss/objects/_lists.scss */
    overflow: auto;
  }
  .portal-actions li {
    float: left;
    padding: 0 0.5rem;
  }
}
@media all and (min-width: 50em) {
  .portal-actions {
    /* line 232, scss/objects/_lists.scss */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .portal-actions li {
    -webkit-box-flex: 1;
    -webkit-flex: 1 auto;
    -ms-flex: 1 auto;
    flex: 1 auto;
    padding: 0.25rem;
    margin-bottom: 0;
  }
  .no-cssflexbox .portal-actions li {
    width: 15%;
  }
}

/* line 256, scss/objects/_lists.scss */
.events-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.events-list li {
  margin-bottom: 1rem;
}
.events-list .event-title, .events-list .event-location, .events-list .event-time {
  font-weight: bold;
}
.events-list a {
  text-decoration: none;
}

/* line 277, scss/objects/_lists.scss */
.news-events-list li {
  margin-bottom: 1rem;
}
.news-events-list a {
  text-decoration: none;
}
.news-events-list .event-title {
  font-weight: bold;
  width: 100%;
}
.news-events-list .event-title:hover, .news-events-list .event-title:focus {
  text-decoration: underline;
}

/* line 299, scss/objects/_lists.scss */
.stories-list li {
  margin-bottom: 2rem;
}
@media (max-width: 46.8em) {
  .stories-list li {
    /* line 307, scss/objects/_lists.scss */
    margin-bottom: 4rem;
  }
  .stories-list li:last-child {
    margin-bottom: 2rem;
  }
}

/* line 318, scss/objects/_lists.scss */
.link-list {
  padding: 0;
  list-style: none;
}
.link-list li {
  border-bottom: 1px solid #DCDCDC;
}
.link-list a {
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  position: relative;
}
.link-list a::after {
  display: none;
  content: "\e607";
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1em;
  font-family: "cornellicons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  speak: none;
  -webkit-transition: right 0.2s ease-in-out;
  transition: right 0.2s ease-in-out;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.link-list a:hover::after {
  display: block;
}
@media (min-width: 46.8em) {
  .link-list a {
    /* line 365, scss/objects/_lists.scss */
    padding: 0.25rem 0;
  }
}

/* line 372, scss/objects/_lists.scss */
.no-underline-list a {
  text-decoration: none;
}

/* line 380, scss/objects/_lists.scss */
.expandable {
  display: none;
}
.expandable.expanded {
  display: block;
}
@media all and (min-width: 46.8em) {
  .expandable {
    display: block;
  }
}

/* line 394, scss/objects/_lists.scss */
.expandable-trigger {
  position: relative;
  cursor: pointer;
  font-size: 0.95em;
}
.expandable-trigger::after {
  content: "+";
  position: absolute;
  right: 0;
}
.expandable-trigger.expanded::after {
  content: "-";
}
@media all and (min-width: 46.8em) {
  .expandable-trigger {
    /* line 413, scss/objects/_lists.scss */
    cursor: auto;
  }
  .expandable-trigger::after {
    content: "" !important;
  }
}

/*------------------------------------*\
    $ARTICLE TEMPLATES
\*------------------------------------*/
/* line 5, scss/objects/_article.scss */
@media (min-width: 73em) {
  .l-main.article {
    width: 62%;
  }
}

/* line 13, scss/objects/_article.scss */
p.byline {
  font-size: 0.875em;
  font-style: italic;
  margin-bottom: 0.5rem;
}

/* line 22, scss/objects/_article.scss */
.wp-caption {
  clear: both;
  max-width: 100%;
}
@media all and (min-width: 46.8em) {
  .wp-caption.pull-right {
    padding: 0 0 1rem 1rem;
  }
  .wp-caption.pull-left {
    padding: 0 1rem 1rem 0;
  }
}

/* line 38, scss/objects/_article.scss */
p.wp-caption-text {
  font-style: italic;
  font-size: 0.8em;
}

/**
 * News Center components
 */
/* line 5, scss/objects/_news-center.scss */
.news-center-header {
  border-bottom: 1px solid #555555;
  padding: 0.5rem 0;
  margin-bottom: 2rem;
  position: relative;
}
.news-center-header h2 {
  font-family: Georgia, serif;
  font-weight: bold;
  margin: 0;
}
@media (min-width: 46.8em) {
  .news-center-header h2 {
    font-size: 3em;
  }
}
.news-center-header .h2 {
  font-family: Georgia, serif;
  font-weight: bold;
  margin: 0;
}
@media (min-width: 46.8em) {
  .news-center-header .h2 {
    font-size: 3em;
  }
}

/* line 33, scss/objects/_news-center.scss */
.news-center-header-right {
  margin-top: 1rem;
}
.news-center-header-right .social-list li {
  margin-bottom: 0.5rem;
}
.news-center-header-right .other-channels {
  display: block;
  text-transform: uppercase;
  color: #7E7F74;
  font-weight: bold;
}
.news-center-header-right .other-channels:hover, .news-center-header-right .other-channels:focus {
  color: #837395;
}
@media (min-width: 66em) {
  .news-center-header-right .other-channels {
    text-align: center;
    margin-top: 0.5rem;
  }
}
@media (min-width: 66em) {
  .news-center-header-right {
    /* line 59, scss/objects/_news-center.scss */
    position: absolute;
    right: 0;
    top: 40%;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

/* line 71, scss/objects/_news-center.scss */
hr.heavy {
  height: 35px;
  background: black;
}

/* line 78, scss/objects/_news-center.scss */
.news-tag {
  background-color: #583d77;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  display: inline-block;
  letter-spacing: 0.05em;
  margin-top: 0;
}
.news-tag.news-tag--overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  margin-top: 0;
}

/* line 100, scss/objects/_news-center.scss */
.weather-tag {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  color: #523178;
  background: #ffffff;
  padding: 0.25rem 0.5rem;
  display: inline-block;
  font-weight: bold;
}

/* line 111, scss/objects/_news-center.scss */
.top-stories-list li {
  padding: 1rem 0;
}
.top-stories-list a {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-size: 1.125em;
  color: #555555;
  font-weight: bold;
  text-decoration: none;
}
.top-stories-list a:hover {
  text-decoration: underline;
}
.top-stories-list .icon-camera {
  color: #837395;
  margin-left: 0.5rem;
  font-size: 1.2em;
}
.top-stories-list a:hover .icon-camera,
.top-stories-list a:focus .icon-camera {
  color: #523178;
}

/* line 144, scss/objects/_news-center.scss */
.read-more-btn {
  color: #7E7F74;
  font-style: italic;
}

/* line 154, scss/objects/_news-center.scss */
.g-border-split .gi > .g > .gi {
  padding-top: 0;
}
/* line 174, scss/objects/_news-center.scss */
.shape-chevron {
  display: inline-block;
  width: 30px;
  height: 15px;
}

/* line 181, scss/objects/_news-center.scss */
.read-more-link {
  color: #7E7F74;
  border-top: 1px solid currentColor;
  text-align: center;
  margin-bottom: 1rem;
}
.read-more-link .shape {
  fill: currentColor;
  display: block;
  margin: 0 auto 0.5rem;
}
.read-more-link a {
  color: currentColor;
}

/* line 199, scss/objects/_news-center.scss */
.news-center-cornell-reports .flex-direction-nav .flex-prev {
  left: -30px !important;
}
.news-center-cornell-reports .flex-direction-nav .flex-next {
  right: -40px !important;
}

/**
 * News Article page
 */
/* line 215, scss/objects/_news-center.scss */
.news-article h1 {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-weight: bold;
}
@media (min-width: 46.8em) {
  .news-article h1 {
    font-size: 3em;
  }
}
.news-article .social-share {
  overflow: hidden;
  border-top: 1px solid #7E7F74;
  border-bottom: 1px solid #7E7F74;
  padding: 1rem 0 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.news-article .social-share a {
  font-size: 0.9em;
}
@media (min-width: 46.8em) {
  .news-article .social-share ul {
    float: left;
  }
}
@media (min-width: 46.8em) {
  .news-article .social-share .social-share-right {
    float: right;
    font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  }
}
.news-article blockquote {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin: 2rem 0;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  border-left: none;
  padding: 1rem 0;
  font-style: normal;
  color: #555555;
}
.news-article blockquote p {
  margin-bottom: 0;
  line-height: 1.3;
}
.news-article blockquote cite {
  font-style: italic;
  font-size: 0.7em;
}
@media (min-width: 46.8em) {
  .news-article blockquote {
    font-size: 1.7em;
  }
}

/* line 278, scss/objects/_news-center.scss */
.byline--news {
  font-style: italic;
  margin-bottom: 2rem;
}
.byline--news b {
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
}

/* line 290, scss/objects/_news-center.scss */
.news-feature h1 {
  font-family: Georgia, serif;
  font-weight: normal;
  margin-bottom: 2rem;
}
@media (min-width: 46.8em) {
  .news-feature h1 {
    font-size: 3rem;
  }
}
.news-feature p.intro,
.news-feature .intro p {
  font-family: Georgia, Times, serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: normal;
  color: #7E7F74;
  margin-bottom: 2rem;
}
@media (min-width: 46.8em) {
  .news-feature p.intro,
  .news-feature .intro p {
    font-size: 1.5rem;
  }
}
.news-feature blockquote {
  border-bottom: 1px solid #ccc;
  margin: 3rem 0;
  padding: 1.5rem 0;
}
.news-feature blockquote > p {
  font-family: Georgia, serif;
  text-transform: uppercase;
  font-weight: normal;
  font-style: italic;
  line-height: 1.3;
}

/* line 331, scss/objects/_news-center.scss */
.border-heading {
  font-family: Georgia, Times, serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8em;
  border-bottom: 1px solid #7E7F74;
  margin-bottom: 2rem;
}
.border-heading span {
  border-bottom: 10px solid #523178;
  display: inline-block;
  padding-bottom: 0.5rem;
}

/* line 348, scss/objects/_news-center.scss */
figure.news-featured-image {
  margin-bottom: 1rem;
}
figure.news-featured-image img {
  display: block;
  border: none;
}
figure.news-featured-image figcaption {
  font-style: normal;
  font-size: 0.9em;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
}
figure.news-featured-image.news-featured-image--wide {
  position: relative;
  padding-top: 50%;
  overflow: hidden;
}
figure.news-featured-image.news-featured-image--wide img {
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  transform: translateY(-25%);
}

/* line 378, scss/objects/_news-center.scss */
.article-tags {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  color: #555555;
  font-size: 0.9em;
  border-top: 1px solid #7E7F74;
  border-bottom: 1px solid #7E7F74;
  padding: 1rem 0 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
  clear: both;
}
.article-tags a {
  font-style: italic;
  text-decoration: none;
  color: #837395;
}
.article-tags a:hover, .article-tags a:focus {
  color: #6a5c79;
}

/* line 402, scss/objects/_news-center.scss */
.sidebar--news .sidebar-widget {
  margin-bottom: 1rem;
}
.sidebar--news .border-list li {
  padding: 2rem 0;
}
.sidebar--news .border-list li a {
  text-decoration: none;
}
.sidebar--news .block-thumb .headline {
  font-size: 1.125rem;
  font-weight: bold;
  color: #555555;
}
.sidebar--news .block-thumb a {
  text-decoration: none;
  color: #555555;
}
.sidebar--news .block-thumb a:hover, .sidebar--news .block-thumb a:focus {
  text-decoration: underline;
}
@media (min-width: 46.8em) {
  .sidebar--news .block-thumb .b-thumb {
    width: 40%;
  }
  .sidebar--news .block-thumb .b-text {
    width: 60%;
  }
}
@media (min-width: 73em) and (max-width: 89em) {
  .sidebar--news .block-thumb {
    display: block;
  }
  .sidebar--news .block-thumb .b-thumb {
    margin-bottom: 1rem;
    max-width: none;
  }
  .sidebar--news .block-thumb .b-thumb,
  .sidebar--news .block-thumb .b-text {
    display: block;
    width: 100%;
    padding: 0;
  }
}

/* line 461, scss/objects/_news-center.scss */
.widget-title-heavy {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #dcdcdc;
  background: #555555;
  padding: 0.5rem 1rem;
}
.widget-title-heavy:first-of-type {
  margin-top: 0;
}

/**
 * Cornell Report Issue Page
 */
/* line 478, scss/objects/_news-center.scss */
.cornell-report-header {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
}
.cornell-report-header h1 {
  border-bottom: 1px solid #555555;
  position: relative;
  padding-bottom: 1rem;
  font-size: 3em;
  font-family: Georgia, serif;
}
.cornell-report-header h1::after {
  content: "";
  width: 50px;
  height: 10px;
  background: #555555;
  position: absolute;
  left: 50%;
  bottom: -5px;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media (min-width: 46.8em) {
  .cornell-report-header h1 {
    font-size: 4em;
  }
}
.cornell-report-header .report-deco {
  letter-spacing: 2em;
  text-transform: uppercase;
  font-size: 0.8em;
  text-indent: 2em;
}
.cornell-report-header .cornell-report-edition {
  font-family: Georgia, Times, serif;
  font-weight: bold;
  color: #523178;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (min-width: 46.8em) {
  .cornell-report-header .cornell-report-edition {
    position: absolute;
    left: 0;
    top: 24%;
  }
}
@media (min-width: 73em) {
  .cornell-report-header .cornell-report-edition {
    top: 32%;
  }
}

/* line 535, scss/objects/_news-center.scss */
.cornell-report-nav {
  font-family: Georgia, serif;
  text-transform: uppercase;
  font-style: italic;
  margin-top: 1rem;
  margin-bottom: 2rem;
  overflow: hidden;
  text-align: left;
}
.cornell-report-nav a {
  text-decoration: none;
  float: left;
  color: #7E7F74;
  width: 50%;
}
.cornell-report-nav a:hover, .cornell-report-nav a:focus {
  color: #555555;
}
.cornell-report-nav a.active {
  color: #837395;
}
@media (min-width: 46.8em) {
  .cornell-report-nav a {
    width: auto;
    margin-right: 1rem;
  }
}
@media (min-width: 73em) {
  .cornell-report-nav a {
    margin-right: 2rem;
  }
}
@media (min-width: 73em) {
  .cornell-report-nav a:nth-child(4n),
  .cornell-report-nav a:nth-child(5n),
  .cornell-report-nav a:nth-child(6n) {
    float: right;
  }
}
@media (min-width: 73em) {
  .cornell-report-nav a:nth-child(4n) {
    margin-right: 0;
  }
}
@media (min-width: 73em) {
  .cornell-report-nav {
    /* line 585, scss/objects/_news-center.scss */
    position: absolute;
    margin: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

/* line 594, scss/objects/_news-center.scss */
.cornell-report-featured {
  position: relative;
}
.cornell-report-featured img {
  display: block;
  width: 100%;
  border: none;
}
.cornell-report-featured a {
  text-decoration: none;
}
.cornell-report-featured p {
  margin: 0;
}
.cornell-report-featured figcaption {
  font-family: Georgia, serif;
  text-transform: uppercase;
  font-style: italic;
  color: #523178;
  background: #ffffff;
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 1rem;
  display: inline-block;
  position: absolute;
  top: 10%;
  left: 0;
}
.cornell-report-featured figcaption a {
  border: none;
}
@media (min-width: 46.8em) {
  .cornell-report-featured figcaption {
    -webkit-transform: translate(-2rem, -50%);
    -ms-transform: translate(-2rem, -50%);
    transform: translate(-2rem, -50%);
  }
  .cornell-report-featured figcaption::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 15px solid #7E7F74;
    border-left: 35px solid transparent;
    position: absolute;
    left: 0;
    top: 100%;
  }
}

/* line 648, scss/objects/_news-center.scss */
.widget-title-dark {
  margin-top: 0;
  font-family: Georgia, serif;
  text-transform: uppercase;
  font-weight: lighter;
  font-style: italic;
  color: #dcdcdc;
  background: #000;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

/* line 664, scss/objects/_news-center.scss */
.slider-news .flex-control-paging li a {
  background: #dcdcdc;
}
.slider-news .flex-control-paging li a.flex-active,
.slider-news .flex-control-paging li a:hover {
  background: #837395;
}

/* line 677, scss/objects/_news-center.scss */
.cornell-report-category, .block-cornell-report-story .b-category {
  text-transform: uppercase;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: #837395;
  margin-bottom: 1rem;
}

/* line 687, scss/objects/_news-center.scss */
.sticky-social-share {
  position: fixed;
  left: 0;
  right: 0;
  background: #ffffff;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  z-index: 9;
}
.sticky-social-share.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.sticky-social-share .article-title {
  float: left;
  font-size: 1.3em;
  margin-bottom: 0;
}
@media (max-width: 46.8em) {
  .sticky-social-share .article-title {
    display: none;
  }
}
.sticky-social-share .social-list {
  font-size: 0.8em;
}
.sticky-social-share .social-list li {
  margin-bottom: 0;
}
@media (min-width: 46.8em) {
  .sticky-social-share .social-list {
    float: right;
  }
}
@media (max-height: 500px) {
  .sticky-social-share {
    /* line 731, scss/objects/_news-center.scss */
    top: 0;
  }
}
@media (max-width: 46.8em) {
  .sticky-social-share {
    /* line 736, scss/objects/_news-center.scss */
    text-align: center;
  }
}
.sticky-social-share .social-share-right {
  /* line 742, scss/objects/_news-center.scss */
  display: none;
}

/* line 748, scss/objects/_news-center.scss */
hr.thin {
  height: 1px;
  background: #ccc;
}
@media (max-width: 46.8em) {
  hr.thin {
    display: none;
  }
}

/**
 *  General Blog Styling
 */
/* line 5, scss/objects/_general.scss */
.section-alt {
  background: #f5f5f5;
}

/* line 10, scss/objects/_general.scss */
.news-article-heading h3 {
  text-transform: uppercase;
  color: #583d77;
  margin-bottom: 0.8333333333rem;
  font-size: 0.8rem;
}
@media (min-width: 46.8em) {
  .news-article-heading h3 {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.news-article-heading .h3 {
  text-transform: uppercase;
  color: #583d77;
  margin-bottom: 0.8333333333rem;
  font-size: 0.8rem;
}
@media (min-width: 46.8em) {
  .news-article-heading .h3 {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.news-article-heading h1 {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-weight: bold;
}

/* line 38, scss/objects/_general.scss */
.news-article figcaption p {
  font-size: 0.9rem;
}

/* line 43, scss/objects/_general.scss */
.hero-tagline {
  position: relative;
  display: inline-block;
  background: rgba(192, 76, 54, 0.75);
  text-transform: uppercase;
  font-style: italic;
  color: #fff;
  font-size: 1.5rem;
  padding: 1.5rem 2rem;
}
.hero-tagline:before {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  border: 2px solid #ebcd96;
}
.hero-tagline.hero-tagline-blue {
  background: rgba(20, 123, 209, 0.75);
}
.hero-tagline.hero-tagline-blue:before {
  border: 2px solid #8abde8;
}
.hero-tagline.hero-tagline-red {
  background: rgba(165, 0, 80, 0.75);
}
.hero-tagline.hero-tagline-red:before {
  border: 2px solid #d280a8;
}
.hero-tagline.hero-tagline-green {
  background: rgba(113, 153, 73, 0.75);
}
.hero-tagline.hero-tagline-green:before {
  border: 2px solid #b8cca4;
}

/* line 82, scss/objects/_general.scss */
@media (max-width: 46.8em) {
  .section-article-hero {
    padding: 3rem 0;
  }
}
.section-article-hero .bg {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
}
.section-article-hero .wrapper {
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
}

/* line 99, scss/objects/_general.scss */
.social-share {
  position: relative;
}

/* line 104, scss/objects/_general.scss */
.social-share-right {
  line-height: 1;
  padding-top: 2px;
  margin-bottom: 1rem;
}
@media (min-width: 28em) {
  .social-share-right {
    /* line 110, scss/objects/_general.scss */
    position: absolute;
    top: 50%;
    right: 0;
    border-left: 1px solid #7E7F74;
    margin-bottom: 0;
    padding-left: 1rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

/* line 124, scss/objects/_general.scss */
.block-general-news {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 30px solid #000;
}
.block-general-news a {
  color: #555555;
}
.block-general-news a:hover {
  color: #7b7b7b;
}
.block-general-news .headline {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.block-general-news .byline--news {
  margin: 1rem 0;
}
.block-general-news .b-actions {
  margin-top: 1rem;
  text-align: center;
}
.block-general-news .b-actions .btn:hover, .block-general-news .b-actions .btn:focus {
  background: #555555;
  border-color: #555555;
  color: #f5f5f5;
}

/**
 *  Fellows Blog Styling
 */
/* line 162, scss/objects/_general.scss */
.section-fellows blockquote,
.section-general blockquote {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin: 2rem 0;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-size: 1.7em;
  border-left: none;
  padding: 1rem 0;
  font-style: normal;
  color: #555555;
}
.section-fellows blockquote p,
.section-general blockquote p {
  margin-bottom: 0;
  line-height: 1.3;
}
.section-fellows blockquote cite,
.section-general blockquote cite {
  font-style: italic;
  font-size: 0.7em;
}
.section-fellows .pagination a,
.section-general .pagination a {
  padding: 0.25rem 1rem;
  background: transparent;
  border: 1px solid #555555 !important;
}
.section-fellows .pagination a:hover, .section-fellows .pagination a:focus,
.section-general .pagination a:hover,
.section-general .pagination a:focus {
  color: #7b7b7b;
  border-color: #7b7b7b !important;
}
.section-fellows .widget-title-heavy,
.section-general .widget-title-heavy {
  background: #000;
}
.section-fellows .sidebar-widget .border-list li,
.section-general .sidebar-widget .border-list li {
  border-bottom-color: #dcdcdc;
}

/* line 206, scss/objects/_general.scss */
.section-fellows .sidebar-widget {
  overflow: hidden;
  margin-top: 4rem;
}
.section-fellows .sidebar-widget:first-of-type {
  margin-top: 0;
}
.section-fellows .sidebar-widget .border-list li {
  padding: 0.5rem 0;
  border-bottom-color: #dcdcdc;
}
.section-fellows .sidebar-widget a {
  color: #7E7F74;
}
.section-fellows .sidebar-widget a:hover, .section-fellows .sidebar-widget a:focus {
  color: #5f2f95;
}
.section-fellows .widget-title-heavy {
  font-family: Georgia, serif;
  margin-bottom: 2rem;
  background: #000;
}
@media (max-width: 73em) {
  .section-fellows .l-two-col .l-sidebar {
    border-top: 1px solid #dcdcdc;
    margin-top: 3rem;
    padding-top: 3rem;
  }
}

/* line 241, scss/objects/_general.scss */
.block-fellow-news {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 30px solid #000;
}
.block-fellow-news a {
  color: #555555;
}
.block-fellow-news a:hover, .block-fellow-news a:focus {
  text-decoration: underline;
}
.block-fellow-news .headline {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-align: center;
}
.block-fellow-news .headline span {
  display: inline-block;
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.block-fellow-news hr {
  margin: 1rem auto;
  width: 200px;
  height: 1px;
}
.block-fellow-news .author-info {
  text-align: center;
}
.block-fellow-news .byline,
.block-fellow-news .fellowship-title,
.block-fellow-news .fellowship-site {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: #7E7F74;
}
.block-fellow-news .byline span {
  text-transform: uppercase;
  font-style: normal;
}
.block-fellow-news .fellowship-title {
  font-style: italic;
}
.block-fellow-news .b-thumb {
  margin-top: 2rem;
}
.block-fellow-news figcaption p {
  font-size: 0.9rem;
}
.block-fellow-news .b-text {
  margin-top: 2rem;
}
.block-fellow-news .b-actions {
  margin: 1rem 0;
  text-align: center;
}
.block-fellow-news .b-actions .btn:hover, .block-fellow-news .b-actions .btn:focus {
  background: #555555;
  border-color: #555555;
  color: #f5f5f5;
}

/* line 317, scss/objects/_general.scss */
.fellow-article-meta {
  overflow: hidden;
  padding-top: 1rem;
}
.fellow-article-meta a {
  color: #837395;
}
.fellow-article-meta .tags,
.fellow-article-meta .comments,
.fellow-article-meta .social-shares {
  line-height: 1;
}
.fellow-article-meta .tags,
.fellow-article-meta .social-list {
  float: left;
}
.fellow-article-meta .comments,
.fellow-article-meta .social-shares {
  float: left;
}
@media (min-width: 50em) {
  .fellow-article-meta .comments,
  .fellow-article-meta .social-shares {
    float: right;
  }
}
.fellow-article-meta .comments {
  border-left: 1px solid #555555;
  margin-left: 0.6666666667rem;
  padding-left: 0.6666666667rem;
}
@media (min-width: 50em) {
  .fellow-article-meta .comments {
    border: none;
    margin: 0;
    padding: 0;
  }
}
.fellow-article-meta .tags {
  margin-bottom: 1rem;
}
@media (min-width: 50em) {
  .fellow-article-meta .tags {
    margin-bottom: 0;
    max-width: 50%;
  }
}
.fellow-article-meta .social-shares {
  clear: left;
  margin-bottom: 0.5rem;
}
@media (min-width: 50em) {
  .fellow-article-meta .social-shares {
    clear: none;
    border-left: 1px solid #555555;
    margin-bottom: 0;
    margin-left: 0.6666666667rem;
    padding-left: 0.6666666667rem;
  }
}
.fellow-article-meta .social-list {
  margin-bottom: 0.5rem;
}
@media (min-width: 50em) {
  .fellow-article-meta .social-list {
    margin-bottom: 0;
  }
}
.fellow-article-meta .social-list a {
  color: #f5f5f5;
}
.fellow-article-meta .social-list li {
  margin-bottom: 0;
}

/* line 382, scss/objects/_general.scss */
.widget-about p {
  font-size: 1.1rem;
  line-height: 1.5;
  font-style: italic;
}
.widget-about p:last-of-type {
  margin-bottom: 0;
}

/* line 394, scss/objects/_general.scss */
.widget-recent-fellows .border-list li {
  padding: 2rem 0 !important;
}
.widget-recent-fellows .border-list li:first-of-type {
  padding-top: 0 !important;
}
.widget-recent-fellows .border-list li:last-of-type {
  padding-bottom: 0 !important;
  font-style: italic;
}
.widget-recent-fellows .border-list li:last-of-type a {
  float: right;
}

/* line 411, scss/objects/_general.scss */
.widget-admin {
  color: #7E7F74;
}
.widget-admin li:last-of-type {
  font-style: italic;
}

/* line 419, scss/objects/_general.scss */
.block-recent-fellow a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.block-recent-fellow a:hover p {
  text-decoration: underline;
}
.block-recent-fellow .b-thumb {
  float: left;
  padding-top: 2px;
  padding-right: 1rem;
  line-height: 1;
  width: 25%;
  max-width: 100px;
}
.block-recent-fellow .b-thumb img {
  width: 100%;
  border-radius: 100%;
}
.block-recent-fellow .b-text {
  float: left;
  width: 75%;
}
.block-recent-fellow .b-text p {
  margin: 0;
}
.block-recent-fellow .fellowship-title {
  color: #555555;
  font-weight: bold;
  font-size: 0.8rem;
}
.block-recent-fellow .author {
  color: #7E7F74;
  font-size: 1.1rem;
  text-transform: uppercase;
}

/* line 467, scss/objects/_general.scss */
.fellow-news-article-single .fellow-article-meta {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid #555555;
  border-bottom: 1px solid #555555;
}
.fellow-news-article-single .social-shares,
.fellow-news-article-single .comments {
  position: relative;
  top: 8px;
}
.fellow-news-article-single .social-list a {
  font-size: 1rem;
}
.fellow-news-article-single .block-fellow-news {
  padding-bottom: 0;
}
.fellow-news-article-single .block-fellow-news .b-actions {
  margin-top: 2rem;
}

/* line 491, scss/objects/_general.scss */
.block-fellow-bio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.5rem 2rem;
  background: #dcdcdc;
}
.block-fellow-bio:hover .fellowship-title {
  color: #5f2f95;
}
.block-fellow-bio .b-thumb {
  float: left;
  padding-top: 2px;
  padding-right: 1rem;
  line-height: 1;
  width: 25%;
  max-width: 125px;
}
.block-fellow-bio .b-thumb img {
  border: none;
  width: 100%;
  border-radius: 100%;
}
.block-fellow-bio .b-text {
  float: left;
  width: 75%;
}
.block-fellow-bio .b-text p {
  margin: 0;
  font-style: italic;
  font-size: 0.9rem;
}
.block-fellow-bio .author {
  font-weight: bold;
  text-transform: uppercase;
}

/* line 536, scss/objects/_general.scss */
.fellow-article-nav {
  overflow: hidden;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.fellow-article-nav .prev-article,
.fellow-article-nav .next-article {
  float: left;
  width: 50%;
  border: solid #dcdcdc;
}
.fellow-article-nav .prev-article a,
.fellow-article-nav .next-article a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2rem;
  color: #555555;
}
.fellow-article-nav .prev-article a:hover, .fellow-article-nav .prev-article a:focus,
.fellow-article-nav .next-article a:hover,
.fellow-article-nav .next-article a:focus {
  color: #5f2f95;
}
.fellow-article-nav .prev-article i,
.fellow-article-nav .next-article i {
  width: 20%;
  font-size: 5rem;
  line-height: 1;
}
.fellow-article-nav .prev-article p,
.fellow-article-nav .next-article p {
  width: 80%;
  margin: 0;
  text-align: center;
}
.fellow-article-nav .prev-article p span,
.fellow-article-nav .next-article p span {
  display: block;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  color: #dcdcdc;
  text-transform: uppercase;
}
.fellow-article-nav .prev-article {
  border-width: 1px 1px 1px 0;
}
.fellow-article-nav .prev-article i, .fellow-article-nav .prev-article p {
  float: left;
}
.fellow-article-nav .next-article {
  border-width: 1px 0;
}
.fellow-article-nav .next-article i, .fellow-article-nav .next-article p {
  float: left;
}
.fellow-article-nav .next-article i {
  text-align: right;
}

/* line 596, scss/objects/_general.scss */
.leave-a-comment label {
  font-weight: bold;
}
.leave-a-comment textarea {
  max-width: none;
  width: 100%;
  height: 200px;
  resize: none;
  background: #dcdcdc;
}

/* line 610, scss/objects/_general.scss */
.btn.btn-fellow {
  background: transparent;
  border-color: #555555;
  padding: 0.6666666667rem 1rem;
  font-family: Georgia, serif;
  color: #555555;
  font-style: italic;
  font-weight: normal;
}
.btn.btn-fellow:hover, .btn.btn-fellow:focus {
  background: #555555;
  border-color: #555555;
  color: #f5f5f5;
}

/*------------------------------------*\
    $BASE Spinners
\*------------------------------------*/
/* line 7 scss/spinners/_base.scss */
/*------------------------------------*\
    $THROBBER Spinners
\*------------------------------------*/
@-webkit-keyframes throbber {
  0% {
    background: #b89ed7;
  }
  10% {
    background: #8455ba;
  }
  40% {
    background: #b89ed7;
  }
}
@-moz-keyframes throbber {
  0% {
    background: #b89ed7;
  }
  10% {
    background: #8455ba;
  }
  40% {
    background: #b89ed7;
  }
}
@-o-keyframes throbber {
  0% {
    background: #b89ed7;
  }
  10% {
    background: #8455ba;
  }
  40% {
    background: #b89ed7;
  }
}
@keyframes throbber {
  0% {
    background: #b89ed7;
  }
  10% {
    background: #8455ba;
  }
  40% {
    background: #b89ed7;
  }
}
/* :not(:required) hides these rules from IE9 and below */
.throbber:not(:required) {
  --webkit-animation: throbber 2000ms 300ms infinite ease-out;
  --moz-animation: throbber 2000ms 300ms infinite ease-out;
  --ms-animation: throbber 2000ms 300ms infinite ease-out;
  --o-animation: throbber 2000ms 300ms infinite ease-out;
  animation: throbber 2000ms 300ms infinite ease-out;
  background: #b89ed7;
  display: inline-block;
  position: relative;
  text-indent: -9999px;
  width: 0.9em;
  height: 1.5em;
  margin: 0 1.6em;
}
.throbber:not(:required):before, .throbber:not(:required):after {
  background: #b89ed7;
  color: #000;
  content: "x200B";
  display: inline-block;
  width: 0.9em;
  height: 1.5em;
  position: absolute;
  top: 0;
}
.throbber:not(:required):before {
  --webkit-animation: throbber 2000ms 150ms infinite ease-out;
  --moz-animation: throbber 2000ms 150ms infinite ease-out;
  --ms-animation: throbber 2000ms 150ms infinite ease-out;
  --o-animation: throbber 2000ms 150ms infinite ease-out;
  animation: throbber 2000ms 150ms infinite ease-out;
  left: -1.6em;
}
.throbber:not(:required):after {
  --webkit-animation: throbber 2000ms 450ms infinite ease-out;
  --moz-animation: throbber 2000ms 450ms infinite ease-out;
  --ms-animation: throbber 2000ms 450ms infinite ease-out;
  --o-animation: throbber 2000ms 450ms infinite ease-out;
  animation: throbber 2000ms 450ms infinite ease-out;
  right: -1.6em;
}

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  .pre-header,
  #nav,
  .nav-toggle,
  .sticky-social-share,
  .l-sidebar,
  .social-share,
  .footer,
  .header-wrapper,
  .flexslider {
    display: none !important;
  }
  body {
    margin-top: 0 !important;
    font-size: 12pt;
  }
}
/*------------------------------------*\
    $omcs
\*------------------------------------*/
/* line 6, scss/objects/_omcs.scss */
.omcs .section-has-video {
  overflow: hidden;
}
.omcs .section-has-video .banner-video {
  /* line 12, scss/objects/_omcs.scss */
  height: 100%;
}
.omcs .section-has-video .banner-video .sr-only {
  position: absolute !important;
}
.omcs .section-has-video .banner-video .container {
  /* line 18, scss/objects/_omcs.scss */
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  z-index: 11;
  padding-bottom: 20px;
}
.omcs .section-has-video .banner-video .container div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 33.3%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.omcs .section-has-video .banner-video .container div:nth-child(2) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.omcs .section-has-video .banner-video .container div:nth-child(3) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.omcs .section-has-video .banner-video .container div:nth-child(4) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.omcs .section-has-video .banner-video .vimeo-full-width {
  /* line 85, scss/objects/_omcs.scss */
  position: relative;
  height: 100%;
}
.omcs .section-has-video .banner-video .vimeo-full-width iframe {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  width: 177.77777778vh;
}
.omcs .section-has-video .banner-video button {
  /* line 104, scss/objects/_omcs.scss */
  border: 0;
  background-color: transparent;
  color: #fff;
  opacity: 0.5;
  display: block;
}
.omcs .section-has-video .banner-video #play-banner-video {
  /* line 112, scss/objects/_omcs.scss */
  width: 30px;
  height: 30px;
  font-size: 20px;
  display: none;
  cursor: pointer;
}
.omcs .section-has-video .banner-video #play-banner-videohover {
  opacity: 0.8;
}
.omcs .section-has-video .banner-video #play-banner-videofocus {
  opacity: 0.8;
}
.omcs .section-has-video .banner-video #play-banner-videoactive {
  opacity: 0.8;
}
.omcs .section-has-video .banner-video #pause-banner-video {
  /* line 129, scss/objects/_omcs.scss */
  width: 30px;
  height: 30px;
  font-size: 20px;
  cursor: pointer;
}
.omcs .section-has-video .banner-video #pause-banner-videohover {
  opacity: 0.8;
}
.omcs .section-has-video .banner-video #pause-banner-videofocus {
  opacity: 0.8;
}
.omcs .section-has-video .banner-video #pause-banner-videoactive {
  opacity: 0.8;
}
@media all and (min-width: 46.8em) {
  .omcs .section.less-margin {
    /* line 149, scss/objects/_omcs.scss */
    padding: 1.375rem 0;
  }
}
@media all and (min-width: 46.8em) {
  .omcs .section.lesser-margin {
    /* line 155, scss/objects/_omcs.scss */
    padding: 0.688rem 0;
  }
}
@media all and (min-width: 73em) {
  .omcs .section-has-alt-blocks.less-margin .wrapper {
    /* line 164, scss/objects/_omcs.scss */
    padding: 0.66rem 1rem;
  }
}
.omcs .section-has-alt-blocks.less-margin .g {
  margin-bottom: 1.375rem;
}
.omcs .section-has-alt-blocks.less-margin .gi {
  padding: 0.66rem 1rem;
}
@media all and (min-width: 73em) {
  .omcs .section-has-alt-blocks.lesser-margin .wrapper {
    padding: 0.33rem 1rem;
  }
}
.omcs .section-has-alt-blocks.lesser-margin .g {
  margin-bottom: 0.688rem;
}
.omcs .section-has-alt-blocks.lesser-margin .gi {
  padding: 0.33rem 1rem;
}
.omcs .less-margin .gi {
  /* line 191, scss/objects/_omcs.scss */
  padding: 0.66rem 1rem;
}
.omcs .lesser-margin .gi {
  /* line 198, scss/objects/_omcs.scss */
  padding: 0.33rem 1rem;
}
.omcs blockquote {
  /* line 204, scss/objects/_omcs.scss */
  border-left: none;
  padding-left: 0;
  margin: 1rem 0 2rem 0;
  font-size: 1.7em;
  color: #555555;
}
.omcs blockquote p {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: normal;
}
.omcs blockquote p:last-child {
  font-size: 0.6em;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.4rem;
}
.omcs .hide-mobile {
  display: none;
}
@media all and (min-width: 73em) {
  .omcs .hide-mobile {
    /* line 226, scss/objects/_omcs.scss */
    display: block;
  }
}
.omcs .hide-desktop {
  display: block;
}
@media all and (min-width: 73em) {
  .omcs .hide-desktop {
    /* line 234, scss/objects/_omcs.scss */
    display: none;
  }
}
.omcs .float-right-desktop {
  text-align: center;
}
@media all and (min-width: 73em) {
  .omcs .float-right-desktop {
    /* line 242, scss/objects/_omcs.scss */
    float: right;
  }
}
.omcs .block-endorsement .btn.btn-purple {
  /* line 250, scss/objects/_omcs.scss */
  background: #523178;
  color: #fff;
}
.omcs .block-endorsement .btn.btn-purple:hover {
  border-color: #523178;
  color: #523178;
  background: transparent;
}
.omcs .block-endorsement .btn.btn-purple:focus {
  border-color: #523178;
  color: #523178;
  background: transparent;
}
.omcs .block-endorsement .btn.btn-goldenrod {
  background: #D69A2D;
  color: #fff;
}
.omcs .block-endorsement .btn.btn-goldenrod:hover {
  border-color: #D69A2D;
  color: #D69A2D;
  background: transparent;
}
.omcs .block-endorsement .btn.btn-goldenrod:focus {
  border-color: #D69A2D;
  color: #D69A2D;
  background: transparent;
}
.omcs .block-endorsement .btn.btn-berry {
  background: #A50050;
  color: #fff;
}
.omcs .block-endorsement .btn.btn-berry:hover {
  border-color: #A50050;
  color: #A50050;
  background: transparent;
}
.omcs .block-endorsement .btn.btn-berry:focus {
  border-color: #A50050;
  color: #A50050;
  background: transparent;
}
.omcs .block-endorsement .btn.btn-blue {
  background: #147BD1;
  color: #fff;
}
.omcs .block-endorsement .btn.btn-blue:hover {
  border-color: #147BD1;
  color: #147BD1;
  background: transparent;
}
.omcs .block-endorsement .btn.btn-blue:focus {
  border-color: #147BD1;
  color: #147BD1;
  background: transparent;
}
.omcs .block-endorsement .btn.btn-teal {
  background: #4DBBB0;
  color: #fff;
}
.omcs .block-endorsement .btn.btn-teal:hover {
  border-color: #4DBBB0;
  color: #4DBBB0;
  background: transparent;
}
.omcs .block-endorsement .btn.btn-teal:focus {
  border-color: #4DBBB0;
  color: #4DBBB0;
  background: transparent;
}
.omcs .block-endorsement .btn.btn-green {
  background: #719949;
  color: #fff;
}
.omcs .block-endorsement .btn.btn-green:hover {
  border-color: #719949;
  color: #719949;
  background: transparent;
}
.omcs .block-endorsement .btn.btn-green:focus {
  border-color: #719949;
  color: #719949;
  background: transparent;
}
.omcs .block-endorsement .btn.btn-orange {
  background: #C04C36;
  color: #fff;
}
.omcs .block-endorsement .btn.btn-orange:hover {
  border-color: #C04C36;
  color: #C04C36;
  background: transparent;
}
.omcs .block-endorsement .btn.btn-orange:focus {
  border-color: #C04C36;
  color: #C04C36;
  background: transparent;
}
.omcs .section-has-bg-solo {
  /* line 353, scss/objects/_omcs.scss */
  padding: 0 !important;
}

/* line 360, scss/objects/_omcs.scss */
@media all and (min-width: 28em) and (max-width: 33em) {
  .eab100by500 {
    /* line 362, scss/objects/_omcs.scss */
    height: 250px;
    width: 26rem;
    max-width: 100%;
  }
}
@media all and (min-width: 33em) and (max-width: 35em) {
  .eab100by500 {
    /* line 369, scss/objects/_omcs.scss */
    height: 250px;
    width: 29rem;
    max-width: 100%;
  }
}
@media all and (min-width: 35em) and (max-width: 37em) {
  .eab100by500 {
    /* line 376, scss/objects/_omcs.scss */
    height: 250px;
    width: 29rem;
    max-width: 100%;
  }
}
@media all and (min-width: 37em) and (max-width: 41em) {
  .eab100by500 {
    /* line 383, scss/objects/_omcs.scss */
    height: 250px;
    width: 32rem;
    max-width: 100%;
  }
}
@media all and (min-width: 41em) and (max-width: 43em) {
  .eab100by500 {
    /* line 390, scss/objects/_omcs.scss */
    height: 250px;
    width: 35rem;
    max-width: 100%;
  }
}
@media all and (min-width: 43em) and (max-width: 46.8em) {
  .eab100by500 {
    /* line 397, scss/objects/_omcs.scss */
    height: 250px;
    width: 38rem;
    max-width: 100%;
  }
}
@media all and (min-width: 46.8em) and (max-width: 48em) {
  .eab100by500 {
    /* line 404, scss/objects/_omcs.scss */
    height: 250px;
    width: 40rem;
    max-width: 100%;
  }
}
@media all and (min-width: 48em) and (max-width: 50em) {
  .eab100by500 {
    /* line 411, scss/objects/_omcs.scss */
    height: 250px;
    width: 43rem;
    max-width: 100%;
  }
}
@media all and (min-width: 50em) and (max-width: 52em) {
  .eab100by500 {
    /* line 418, scss/objects/_omcs.scss */
    height: 250px;
    width: 46rem;
    max-width: 100%;
  }
}
@media all and (min-width: 52em) and (max-width: 55em) {
  .eab100by500 {
    /* line 425, scss/objects/_omcs.scss */
    height: 250px;
    width: 48rem;
    max-width: 100%;
  }
}
@media all and (min-width: 55em) and (max-width: 59em) {
  .eab100by500 {
    /* line 432, scss/objects/_omcs.scss */
    height: 250px;
    width: 51rem;
    max-width: 100%;
  }
}
@media all and (min-width: 59em) and (max-width: 62em) {
  .eab100by500 {
    /* line 439, scss/objects/_omcs.scss */
    height: 250px;
    width: 55rem;
    max-width: 100%;
  }
}
@media all and (min-width: 62em) and (max-width: 64em) {
  .eab100by500 {
    /* line 446, scss/objects/_omcs.scss */
    height: 250px;
    width: 58rem;
    max-width: 100%;
  }
}
@media all and (min-width: 64em) and (max-width: 66em) {
  .eab100by500 {
    /* line 453, scss/objects/_omcs.scss */
    height: 250px;
    width: 60rem;
    max-width: 100%;
  }
}
@media all and (min-width: 66em) and (max-width: 73em) {
  .eab100by500 {
    /* line 460, scss/objects/_omcs.scss */
    height: 300px;
    width: 61rem;
    max-width: 100%;
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .eab100by500 {
    /* line 467, scss/objects/_omcs.scss */
    height: 350px;
    width: 68rem;
    max-width: 100%;
  }
}
@media all and (min-width: 89em) and (max-width: 93em) {
  .eab100by500 {
    /* line 474, scss/objects/_omcs.scss */
    height: 500px;
    width: 70rem;
    max-width: 100%;
  }
}
@media all and (min-width: 93em) {
  .eab100by500 {
    /* line 481, scss/objects/_omcs.scss */
    height: 500px;
    width: 70rem;
    max-width: 100%;
  }
}

/*------------------------------------*\
    $COOKIE ELEMENTS
\*------------------------------------*/
/* line 5, scss/objects/_cookies.scss */
:root {
  --my-color: #0000ff;
  --w-step: 5vw;
  --h-step: 5vh;
  --su16: 16px;
  --su32: 32px;
}

/* line 14, scss/objects/_cookies.scss */
.cookie-consent {
  position: fixed;
  min-width: 100%;
  /* width: 100%; */
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cookie-consent .btn {
  margin-top: 10px;
  margin-right: 10px;
}

/* line 30, scss/objects/_cookies.scss */
.overlay {
  position: absolute;
  z-index: 20;
  bottom: 1rem;
  left: 0vw;
  padding: 6px;
  min-width: 100%;
  background-color: rgba(0, 0, 45, 0.9019607843);
  color: rgb(204, 204, 204);
}
@media all and (max-width: 29em) {
  .overlay {
    height: calc(var(--h-step) * 14);
  }
}
@media all and (min-width: 29em) and (max-width: 34em) {
  .overlay {
    height: calc(var(--h-step) * 13);
  }
}
@media all and (min-width: 34em) and (max-width: 44em) {
  .overlay {
    height: calc(var(--h-step) * 13);
  }
}
@media all and (min-width: 44em) and (max-width: 50em) {
  .overlay {
    height: calc(var(--h-step) * 12);
  }
}
@media all and (min-width: 50em) and (max-width: 66em) {
  .overlay {
    height: calc(var(--h-step) * 9);
  }
}
@media all and (min-width: 66em) and (max-width: 73em) {
  .overlay {
    height: calc(var(--h-step) * 5);
  }
}
@media all and (min-width: 73em) and (max-width: 89em) {
  .overlay {
    height: calc(var(--h-step) * 5);
  }
}
@media all and (min-width: 89em) and (max-width: 93em) {
  .overlay {
    height: calc(var(--h-step) * 5);
  }
}
@media all and (min-width: 93em) {
  .overlay {
    height: calc(var(--h-step) * 7);
  }
}
@media screen and (min-width: 360px) and (max-width: 560px) and (max-height: 460px) {
  .overlay {
    height: calc(var(--h-step) * 14);
  }
}
@media screen and (min-width: 360px) and (max-width: 560px) and (min-height: 460px) and (max-height: 510px) {
  .overlay {
    height: 510px;
  }
}
@media screen and (min-width: 360px) and (max-width: 560px) and (min-height: 510px) and (max-height: 560px) {
  .overlay {
    height: calc(var(--h-step) * 15);
  }
}
@media screen and (min-width: 600px) and (max-width: 704px) and (max-height: 460px) {
  .overlay {
    height: calc(var(--h-step) * 14);
  }
}
@media screen and (min-width: 600px) and (max-width: 704px) and (min-height: 460px) and (max-height: 480px) {
  .overlay {
    height: calc(var(--h-step) * 10);
  }
}
@media screen and (min-width: 600px) and (max-width: 704px) and (min-height: 480px) and (max-height: 580px) {
  .overlay {
    height: calc(var(--h-step) * 14);
  }
}
@media screen and (min-width: 600px) and (max-width: 704px) and (min-height: 580px) and (max-height: 600px) {
  .overlay {
    height: calc(var(--h-step) * 12);
  }
}
@media screen and (min-width: 800px) and (max-width: 1055px) and (max-height: 460px) {
  .overlay {
    height: calc(var(--h-step) * 16);
  }
}
@media screen and (min-width: 800px) and (max-width: 1055px) and (min-height: 460px) and (max-height: 480px) {
  .overlay {
    height: calc(var(--h-step) * 14);
  }
}
@media screen and (min-width: 800px) and (max-width: 1055px) and (min-height: 480px) and (max-height: 580px) {
  .overlay {
    height: calc(var(--h-step) * 12);
  }
}
@media screen and (min-width: 800px) and (max-width: 1055px) and (min-height: 580px) and (max-height: 600px) {
  .overlay {
    height: calc(var(--h-step) * 10);
  }
}
@media screen and (min-width: 1056px) and (max-width: 1480px) and (max-height: 460px) {
  .overlay {
    height: calc(var(--h-step) * 16);
  }
}
@media screen and (min-width: 1056px) and (max-width: 1480px) and (max-height: 480px) {
  .overlay {
    height: calc(var(--h-step) * 14);
  }
}
@media screen and (min-width: 1056px) and (max-width: 1480px) and (min-height: 480px) and (max-height: 580px) {
  .overlay {
    height: calc(var(--h-step) * 11);
  }
}
@media screen and (min-width: 1056px) and (max-width: 1480px) and (min-height: 580px) and (max-height: 670px) {
  .overlay {
    height: calc(var(--h-step) * 9);
  }
}
@media screen and (min-width: 1056px) and (max-width: 1480px) and (min-height: 670px) and (max-height: 760px) {
  .overlay {
    height: calc(var(--h-step) * 8);
  }
}
@media screen and (min-width: 1056px) and (max-width: 1480px) and (min-height: 760px) and (max-height: 890px) {
  .overlay {
    height: calc(var(--h-step) * 7);
  }
}
@media screen and (min-width: 1056px) and (max-width: 1480px) and (min-height: 890px) and (max-height: 1060px) {
  .overlay {
    height: calc(var(--h-step) * 6);
  }
}
@media screen and (min-width: 1480px) and (max-height: 460px) {
  .overlay {
    height: calc(var(--h-step) * 14);
  }
}
@media screen and (min-width: 1480px) and (min-height: 460px) and (max-height: 570px) {
  .overlay {
    height: calc(var(--h-step) * 12);
  }
}
@media screen and (min-width: 1480px) and (min-height: 570px) and (max-height: 780px) {
  .overlay {
    height: calc(var(--h-step) * 10);
  }
}

/* line 133, scss/objects/_cookies.scss */
.cookie-text {
  top: calc(var(--h-step) * 0);
}
@media all and (min-width: 34em) {
  .cookie-text {
    position: absolute;
    padding: 1rem;
  }
}

/* line 142, scss/objects/_cookies.scss */
@media all and (max-width: 29em) {
  .imageDisplay {
    display: none;
  }
}
@media all and (min-width: 29em) and (max-width: 34em) {
  .imageDisplay {
    display: none;
  }
}
@media all and (min-width: 34em) and (max-width: 44em) {
  .imageDisplay {
    display: none;
  }
}

/* line 155, scss/objects/_cookies.scss */
.btn.btn-primary {
  background: #523178;
  bottom: 0.5rem;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: #ceced0;
  color: #837395;
}
@media all and (max-width: 29em) {
  .btn.btn-primary {
    width: 15rem;
    left: 1rem;
  }
  .btn.btn-primary:hover, .btn.btn-primary:focus {
    width: 15rem;
  }
}
@media all and (min-width: 29em) and (max-width: 34em) {
  .btn.btn-primary {
    width: 10rem;
    left: 5rem;
  }
  .btn.btn-primary:hover, .btn.btn-primary:focus {
    width: 10rem;
  }
}
@media all and (min-width: 34em) and (max-width: 50em) {
  .btn.btn-primary {
    left: 5.5rem;
    bottom: 0.5rem;
  }
}
@media all and (min-width: 50em) {
  .btn.btn-primary {
    bottom: 0.5rem;
    left: 5rem;
  }
}

/* line 175, scss/objects/_cookies.scss */
.btn.cb-necessary-anchor {
  bottom: 0.5rem;
}
@media all and (max-width: 29em) {
  .btn.cb-necessary-anchor {
    width: 15rem;
    left: 1rem;
  }
  .btn.cb-necessary-anchor:hover, .btn.cb-necessary-anchor:focus {
    width: 15rem;
  }
}
@media all and (min-width: 29em) and (max-width: 34em) {
  .btn.cb-necessary-anchor {
    width: 10rem;
    left: 5rem;
  }
  .btn.cb-necessary-anchor:hover, .btn.cb-necessary-anchor:focus {
    width: 10rem;
  }
}
@media all and (min-width: 34em) and (max-width: 50em) {
  .btn.cb-necessary-anchor {
    left: 5.5rem;
    bottom: 0.5rem;
  }
}
@media all and (min-width: 50em) {
  .btn.cb-necessary-anchor {
    bottom: 0.5rem;
    left: 5rem;
  }
}

/* line 197, scss/objects/_cookies.scss */
.sr-only {
  position: absolute;
  display: block;
  cursor: text;
  margin: -1px 0 0 -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  font-weight: normal;
  font-size: 15px;
  line-height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  outline: 0;
}/*# sourceMappingURL=style.css.map */