.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

/*
 * Should be used to modify the default spacing between objects (not between nodes of the same object)
 * a, t, r, b, l, h, v = all,top,right,bottom,left,horizontal,vertical
 * x, s, m, l, g, n    = padding-x, padding-s, padding-m, padding-l, padding-g, none
 * p, m                = padding,margin */
.ptn, .pvn, .pan {
  padding-top: 0;
}

.ptx, .pvx, .pax {
  padding-top: 3px;
}

.pts, .pvs, .pas {
  padding-top: 5px;
}

.ptm, .pvm, .pam {
  padding-top: 10px;
}

.ptl, .pvl, .pal {
  padding-top: 20px;
}

.ptg, .pvg, .pag {
  padding-top: 30px;
}

.ptxl, .pvxl, .paxl {
  padding-top: 50px;
}

.prn, .phn, .pan {
  padding-right: 0;
}

.prx, .phx, .pax {
  padding-right: 3px;
}

.prs, .phs, .pas {
  padding-right: 5px;
}

.prm, .phm, .pam {
  padding-right: 10px;
}

.prl, .phl, .pal {
  padding-right: 20px;
}

.prg, .phg, .pag {
  padding-right: 30px;
}

.prxl, .phxl, .paxl {
  padding-right: 50px;
}

.pbn, .pvn, .pan {
  padding-bottom: 0;
}

.pbx, .pvx, .pax {
  padding-bottom: 3px;
}

.pbs, .pvs, .pas {
  padding-bottom: 5px;
}

.pbm, .pvm, .pam {
  padding-bottom: 10px;
}

.pbl, .pvl, .pal {
  padding-bottom: 20px;
}

.pbg, .pvg, .pag {
  padding-bottom: 30px;
}

.pbxl, .pvxl, .paxl {
  padding-bottom: 50px;
}

.pln, .phn, .pan {
  padding-left: 0;
}

.plx, .phx, .pax {
  padding-left: 3px;
}

.pls, .phs, .pas {
  padding-left: 5px;
}

.plm, .phm, .pam {
  padding-left: 10px;
}

.pll, .phl, .pal {
  padding-left: 20px;
}

.plg, .phg, .pag {
  padding-left: 30px;
}

.plxl, .phxl, .paxl {
  padding-left: 50px;
}

.mtn, .mvn, .man {
  margin-top: 0px;
}

.mtx, .mvx, .max {
  margin-top: 3px;
}

.mts, .mvs, .mas {
  margin-top: 5px;
}

.mtm, .mvm, .mam {
  margin-top: 10px;
}

.mtl, .mvl, .mal {
  margin-top: 20px;
}

.mtg, .mvg, .mag {
  margin-top: 30px;
}

.mtxl, .mvxl, .maxl {
  margin-top: 50px;
}

.mrn, .mhn, .man {
  margin-right: 0px;
}

.mrx, .mhx, .max {
  margin-right: 3px;
}

.mrs, .mhs, .mas {
  margin-right: 5px;
}

.mrm, .mhm, .mam {
  margin-right: 10px;
}

.mrl, .mhl, .mal {
  margin-right: 20px;
}

.mrg, .mhg, .mag {
  margin-right: 30px;
}

.mrxl, .mhxl, .maxl {
  margin-right: 50px;
}

.mbn, .mvn, .man {
  margin-bottom: 0px;
}

.mbx, .mvx, .max {
  margin-bottom: 3px;
}

.mbs, .mvs, .mas {
  margin-bottom: 5px;
}

.mbm, .mvm, .mam {
  margin-bottom: 10px;
}

.mbl, .mvl, .mal {
  margin-bottom: 20px;
}

.mbg, .mvg, .mag {
  margin-bottom: 30px;
}

.mbxl, .mvxl, .maxl {
  margin-bottom: 50px;
}

.mln, .mhn, .man {
  margin-left: 0px;
}

.mlx, .mhx, .max {
  margin-left: 3px;
}

