@charset "UTF-8";

/*
 * Common constants used for IAC 2019
 *
 * Theme Colors
 * ------------
 *
 * Primary (blue): #00a7e1
 *  - dark: #1a3d6d
 * Accent (yellow): #f2c300
 *  - dark: #bd9800
 *  - light: #ffdb47
 *
 *
 * Utility Colors
 * --------------
 *
 * Page background: #fff
 * Light background: #f1f1f1
 * Mid-gray background: #d8d8d8
 * Dark background: #000
 * Body copy: #525e65
 * Titles: #1a3d6d (same as dark primary theme color)
 * Warnings: #941
 *
 *
 * Text Sizing
 * -----------
 *
 * Copy: 17px
 * Line-height and baseline grid: 24px
 * Additional sizes: 13px, 15px, 18px, 20px, 24px, 32px, 44px, 60px
 *
 *
 * Common Breakpoints
 * ------------------
 *
 * Small: 470px
 * Medium: 768px
 * Large: 960px
 * Widescreen: 1280px
 */


/*! ---------- =reset ---------- */

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
ul {
  list-style: disc;
}
blockquote, q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
img {
  -ms-interpolation-mode: bicubic;
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}
audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
}
button {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/*! ---------- =typography ---------- */

body {
  font: 17px/24px "Nunito Sans", "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #525e65;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

p, ol, ul, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 24px;
}
p:last-child,
ol:last-child,
ul:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
p, ol, ul {
  orphans: 2;
  widows: 2;
}
ol, ul {
  margin-left: 2em;
}
h1, h2, h3, h4, h5, h6 {
  text-rendering: optimizeLegibility;
  color: #1a3d6d;
  font-weight: 400;
}
h1 img,
h2 img,
h3 img,
h4 img,
h5 img,
h6 img {
  display: inline-block;
  vertical-align: middle;
}
h1 {
  font-size: 60px;
  line-height: 48px;
}
@media (max-width: 767px) {
  h1 {
    font-size: 44px;
  }
}
h2 {
  font-size: 44px;
  line-height: 36px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 32px;
  }
}
h3 {
  font-size: 32px;
  line-height: 36px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 20px;
}


/*! ---------- =common =components ---------- */

body {
  background-color: #fff;
}

a {
  text-decoration: none;
  color: #00a7e1;
}
a:hover,
a:focus {
  color: #bd9800;
}
a,
button {
  -webkit-transition: color 0.15s ease-out,
                      background-color 0.15s ease-out,
                      border 0.15s ease-out,
                      box-shadow 0.15s ease-out,
                      opacity 0.15s ease-out;
  transition: color 0.15s ease-out,
              background-color 0.15s ease-out,
              border 0.15s ease-out,
              box-shadow 0.15s ease-out,
              opacity 0.15s ease-out;
}

.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}

.margin {
  margin-bottom: 24px;
}
.margin-large {
  margin-bottom: 48px;
}
.margin-small {
  margin-bottom: 12px;
}
.margin-top {
  margin-top: 24px;
}
.margin-top-large {
  margin-top: 48px;
}
.margin-top-small {
  margin-top: 12px;
}

.screenreader-only {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  word-wrap: normal;
}

.img-left,
.img-right {
  display: block;
  max-width: 40%;
  margin: 0 0 12px;
}
.img-left img,
.img-right img {
  display: block;
}
.img-left {
  float: left;
  margin-right: 12px;
}
.img-right {
  float: right;
  margin-left: 12px;
}

.note {
  opacity: 0.8;
}
pre + .note,
input + .note,
textarea + .note {
  margin-top: -12px;
}

.highlight {
  color: #fff;
  background: #f2c300;
}
.highlight::before,
.highlight::after {
  content: '\00a0';
}

.warn {
  color: #941;
}

figure {
  display: block;
  margin-bottom: 24px;
  border: 1px solid #f1f1f1;
  padding: 6px;
}

figcaption {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  opacity: 0.8;
}

.more::after,
.button::after,
.accordion__label::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0.8em;
  height: 0.8em;
  position: relative;
  left: 6px;
  border: solid #00a7e1;
  border-width: 1.5px 1.5px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.more:hover::after,
.more:focus::after,
.button:hover::after,
.button:focus::after,
.accordion__label:hover::after,
.accordion__label:focus::after {
  -webkit-transform: translateX(0.25em) rotate(45deg);
  -ms-transform: translateX(0.25em) rotate(45deg);
  transform: translateX(0.25em) rotate(45deg);
}
.more {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 700;
  color: #00a7e1;
}
.more:hover,
.more:focus {
  color: #00a7e1;
}
.button {
  display: inline-block;
  vertical-align: middle;
  padding: 18px 36px;
  border-radius: 3px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  background: #00a7e1;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.15s ease-out,
                      background-color 0.15s ease-out,
                      box-shadow 0.15s ease-out,
                      -webkit-transform 0.15s ease-out;
  transition: color 0.15s ease-out,
              background-color 0.15s ease-out,
              box-shadow 0.15s ease-out,
              -webkit-transform 0.15s ease-out;
  transition: color 0.15s ease-out,
              background-color 0.15s ease-out,
              transform 0.15s ease-out,
              box-shadow 0.15s ease-out;
  transition: color 0.15s ease-out,
              background-color 0.15s ease-out,
              transform 0.15s ease-out,
              box-shadow 0.15s ease-out,
              -webkit-transform 0.15s ease-out;
}
.button::after {
  border-color: #fff;
}
.button:hover,
.button:focus {
  color: #fff;
  background: #00bafb;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
}
.button:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  box-shadow: none;
  -webkit-transition: none;
  transition: none;
}
.button--large {
  display: block;
  width: auto;
  max-width: 100%;
  padding: 24px 48px;
}
.button--large + .button--large {
  margin-left: 0;
  margin-top: 12px;
}
.button--small {
  padding: 6px 24px;
  font-size: 15px;
}
.button--highlight {
  background-color: #f2c300;
}
.button--highlight:hover,
.button--highlight:focus {
  background-color: #ffce02;
}
.button--warn {
  background-color: #941;
}
.button--warn:hover,
.button--warn:focus {
  background-color: #b04e14;
}
.button--cancel {
  font-size: 15px;
  font-weight: 400;
  color: #525e65;
  background: #fff;
  text-shadow: none;
  border: 1px solid #d8d8d8;
}
.button--cancel::after {
  display: none;
}
.button--cancel:hover,
.button--cancel:focus {
  color: #00a7e1;
  background-color: #fff;
  border-color: #00a7e1;
}

.button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -12px;
  margin-right: -6px;
  margin-left: -6px;
}
.button-group > .button {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin: 12px 6px 0;
}

