/*
    HTML5 Reset :: style.css
    ----------------------------------------------------------
    We have learned much from/been inspired by/taken code where offered from:

    Eric Meyer                  :: http://meyerweb.com
    HTML5 Doctor                :: http://html5doctor.com
    and the HTML5 Boilerplate   :: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box;
}

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

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
    In fact, it *will* cause problems with Google Maps' controls at small size.
    If this is the case for you, try uncommenting the following:

#map img {
        max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
    you'll have to restore the bullets within content,
    which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: separate;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/**
 * vimeo-player.css
 *
 * CSS styles to accompany vimeo-player.js
 *
 * Repository URL: https://bitbucket.org/simplyaccessible/vimeo-player
 *
 * @author: Scott Vinkle <scott@simplyaccessible.com>
 * @version: 0.7.5
 */
/* Global */
.a11y-vimeo-player {
  line-height: 0;
  position: relative;
}

.a11y-vimeo-player * {
  box-sizing: border-box;
}

.a11y-vimeo-player__video {
  border: 0;
}

.a11y-vimeo-player__icon {
  fill: white;
}

/* Containers */
.a11y-vimeo-player__controls-container {
  background-color: #333;
  color: white;
  display: flex;
  flex-wrap: wrap;
  padding: 3px;
}

.a11y-vimeo-player__control-container,
.a11y-vimeo-player__icon-container,
.a11y-vimeo-player__track-list-label {
  align-items: center;
  display: flex;
  flex: 0 auto;
}

.a11y-vimeo-player__timeline-container {
  flex: 1 auto;
  position: relative;
}

.a11y-vimeo-player__timeline-wrapper {
  display: flex;
  flex: 1 auto;
}

.a11y-vimeo-player__volume-container {
  padding-left: 10px;
}

/* Buttons */
.a11y-vimeo-player__btn {
  background: transparent;
  border: solid transparent 1px;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding: 10px;
}

.a11y-vimeo-player__btn:hover,
.a11y-vimeo-player__btn:focus {
  background: transparent;
  border: solid transparent 1px;
  padding: 10px;
  transition: none;
}

/* Volume */
.a11y-vimeo-player__volume {
  max-width: 50px;
}

/* Timeline */
.a11y-vimeo-player__timeline {
  display: flex;
  flex: 1 auto;
  position: relative;
  z-index: 6;
}

.a11y-vimeo-player__timeline-output {
  display: inline-block;
  font-size: 14px;
  padding: 0 10px;
}

.a11y-vimeo-player__timeline-tooltip {
  bottom: 100%;
  background-color: black;
  display: none;
  font-size: 14px;
  left: 0;
  padding: 15px 10px;
  position: absolute;
  z-index: 5;
}

.a11y-vimeo-player__timeline-tooltip--active {
  display: block;
}

.a11y-vimeo-player__timeline-tooltip:before {
  content: "";
  border: transparent solid 10px;
  border-top: black solid 10px;
  left: 50%;
  margin-left: -10px;
  position: absolute;
  top: 100%;
}

.flex .a11y-vimeo-player__rng {
  -webkit-appearance: none;
  padding: 0;
}

.flex .a11y-vimeo-player__rng::-webkit-slider-runnable-track {
  border-bottom: 1px solid transparent;
  border-top: 1px solid transparent;
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  background: grey;
  position: relative;
  z-index: 3;
}

.flex .a11y-vimeo-player__rng::-webkit-slider-thumb {
  border: 1px solid transparent;
  height: 24px;
  width: 24px;
  border-radius: 100%;
  background: white;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -9px;
  position: relative;
  z-index: 4;
}

.flex .a11y-vimeo-player__rng::-moz-range-track {
  border-bottom: 1px solid transparent;
  border-top: 1px solid transparent;
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  background: grey;
  position: relative;
}

.flex .a11y-vimeo-player__rng::-moz-range-thumb {
  border: 1px solid transparent;
  height: 24px;
  width: 24px;
  border-radius: 100%;
  background: white;
  cursor: pointer;
  margin-top: -9px;
  position: relative;
  z-index: 4;
}

.flex .a11y-vimeo-player__rng::-ms-track {
  border-bottom: 1px solid transparent;
  border-top: 1px solid transparent;
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  color: transparent;
  border-color: transparent;
  border-width: 8px 0;
  position: relative;
  z-index: 3;
}

.flex .a11y-vimeo-player__rng::-ms-fill-lower {
  background: grey;
}

.flex .a11y-vimeo-player__rng::-ms-fill-upper {
  background: grey;
}

.flex .a11y-vimeo-player__rng::-ms-thumb {
  border: 1px solid transparent;
  height: 18px;
  width: 18px;
  border-radius: 100%;
  background: white;
  margin-top: 1px;
  position: relative;
  z-index: 4;
}

/* High Contrast for IE only style for the slider knob */
@media screen and (-ms-high-contrast: active) {
  .flex .a11y-vimeo-player__rng::-ms-thumb {
    background: #007faa;
  }
}
/* Focus styles */
.a11y-vimeo-player:focus,
.a11y-vimeo-player__btn:focus,
.a11y-vimeo-player__track-list-label--active,
.a11y-vimeo-player__rng:focus {
  outline: 3px solid #00ADEF;
}

.flex .a11y-vimeo-player__rng:focus::-webkit-slider-thumb {
  outline: 3px solid #00ADEF;
}

.flex .a11y-vimeo-player__rng:focus::-moz-range-thumb {
  outline: 3px solid #00ADEF;
}

.flex .a11y-vimeo-player__rng:focus::-ms-thumb {
  outline: 3px solid #00ADEF;
}

/* Tracks (closed caption) */
.a11y-vimeo-player__tracks-container {
  position: relative;
}

.a11y-vimeo-player__track-list {
  background-color: #222;
  bottom: 100%;
  display: none;
  left: 0;
  list-style-type: none;
  margin: 0;
  padding: 10px;
  position: absolute;
  min-width: 150px;
  z-index: 999;
}

@media only screen and (min-width: 511px) {
  .a11y-vimeo-player__track-list {
    left: auto;
    right: 0;
  }
}
.a11y-vimeo-player__track-list--active {
  display: block;
}

.a11y-vimeo-player__track-list-label {
  cursor: pointer;
  padding: 5px 0;
  width: 100%;
}

.a11y-vimeo-player__track-list-input {
  margin: 0 5px 0 0;
}

/* Fullscreen */
.a11y-vimeo-player--fullscreen {
  align-items: center;
  background-color: black;
  display: flex;
  height: 100%;
  margin-bottom: 0 !important;
  max-width: 100% !important;
  width: 100%;
}

.a11y-vimeo-player--fullscreen .a11y-vimeo-player__controls-container {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
}

/* No flex */
.no-flex .a11y-vimeo-player__control-container,
.no-flex .a11y-vimeo-player__icon-container,
.no-flex .a11y-vimeo-player__track-list-label,
.no-flex .a11y-vimeo-player__volume {
  float: left;
}

.no-flex .a11y-vimeo-player__mute-btn {
  float: right;
}

.no-flex .a11y-vimeo-player__timeline-wrapper {
  display: inline-block;
}

.no-flex .a11y-vimeo-player__timeline-tooltip {
  bottom: 100%;
}

/* Helper */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