.mls, .mhs, .mas {
  margin-left: 5px;
}

.mlm, .mhm, .mam {
  margin-left: 10px;
}

.mll, .mhl, .mal {
  margin-left: 20px;
}

.mlg, .mhg, .mag {
  margin-left: 30px;
}

.mlxl, .mhxl, .maxl {
  margin-left: 50px;
}

.stretch-min-height {
  min-height: 58vh;
}

.align-self-end {
  align-self: end;
}

.container {
  *zoom: 1;
  padding: 25px;
}
.container:before, .container:after {
  content: "";
  display: table;
}
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  .container {
    width: 980px;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
  }
}
.container.full-width {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-space-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: 10px;
}

.gap-2 {
  gap: 20px;
}

.gap-3 {
  gap: 30px;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

hr {
  margin: 15px 0;
  height: 0;
  border: 0;
  border-bottom: 1px solid #ddd;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.hidden {
  display: none;
}

#overlay {
  top: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 700;
  opacity: 0.9;
  display: none;
}
#overlay.dark-overlay {
  background-color: #151C25;
}

#loading-indicator {
  background-image: url(//d3t9s8cdqyboc5.cloudfront.net/assets/loading-transparent-161761aa3974c7a2885c07ef8f45314c0c62b64b8a169636c52def93f84a3451.gif);
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  display: none;
}

body {
  font: 18px/1.4 "proxima-nova", Helvetica, Arial, sans-serif;
  color: #000;
}
@media (min-width: 768px) {
  body {
    font: 16px/1.4 "proxima-nova", Helvetica, Arial, sans-serif;
  }
}

a {
  color: #26B8AD;
  text-decoration: none;
}
a.gray {
  color: #aaa;
}
a:hover {
  opacity: 0.7;
}

.right-align {
  text-align: right !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1.1;
  color: #000;
  text-rendering: optimizelegibility;
  -moz-osx-font-smoothing: grayscale;
}
h1.gray, h2.gray, h3.gray, h4.gray, h5.gray, h6.gray {
  color: #aaa;
}

h1 {
  font-size: 1.5em;
}

h2 {
  font-size: 1.17em;
}

h3 {
  font-size: 1.12em;
}

h4 {
  font-size: 0.83em;
}

h5 {
  font-size: 0.75em;
}

h6 {
  font-size: 0.75em;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.5em;
  }
  h3 {
    font-size: 1.17em;
  }
  h4 {
    font-size: 1.12em;
  }
  h5 {
    font-size: 0.83em;
  }
  h6 {
    font-size: 0.75em;
  }
}
ul, ol {
  padding: 0;
  margin: 0 0 10px 25px;
}