.pull-quote {
  padding: 24px 0;
  margin: 24px 0;
  border: solid rgba(0, 167, 225, 0.5);
  border-width: 2px 0;
  font-size: 18px;
  line-height: 36px;
  font-weight: 300;
}
.pull-quote__attribution {
  display: block;
  font-size: 15px;
  line-height: 24px;
  opacity: 0.8;
}
.pull-quote__attribution::before {
  content: '– ';
}
p + .pull-quote__attribution {
  margin-top: -18px;
}

@media (min-width: 470px) {
  .pull-quote--left,
  .pull-quote--right {
    max-width: 40%;
    margin-top: 0;
  }
  .pull-quote--left {
    float: left;
    margin-right: 24px;
    padding: 0 24px 0 0;
    border-width: 0 2px 0 0;
  }
  .pull-quote--right {
    float: right;
    margin-left: 24px;
  }
}


.content-box {
  padding: 24px;
  margin-bottom: 24px;
  border: 2px solid #00a7e1;
  background: #fff;
}
.content-box h1,
.content-box h2,
.content-box h3,
.content-box h4,
.content-box h5,
.content-box h6 {
  color: #00a7e1;
}
.content-box--highlight {
  border-color: #f2c300;
}
.content-box--highlight h1,
.content-box--highlight h2,
.content-box--highlight h3,
.content-box--highlight h4,
.content-box--highlight h5,
.content-box--highlight h6 {
  color: #bd9800;
}

.quicklink {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 48px 24px;
  font-size: 15px;
  text-align: center;
  color: #fff;
  color: rgba(255, 255, 255, 0.9);
  background-color: #000;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  -webkit-transition: color 0.15s ease-out,
                      box-shadow 0.15s ease-out,
                      -webkit-transform 0.15s ease-out;
  transition: color 0.15s ease-out,
              box-shadow 0.15s ease-out,
              -webkit-transform 0.15s ease-out;
  transition: color 0.15s ease-out,
              transform 0.15s ease-out,
              box-shadow 0.15s ease-out;
  transition: color 0.15s ease-out,
              transform 0.15s ease-out,
              box-shadow 0.15s ease-out,
              -webkit-transform 0.15s ease-out;
}
.quicklink__title,
.quicklink div,
.quicklink p {
  width: 100%;
}
.quicklink__title {
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}
.quicklink:hover,
.quicklink:focus {
  color: #fff;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
}
.quicklink:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  box-shadow: none;
  -webkit-transition: none;
  transition: none;
}

.item-list {
  list-style: none;
  margin: 0;
}
.item-list:not(:last-child) {
  margin-bottom: 48px;
}
.item-list + .button {
  margin-top: -24px;
}
.item-list__item + .item-list__item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}
.item-list__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
}
.item-list__date {
  opacity: 0.7;
  margin: 12px 0 0;
}
.item-list__description {
  opacity: 0.85;
  margin: 6px 0 0;
}
.item-list__thumbnail {
  max-width: 33%;
  float: left;
  margin-right: 24px;
}
.item-list__thumbnail ~ .item-list__title,
.item-list__thumbnail ~ .item-list__date,
.item-list__thumbnail ~ .item-list__description {
  overflow: hidden;
}