@font-face {
  font-family: "klarheit";
  font-weight: 300;
  src: url("../../fonts/ESKlarheitGrotesk-Xlt.woff2") format("woff2"), url("../../fonts/ESKlarheitGrotesk-Xlt.woff") format("woff"), url("../../fonts/ESKlarheitGrotesk-Xlt.ttf") format("opentype");
}
@font-face {
  font-family: "klarheit";
  font-weight: 400;
  src: url("../../fonts/ESKlarheitGrotesk-Bk.woff2") format("woff2"), url("../../fonts/ESKlarheitGrotesk-Bk.woff") format("woff"), url("../../fonts/ESKlarheitGrotesk-Bk.otf") format("opentype");
}
@font-face {
  font-family: "klarheit";
  font-weight: 500;
  src: url("../../fonts/ESKlarheitGrotesk-Smbd.woff2") format("woff2"), url("../../fonts/ESKlarheitGrotesk-Smbd.woff") format("woff"), url("../../fonts/ESKlarheitGrotesk-Smbd.otf") format("opentype");
}
@font-face {
  font-family: "klarheit";
  font-weight: 700;
  src: url("../../fonts/ESKlarheitGrotesk-Xbd.woff2") format("woff2"), url("../../fonts/ESKlarheitGrotesk-Xbd.woff") format("woff"), url("../../fonts/ESKlarheitGrotesk-Xbd.otf") format("opentype");
}
footer input[type=submit], footer #mc_embed_signup h3, body.search section.body .wrapper .title, #recipients dt, #contact dt, #recipients #thead, #contact #thead, .grants main p > a:first-child:last-child, .home h3, #news .news-item .link, main .who, body > header.alert .button, input[type=submit], h4, a.btn {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.hidden {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.shown {
  border: 0;
  clip: auto;
  clip-path: none;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: normal;
}

html, body {
  font-size: 22px;
  line-height: normal;
}

main {
  font-size: 16px;
}

body, select, input, textarea {
  font-family: "klarheit", "Helvetica Neue", Helvetica, Helmet, Freesans, sans-serif;
  color: #001f5b;
}

.icon {
  display: inline-block;
  height: 1.75em;
  width: 1.75em;
  fill: #001f5b;
}
.icon + span {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.icon-link, .icon-link-sm {
  display: inline-block;
}
.icon-link span, .icon-link-sm span {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.icon-link {
  padding: 0.5rem;
}

a {
  color: #00b3e3;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}
a.btn {
  -webkit-appearance: none;
  display: inline-block;
  padding: 0.75em 1.25em;
  padding-bottom: 0.65em;
  text-transform: none;
  font-size: 0.85rem;
  font-weight: 500;
  background: #fff;
  color: #001f5b;
  border: 2px solid #001f5b;
  transition: 0.15s;
  cursor: pointer;
  line-height: normal;
}
a.btn:hover, a.btn:focus {
  background: #001f5b;
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}
a.btn:hover .icon, a.btn:focus .icon {
  fill: #fff;
}
a.btn .icon {
  height: 1.25em;
  width: 1.25em;
  vertical-align: middle;
  margin-right: 0.5em;
}
a.btn .icon-link-sm {
  height: 1.15em;
  width: 1.15em;
  margin-left: 1em;
  margin-right: 0;
  margin-top: -0.25em;
  vertical-align: baseline;
}

p, ul, ol {
  line-height: 1.4;
  margin: 1.33em 0;
}
p:first-child, ul:first-child, ol:first-child {
  margin-top: 0;
}
p:last-child, ul:last-child, ol:last-child {
  margin-bottom: 0;
}

p.btn {
  margin: 2em 0;
  text-align: center;
}

h1 {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.75em;
  letter-spacing: -0.0025em;
}

h2 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85em;
  margin-bottom: 1.5em;
  line-height: 1.4;
  letter-spacing: -0.0025em;
}

h3 {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.25em;
}

h4 {
  font-weight: 700;
  font-size: 0.8125em;
  line-height: 1.4;
  margin-bottom: 0.25em;
}

hr {
  border-color: rgba(0, 31, 91, 0.2);
  margin: 2.5em 0;
}

input[type=text], input[type=email], input[type=search], textarea {
  -webkit-appearance: none;
  padding: 1em;
  padding-bottom: 0.75em;
  font-size: 0.6667em;
  border: none;
}

input[type=submit] {
  -webkit-appearance: none;
  display: inline-block;
  padding: 0.75em 1.25em;
  padding-bottom: 0.65em;
  text-transform: none;
  font-size: 0.85rem;
  font-weight: 500;
  background: #fff;
  color: #001f5b;
  border: 2px solid #001f5b;
  transition: 0.15s;
  cursor: pointer;
  line-height: normal;
}
input[type=submit]:hover, input[type=submit]:focus {
  background: #001f5b;
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}
input[type=submit]:hover .icon, input[type=submit]:focus .icon {
  fill: #fff;
}
input[type=submit] .icon {
  height: 1.25em;
  width: 1.25em;
  vertical-align: middle;
  margin-right: 0.5em;
}
input[type=submit] .icon-link-sm {
  height: 1.15em;
  width: 1.15em;
  margin-left: 1em;
  margin-right: 0;
  margin-top: -0.25em;
  vertical-align: baseline;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  text-transform: uppercase;
  font-weight: 500;
  color: #001f5b;
}

::-moz-placeholder {
  /* Firefox 19+ */
  text-transform: uppercase;
  font-weight: 500;
  color: #001f5b;
}

:-ms-input-placeholder {
  /* IE 10+ */
  text-transform: uppercase;
  font-weight: 500;
  color: #001f5b;
}

:-moz-placeholder {
  /* Firefox 18- */
  text-transform: uppercase;
  font-weight: 500;
  color: #001f5b;
}

.wrapper {
  margin: 0 auto;
  max-width: 987px;
  padding: 0 1rem;
}

body > header#top:after, body > footer:after {
  content: " ";
  display: block;
  clear: both;
}
body > header#top .wrapper, body > footer .wrapper {
  max-width: 1440px;
}
body > header#top ul, body > header#top ol, body > footer ul, body > footer ol {
  list-style: none;
  margin: 0;
}
body > header#top ul li a, body > header#top ol li a, body > footer ul li a, body > footer ol li a {
  display: block;
}
body > header#top {
  position: fixed;
  width: 100%;
  min-height: 70px;
  top: 0;
  z-index: 200;
  padding: 0;
  background: #fff;
}
body > header#top + *, body > header#top + .alert.hidden + * {
  margin-top: 70px;
}
body > header#top a {
  color: #001f5b;
}
body > header#top a:hover, body > header#top a:focus {
  text-decoration: none;
}
body > header#top .wrapper {
  padding: 0;
  position: relative;
}
body > header#top .icon-link.logo {
  padding: 1rem;
  padding-top: 1.2rem;
  padding-bottom: 0.75rem;
}
body > header#top .icon-logo {
  display: block;
  width: 8.75em;
  height: 1em;
}
body > header#top.open {
  max-height: 100%;
  overflow: auto;
}
body > header#top.search li.search {
  display: none;
}
body > header#top #menu {
  display: block;
  float: right;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  transition: max-height 1s;
  height: 2.75rem;
  width: 2.85rem;
  cursor: pointer;
}
body > header#top #menu > * {
  display: inline-block;
  vertical-align: middle;
}
body > header#top #menu > span {
  display: none;
}
body > header#top #menu div {
  height: 15px;
  width: 1.2rem;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