ul ul, ul ol, ol ol, ol ul {
  margin-bottom: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li {
  line-height: 20px;
}

ul.unstyled, ol.unstyled {
  margin-left: 0;
  list-style: none;
}

.serif-title {
  font-family: "Copernicus", Times, Georgia;
  font-weight: 400;
}

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

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

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

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.skinny {
  font-weight: 400;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.text-muted {
  color: #aaa;
}

.text-small {
  font-size: 0.88em;
}

.text-danger {
  color: #FF7979;
}

.error-message {
  color: #FF7979;
}

.text-antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.antialiased {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-right: 10px;
}

.n-muted {
  color: #9Ba5aa;
}

.n-round-pill {
  padding: 3px 6px;
  background-color: #E8ECED;
  font-size: 13px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  color: #4a5658;
}
.n-round-pill.danger {
  background-color: #FF7979;
  color: #FFF;
}
.n-round-pill.up {
  text-transform: uppercase;
}
.n-round-pill.outline {
  border: 2px solid #9Ba5aa;
  background-color: #FFF;
}

.markup {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  font-size: 12px;
  color: #004E6D;
  background: #F2F3F4;
  border-radius: 4px;
  padding: 3px 4px;
  display: inline-block;
}

.nbtn {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: inline-block;
  vertical-align: middle;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: none;
  background-image: none;
  background-color: #FFF;
  border: 1px solid #aaa;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.42857143;
  font-weight: 600;
  color: #555;
}
.nbtn.nbtn-primary {
  background-color: #36ac9c;
  color: #FFF;
  font-weight: 400;
  border: 1px solid transparent;
}
.nbtn.nbtn-alternate {
  background-color: #5eb0c0;
  color: #FFF;
  font-weight: 400;
  border: 1px solid transparent;
}

.nbtn:hover,
.nbtn:focus {
  opacity: 1;
  color: #000;
  border-color: #919191;
  text-decoration: none;
  box-shadow: none;
}
.nbtn:hover.nbtn-primary,
.nbtn:focus.nbtn-primary {
  background-color: #4ec7b7;
  color: #FFF;
  border: 1px solid transparent;
}
.nbtn:hover.nbtn-alternate,
.nbtn:focus.nbtn-alternate {
  background-color: #83c2ce;
  color: #FFF;
  border: 1px solid transparent;
}

.nbtn:focus,
.nbtn:active:focus,
.nbtn.active:focus {
  outline: thin dotted;
  outline-offset: -2px;
  box-shadow: none;
}

.nbtn:active,
.nbtn.active {
  outline: 0;
  background-image: none;
  box-shadow: none;
}

.nbtn:disabled,
.nbtn.active {
  cursor: not-allowed;
  opacity: 0.65;
}

.nbtn.nbtn-sm {
  padding: 3px 6px;
  font-size: 12px;
}

.nbtn.nbtn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nbtn.nbtn-xlg {
  padding: 17px 14px 15px;
  font-size: 21px;
  border-radius: 8px;
  line-height: 1.33;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 768px) {
  .nbtn.nbtn-xlg {
    padding: 17px 30px 15px;
  }
}

.nbtn-outline {
  background-color: transparent;
  padding: 15px 30px 10px;
  border-radius: 5px;
  border: 2px solid #fff;
  opacity: 0.88;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.nbtn-outline:hover, .nbtn-outline:focus, .nbtn-outline:active {
  background-color: transparent;
  border: 2px solid #eee;
  opacity: 1;
}

.btn {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  box-sizing: border-box;
  height: auto;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
}
.btn:hover {
  text-decoration: none;
  transition-duration: 0.1s;
}
.btn:focus, .btn.focus {
  outline: thin dotted;
  outline-offset: -2px;
}
.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn:disabled, .btn[disabled] {
  cursor: not-allowed;
  opacity: 0.65 !important;
}
.btn.btn-primary {
  color: #FFF;
  background-color: #36ac9c;
}
.btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary.focus, .btn.btn-primary:active, .btn.btn-primary.active {
  opacity: inherit;
  background-color: #2a8579;
}
.btn.btn-primary:hover:disabled, .btn.btn-primary:hover[disabled], .btn.btn-primary:focus:disabled, .btn.btn-primary:focus[disabled], .btn.btn-primary.focus:disabled, .btn.btn-primary.focus[disabled], .btn.btn-primary:active:disabled, .btn.btn-primary:active[disabled], .btn.btn-primary.active:disabled, .btn.btn-primary.active[disabled] {
  background-color: #36ac9c;
}
.btn.btn-secondary {
  color: #555;
  background-color: #FFF;
  border-color: #aaa;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus, .btn.btn-secondary.focus, .btn.btn-secondary:active, .btn.btn-secondary.active {
  opacity: inherit;
  background-color: #e6e6e6;
}
.btn.btn-secondary:hover:disabled, .btn.btn-secondary:hover[disabled], .btn.btn-secondary:focus:disabled, .btn.btn-secondary:focus[disabled], .btn.btn-secondary.focus:disabled, .btn.btn-secondary.focus[disabled], .btn.btn-secondary:active:disabled, .btn.btn-secondary:active[disabled], .btn.btn-secondary.active:disabled, .btn.btn-secondary.active[disabled] {
  background-color: #FFF;
}
.btn.btn-white {
  color: #000;
  background-color: #FFF;
}
.btn.btn-white:hover, .btn.btn-white:focus, .btn.btn-white.focus, .btn.btn-white:active, .btn.btn-white.active {
  opacity: inherit;
  background-color: #e6e6e6;
}
.btn.btn-white:hover:disabled, .btn.btn-white:hover[disabled], .btn.btn-white:focus:disabled, .btn.btn-white:focus[disabled], .btn.btn-white.focus:disabled, .btn.btn-white.focus[disabled], .btn.btn-white:active:disabled, .btn.btn-white:active[disabled], .btn.btn-white.active:disabled, .btn.btn-white.active[disabled] {
  background-color: #FFF;
}
.btn.btn-alternate {
  color: #FFF;
  background-color: #5eb0c0;
}
.btn.btn-alternate:hover, .btn.btn-alternate:focus, .btn.btn-alternate.focus, .btn.btn-alternate:active, .btn.btn-alternate.active {
  opacity: inherit;
  background-color: #4298a9;
}
.btn.btn-alternate:hover:disabled, .btn.btn-alternate:hover[disabled], .btn.btn-alternate:focus:disabled, .btn.btn-alternate:focus[disabled], .btn.btn-alternate.focus:disabled, .btn.btn-alternate.focus[disabled], .btn.btn-alternate:active:disabled, .btn.btn-alternate:active[disabled], .btn.btn-alternate.active:disabled, .btn.btn-alternate.active[disabled] {
  background-color: #5eb0c0;
}
.btn.btn-inverse {
  color: #FFF;
  background-color: #004E6D;
}
.btn.btn-inverse:hover, .btn.btn-inverse:focus, .btn.btn-inverse.focus, .btn.btn-inverse:active, .btn.btn-inverse.active {
  opacity: inherit;
  background-color: #002a3a;
}
.btn.btn-inverse:hover:disabled, .btn.btn-inverse:hover[disabled], .btn.btn-inverse:focus:disabled, .btn.btn-inverse:focus[disabled], .btn.btn-inverse.focus:disabled, .btn.btn-inverse.focus[disabled], .btn.btn-inverse:active:disabled, .btn.btn-inverse:active[disabled], .btn.btn-inverse.active:disabled, .btn.btn-inverse.active[disabled] {
  background-color: #004E6D;
}
.btn.btn-danger {
  color: #FFF;
  background-color: #F6694B;
}
.btn.btn-danger:hover, .btn.btn-danger:focus, .btn.btn-danger.focus, .btn.btn-danger:active, .btn.btn-danger.active {
  opacity: inherit;
  background-color: #f4411a;
}
.btn.btn-danger:hover:disabled, .btn.btn-danger:hover[disabled], .btn.btn-danger:focus:disabled, .btn.btn-danger:focus[disabled], .btn.btn-danger.focus:disabled, .btn.btn-danger.focus[disabled], .btn.btn-danger:active:disabled, .btn.btn-danger:active[disabled], .btn.btn-danger.active:disabled, .btn.btn-danger.active[disabled] {
  background-color: #F6694B;
}
.btn.btn-copy {
  background-color: #f5f5f5;
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  color: #4a5658;
  padding: 3px 4px;
  border-radius: 3px;
  border: none;
  font-weight: 600;
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}
.btn.btn-copy.btn-xs {
  padding: 1.5px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 4px;
  position: relative;
  top: -1px;
}
.btn.btn-outline {
  color: #FFF;
  border-color: #FFF;
  border-width: 2px;
}
.btn.btn-outline:hover, .btn.btn-outline:focus, .btn.btn-outline.focus, .btn.btn-outline:active, .btn.btn-outline.active {
  opacity: inherit;
}
.btn.btn-outline:hover, .btn.btn-outline:focus, .btn.btn-outline.focus {
  opacity: 0.8;
}
.btn.btn-outline-muted {
  color: #9Ba5aa;
  border-color: #9Ba5aa;
  border-width: 1px;
}
.btn.btn-outline-muted:hover, .btn.btn-outline-muted:focus, .btn.btn-outline-muted.focus, .btn.btn-outline-muted:active, .btn.btn-outline-muted.active {
  opacity: inherit;
}
.btn.btn-outline-muted:hover, .btn.btn-outline-muted:focus, .btn.btn-outline-muted.focus {
  opacity: 0.8;
}
.btn.btn-outline-dark {
  color: #555;
  border-color: #555;
  border-width: 2px;
}
.btn.btn-outline-dark:hover, .btn.btn-outline-dark:focus, .btn.btn-outline-dark.focus, .btn.btn-outline-dark:active, .btn.btn-outline-dark.active {
  opacity: inherit;
}
.btn.btn-outline-dark:hover, .btn.btn-outline-dark:focus, .btn.btn-outline-dark.focus {
  opacity: 0.8;
}
.btn.btn-xl {
  padding: 15px 14px;
  font-size: 20px;
  line-height: 1.33;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.01rem;
}
@media (min-width: 768px) {
  .btn.btn-xl {
    padding: 15px 30px;
    font-size: 20px;
    line-height: 1.33;
    border-radius: 6px;
  }
}
.btn.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
  font-weight: 600;
}
.btn.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 4px;
  -webkit-font-smoothing: subpixel-antialiased;
}
.btn.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
  -webkit-font-smoothing: subpixel-antialiased;
}
.btn.btn-block {
  display: block;
  width: 100%;
}
.btn.social.facebook {
  background-color: #3B5998;
}
.btn.social.facebook:hover {
  background: #4264aa;
}
.btn.social.twitter {
  background-color: #00AAF1;
}
.btn.social.twitter:hover {
  background: #0cb7ff;
}