.toggle-indicator {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  position: relative;
}
.toggle-indicator:first-child {
  margin-right: 12px;
}
.toggle-indicator:last-child {
  margin-left: 12px;
}
.toggle-indicator__piece {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -2px;
  -webkit-transition: opacity 0.2s ease-out 0.4s,
                      margin 0.2s ease-out 0.4s,
                      -webkit-transform 0.25s ease-out;
  transition: opacity 0.2s ease-out 0.4s,
              margin 0.2s ease-out 0.4s,
              -webkit-transform 0.25s ease-out;
  transition: opacity 0.2s ease-out 0.4s,
              margin 0.2s ease-out 0.4s,
              transform 0.25s ease-out;
  transition: opacity 0.2s ease-out 0.4s,
              margin 0.2s ease-out 0.4s,
              transform 0.25s ease-out,
              -webkit-transform 0.25s ease-out;
}
.toggle-indicator__piece::before {
  content: '';
  display: block;
  width: 24px;
  height: 4px;
  background: #00a7e1;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
.toggle-indicator__piece--1 {
  margin-top: -8px;
}
.toggle-indicator__piece--3 {
  margin-top: 4px;
}
.is-active .toggle-indicator__piece {
  -webkit-transition: opacity 0.2s ease-out,
                      margin 0.2s ease-out,
                      -webkit-transform 0.25s ease-out 0.3s;
  transition: opacity 0.2s ease-out,
              margin 0.2s ease-out,
              -webkit-transform 0.25s ease-out 0.3s;
  transition: opacity 0.2s ease-out,
              margin 0.2s ease-out,
              transform 0.25s ease-out 0.3s;
  transition: opacity 0.2s ease-out,
              margin 0.2s ease-out,
              transform 0.25s ease-out 0.3s,
              -webkit-transform 0.25s ease-out 0.3s;
}
.is-active .toggle-indicator__piece::before {
  background: #f2c300;
}
.is-active .toggle-indicator__piece--2 {
  opacity: 0;
}
.is-active .toggle-indicator__piece--1,
.is-active .toggle-indicator__piece--3 {
  margin-top: -2px;
}
.is-active .toggle-indicator__piece--1 {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.is-active .toggle-indicator__piece--3 {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.share-buttons {
  font-size: 20px;
}
.share-buttons:not(:last-child) {
  margin-bottom: 24px;
}
.no-js .share-buttons {
  display: none;
}
.share-buttons__title {
  display: block;
  font-size: 15px;
  opacity: 0.7;
}
.share-buttons__button {
  display: inline-block;
  vertical-align: middle;
  margin: 6px 6px 0 0;
}

.truncator-expand {
  display: block;
  width: 100%;
  padding-top: 6px;
  margin-top: 12px;
  border-top: 1px dashed #d8d8d8;
  text-align: left;
  color: #525e65;
  font-weight: 700;
  font-size: 15px;
}
.margin + .truncator-expand {
  margin-top: -12px;
}
.margin + .truncator-expand:not(:last-child) {
  margin-bottom: 24px;
}
.item-list + .truncator-expand,
.margin-large + .truncator-expand {
  margin-top: -36px;
}
.item-list + .truncator-expand:not(:last-child),
.margin-large + .truncator-expand:not(:last-child) {
  margin-bottom: 48px;
}

.js .toggle-target:not(.is-active) {
  display: none;
}

.group:after,
.item-list__item:after,
.side-label:after,
.page-header__meta:after,
.page-header__main:after,
.interior-layout:after {
  content: "";
  display: table;
  clear: both;
}


/*! ---------- =grids ---------- */

.grid {
  display: block;
  padding: 0;
  margin-right: -24px;
  letter-spacing: -0.31em;
  text-rendering: optimizespeed;
  text-align: center;
}
.grid--compact {
  margin-right: 12px;
}
.grid__unit {
  display: inline-block;
  width: 100%;
  padding: 0 24px 24px 0;
  margin: 0;
  vertical-align: top;
  letter-spacing: normal;
  text-rendering: auto;
  text-align: left;
}
.grid--compact > .grid__unit {
  padding: 0 12px 12px 0;
}
.grid__unit--1-2 { width: 50%; }
.grid__unit--1-3 { width: 33.33%; }
.grid__unit--2-3 { width: 66.66%; }
.grid__unit--1-4 { width: 25%; }
.grid__unit--3-4 { width: 75%; }
.grid__unit--1-5 { width: 20%; }
.grid__unit--2-5 { width: 40%; }
.grid__unit--3-5 { width: 60%; }
.grid__unit--4-5 { width: 80%; }
.grid__unit--1-6 { width: 16.66%; }
.grid__unit--5-6 { width: 83.3%; }
.grid__unit--1-8 { width: 12.5%; }
.grid__unit--3-8 { width: 37.5%; }
.grid__unit--5-8 { width: 62.5%; }
.grid__unit--7-8 { width: 87.5%; }
.grid__unit--1-9 { width: 11.11%; }
.grid__unit--2-9 { width: 22.22%; }
.grid__unit--4-9 { width: 44.44%; }
.grid__unit--5-9 { width: 55.55%; }
.grid__unit--7-9 { width: 77.77%; }
.grid__unit--8-9 { width: 88.88%; }
.grid__unit--1-12 { width: 8.33%; }
.grid__unit--5-12 { width: 41.65%; }
.grid__unit--7-12 { width: 58.31%; }
.grid__unit--11-12 { width: 91.63%; }

@media (min-width: 470px) {
  .grid__unit--1-1-s { width: 100%; }
  .grid__unit--1-2-s { width: 50%; }
  .grid__unit--1-3-s { width: 33.33%; }
  .grid__unit--2-3-s { width: 66.66%; }
  .grid__unit--1-4-s { width: 25%; }
  .grid__unit--3-4-s { width: 75%; }
  .grid__unit--1-5-s { width: 20%; }
  .grid__unit--2-5-s { width: 40%; }
  .grid__unit--3-5-s { width: 60%; }
  .grid__unit--4-5-s { width: 80%; }
  .grid__unit--1-6-s { width: 16.66%; }
  .grid__unit--5-6-s { width: 83.3%; }
  .grid__unit--1-8-s { width: 12.5%; }
  .grid__unit--3-8-s { width: 37.5%; }
  .grid__unit--5-8-s { width: 62.5%; }
  .grid__unit--7-8-s { width: 87.5%; }
  .grid__unit--1-9-s { width: 11.11%; }
  .grid__unit--2-9-s { width: 22.22%; }
  .grid__unit--4-9-s { width: 44.44%; }
  .grid__unit--5-9-s { width: 55.55%; }
  .grid__unit--7-9-s { width: 77.77%; }
  .grid__unit--8-9-s { width: 88.88%; }
  .grid__unit--1-12-s { width: 8.33%; }
  .grid__unit--5-12-s { width: 41.65%; }
  .grid__unit--7-12-s { width: 58.31%; }
  .grid__unit--11-12-s { width: 91.63%; }
}

@media (min-width: 768px) {
  .grid {
    margin-right: -48px;
  }
  .grid--compact {
    margin-right: -24px;
  }
  .grid__unit {
    padding: 0 48px 48px 0;
  }
  .grid--compact > .grid__unit {
    padding: 0 24px 24px 0;
  }
  .grid__unit--1-1-m { width: 100%; }
  .grid__unit--1-2-m { width: 50%; }
  .grid__unit--1-3-m { width: 33.33%; }
  .grid__unit--2-3-m { width: 66.66%; }
  .grid__unit--1-4-m { width: 25%; }
  .grid__unit--3-4-m { width: 75%; }
  .grid__unit--1-5-m { width: 20%; }
  .grid__unit--2-5-m { width: 40%; }
  .grid__unit--3-5-m { width: 60%; }
  .grid__unit--4-5-m { width: 80%; }
  .grid__unit--1-6-m { width: 16.66%; }
  .grid__unit--5-6-m { width: 83.3%; }
  .grid__unit--1-8-m { width: 12.5%; }
  .grid__unit--3-8-m { width: 37.5%; }
  .grid__unit--5-8-m { width: 62.5%; }
  .grid__unit--7-8-m { width: 87.5%; }
  .grid__unit--1-9-m { width: 11.11%; }
  .grid__unit--2-9-m { width: 22.22%; }
  .grid__unit--4-9-m { width: 44.44%; }
  .grid__unit--5-9-m { width: 55.55%; }
  .grid__unit--7-9-m { width: 77.77%; }
  .grid__unit--8-9-m { width: 88.88%; }
  .grid__unit--1-12-m { width: 8.33%; }
  .grid__unit--5-12-m { width: 41.65%; }
  .grid__unit--7-12-m { width: 58.31%; }
  .grid__unit--11-12-m { width: 91.63%; }
}

@media (min-width: 960px) {
  .grid__unit--1-1-l { width: 100%; }
  .grid__unit--1-2-l { width: 50%; }
  .grid__unit--1-3-l { width: 33.33%; }
  .grid__unit--2-3-l { width: 66.66%; }
  .grid__unit--1-4-l { width: 25%; }
  .grid__unit--3-4-l { width: 75%; }
  .grid__unit--1-5-l { width: 20%; }
  .grid__unit--2-5-l { width: 40%; }
  .grid__unit--3-5-l { width: 60%; }
  .grid__unit--4-5-l { width: 80%; }
  .grid__unit--1-6-l { width: 16.66%; }
  .grid__unit--5-6-l { width: 83.3%; }
  .grid__unit--1-8-l { width: 12.5%; }
  .grid__unit--3-8-l { width: 37.5%; }
  .grid__unit--5-8-l { width: 62.5%; }
  .grid__unit--7-8-l { width: 87.5%; }
  .grid__unit--1-9-l { width: 11.11%; }
  .grid__unit--2-9-l { width: 22.22%; }
  .grid__unit--4-9-l { width: 44.44%; }
  .grid__unit--5-9-l { width: 55.55%; }
  .grid__unit--7-9-l { width: 77.77%; }
  .grid__unit--8-9-l { width: 88.88%; }
  .grid__unit--1-12-l { width: 8.33%; }
  .grid__unit--5-12-l { width: 41.65%; }
  .grid__unit--7-12-l { width: 58.31%; }
  .grid__unit--11-12-l { width: 91.63%; }
}

@media (min-width: 1280px) {
  .grid__unit--1-1-w { width: 100%; }
  .grid__unit--1-2-w { width: 50%; }
  .grid__unit--1-3-w { width: 33.33%; }
  .grid__unit--2-3-w { width: 66.66%; }
  .grid__unit--1-4-w { width: 25%; }
  .grid__unit--3-4-w { width: 75%; }
  .grid__unit--1-5-w { width: 20%; }
  .grid__unit--2-5-w { width: 40%; }
  .grid__unit--3-5-w { width: 60%; }
  .grid__unit--4-5-w { width: 80%; }
  .grid__unit--1-6-w { width: 16.66%; }
  .grid__unit--5-6-w { width: 83.3%; }
  .grid__unit--1-8-w { width: 12.5%; }
  .grid__unit--3-8-w { width: 37.5%; }
  .grid__unit--5-8-w { width: 62.5%; }
  .grid__unit--7-8-w { width: 87.5%; }
  .grid__unit--1-9-w { width: 11.11%; }
  .grid__unit--2-9-w { width: 22.22%; }
  .grid__unit--4-9-w { width: 44.44%; }
  .grid__unit--5-9-w { width: 55.55%; }
  .grid__unit--7-9-w { width: 77.77%; }
  .grid__unit--8-9-w { width: 88.88%; }
  .grid__unit--1-12-w { width: 8.33%; }
  .grid__unit--5-12-w { width: 41.65%; }
  .grid__unit--7-12-w { width: 58.31%; }
  .grid__unit--11-12-w { width: 91.63%; }
}


/*! ---------- =forms ---------- */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select {
  display: block;
  width: 100%;
  padding: 9px 12px;
  margin: 0;
  border: 1px solid #e4e4e4;
  color: #525e65;
  color: rgba(82, 94, 101, 0.8);
  font: 15px/24px "Nunito Sans", "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-transition: color 0.15s ease-out,
                      border-color 0.15s ease-out,
                      background-color 0.15s ease-out,
                      opacity 0.15s ease-out;
  transition: color 0.15s ease-out,
              border-color 0.15s ease-out,
              background-color 0.15s ease-out,
              opacity 0.15s ease-out;
}
input[type="text"]:not(:last-child),
input[type="email"]:not(:last-child),
input[type="password"]:not(:last-child),
input[type="number"]:not(:last-child),
input[type="tel"]:not(:last-child),
textarea:not(:last-child),
select:not(:last-child) {
  margin-bottom: 24px;
}
input[type="text"]:required,
input[type="email"]:required,
input[type="password"]:required,
input[type="number"]:required,
input[type="tel"]:required,
textarea:required,
select:required {
  border-color: #c6cdd7;
}
input[type="text"].input-validation-error,
input[type="email"].input-validation-error,
input[type="password"].input-validation-error,
input[type="number"].input-validation-error,
input[type="tel"].input-validation-error,
textarea.input-validation-error,
select.input-validation-error {
  border-color: #941;
  color: #941;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: #00a7e1;
  color: #525e65;
}
textarea {
  padding: 12px;
  min-height: 96px;
}
textarea.textarea-large {
  min-height: 240px;
}
input[type="radio"],
input[type="checkbox"] {
  display: inline-block;
  position: relative;
  top: -0.1em;
}
label + input[type="radio"],
label + input[type="checkbox"] {
  margin-left: 24px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #1a3d6d;
  opacity: 0.9;
  -webkit-transition: color 0.15s ease-out, opacity 0.15s ease-out;
  transition: color 0.15s ease-out, opacity 0.15s ease-out;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
  display: inline-block;
  vertical-align: top;
  font-weight: 400;
}

label.required {
  color: #1a3d6d;
}
label.required::after {
  content: '*';
  font-weight: 400;
}
label.input-validation-error {
  color: #941;
}
label.is-selected {
  color: #bd9800;
}
label.is-focused {
  color: #00a7e1;
  opacity: 1;
}

.side-label {
  margin: 0;
}
.side-label:not(:last-child) {
  margin-bottom: 24px;
}

@media (min-width: 470px) {
  .side-label {
    padding-left: 168px;
  }
  .side-label label {
    width: 168px;
    float: left;
    margin-left: -168px;
    padding: 6px 1em 0 0;
  }
}


.field-validation-error {
  display: block;
  margin-bottom: 24px;
  font-size: 15px;
  color: #941;
}
input + .field-validation-error,
select + .field-validation-error,
textarea + .field-validation-error {
  margin-top: -18px;
}


/*! ---------- =tabs ---------- */

.tabs--standard:not(:last-child) {
  margin-bottom: 48px;
}
.tabs--standard .tabs__tab {
  display: inline-block;
  vertical-align: bottom;
  padding: 12px;
  margin-bottom: -1px;
  border: 1px solid #f1f1f1;
  background: #f1f1f1;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.tabs--standard .tabs__tab.is-active {
  background: #fff;
  border-bottom-color: #fff;
  color: #00a7e1;
}
.tabs--standard .tabs__pane {
  border: 1px solid #f1f1f1;
  padding: 24px;
  display: none;
}
.tabs--standard .tabs__pane.is-active {
  display: block;
}
.tabs--vertical {
  margin-bottom: 48px;
}
.tabs--vertical .tabs__tab {
  background: #f1f1f1;
  padding: 12px;
}
.tabs--vertical .tabs__tab.is-active {
  color: #00a7e1;
  background: #fff;
}
.js .tabs--vertical .tabs__pane:not(.is-active) {
  display: none;
}

@media (min-width: 470px) {
  .tabs--standard .tabs__tab {
    padding: 18px 24px;
    font-weight: 600;
  }
}

@media (max-width: 767px), (min-width: 960px) and (max-width: 1279px) {
  .tabs--standard,
  .tabs--vertical {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .tabs--standard .tabs__tab,
  .tabs--standard .tabs__pane,
  .tabs--vertical .tabs__tab,
  .tabs--vertical .tabs__pane {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .tabs--standard .tabs__tab,
  .tabs--vertical .tabs__tab {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    border: 1px solid #f1f1f1;
  }
  .tabs--standard .tabs__tab ~ .tabs__tab,
  .tabs--vertical .tabs__tab ~ .tabs__tab {
    margin-top: 6px;
  }
  .tabs--standard .tabs__tab.is-active,
  .tabs--vertical .tabs__tab.is-active {
    border-color: #d8d8d8 #d8d8d8 #f1f1f1;
  }
  .tabs--standard .tabs__tab:nth-child(2),
  .tabs--vertical .tabs__tab:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .tabs--standard .tabs__tab:nth-child(3),
  .tabs--vertical .tabs__tab:nth-child(3) {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .tabs--standard .tabs__tab:nth-child(4),
  .tabs--vertical .tabs__tab:nth-child(4) {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .tabs--standard .tabs__tab:nth-child(5),
  .tabs--vertical .tabs__tab:nth-child(5) {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .tabs--standard .tabs__tab:nth-child(6),
  .tabs--vertical .tabs__tab:nth-child(6) {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .tabs--standard .tabs__tab:nth-child(7),
  .tabs--vertical .tabs__tab:nth-child(7) {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .tabs--standard .tabs__tab:nth-child(8),
  .tabs--vertical .tabs__tab:nth-child(8) {
    -webkit-box-ordinal-group: 16;
    -ms-flex-order: 15;
    order: 15;
  }
  .tabs--standard .tabs__tab:nth-child(9),
  .tabs--vertical .tabs__tab:nth-child(9) {
    -webkit-box-ordinal-group: 18;
    -ms-flex-order: 17;
    order: 17;
  }
  .tabs--standard .tabs__tab:nth-child(10),
  .tabs--vertical .tabs__tab:nth-child(10) {
    -webkit-box-ordinal-group: 20;
    -ms-flex-order: 19;
    order: 19;
  }
  .tabs--standard .tabs__pane,
  .tabs--vertical .tabs__pane {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding: 24px 12px;
    border: 1px solid #d8d8d8;
    border-top-width: 0;
  }
  .tabs--standard .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 15;
    -ms-flex-order: 14;
    order: 14;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 17;
    -ms-flex-order: 16;
    order: 16;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 19;
    -ms-flex-order: 18;
    order: 18;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 21;
    -ms-flex-order: 20;
    order: 20;
  }
}

@media (min-width: 768px) and (max-width: 959px), (min-width: 1280px) {
  .tabs--standard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .tabs--standard::before {
    /* remove sf pseudoel that messes with space-between */
    display: none !important;
  }
  .tabs--standard .tabs__tab {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 18px 24px;
  }
  .tabs--standard.tabs--2 .tabs__tab {
    width: 48%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -ms-flex-preferred-size: calc(50% - 6px);
    flex-basis: calc(50% - 6px);
  }
  .tabs--standard.tabs--3 .tabs__tab {
    width: 31%;
    -ms-flex-preferred-size: 33.3%;
    flex-basis: 33.3%;
    -ms-flex-preferred-size: calc(33.3% - 6px);
    flex-basis: calc(33.3% - 6px);
  }
  .tabs--standard.tabs--4 .tabs__tab {
    width: 22%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    -ms-flex-preferred-size: calc(25% - 6px);
    flex-basis: calc(25% - 6px);
  }
  .tabs--standard.tabs--5 .tabs__tab {
    width: 17%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    -ms-flex-preferred-size: calc(20% - 6px);
    flex-basis: calc(20% - 6px);
  }
  .tabs--standard .tabs__pane {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  .tabs--vertical .tabs__tab {
    width: 300px;
    float: left;
    clear: left;
    padding: 11px 17px;
    margin-bottom: 6px;
    border: 1px solid #f1f1f1;
    border-right-color: #d8d8d8;
    box-shadow: inset 6px 0 0 #d8d8d8;
    cursor: pointer;
  }
  .tabs--vertical .tabs__tab.is-active {
    background: #fff;
    border-color: #d8d8d8 #fff #d8d8d8 #d8d8d8;
    box-shadow: inset 6px 0 0 #f2c300;
    cursor: default;
  }
  .tabs--vertical .tabs__pane {
    padding: 24px;
    background: #fff;
    border-left: 299px solid #fff;
    box-shadow: inset 0 0 0 1px #d8d8d8;
  }
  .tabs--vertical .tabs__pane::after {
    content: '';
    display: table;
    clear: both;
    margin: 30px 0 -30px;
  }
}


.accordion:not(:last-child) {
  margin-bottom: 48px;
}
.accordion__label {
  display: block;
  padding: 12px;
  background: #fff;
  border: 1px solid #f1f1f1;
  color: #525e65;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  overflow: hidden;
}
.accordion__label.is-active {
  color: #00a7e1;
  border-color: #00a7e1 #00a7e1 #f1f1f1 #00a7e1;
  background: #f7f7f7;
}
.accordion__label.is-active::after {
  -webkit-transform: translate(0.5em, -0.25em) rotate(135deg);
  -ms-transform: translate(0.5em, -0.25em) rotate(135deg);
  transform: translate(0.5em, -0.25em) rotate(135deg);
}
.accordion__label ~ .accordion__label {
  margin-top: 6px;
}
.accordion__content {
  border: 1px solid #00a7e1;
  border-top: none;
  padding: 24px 12px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  overflow: hidden;
}
.js .accordion__content:not(.is-active) {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0 1px;
  visibility: hidden;
  opacity: 0;
}


/*! ---------- =code and =syntax highlighting ---------- */

pre,
code {
  font-family: "Inconsolata", monospace;
  font-size: 15px;
  line-height: 24px;
}
pre {
  display: block;
  padding: 24px 12px;
  border: 1px solid #e7e7e7;
  color: #222;
  background: white;
  overflow-y: auto;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}
pre:not(:last-child) {
  margin-bottom: 24px;
}
pre::before {
  content: attr(rel);
  font-family: "Nunito Sans", "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #9dd7eb;
  position: absolute;
  top: 2px;
  right: 12px;
}
p > code,
li > code {
  background: #fbfbfb;
  font-style: normal;
}
p > code::before,
p > code::after,
li > code::before,
li > code::after {
  content: '';
  display: inline-block;
  width: 0.5em;
}

/*! syntax highlighting through prism: http://prismjs.com/index.html
*  the following is based off the default theme */

pre[class*="language-"] {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: slategray;
}

.token.punctuation {
  color: #999;
}

.namespace {
  opacity: 0.7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
  color: #905;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #a67f59;
  background: rgba(255, 255, 255, 0.5);
}

.token.atrule,
.token.attr-value,
.token.keyword {
  color: #07a;
}

.token.function {
  color: #dd4a68;
}

.token.regex,
.token.important,
.token.variable {
  color: #e90;
}
.token.important,
.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}


/*! ---------- =body ---------- */

body {
  width: 100%;
  overflow-x: hidden;
  background: #000;
}

.content {
  padding: 24px;
  background: #fff;
}

.page-bounds {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}


@media (min-width: 960px) {
  .content {
    padding: 312px 48px 48px;
  }
  .home-feature ~ .content,
  .home-callouts ~ .content {
    padding-top: 48px;
  }
}

@media (min-width: 1280px) {
  .content {
    padding-top: 264px;
  }
}


/*! ---------- =header, =nav ---------- */

.page-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 100;
}
.page-header .page-bounds {
  position: relative;
}
.page-header__toggle {
  display: none;
}
.page-header__meta,
.page-header__main {
  padding: 0 24px;
}
.page-header__meta {
  background: #fff;
}
.page-header__main {
  background: #000;
  color: #fff;
}
h1.page-header__title,
.page-header__title h1 {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5ex;
  color: #1a3d6d;
  opacity: 0.7;
}
.page-header__logos a {
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.page-header__logos a + a {
  margin-left: 12px;
}
.page-header__logos img {
  max-height: 50px;
}
.page-header__logo-title {
  width: 12em;
  padding: 6px;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 3px;
  margin-left: -6em;
  text-align: center;
  pointer-events: none;
  font-size: 13px;
  line-height: 1;
  color: #fff;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.page-header__logo-title::before,
.page-header__logo-title::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top-width: 0;
  border-bottom-color: #000;
  position: absolute;
  left: 50%;
  bottom: 100%;
  margin-left: -6px;
}
.page-header__logo-title::before {
  border-width: 0 7px 6px;
  margin-left: -7px;
  margin-bottom: 1px;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}
a:hover > .page-header__logo-title,
a:focus > .page-header__logo-title {
  opacity: 0.9;
  visibility: visible;
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}
.page-header__logo {
  float: left;
}
.page-header__logo a {
  display: block;
}
.page-header__logo img {
  width: 105px;
}
.page-header__info {
  font-weight: 300;
}
.page-header__nav a {
  display: block;
}
.page-header__nav li {
  position: relative;
}
.page-header__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 959px) {
  .page-header__meta {
    padding: 12px 0;
  }
  h1.page-header__title,
  .page-header__title h1 {
    text-align: center;
    font-size: 15px;
    opacity: 0.8;
  }
  .page-header__logos {
    margin-top: 12px;
    text-align: center;
  }
  .js .page-header__logos {
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
  }
  .page-header.is-active .page-header__logos {
    max-height: 74px;
    margin-top: 12px;
    opacity: 1;
  }
  .page-header__logos a + a {
    margin-left: 2vw;
  }
  .page-header__logo-title {
    display: none;
  }
  .page-header__logo a {
    padding: 6px 0;
  }
  .page-header__logo img {
    width: auto;
    height: 60px;
  }
  .page-header__info {
    margin-left: 72px;
    padding-top: 18px;
    line-height: 18px;
    font-size: 15px;
    opacity: 0.9;
  }
  .page-header__toggle {
    position: absolute;
    right: -24px;
    top: 0;
    padding: 24px 12px;
    font-size: 13px;
    color: #828282;
  }
  .page-header__toggle.is-active {
    color: #f2c300;
  }
  .js .page-header__toggle {
    display: block;
  }
  .page-header__toggle .toggle-indicator__piece::before {
    background: #fff;
  }
  .page-header__nav {
    clear: both;
    margin: 0 -24px;
  }
  .page-header__nav a {
    padding: 12px 96px 12px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
  }
  .page-header__nav li li a {
    padding-left: 48px;
    border-bottom-color: #f1f1f1;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
  }
  .page-header__nav li li li a {
    padding-left: 72px;
  }
  .js .page-header__nav {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.15s ease-out, max-height 0.3s cubic-bezier(0, 1, 0.5, 1);
    transition: all 0.15s ease-out, max-height 0.3s cubic-bezier(0, 1, 0.5, 1);
  }
  .page-header.is-active .page-header__nav {
    max-height: 720px;
    opacity: 1;
    -webkit-transition: all 0.15s ease-out, max-height 0.3s ease-in;
    transition: all 0.15s ease-out, max-height 0.3s ease-in;
  }
  .js .page-header__nav li ul {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.3s cubic-bezier(0, 0.5, 0, 1);
    transition: max-height 0.3s cubic-bezier(0, 0.5, 0, 1);
  }
  .js .page-header__nav li ul.is-active {
    max-height: 100em;
    -webkit-transition: max-height 0.4s cubic-bezier(0.7, 0, 0.1, 1);
    transition: max-height 0.4s cubic-bezier(0.7, 0, 0.1, 1);
  }
  .page-header__nav-toggle {
    width: 60px;
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
  }
  .js .page-header__nav-toggle {
    display: block;
  }
  .page-header__nav-toggle::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-width: 0;
    border-top-color: #a5a5a5;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    top: 50%;
    margin-top: -5px;
    -webkit-transform: scaleX(0.6);
    -ms-transform: scaleX(0.6);
    transform: scaleX(0.6);
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  }
  .page-header__nav-toggle.is-active::before {
    border-top-color: #f2c300;
    -webkit-transform: scaleX(0.6) rotateX(180deg);
    transform: scaleX(0.6) rotateX(180deg);
  }
}

@media (min-width: 960px) {
  .page-header {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.15s ease-out;
  }
  .page-header__meta {
    max-height: 144px;
    padding: 12px 48px;
    text-align: right;
    /*overflow: hidden;
    -webkit-transition: padding 0.15s ease-out, max-height 0.15s ease-out;
    transition: padding 0.15s ease-out, max-height 0.15s ease-out;*/
  }
  h1.page-header__title,
  .page-header__title h1 {
    /*! match small logo height */
    line-height: 50px;
    float: left;
  }
  .page-header__main {
    padding: 0 48px;
  }
  .page-header__logo a {
    padding: 12px 0;
    -webkit-transition: padding 0.15s ease-out;
    transition: padding 0.15s ease-out;
  }
  .page-header__logo img {
    -webkit-transition: width 0.15s ease-out;
    transition: width 0.15s ease-out;
  }
  .page-header__info {
    position: absolute;
    top: 0;
    left: 129px;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: left 0.15s ease-out;
  }
  .page-header__nav {
    margin-left: 129px;
    margin-right: -24px;
  }
  .page-header__nav a {
    color: #fff;
  }
  .page-header__nav-toggle {
    display: none;
  }
  .page-header__nav > ul {
    text-align: right;
  }
  .page-header__nav > ul > li {
    display: inline-block;
  }
  .page-header__nav > ul > li > a {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1ex;
    font-size: 16px;
    padding: 52.5px 24px;
    -webkit-transition: padding 0.15s ease-out, color 0.15s ease-out;
    transition: padding 0.15s ease-out, color 0.15s ease-out;
  }
  .page-header__nav > ul > li:hover > a,
  .page-header__nav > ul > li > a:focus {
    color: #00a7e1;
  }
  .page-header__nav > ul > li > ul {
    width: 15em;
    min-width: 100%;
    padding: 24px 0;
    position: absolute;
    top: 100%;
    right: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: none;
    background: #000;
    background: rgba(0, 0, 0, 0.9);
    z-index: -1;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  .page-header__nav > ul > li:hover > ul {
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
    opacity: 1;
  }
  .page-header__nav > ul > li:hover > ul::before {
    opacity: 1;
    -webkit-transition: opacity 0.15s ease 0.05s;
    transition: opacity 0.15s ease 0.05s;
  }
  .page-header__nav li li a {
    display: block;
    padding: 12px 24px;
  }
  .page-header__nav li li a:hover,
  .page-header__nav li li a:focus {
    color: #00a7e1;
  }

  /* sticky scroll styles */
  body.is-scrolled .page-header {
    position: fixed;
    /* hide top section (via transform to avoid jank) */
    transform: translateY(-75px);
  }
  body.is-scrolled .page-header__logo a {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  body.is-scrolled .page-header__logo img {
    width: 60px;
  }
  body.is-scrolled .page-header__info {
    left: 87px;
  }
  body.is-scrolled .page-header__nav > ul > li > a {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (min-width: 960px) and (max-width: 1152px) {
  .page-header__nav > ul > li > a {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 15px;
  }
}

@media (min-width: 960px) and (max-width: 1279px) {
  h1.page-header__title,
  .page-header__title h1 {
    float: none;
    line-height: 48px;
    text-align: center;
  }
  .page-header__info {
    display: block;
    height: auto;
    color: #525e65;
    left: 0;
    top: -48px;
  }
  .page-header__info br {
    display: none;
  }

  body.is-scrolled .page-header {
    transform: translateY(-124px);
  }
}

@media (min-width: 1280px) {
  .page-header__nav > ul > li + li::before {
    content: '';
    display: block;
    width: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: -webkit-linear-gradient(top, transparent 20%, rgba(255, 255, 255, 0.8) 50%, transparent 80%);
    background: linear-gradient(to bottom, transparent 20%, rgba(255, 255, 255, 0.8) 50%, transparent 80%);
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    z-index: 0;
    -webkit-transition: opacity 0.15s ease-out;
    transition: opacity 0.15s ease-out;
  }
}


/*! ---------- =footer ---------- */

.page-footer {
  padding: 48px 24px;
  color: #fff;
  background: #000 url("/images/librariesprovider2/site-layout/decorative/deco-footer.png") no-repeat 50% 50%;
  background-size: cover;
  text-align: center;
}
.page-footer .page-bounds {
  position: relative;
}
h1.page-footer__title,
.page-footer__title h1 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 36px;
  text-transform: uppercase;
  letter-spacing: 0.15ex;
  color: #fff;
}
.page-footer__meta {
  color: rgba(255, 255, 255, 0.7);
}
.page-footer__utility,
.page-footer__social {
  margin-top: 24px;
}
.page-footer__utility ul,
.page-footer__social ul {
  list-style: none;
  margin: 0;
}
.page-footer__utility a,
.page-footer__social a {
  display: block;
}
.page-footer__utility a {
  padding: 6px 12px;
  color: #f2c300;
  font-size: 18px;
  font-weight: 700;
}
.page-footer__utility a:hover,
.page-footer__utility a:focus {
  color: #00a7e1;
}
.page-footer__social li {
  display: inline-block;
}
.page-footer__social a {
  padding: 6px;
  opacity: 0.8;
}
.page-footer__social a:hover,
.page-footer__social a:focus {
  opacity: 1;
}
.page-footer__social img {
  max-width: 31px;
  max-height: 30px;
}

@media (min-width: 470px) {
  .page-footer__utility li {
    display: inline-block;
  }
}

@media (min-width: 960px) {
  .page-footer {
    padding: 72px 48px;
  }
  .page-footer__utility,
  .page-footer__social {
    margin: 0;
    position: absolute;
    top: 50%;
  }
  .page-footer__utility {
    left: 0;
  }
  .page-footer__social {
    right: 0;
  }
}

@media (min-width: 1280px) {
  .page-footer__utility,
  .page-footer__social {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}


/* ---------- =home ---------- */

.home-feature {
  min-height: 600px;
  min-height: 70vw;
  min-height: calc(100vh - 297px);
  position: relative;
  background: #000;
  color: #fff;
}
.home-feature__imagery {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.home-feature__imagery::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent url("/images/librariesprovider2/site-layout/decorative/deco-feature.png") no-repeat 50% 50%;
  background-size: contain;
  z-index: 2;
}
.home-feature__video,
.home-feature__fallback {
  display: block;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.home-feature__content {
  position: relative;
  z-index: 3;
  text-align: center;
}
.home-feature__title {
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1ex;
  text-shadow: 0 0 9px #000, 0 0 30px #000, 0 0 60px #000;
}
.home-feature__title-line {
  display: block;
}
.home-feature__title-line:first-child {
  font-weight: 400;
}
.home-feature__action {
  margin: 0 6px 6px;
}

@media (max-width: 469px) {
  .home-feature__title {
    font-size: 20px;
  }
  .home-feature__title-line:first-child {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .home-feature {
    min-height: 192px;
  }
  .home-feature__content {
    padding: 96px 24px;
    padding: 10vh 24px;
  }
}

@media (min-width: 768px) {
  .home-feature {
    height: 440px;
  }
  .home-feature__content {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    padding: 0 24px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .home-feature__title {
    margin-bottom: 48px;
    font-size: 44px;
    line-height: 60px;
  }
  .home-feature__title-line:first-child {
    font-size: 48px;
    margin-bottom: 12px;
  }
  .home-feature__action {
    padding: 18px 48px;
    margin: 0;
  }
  .home-feature__action + .home-feature__action {
    margin-left: 48px;
  }
}

@media (min-width: 960px) {
  .home-feature {
    margin-top: 246px;
  }
}

@media (min-width: 1280px) {
  .home-feature {
    margin-top: 198px;
  }
}


.home-callouts {
  padding: 0 24px;
  color: #fff;
  background: #000;
}
.home-callouts .grid__unit {
  text-align: center;
}
.home-callouts a {
  color: #f2c300;
}
.home-callouts .more::after {
  border-color: #f2c300;
}
.home-callouts .more:hover::after,
.home-callouts .more:focus::after {
  border-color: #00a7e1;
}
.home-callouts__image {
  margin-bottom: 24px;
}
.home-callouts__image a {
  display: block;
  overflow: hidden;
}
.home-callouts__image img {
  width: 100%;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.home-callouts__image:hover img,
.home-callouts__image:focus img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.home-callouts__title {
  margin-bottom: 36px;
  font-size: 32px;
  position: relative;
}
.home-callouts__title::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -18px;
  background-image: -webkit-linear-gradient(left, transparent 30%, rgba(255, 255, 255, 0.6) 50%, transparent 70%);
  background-image: linear-gradient(to right, transparent 30%, rgba(255, 255, 255, 0.6) 50%, transparent 70%);
}
.home-callouts__description {
  margin-bottom: 24px;
  text-align: justify;
  word-wrap: break-word;
  /*-webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;*/
}

@media (min-width: 960px) {
  .home-callouts {
    padding: 0 48px;
  }
}


.logo-row {
  list-style: none;
  padding: 0;
  margin: 0 0 72px;
  text-align: center;
}
.logo-row__logo {
  display: inline-block;
  vertical-align: middle;
  max-width: 49%;
}
.logo-row__logo a {
  display: block;
  padding: 12px;
}
.logo-row--organizers img {
  max-height: 75px;
}


/* ---------- =interior ---------- */

.page-title {
  color: #1a3d6d;
}

.interior-layout__title,
.interior-layout__nav,
.interior-layout__main {
  margin-bottom: 24px;
}

@media (min-width: 960px) {
  .interior-layout__nav,
  .interior-layout__main {
    margin-bottom: 48px;
  }
  .interior-layout__nav,
  .interior-layout__aside {
    width: 30%;
    float: right;
    clear: right;
    overflow: hidden;
  }
  .interior-layout__main {
    width: 70%;
    float: left;
    padding-right: 48px;
  }
}


.breadcrumbs {
  font-size: 15px;
  margin-bottom: 24px;
}
.breadcrumbs:last-child {
  margin-bottom: 0;
}
.breadcrumbs a {
  color: #525e65;
  opacity: 0.9;
}
.breadcrumbs a:hover,
.breadcrumbs a:focus {
  color: #f2c300;
  opacity: 1;
}
.breadcrumbs__separator {
  display: inline-block;
  margin: 0 0.3em;
  opacity: 0.4;
}
h1 + .breadcrumbs {
  margin-top: -12px;
}

.in-this-section a {
  display: block;
  padding: 6px 0;
}
.in-this-section ul {
  list-style: none;
  margin: 0;
}
.in-this-section ul ul {
  display: none;
  padding-left: 24px;
}
.in-this-section ul ul a {
  font-size: 15px;
}
.in-this-section .is-current > ul {
  display: block;
}
.in-this-section .is-current > a {
  color: #bd9800;
}

@media (max-width: 959px) {
  .in-this-section__toggle {
    display: block;
    width: 100%;
    margin-bottom: 24px;
    text-align: left;
  }
  .no-js .in-this-section__toggle {
    display: none;
  }
  .js .in-this-section > ul {
    display: none;
  }
  .js .in-this-section > ul.is-active {
    display: block;
    margin-top: 12px;
  }
}

@media (min-width: 960px) {
  .in-this-section__toggle {
    display: none;
  }
  .interior-layout .in-this-section {
    margin-top: -6px;
  }
}


/*! ---------- =print ---------- */

@media print {
  .page-header__toggle,
  .header-search,
  .header-utility,
  .header-nav,
  .in-this-section,
  .footer-logo,
  .footer-social,
  .footer-utility,
  .home-feature,
  .breadcrumbs,
  .share-buttons,
  .truncator-expand {
    display: none !important;
  }

  body {
    background: #fff;
  }


  @page {
    margin: 0.5in;
  }


  @page :first {
    margin-top: 1in;
  }


  @page :last {
    margin-bottom: 1in;
  }


  .page-bounds {
    max-width: 100%;
  }

  .page-header,
  .content,
  .page-footer {
    padding-left: 0;
    padding-right: 0;
  }

  h1,
  h2,
  h3,
  h4 {
    page-break-after: avoid;
  }

  blockquote,
  img,
  table,
  pre {
    page-break-inside: avoid;
  }

  ul,
  ol,
  dl {
    page-break-before: avoid;
  }

  .header-logo {
    float: none;
    max-width: 150px;
    margin: 0 auto;
    padding: 0;
  }

  .page-footer {
    border-top: 1px solid #f1f1f1;
  }

  .footer-contact {
    text-align: center;
  }

  .interior-layout__title,
  .interior-layout__nav,
  .interior-layout__main,
  .interior-layout__aside {
    float: none;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .interior-layout__aside {
    border-top: 1px solid #d8d8d8;
    padding-top: 48px;
  }

  .page-title {
    text-align: center;
  }

  .content a[href]:not([href^="#"]) {
    word-wrap: break-word;
    box-shadow: 0 2px 0 #00a7e1;
    color: #525e65;
    font-weight: 700;
  }
  .content a[href]:not([href^="#"])::after {
    content: " (" attr(href) ") ";
    font-size: 0.85em;
    color: #697881;
  }

  .tabs__pane {
    display: block !important;
  }

  .accordion__content {
    max-height: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  [data-truncate-to] {
    max-height: none !important;
    overflow: visible !important;
  }

  [data-truncate-to*="item"] > * {
    display: initial !important;
  }
}


/* ---------- =sitefinity ---------- */

.sys-template {
  display: none;
}

.sfContentBlock {
  margin-bottom: 24px;
}
.sfContentBlock:last-child {
  margin-bottom: 0;
}

/* For Solr debug */
.debug-url {
  background-color: #efe;
  border: 2px solid #2c2;
  padding:.5em;
  margin-bottom:.5em;
  word-wrap: break-word;
}

/* make it possible to actually edit global items in page builder view */
.sfPageEditor .page-header,
.sfPageEditor .page-header__meta,
.sfPageEditor .page-header__title,
.sfPageEditor .page-header__logos,
.sfPageEditor .page-header__main,
.sfPageEditor .page-header__logo,
.sfPageEditor .page-header__info,
.sfPageEditor .page-header__nav,
.sfPageEditor .page-footer,
.sfPageEditor .page-footer__info,
.sfPageEditor .page-footer__title,
.sfPageEditor .page-footer__meta,
.sfPageEditor .page-footer__utility,
.sfPageEditor .page-footer__social {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
  float: none !important;
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}
/* clamp page header in editor */
.sfPageEditor .page-header {
  position: static !important;
}
.sfPageEditor .content {
  padding-top: 48px !important;
}

/* space form builder fields */
.sf-fieldWrp > input,
.sf-fieldWrp > select,
.sf-fieldWrp > textarea,
.sf-fieldWrp > div > input,
.sf-fieldWrp > div > select,
.sf-fieldWrp > div > textarea {
  margin-bottom: 20px !important;
}
.sf_colsIn > .sf-fieldWrp > input:last-child,
.sf_colsIn > .sf-fieldWrp > select:last-child,
.sf_colsIn > .sf-fieldWrp > textarea:last-child {
  margin-bottom: 0 !important;
}

.sfInlineEditingPageMenu .sfInlineEditingToggleLnk {
  z-index: 1001 !important;
}

/* user-friendly tabs layout modules */
.sfPageEditor [data-edit-label]::before {
  content: '[' attr(data-edit-label) ']';
  font-size: 14px;
  opacity: 0.3;
}
.tabs.sf_cols {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.tabs__tab > .sf_colsIn, .tabs__pane > .sf_colsIn {
  margin: 0 !important;
}
.sfPageEditor .tabs--standard .tabs__tab {
  width: 100% !important;
  float: none !important;
}
.sfPageEditor .tabs.sf_cols .tabs__pane {
  display: block !important;
}