body > header#top #menu div span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #001f5b;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
body > header#top #menu div span:nth-child(1) {
  top: 0px;
}
body > header#top #menu div span:nth-child(2), body > header#top #menu div span:nth-child(3) {
  top: 8px;
}
body > header#top #menu div span:nth-child(4) {
  top: 16px;
}
body > header#top #menu.open div span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
body > header#top #menu.open div span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
body > header#top #menu.open div span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
body > header#top #menu.open div span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
body > header#top #menu.open + nav {
  max-height: 15rem;
  visibility: visible;
  transition: visibility 0s, max-height 0.25s;
  overflow: auto;
}
body > header#top #skip {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  text-align: center;
  background: #001f5b;
  color: #fff;
  font-size: 0.83em;
  padding: 0.5em 0;
}
body > header#top #skip:focus {
  border: 0;
  clip: auto;
  clip-path: none;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: normal;
  position: absolute;
  top: 70px;
  left: 50%;
  width: 9rem;
  margin-left: -5rem;
}
body > header#top nav {
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: visibility 0.5s, max-height 0.25s;
}
body > header#top nav a.icon-link:hover, body > header#top nav a.icon-link:focus {
  border: none;
}
body > header#top nav ul {
  clear: left;
  font-size: 0.83em;
}
body > header#top nav li {
  border-top: 1px solid #fff;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
}
body > header#top nav li a {
  padding: 1em;
  padding-bottom: 0.85em;
}
body > header#top nav li a.icon-link * {
  vertical-align: middle;
}
body > header#top nav li a.icon-link span {
  border: 0;
  clip: auto;
  clip-path: none;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: normal;
}
body > header#top nav li.off {
  display: none;
}
body > header#top form {
  margin: 0.25rem 1rem 0.75rem;
  white-space: nowrap;
}
body > header#top form:after {
  content: " ";
  display: block;
  clear: both;
}
body > header#top form .icon-search {
  display: none;
}
body > header#top form input[type=search]::-webkit-search-decoration {
  border-radius: 0;
  -webkit-appearance: none;
}
body > header#top form input[type=search] {
  -webkit-appearance: none;
  border-radius: 0;
  outline-offset: -2px;
  display: inline-block;
  width: calc(100% - 4.75rem);
  text-transform: none;
  border: 2px solid #001f5b;
}
body > header#top form input[type=submit] {
  float: right;
}
body > header#top form.on {
  opacity: 1;
  visibility: visible;
}
body > header.alert {
  background: #ff5B35;
  background: #001f5b;
}
body > header.alert.hidden {
  display: none;
}
body > header.alert .wrapper {
  padding: 1rem 2.5rem;
  color: #fff;
  font-weight: bold;
  font-size: 0.85em;
  max-width: 1440px;
  text-align: center;
  position: relative;
}
body > header.alert p {
  margin-bottom: 0.75em;
}
body > header.alert .button {
  -webkit-appearance: none;
  display: inline-block;
  padding: 0.75em 1.25em;
  padding-bottom: 0.65em;
  text-transform: none;
  font-size: 0.85rem;
  font-weight: 500;
  background: #fff;
  color: #001f5b;
  border: 2px solid #001f5b;
  transition: 0.15s;
  cursor: pointer;
  line-height: normal;
}
body > header.alert .button:hover, body > header.alert .button:focus {
  background: #001f5b;
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}
body > header.alert .button:hover .icon, body > header.alert .button:focus .icon {
  fill: #fff;
}
body > header.alert .button .icon {
  height: 1.25em;
  width: 1.25em;
  vertical-align: middle;
  margin-right: 0.5em;
}
body > header.alert .button .icon-link-sm {
  height: 1.15em;
  width: 1.15em;
  margin-left: 1em;
  margin-right: 0;
  margin-top: -0.25em;
  vertical-align: baseline;
}
body > header.alert .hide {
  height: 1.2rem;
  width: 1.2rem;
  position: absolute;
  right: 0.9rem;
  top: 1rem;
  cursor: pointer;
}
body > header.alert .hide span {
  display: block;
  position: absolute;
  top: 0.5rem;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  opacity: 1;
  left: 0;
}
body > header.alert .hide span:first-child {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
body > header.alert .hide span:last-child {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
body > footer {
  padding: 1rem 0;
  background: #001f5b;
  color: #fff;
}
body > footer a {
  color: #fff;
}
body > footer .icon-link.logo {
  padding: 0;
  margin-bottom: 3em;
}
body > footer .icon-logo {
  display: block;
  width: 8.33em;
  height: 1em;
}
body > footer nav {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 1em;
  padding-top: 1em;
}
body > footer ul {
  font-size: 16px;
  margin-bottom: 2em;
  line-height: 1.5em;
}
body > footer p {
  margin: 0;
  padding-left: 1em;
  text-indent: -1em;
}
body > footer p.copyright {
  margin-top: 2em;
  font-size: 14px;
  font-weight: 300;
}
body > footer .social span {
  border: 0;
  clip: auto;
  clip-path: none;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: normal;
}
body > footer .icon {
  fill: #fff;
}
body > footer .icon-link-sm {
  width: 0.75em;
  height: 0.75em;
  padding: 0;
  margin-left: 0.33em;
}
body > footer .icon-link-sm + span {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
body > footer h4 {
  font-size: 1em;
}

.grants header.alert, .support header.alert {
  border-bottom: 1px solid #001f5b;
}

.stories header.alert {
  border-bottom: 1px solid #fff;
}

main {
  display: block;
  position: relative;
  overflow: hidden;
}
main .who {
  font-weight: bold;
  font-size: 0.8125em;
  margin: 0;
  margin-bottom: 0.25em;
}
main .who + p:not(.title) {
  margin-top: 0;
  font-size: 0.9375em;
}
main header {
  padding: 3em 0;
}

.intro {
  text-align: center;
  font-weight: 500;
  background: #00b3e3;
  min-height: calc(100vh - 70px - 50px);
  display: flex;
  overflow: hidden;
  position: relative;
}
.about .intro {
  background: #00C94B;
}
.stories .intro {
  background: #001f5b;
  color: #fff;
}
.grants .intro {
  background: #ff5B35;
}
.support .intro {
  background: #f65097;
}
.intro .wrapper {
  margin: auto;
  position: relative;
}
.intro h1 {
  margin: 0 auto;
  margin-bottom: 1.5em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9375em;
}
.intro h1 .icon {
  width: 250px;
  height: 200px;
}
.intro h1 + div {
  max-width: 20em;
  font-size: 1.75em;
  font-weight: 700;
}
.intro h1 + div p {
  line-height: 1.2;
}
.intro > figure {
  position: absolute;
}
.intro .circle1 {
  height: 442px;
  width: 442px;
  right: -322px;
  top: -162px;
}
.intro .square1 {
  height: 258px;
  width: 258px;
  left: -205px;
  top: 400px;
}
.intro .square2-solid {
  height: 345px;
  width: 100px;
  left: 0;
  top: 480px;
}
.home .intro .circle1-solid {
  visibility: hidden;
}
.who .intro .square1 {
  left: -316px;
  top: 140px;
  width: 364px;
  height: 364px;
}
.who .intro .circle1-solid {
  width: 195px;
  height: 195px;
  top: 415px;
  left: -54px;
}
.who .intro .circle1 {
  height: 193px;
  width: 193px;
  right: -30px;
  top: -40px;
}
.who .intro .square2-solid {
  width: 136px;
  height: 382px;
  left: auto;
  right: -88px;
  top: -179px;
}
.about .intro .square1 {
  width: 364px;
  height: 364px;
  top: 364px;
  left: -222px;
}
.about .intro .square1-solid {
  width: 330px;
  height: 94px;
  left: -65px;
  top: 455px;
}
.about .intro .circle1 {
  height: 265px;
  width: 265px;
  right: -103px;
  top: -85px;
}
.about .intro .circle1-solid {
  width: 160px;
  height: 160px;
  top: 90px;
  right: -72px;
}
.stories .intro .circle1 {
  height: 420px;
  width: 420px;
  left: -319px;
  top: 362px;
}
.stories .intro .square1 {
  height: 245px;
  width: 245px;
  left: auto;
  right: -102px;
  top: -78px;
}
.stories .intro .circle2-solid {
  height: 350px;
  width: 350px;
  right: -300px;
  top: 20px;
}
.grants .intro .circle1 {
  height: 355px;
  width: 355px;
  left: -285px;
  top: -70px;
}
.grants .intro .square1 {
  height: 255px;
  width: 255px;
  left: auto;
  right: -100px;
  top: 430px;
}
.grants .intro .circle1-solid {
  width: 225px;
  height: 225px;
  right: -135px;
  top: 310px;
}
.grants .intro .circle2-solid {
  height: 190px;
  width: 190px;
  left: -120px;
  top: 210px;
}
.support .intro .circle1 {
  height: 405px;
  width: 405px;
  right: -160px;
  top: -295px;
}
.support .intro .square1 {
  height: 410px;
  width: 410px;
  left: -350px;
  top: -72px;
}
.support .intro .circle2-solid {
  height: 215px;
  width: 215px;
  left: auto;
  right: -168px;
  top: 0;
}

section {
  padding: 2em 0;
}
section:after {
  content: " ";
  display: block;
  clear: both;
}

.slideshow-wrap {
  text-align: right;
}
.slideshow-wrap:after {
  content: " ";
  display: block;
  clear: both;
}
.slideshow-wrap .slideshow {
  width: 100%;
  padding-bottom: 120px;
  margin-bottom: 0;
}
@media screen and (min-width: 510px) {
  .slideshow-wrap .slideshow {
    padding-bottom: 60px;
  }
}
.slideshow-wrap .slideshow > li.vid {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  margin-bottom: 120px;
}
.slideshow-wrap .slideshow > li.vid > iframe, .slideshow-wrap .slideshow > li.vid .a11y-vimeo-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none !important;
}
.slideshow-wrap .slideshow > li.vid > iframe iframe, .slideshow-wrap .slideshow > li.vid .a11y-vimeo-player iframe {
  width: 100% !important;
  height: 100% !important;
}
@media screen and (min-width: 510px) {
  .slideshow-wrap .slideshow > li.vid {
    margin-bottom: 60px;
  }
}
.slideshow-wrap .slideshow > li.image {
  width: 100%;
  height: 100%;
  display: flex !important;
}
.slideshow-wrap .slideshow > li.image img {
  display: block;
  margin: auto;
  max-height: 100%;
}
.slideshow-wrap .count {
  float: left;
  margin-top: 0.5rem;
  margin-left: 1rem;
}
.slideshow-wrap .count span {
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 0.5rem;
  height: 0.625rem;
  width: 0.625rem;
  margin-right: 0.33rem;
}
.slideshow-wrap .count span.cycle-pager-active {
  background: #fff;
}
.slideshow-wrap .previous, .slideshow-wrap .next {
  display: inline-block;
  margin-top: 0.33rem;
  margin-right: 0.25em;
  cursor: pointer;
  transition: 0.15s;
}
.slideshow-wrap .previous:hover, .slideshow-wrap .previous:focus, .slideshow-wrap .next:hover, .slideshow-wrap .next:focus {
  opacity: 0.8;
}
.slideshow-wrap .previous .icon, .slideshow-wrap .next .icon {
  height: 1.75rem;
  width: 1.75rem;
}
.slideshow-wrap .next {
  margin-right: 1rem;
}

#stories {
  background: #001f5b;
  color: #fff;
  text-align: center;
  padding-top: 0;
}
#stories .slideshow-wrap {
  margin-bottom: 0.5em;
}
#stories .slideshow-wrap:has(li:first-child:last-child) {
  margin-bottom: 2em;
}
#stories .slideshow-wrap:has(li:first-child:last-child) .count, #stories .slideshow-wrap:has(li:first-child:last-child) .previous, #stories .slideshow-wrap:has(li:first-child:last-child) .next {
  display: none;
}
#stories .slideshow-wrap li.image {
  background: #001f5b;
}
#stories p {
  max-width: 25.5rem;
  margin-left: auto;
  margin-right: auto;
}
#stories .title {
  font-size: 1.1667em;
  font-weight: 500;
  margin-top: 0.75em;
  margin-bottom: 0.5em;
  max-width: 25rem;
}
#stories .title + p {
  margin-top: 0.5em;
  font-size: 0.833em;
  max-width: 22rem;
}
#stories .title + p:after {
  content: "";
  display: block;
  margin: 1em auto 0;
  height: 2px;
  width: 2em;
  background: #fff;
}