.twitter-share:hover {
  text-decoration: none;
}

.btn-group {
  display: inline-block;
}
.btn-group .btn + .btn {
  margin-left: -1px;
}
.btn-group > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:focus {
  z-index: 2;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
  border-left-color: #ccc;
  border-right-color: #ccc;
}
.btn-group > .btn:first-child:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right-color: #ccc;
}
.btn-group > .btn:last-child:not(:first-child), .btn-group > .btn.dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left-color: #ccc;
}

.select-style {
  border: 1px solid #ccc;
  width: 120px;
  border-radius: 3px;
  overflow: hidden;
  background: #fafafa url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCIgdmlld0JveD0iMCAwIDI5Mi4zNjIgMjkyLjM2MiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjkyLjM2MiAyOTIuMzYyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxnPgoJPHBhdGggZD0iTTI4Ni45MzUsNjkuMzc3Yy0zLjYxNC0zLjYxNy03Ljg5OC01LjQyNC0xMi44NDgtNS40MjRIMTguMjc0Yy00Ljk1MiwwLTkuMjMzLDEuODA3LTEyLjg1LDUuNDI0ICAgQzEuODA3LDcyLjk5OCwwLDc3LjI3OSwwLDgyLjIyOGMwLDQuOTQ4LDEuODA3LDkuMjI5LDUuNDI0LDEyLjg0N2wxMjcuOTA3LDEyNy45MDdjMy42MjEsMy42MTcsNy45MDIsNS40MjgsMTIuODUsNS40MjggICBzOS4yMzMtMS44MTEsMTIuODQ3LTUuNDI4TDI4Ni45MzUsOTUuMDc0YzMuNjEzLTMuNjE3LDUuNDI3LTcuODk4LDUuNDI3LTEyLjg0N0MyOTIuMzYyLDc3LjI3OSwyOTAuNTQ4LDcyLjk5OCwyODYuOTM1LDY5LjM3N3oiIGZpbGw9IiMwMDAwMDAiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K) no-repeat 90% 50%;
}