#about {
  background: #00C94B;
  text-align: center;
}
#about .wrapper {
  max-width: 35em;
}
#about .wrapper > figure {
  max-height: 330px;
  max-width: 330px;
  margin: 0 auto 2em;
  border-radius: 50%;
  overflow: hidden;
}
#about .wrapper > figure img {
  display: block;
}
#about .wrapper > div {
  margin-bottom: 3em;
}
#about .wrapper > div figure {
  background: #fff;
  vertical-align: middle;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  display: inline-flex;
  overflow: hidden;
}
#about .wrapper > div figure img {
  margin: auto;
  width: 100%;
  height: 100%;
}
#about .wrapper > div div {
  margin-top: 1.5em;
}
#about h3 {
  text-align: left;
  font-size: 1.25em;
  margin-bottom: 0.5em;
}
#about h3 + p {
  margin-top: 0;
}

.about #about .wrapper > div:first-child {
  margin-top: 1em;
}
.about #about h2 {
  text-align: left;
  text-transform: none;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.25em;
}

#news {
  background: #f65097;
  text-align: center;
}
#news h2 {
  margin-bottom: 1.5em;
}
#news .news-item {
  margin-bottom: 1em;
  background: #fff;
  text-align: left;
  padding: 1.25em;
  vertical-align: top;
  font-size: 0.9375em;
}
#news .news-item.twitter {
  background: none;
  padding: 0;
}
#news .news-item.twitter .wrapper {
  background: #fff;
  padding: 1.25em;
}
#news .news-item .disclaimer {
  margin-top: 0.15em;
}
#news .news-item .disclaimer p {
  font-size: 0.83em;
}
#news .news-item img {
  margin: -1.25em -1.25em 0 -1.25em;
  max-width: calc(100% + 2.5em);
}
#news .news-item .date {
  font-size: 1.06em;
  font-weight: 700;
  margin-bottom: 0.75em;
}
#news .news-item .date + p {
  margin-top: 0;
}
#news .news-item .title {
  font-size: 1.33em;
  font-weight: 500;
  margin: 0;
  margin-bottom: 0.25em;
}
#news .news-item .title + p {
  margin-top: 0;
}
#news .news-item p:nth-last-child(2) {
  margin-bottom: 0;
}
#news .news-item .link {
  font-size: 0.85em;
  text-align: right;
  margin-top: 0.75em;
}
#news .news-item .link a {
  color: #001f5b;
  font-weight: 700;
}
#news .news-item .icon-link-sm {
  height: 1.15em;
  width: 1.15em;
  margin-left: 0.33em;
  vertical-align: baseline;
}
#news .wrapper > .btn {
  margin-top: 2em;
}

.home h3 {
  font-size: 0.8125em;
  line-height: 1.4;
  margin-bottom: 0.25em;
}
.home .intro h1 + div {
  max-width: 15em;
}
.home #about {
  position: relative;
}
.home #about h2 {
  margin-bottom: 1em;
}
.home #about h2 + p {
  font-size: 1.75em;
  font-weight: 700;
  margin: 0.5em auto 2em;
  max-width: 32.5rem;
  line-height: 1.2;
}
.home #about p {
  font-weight: 500;
  font-size: 1.25em;
}
.home #about > figure {
  position: absolute;
}
.home #about .wrapper {
  position: relative;
}
.home #about .square1 {
  left: -316px;
  top: -500px;
  width: 364px;
  height: 364px;
}
.home #about .circle1 {
  height: 265px;
  width: 265px;
  right: -150px;
  top: -85px;
}
.home #about .circle1-solid {
  width: 160px;
  height: 160px;
  top: 750px;
  left: -72px;
}
.home #about .square2 {
  left: -175px;
  top: 500px;
  width: 225px;
  height: 225px;
}
.home #about .circle2-solid {
  width: 400px;
  height: 400px;
  top: 2850px;
  left: -180px;
}
.home #news {
  position: relative;
}
.home #news > figure {
  position: absolute;
}
.home #news .wrapper {
  position: relative;
}
.home #news .circle1 {
  height: 330px;
  width: 330px;
  right: -180px;
  top: -1600px;
}
.home #news .circle1-solid {
  width: 230px;
  height: 230px;
  top: 3600px;
  left: -50px;
}
.home #news .square1 {
  left: -70px;
  top: -400px;
  width: 260px;
  height: 260px;
}

.vid {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  margin-bottom: 120px;
}
.vid > iframe, .vid .a11y-vimeo-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none !important;
}
.vid > iframe iframe, .vid .a11y-vimeo-player iframe {
  width: 100% !important;
  height: 100% !important;
}
@media screen and (min-width: 510px) {
  .vid {
    margin-bottom: 60px;
  }
}

#featured {
  padding: 0;
}
#featured .image {
  background: #001f5b;
}

.image img {
  display: block;
  margin: 0 auto;
  max-height: calc(100vh - 70px);
}

article .wrapper {
  padding-top: 1rem;
  margin-bottom: 3rem;
  max-width: 20rem;
}
article .wrapper > div:first-child .btn {
  display: none;
}
article h3 a {
  color: #001f5b;
}
article .who, article .text {
  padding-top: 1em;
}
article .who {
  margin-top: 1em;
  border-top: 0.05rem solid #001f5b;
}
article .who:first-of-type {
  border-width: 0.1rem;
}
article .who + p {
  margin-bottom: 0;
  font-size: 0.9375em;
}
article .text {
  margin-top: 0.75em;
  font-size: 0.9375em;
  border-top: 0.05rem solid #001f5b;
}
article .body {
  margin-bottom: 1.5em;
}

#more {
  background: rgba(0, 31, 91, 0.05);
  padding: 1.5rem 0 2.5rem;
}
#more .title {
  font-size: 1.25em;
  font-weight: 500;
  margin: 0;
  margin-bottom: 0.15em;
}
#more .title a {
  color: #001f5b;
}
#more .who {
  border-top: 0.1rem solid #001f5b;
  padding-top: 1em;
  margin-top: 0.75em;
  margin-bottom: 0.15em;
}
#more article {
  margin-bottom: 2em;
}
#more article a {
  display: block;
  text-align: center;
}
#more article a:hover + * + .title {
  text-decoration: underline;
}
#more article p a {
  display: inline;
  text-align: left;
}
#more article .text {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
#more img {
  display: inline-block;
}

.about #about {
  background: rgba(0, 31, 91, 0.05);
}
.about #about p, .about #about ul, .about #about ol {
  text-align: left;
}
.about #about ul {
  list-style: disc;
  margin-left: 1.5em;
}
.about #about ol {
  list-style: decimal;
  margin-left: 1.5em;
}

.story .embed-wrap {
  max-height: calc(100vh - 70px);
  background: #001f5b;
  margin: 0 auto;
}
.story .slideshow-wrap .count {
  max-width: calc(100% - 6.25rem);
  text-align: left;
}
.story .slideshow-wrap .count span {
  border-color: #001f5b;
}
.story .slideshow-wrap .count span.cycle-pager-active {
  background: #001f5b;
}
.story article .social {
  margin-top: 0.5rem;
}
.story article .social li {
  display: inline-block;
  margin-right: 0.75rem;
}
.story article .social li:last-child {
  margin-right: 0;
}
.story article .social .icon {
  height: 0.85rem;
  width: 0.85rem;
}

.grants main p, .grants main dl {
  font-size: 0.9375em;
}
.grants main p > a:first-child:last-child {
  -webkit-appearance: none;
  display: inline-block;
  padding: 0.75em 1.25em;
  padding-bottom: 0.65em;
  text-transform: none;
  font-size: 0.85rem;
  font-weight: 500;
  background: #fff;
  color: #001f5b;
  border: 2px solid #001f5b;
  transition: 0.15s;
  cursor: pointer;
  line-height: normal;
}
.grants main p > a:first-child:last-child:hover, .grants main p > a:first-child:last-child:focus {
  background: #001f5b;
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}
.grants main p > a:first-child:last-child:hover .icon, .grants main p > a:first-child:last-child:focus .icon {
  fill: #fff;
}
.grants main p > a:first-child:last-child .icon {
  height: 1.25em;
  width: 1.25em;
  vertical-align: middle;
  margin-right: 0.5em;
}
.grants main p > a:first-child:last-child .icon-link-sm {
  height: 1.15em;
  width: 1.15em;
  margin-left: 1em;
  margin-right: 0;
  margin-top: -0.25em;
  vertical-align: baseline;
}
.grants main p > a:first-child:last-child .icon-link-sm {
  fill: #001f5b;
}

section.body h2, section.body h3, section.cta h2, section.cta h3 {
  text-transform: none;
  font-weight: 500;
  font-size: 1.25em;
  margin-bottom: 0.75em;
}
section.body h2 + p, section.body h3 + p, section.cta h2 + p, section.cta h3 + p {
  margin-top: 0;
}
section.body h3, section.cta h3 {
  font-size: 1em;
}
section.body ul, section.body ol, section.cta ul, section.cta ol {
  margin-left: 1.85em;
}
section.body ul li, section.body ol li, section.cta ul li, section.cta ol li {
  padding-left: 0.15em;
}
section.body ul ul, section.body ul ol, section.body ol ul, section.body ol ol, section.cta ul ul, section.cta ul ol, section.cta ol ul, section.cta ol ol {
  margin-top: 0;
  margin-bottom: 0.1em;
}
section.body ul p + ul, section.body ul p + ol, section.body ol p + ul, section.body ol p + ol, section.cta ul p + ul, section.cta ul p + ol, section.cta ol p + ul, section.cta ol p + ol {
  margin-top: -1.15em;
}
section.body ul, section.cta ul {
  list-style: disc;
}
section.body ol, section.cta ol {
  list-style: decimal;
}

section.cta {
  background: rgba(0, 31, 91, 0.05);
  text-align: center;
}
section.cta + .cta {
  margin-top: 0.1666rem;
}
section.cta h2 + p {
  margin-left: auto;
  margin-right: auto;
  max-width: 30em;
  line-height: 1.2;
}
section.cta p.btn {
  margin-top: 2em;
}
section.cta p:last-child {
  margin-bottom: 0;
}

.body a:not(.btn) .icon-link-sm {
  height: 0.75em;
  width: 0.75em;
  margin-left: 0.25em;
  fill: #00b3e3;
}

.who section.body {
  text-align: center;
  font-weight: 500;
  font-size: 1.33em;
}

#team figure, .team .body figure {
  border-radius: 50%;
  overflow: hidden;
}
#team figure img, .team .body figure img {
  display: block;
  filter: brightness(87%) contrast(105%) sepia(100%) hue-rotate(190deg);
}
#team p, .team .body p {
  font-size: 0.9375em;
}
#team .name, .team .body .name {
  font-weight: 700;
  margin-top: 0.75em;
  margin-bottom: 0;
}
#team .position, #team .affiliation, .team .body .position, .team .body .affiliation {
  margin: 0;
}
#team a, .team .body a {
  color: #001f5b;
}
#team a:hover, #team a:focus, .team .body a:hover, .team .body a:focus {
  text-decoration: none;
}
#team a:hover .name, #team a:focus .name, .team .body a:hover .name, .team .body a:focus .name {
  text-decoration: underline;
}

#team {
  background: rgba(0, 31, 91, 0.05);
  padding: 2em 0;
}
#team ul {
  text-align: center;
}
#team li {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  margin-left: -0.25em;
  margin-bottom: 2em;
  padding: 0 0.5em;
}
#team li:nth-child(odd) {
  margin-left: 0;
  padding-left: 0;
}
#team li:nth-child(even) {
  padding-right: 0;
}
#team li:not(:has(figure)) {
  vertical-align: middle;
}

.team .body .name {
  font-size: 1.75em;
}
.team .body .position, .team .body .affiliation {
  font-size: 1.25em;
  font-weight: 500;
}
.team .body figure {
  max-width: 300px;
  margin: 0 auto;
  margin-bottom: 1em;
}
.team .body .wrapper {
  text-align: center;
}