.select-style select {
  padding: 5px 8px 5px 10px;
  display: inline-block;
  width: 130%;
  border: none;
  box-shadow: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
}

.select-style select:focus {
  outline: none;
  border: none;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  *zoom: 1;
}
.row:before, .row:after {
  content: "";
  display: table;
}
.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 480px) {
  .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left;
  }
  .col-xs-1 {
    width: 8.3333333333%;
  }
  .col-xs-2 {
    width: 16.6666666667%;
  }
  .col-xs-3 {
    width: 25%;
  }
  .col-xs-4 {
    width: 33.3333333333%;
  }
  .col-xs-5 {
    width: 41.6666666667%;
  }
  .col-xs-6 {
    width: 50%;
  }
  .col-xs-7 {
    width: 58.3333333333%;
  }
  .col-xs-8 {
    width: 66.6666666667%;
  }
  .col-xs-9 {
    width: 75%;
  }
  .col-xs-10 {
    width: 83.3333333333%;
  }
  .col-xs-11 {
    width: 91.6666666667%;
  }
  .col-xs-12 {
    width: 100%;
  }
  .col-xs-pull-0 {
    right: auto;
  }
  .col-xs-pull-1 {
    right: 8.3333333333%;
  }
  .col-xs-pull-2 {
    right: 16.6666666667%;
  }
  .col-xs-pull-3 {
    right: 25%;
  }
  .col-xs-pull-4 {
    right: 33.3333333333%;
  }
  .col-xs-pull-5 {
    right: 41.6666666667%;
  }
  .col-xs-pull-6 {
    right: 50%;
  }
  .col-xs-pull-7 {
    right: 58.3333333333%;
  }
  .col-xs-pull-8 {
    right: 66.6666666667%;
  }
  .col-xs-pull-9 {
    right: 75%;
  }
  .col-xs-pull-10 {
    right: 83.3333333333%;
  }
  .col-xs-pull-11 {
    right: 91.6666666667%;
  }
  .col-xs-pull-12 {
    right: 100%;
  }
  .col-xs-push-0 {
    left: auto;
  }
  .col-xs-push-1 {
    left: 8.3333333333%;
  }
  .col-xs-push-2 {
    left: 16.6666666667%;
  }
  .col-xs-push-3 {
    left: 25%;
  }
  .col-xs-push-4 {
    left: 33.3333333333%;
  }
  .col-xs-push-5 {
    left: 41.6666666667%;
  }
  .col-xs-push-6 {
    left: 50%;
  }
  .col-xs-push-7 {
    left: 58.3333333333%;
  }
  .col-xs-push-8 {
    left: 66.6666666667%;
  }
  .col-xs-push-9 {
    left: 75%;
  }
  .col-xs-push-10 {
    left: 83.3333333333%;
  }
  .col-xs-push-11 {
    left: 91.6666666667%;
  }
  .col-xs-push-12 {
    left: 100%;
  }
  .col-xs-offset-0 {
    margin-left: 0%;
  }
  .col-xs-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-xs-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-xs-offset-3 {
    margin-left: 25%;
  }
  .col-xs-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-xs-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-xs-offset-6 {
    margin-left: 50%;
  }
  .col-xs-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-xs-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-xs-offset-9 {
    margin-left: 75%;
  }
  .col-xs-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-xs-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-xs-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 768px) {
  .col-s-1, .col-s-2, .col-s-3, .col-s-4, .col-s-5, .col-s-6, .col-s-7, .col-s-8, .col-s-9, .col-s-10, .col-s-11, .col-s-12 {
    float: left;
  }
  .col-s-1 {
    width: 8.3333333333%;
  }
  .col-s-2 {
    width: 16.6666666667%;
  }
  .col-s-3 {
    width: 25%;
  }
  .col-s-4 {
    width: 33.3333333333%;
  }
  .col-s-5 {
    width: 41.6666666667%;
  }
  .col-s-6 {
    width: 50%;
  }
  .col-s-7 {
    width: 58.3333333333%;
  }
  .col-s-8 {
    width: 66.6666666667%;
  }
  .col-s-9 {
    width: 75%;
  }
  .col-s-10 {
    width: 83.3333333333%;
  }
  .col-s-11 {
    width: 91.6666666667%;
  }
  .col-s-12 {
    width: 100%;
  }
  .col-s-pull-0 {
    right: auto;
  }
  .col-s-pull-1 {
    right: 8.3333333333%;
  }
  .col-s-pull-2 {
    right: 16.6666666667%;
  }
  .col-s-pull-3 {
    right: 25%;
  }
  .col-s-pull-4 {
    right: 33.3333333333%;
  }
  .col-s-pull-5 {
    right: 41.6666666667%;
  }
  .col-s-pull-6 {
    right: 50%;
  }
  .col-s-pull-7 {
    right: 58.3333333333%;
  }
  .col-s-pull-8 {
    right: 66.6666666667%;
  }
  .col-s-pull-9 {
    right: 75%;
  }
  .col-s-pull-10 {
    right: 83.3333333333%;
  }
  .col-s-pull-11 {
    right: 91.6666666667%;
  }
  .col-s-pull-12 {
    right: 100%;
  }
  .col-s-push-0 {
    left: auto;
  }
  .col-s-push-1 {
    left: 8.3333333333%;
  }
  .col-s-push-2 {
    left: 16.6666666667%;
  }
  .col-s-push-3 {
    left: 25%;
  }
  .col-s-push-4 {
    left: 33.3333333333%;
  }
  .col-s-push-5 {
    left: 41.6666666667%;
  }
  .col-s-push-6 {
    left: 50%;
  }
  .col-s-push-7 {
    left: 58.3333333333%;
  }
  .col-s-push-8 {
    left: 66.6666666667%;
  }
  .col-s-push-9 {
    left: 75%;
  }
  .col-s-push-10 {
    left: 83.3333333333%;
  }
  .col-s-push-11 {
    left: 91.6666666667%;
  }
  .col-s-push-12 {
    left: 100%;
  }
  .col-s-offset-0 {
    margin-left: 0%;
  }
  .col-s-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-s-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-s-offset-3 {
    margin-left: 25%;
  }
  .col-s-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-s-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-s-offset-6 {
    margin-left: 50%;
  }
  .col-s-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-s-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-s-offset-9 {
    margin-left: 75%;
  }
  .col-s-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-s-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-s-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
[class*=col-] {
  box-sizing: border-box;
}

@media print {
  .nucleus-nav .global-search, .nucleus-nav ul, .nucleus-nav .experiment-logo {
    display: none;
  }
  .admin-nav-bar, .env-banner, .noprint,
  .tags, .nucleus-footer, nav.project-nav ul li {
    display: none;
  }
  header.masthead {
    padding-bottom: 0px;
    border: none;
  }
  header.masthead .backers, header.masthead .funding-box, header.masthead .hero {
    display: none;
  }
  header.masthead h1.title {
    font-size: 20px;
  }
  .project-page-content img {
    max-width: 600px;
  }
  .project-page-content .protocol-comment-container {
    display: none;
  }
  .old-payout-letter {
    width: 820px;
    margin: 0 auto;
    margin-left: 120px;
  }
  .old-payout-letter .header {
    text-align: center;
    color: #999;
    padding-bottom: 10px;
  }
  .old-payout-letter .header p {
    font-size: 12px;
    line-height: 17px;
  }
  .old-payout-letter img {
    width: 140px;
    margin: 0 auto;
    margin-top: -70px;
    display: block;
  }
  .old-payout-letter p, .old-payout-letter li {
    font-size: 19px;
    line-height: 26px;
    font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  }
  .old-payout-letter ul li {
    margin: 12px 0;
  }
}