#recipients .body, #contact .body {
  max-width: calc(740.25px - 2rem);
}
#recipients #thead, #contact #thead {
  border-top: 1px solid #001f5b;
  border-bottom: 1px solid #001f5b;
  font-size: 0.8125em;
  font-weight: 700;
  margin: 2.5em 0;
  display: none;
}
#recipients #thead ul, #contact #thead ul {
  margin-top: 1.5em;
  margin-bottom: 1.25em;
  list-style: none;
}
#recipients h3, #contact h3 {
  font-size: 1em;
  font-weight: 700;
  margin: 1.5em 0 0.5em;
}
#recipients dl, #contact dl {
  line-height: 1.4;
  border-top: 0.1em solid #001f5b;
  padding-top: 0.75em;
  margin-bottom: 2em;
}
#recipients dt, #contact dt {
  font-weight: bold;
  font-size: 0.8125em;
  border-top: 1px solid rgba(0, 31, 91, 0.2);
  padding-top: 1em;
  margin-top: 1em;
}
#recipients dt:first-child, #contact dt:first-child {
  border: 0;
  margin-top: 0;
  padding-top: 0;
}
#recipients dd, #contact dd {
  padding-right: 0.75rem;
  font-weight: 700;
}
#recipients dd.location, #contact dd.location {
  font-weight: normal;
}

.past-grants #recipients {
  margin-top: 70px;
}
.past-grants #recipients h1 {
  text-align: center;
}

.support section.body {
  text-align: center;
}
.support section.body hr {
  border-color: #001f5b;
  margin: 3.5em 0;
}

body.search main header {
  padding: 3em 0;
  border-bottom: 0.1em solid #001f5b;
}
body.search main header h1 {
  margin-bottom: 0.25em;
}
body.search main header h1 + p {
  margin-top: 0;
}
body.search section.body .wrapper {
  max-width: 987px;
}
body.search section.body .wrapper ul {
  list-style: none;
  margin-left: 0;
}
body.search section.body .wrapper li {
  padding-bottom: 2.5em;
  margin-bottom: 2.5em;
  border-bottom: 1px solid #001f5b;
}
body.search section.body .wrapper li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
body.search section.body .wrapper .title {
  font-weight: bold;
  margin-bottom: 0.5em;
}
body.search section.body .wrapper .title a {
  color: #001f5b;
}
body.search section.body .wrapper .title + p {
  margin-top: 0;
}
body.search section.body .wrapper .title .icon-link-sm {
  fill: #001f5b;
}

@media screen and (min-width: 600px) {
  body > footer ul {
    display: inline-block;
  }
  body > footer ul:last-child {
    float: right;
  }
  body > footer p.copyright {
    float: right;
    clear: right;
    margin-top: 0;
    min-width: 192px;
  }

  #news .news-item, #news .news-sizer {
    width: 48.9868287741%;
    display: inline-block;
  }
  #news .twitter {
    right: 0 !important;
    left: auto !important;
  }
  #news .news-gutter {
    width: 2.0263424519%;
  }

  article .wrapper {
    max-width: 28.25rem;
  }
  article .wrapper > div {
    display: inline-block;
    vertical-align: top;
  }
  article .wrapper > div:first-child {
    width: 60.4736575481%;
    margin-right: 4.0526849037%;
  }
  article .wrapper > div:first-child .btn {
    display: inline-block;
    margin-top: 2.5em;
  }
  article .wrapper > div:last-child {
    width: 35.4736575481%;
    margin-left: -0.25em;
  }
  article .wrapper > div:last-child p.btn {
    display: none;
  }
  article h1 {
    font-weight: 700;
  }
  article h1, article h3 {
    font-size: 1.75em;
    margin-top: 0.3em;
    line-height: 1.2;
  }
  article .who:first-of-type {
    margin-top: 0;
  }
  article .text {
    border-top-width: 1px;
    margin-top: 0.5em;
    padding-top: 0.75em;
  }

  #more article {
    width: 48.9868287741%;
    display: inline-block;
    vertical-align: top;
    margin-left: -0.25em;
    margin-right: 2.0263424519%;
  }
  #more article:nth-of-type(odd) {
    margin-left: 0;
  }
  #more article:nth-of-type(even) {
    margin-right: 0;
  }

  section.body, section.cta {
    padding: 4em 0;
  }
  section.body .wrapper, section.cta .wrapper {
    padding: 0 15%;
  }
  section.body .wrapper h2, section.cta .wrapper h2 {
    font-size: 1.75em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
  }

  #team li {
    width: 33.33%;
  }
  #team li:nth-child(odd), #team li:nth-child(even) {
    margin-left: -0.25em;
    padding: 0 0.75em;
  }
  #team li:nth-child(3n-2) {
    margin-left: 0;
  }

  .team .body .wrapper {
    max-width: 987px;
    padding: 0 1rem;
  }
  .team .body figure {
    display: inline-block;
    vertical-align: middle;
    margin-left: 1em;
  }
  .team .body figure:first-child {
    margin-left: 0;
  }

  .support section.body p {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  #about .wrapper {
    max-width: 987px;
  }
  #about .wrapper ul, #about .wrapper ol {
    margin-left: 0;
  }
  #about .wrapper > div {
    display: inline-flex;
    align-items: center;
  }
  #about .wrapper > div figure {
    width: 345px;
    height: 345px;
  }
  #about .wrapper > div div {
    width: 350px;
    margin-top: 0;
    margin-left: 2rem;
    text-align: left;
  }

  #recipients, #contact {
    padding: 2.5em 0;
  }
  #recipients #thead, #contact #thead {
    display: block;
  }
  #recipients #thead ul, #recipients dl, #contact #thead ul, #contact dl {
    display: flex;
  }
  #recipients #thead ul li, #recipients #thead ul dd, #recipients dl li, #recipients dl dd, #contact #thead ul li, #contact #thead ul dd, #contact dl li, #contact dl dd {
    flex: 4;
  }
  #recipients #thead ul .year, #recipients dl .year, #contact #thead ul .year, #contact dl .year {
    flex: 1.5;
  }
  #recipients #thead ul .location, #recipients dl .location, #contact #thead ul .location, #contact dl .location {
    flex: 3;
  }
  #recipients #thead ul .btn, #recipients dl .btn, #contact #thead ul .btn, #contact dl .btn {
    font-size: 0.6em;
    padding: 0.75em 1em 0.55em;
    margin-top: 0.75em;
  }
  #recipients dl, #contact dl {
    border-top: 0;
    padding-top: 0;
    border-bottom: 1px solid rgba(0, 31, 91, 0.2);
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
    margin-left: 12.5%;
  }
  #recipients dt, #contact dt {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
  }
  #recipients h3, #contact h3 {
    width: 12.5%;
    float: left;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1005px) {
  main {
    font-size: 22px;
  }

  h2 {
    font-size: 0.85em;
  }

  body > header#top #skip:focus {
    top: 76px;
    left: 0.85rem;
    margin-left: 0;
    font-size: 0.8125em;
  }
  body > header#top .icon-link.logo {
    padding-bottom: 0.75rem;
  }
  body > header#top .icon-logo {
    width: 10em;
    height: 1.25em;
  }
  body > header#top #menu {
    display: none;
    margin-top: 0.15em;
    right: 0.15em;
    transform: scale(0.75);
  }
  body > header#top.search li.search {
    display: inline-block;
  }
  body > header#top nav {
    margin-top: 0;
    background: none;
    float: right;
    padding: 0.9rem 1rem 0.8em 0;
    visibility: visible;
    overflow: visible;
    max-height: none;
  }
  body > header#top nav a:hover, body > header#top nav a:focus {
    border-bottom: 2px solid #001f5b;
  }
  body > header#top nav ul {
    font-size: 0.667em;
    line-height: 1.1em;
    clear: none;
    margin-top: 0.35em;
    padding: 0.4rem 0;
  }
  body > header#top nav ul.open {
    max-height: none;
  }
  body > header#top nav li {
    display: inline-block;
    vertical-align: top;
    margin-right: 1.5em;
    text-align: left;
    border: 0;
    font-weight: bold;
  }
  body > header#top nav li:last-child {
    margin-right: 0;
  }
  body > header#top nav li a {
    padding: 0;
    cursor: pointer;
    display: block;
  }
  body > header#top nav li a.icon-link {
    margin-top: -0.45em;
  }
  body > header#top nav li a.icon-link span {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
  }
  body > header#top form {
    margin: 0;
    white-space: nowrap;
  }
  body > header#top form .icon-search {
    display: inline-block;
    vertical-align: middle;
    height: 1.25rem;
    width: 1.25rem;
  }
  body > header#top form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-weight: bold;
  }
  body > header#top form ::-moz-placeholder {
    /* Firefox 19+ */
    font-weight: bold;
  }
  body > header#top form :-ms-input-placeholder {
    /* IE 10+ */
    font-weight: bold;
  }
  body > header#top form :-moz-placeholder {
    /* Firefox 18- */
    font-weight: bold;
  }
  body > header#top form input {
    font-weight: bold;
  }
  body > header#top form input[type=search] {
    margin-right: 0.5em;
    font-size: 0.667em;
    -webkit-appearance: textfield;
  }
  body > header#top form input[type=submit] {
    float: none;
  }
  body > header.alert .wrapper {
    padding-top: 1.25rem;
    padding-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body > header.alert p {
    margin-bottom: 0;
    margin-right: 1.5em;
  }
  body > header.alert .hide {
    top: 1.25rem;
  }
  body > footer {
    padding: 1.5em 0 1.25em;
  }
  body > footer p, body > footer ul, body > footer li {
    display: inline-block;
    vertical-align: top;
  }
  body > footer .icon-link.logo {
    margin-bottom: 1.5em;
  }
  body > footer .icon-logo {
    width: 12.41em;
    height: 1.333em;
  }
  body > footer .info {
    float: left;
  }
  body > footer form {
    min-width: 21.5em;
  }
  body > footer input[type=email], body > footer input[type=text] {
    margin-right: 0.15rem;
    width: calc(100% - 5.65rem);
  }
  body > footer nav {
    padding-top: 0;
    margin-top: 0;
    border: 0;
    float: right;
    width: 50%;
  }
  body > footer ul {
    font-size: 16px;
  }
  body > footer li {
    display: block;
  }

  main .who {
    font-size: 0.667rem;
  }
  main .who + p:not(.title) {
    font-size: 1rem;
  }

  .intro h1 {
    font-size: 1em;
  }
  .intro h1 .icon {
    width: 350px;
    height: 248px;
  }
  .intro .circle1 {
    width: 600px;
    height: 600px;
    right: -215px;
    top: -227px;
  }
  .intro .circle1-solid {
    width: 322px;
    height: 322px;
    right: -204px;
    top: 227px;
  }
  .intro .square1 {
    width: 350px;
    height: 350px;
    top: 470px;
    left: -150px;
  }
  .intro .square2-solid {
    width: 135px;
    height: 467px;
    top: 550px;
    left: 140px;
  }
  .home .intro .circle1-solid {
    visibility: visible;
  }
  .who .intro .square1 {
    width: 600px;
    height: 600px;
    top: 150px;
    left: -300px;
  }
  .who .intro .circle1-solid {
    width: 320px;
    height: 320px;
    top: 600px;
    left: 180px;
  }
  .who .intro .circle1 {
    width: 320px;
    height: 320px;
    right: 20px;
    top: -100px;
  }
  .who .intro .square2-solid {
    width: 225px;
    height: 620px;
    right: -115px;
    top: -310px;
  }
  .about .intro .square1 {
    width: 300px;
    height: 300px;
    top: 291px;
    left: -124px;
  }
  .about .intro .square1-solid {
    left: -30px;
    top: 438px;
  }
  .about .intro .circle1 {
    height: 375px;
    width: 375px;
    right: -95px;
    top: -134px;
  }
  .about .intro .circle1-solid {
    width: 225px;
    height: 225px;
    top: 110px;
    right: -58px;
  }
  .stories .intro .circle1 {
    height: 600px;
    width: 600px;
    left: -400px;
    top: 362px;
  }
  .stories .intro .square1 {
    height: 350px;
    width: 350px;
    right: -100px;
    top: -200px;
  }
  .stories .intro .circle2-solid {
    height: 500px;
    width: 500px;
    right: -380px;
    top: -50px;
  }
  .stories .intro h1 + div {
    max-width: 16em;
  }
  .grants .intro .circle1 {
    height: 600px;
    width: 600px;
    left: -464px;
    top: -70px;
  }
  .grants .intro .square1 {
    height: 350px;
    width: 350px;
    left: auto;
    right: -143px;
    top: 415px;
  }
  .grants .intro .circle1-solid {
    width: 322px;
    height: 322px;
    right: -134px;
    top: 235px;
  }
  .grants .intro .circle2-solid {
    height: 322px;
    width: 322px;
    left: -186px;
    top: 360px;
  }
  .support .intro .circle1 {
    height: 600px;
    width: 600px;
    right: -278px;
    top: -396px;
  }
  .support .intro .square1 {
    height: 600px;
    width: 600px;
    left: -420px;
    top: -230px;
  }
  .support .intro .circle2-solid {
    height: 322px;
    width: 322px;
    right: -244px;
    top: 50px;
  }

  #news .news-item {
    font-size: 0.675em;
    margin-bottom: 2.0263424519%;
  }

  section {
    padding: 4em 0;
  }

  #stories {
    background: #001f5b;
    color: #fff;
    text-align: center;
  }
  #stories .title {
    font-size: 1.75em;
  }
  #stories .title + p {
    font-size: 1em;
  }

  #about .wrapper > figure {
    max-height: 650px;
    max-width: 650px;
    width: 100%;
  }
  #about .wrapper > div {
    margin-bottom: 4em;
  }
  #about .wrapper > div figure {
    width: 375px;
    height: 375px;
  }
  #about .wrapper > div div {
    width: 480px;
  }
  #about .wrapper > div:last-child {
    margin-bottom: 0;
  }

  .home #about h2 + p {
    margin-bottom: 2em;
  }
  .home #about p {
    font-size: 1.33em;
  }
  .home #about .wrapper > div {
    margin-bottom: 2em;
  }
  .home #about .wrapper > div div {
    margin-left: 2rem;
  }
  .home #about .square1 {
    height: 600px;
    width: 600px;
    left: -460px;
    top: -700px;
  }
  .home #about .circle1-solid {
    width: 320px;
    height: 320px;
    left: 10px;
    top: 850px;
  }
  .home #about .circle1 {
    width: 320px;
    height: 320px;
    right: -20px;
    top: -200px;
  }
  .home #about .square2 {
    width: 350px;
    height: 350px;
    left: auto;
    right: -125px;
    top: 650px;
  }
  .home #about .circle2-solid {
    height: 500px;
    width: 500px;
    left: auto;
    right: -400px;
    top: 3600px;
  }

  .home #news .circle1 {
    height: 600px;
    width: 600px;
    left: -220px;
    right: auto;
    top: -1600px;
  }
  .home #news .circle1-solid {
    width: 320px;
    height: 320px;
    top: 2500px;
    left: auto;
    right: -100px;
  }
  .home #news .square1 {
    left: auto;
    right: -100px;
    top: -1450px;
    width: 350px;
    height: 350px;
  }

  .about #about .wrapper > div:nth-child(even) {
    flex-direction: row-reverse;
  }
  .about #about .wrapper > div:nth-child(even) div {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  #news .news-item, #news .news-sizer {
    width: 31.9817629179%;
  }

  article {
    font-size: 1em;
  }
  article .wrapper {
    max-width: 987px;
  }

  #more article {
    font-size: 16px;
    width: 31.9817629179%;
  }
  #more article:nth-of-type(even), #more article:nth-of-type(odd) {
    margin-left: -0.25rem;
    margin-right: 2.0263424519%;
  }
  #more article:nth-of-type(3n) {
    margin-right: 0;
  }
  #more article:nth-of-type(3n - 2) {
    margin-left: 0;
  }

  .story article .wrapper {
    padding-top: 1.5rem;
  }

  section.body .wrapper, section.cta .wrapper {
    padding: 0 1rem;
    max-width: 34rem;
  }

  section.cta .wrapper {
    max-width: 36rem;
  }

  #team .affiliation, .team .body .affiliation {
    font-size: 0.75em;
  }

  .team .body .wrapper > div {
    margin: 0 auto;
  }
  .team .body .wrapper > div p {
    max-width: 493.5px;
    margin-left: auto;
    margin-right: auto;
  }
  .team .body .wrapper > div p.name, .team .body .wrapper > div p.position, .team .body .wrapper > div p.affiliation {
    max-width: none;
  }
  .team .body .affiliation {
    font-size: 0.9375em;
    margin-top: 0.33em;
  }

  #recipients #thead {
    font-size: 0.667em;
  }

  body.search li p {
    max-width: 34rem;
  }
}
@media screen and (min-width: 1440px) {
  .wrapper, article .wrapper {
    max-width: 1111px;
  }

  body > footer nav {
    width: 33.3333333333%;
  }

  .slideshow-wrap {
    position: relative;
    text-align: center;
  }
  .slideshow-wrap .previous, .slideshow-wrap .next {
    margin: 0;
    position: absolute;
    top: 50%;
    margin-top: -1.75em;
    z-index: 180;
  }
  .slideshow-wrap .previous .icon, .slideshow-wrap .next .icon {
    height: 3.5em;
    width: 3.5em;
  }
  .slideshow-wrap .previous {
    left: 0.5em;
  }
  .slideshow-wrap .next {
    position: absolute;
    right: 0.5em;
  }
  .slideshow-wrap .count {
    float: none;
    margin-top: 0;
    margin-left: 0;
    padding-top: 1em;
  }

  #stories .slideshow-wrap {
    margin-bottom: 2em;
  }

  .story .slideshow-wrap .slideshow {
    margin: 0 auto;
    max-width: 1111px;
  }
  .story .slideshow-wrap .count {
    text-align: center;
    max-width: none;
  }
}
footer #mongo-form {
  line-height: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] {
  font-size: inherit;
  margin: inherit;
  border-radius: inherit;
  padding: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormSection {
  margin: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormSectionHeading {
  padding: inherit;
  margin: inherit;
  text-align: inherit;
  font-size: inherit;
  font-weight: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormSubSectionHeading {
  text-align: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormSection fieldset,
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormSection fieldset legend {
  position: inherit;
  border: inherit;
  padding: inherit;
  margin: inherit;
  width: inherit;
  line-height: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormFieldContainer {
  padding: inherit;
  margin-top: inherit;
  margin-bottom: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormTextbox {
  min-height: inherit;
  width: inherit;
  padding: inherit;
  font-size: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormTextbox:focus {
  outline: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormTextbox,
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormSelectList,
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormTextArea {
  -moz-transition: inherit;
  border-radius: inherit;
  border-shadow: inherit;
  background-color: inherit;
  border: inherit;
  line-height: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormTextbox:focus,
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormTextArea:focus {
  box-shadow: inherit;
  background-color: #fff;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormTextbox:not(:focus),
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormTextArea:not(:focus),
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormSelectList:not(:focus) {
  opacity: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormButtonRow {
  text-align: inherit;
  margin-top: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormSubmitbutton {
  background-color: inherit;
  border: inherit;
  box-shadow: inherit;
  border-radius: inherit;
  color: inherit;
  cursor: inherit;
  font-size: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormSubmitbutton:hover {
  background-color: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormErrorBlock {
  background-color: inherit;
  color: inherit;
  border: inherit;
  padding: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormErrorItem {
  padding: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] input::-webkit-input-placeholder {
  color: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] input:-moz-placeholder {
  color: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] textarea::-webkit-input-placeholder {
  color: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] textarea:-moz-placeholder {
  color: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFloatClear {
  clear: inherit;
  height: inherit;
  line-height: inherit;
  overflow: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormSignupFieldWide {
  float: inherit;
  margin-right: 0;
  margin-bottom: 4px;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormSignupFieldTall {
  float: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormSignupPrivacyLabelTall {
  float: inherit;
  font-size: inherit;
  margin-right: inherit;
  margin-top: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormSignupPrivacyLabelWide {
  float: inherit;
  font-size: inherit;
  margin-right: inherit;
  margin-top: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormSignupPrivacyLinkTall {
  float: inherit;
  font-size: inherit;
  margin-top: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormSignupPrivacyLinkWide {
  float: inherit;
  font-size: inherit;
  margin-top: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormSignupFieldRequired {
  border-color: inherit;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  background-color: inherit;
}
footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormDonationPrivacyLinkTall {
  font-size: inherit;
  margin: inherit;
}

footer label {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
footer #mc_embed_signup h3 {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.5em;
}
footer #mc_embed_signup div.mce_inline_error {
  font-size: 0.8125em;
  margin: 0.5em 0 1em;
}
footer .mc-field-group {
  margin-bottom: 4px;
}
footer #mce-responses > * {
  font-size: 0.8125em;
  margin: 0.5em 0 1em;
}
footer input[type=text], footer input[type=email] {
  background: #fff;
  padding: 1em;
  padding-bottom: 0.75em;
  font-size: 0.6667em;
  border: none;
  width: 100%;
}
footer input[type=submit] {
  -webkit-appearance: none;
  display: inline-block;
  padding: 0.75em 1.25em;
  padding-bottom: 0.65em;
  text-transform: none;
  font-size: 0.85rem;
  font-weight: 500;
  background: #fff;
  color: #001f5b;
  border: 2px solid #001f5b;
  transition: 0.15s;
  cursor: pointer;
  line-height: normal;
  border-color: #fff;
}
footer input[type=submit]:hover, footer input[type=submit]:focus {
  background: #001f5b;
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}
footer input[type=submit]:hover .icon, footer input[type=submit]:focus .icon {
  fill: #fff;
}
footer input[type=submit] .icon {
  height: 1.25em;
  width: 1.25em;
  vertical-align: middle;
  margin-right: 0.5em;
}
footer input[type=submit] .icon-link-sm {
  height: 1.15em;
  width: 1.15em;
  margin-left: 1em;
  margin-right: 0;
  margin-top: -0.25em;
  vertical-align: baseline;
}
footer ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  text-transform: uppercase;
  font-weight: 500;
  color: #001f5b;
}
footer ::-moz-placeholder {
  /* Firefox 19+ */
  text-transform: uppercase;
  font-weight: 500;
  color: #001f5b;
}
footer :-ms-input-placeholder {
  /* IE 10+ */
  text-transform: uppercase;
  font-weight: 500;
  color: #001f5b;
}
footer :-moz-placeholder {
  /* Firefox 18- */
  text-transform: uppercase;
  font-weight: 500;
  color: #001f5b;
}

@media screen and (min-width: 970px) {
  footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] .BBFormSubSectionHeading {
    font-size: 0.8125em;
  }
  footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] form {
    min-width: 16em;
  }
  footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] input[type=email], footer .BBFormContainer[data-bbox-part-id="5c0ea504-ccce-4c1d-8c62-d5920ef922f8"] input[type=text] {
    margin-right: 0.15rem;
  }
}

/*# sourceMappingURL=style.css.map */
