/* --- everyaction-templates v0.1.0 --- */

:root {
  --text-color: #000;
  --muted-color: #666;
  --bg-color: #fff;
  --border-color: #ccc;
}
* {
  border: 0;
  font: inherit;
  margin: 0;
  padding: 0;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
:root {
  font-size: 125%;
  --duration: 0.3s;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  :root {
    --duration: 0;
    scroll-behavior: auto;
  }
}
body {
  box-sizing: border-box;
  position: relative;
  min-height: 100vh;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: UCSMercury, "Mercury SSm A", "Mercury SSm B", Georgia, serif;
  line-height: 1.6;
  font-size: 1rem;
}
details > * {
  box-sizing: border-box;
}
p {
  margin-bottom: 1.6rem;
  letter-spacing: -0.001em;
}
small,
sub,
sup {
  font-size: 80%;
  line-height: 1;
}
em,
cite,
i {
  font-style: italic;
}
strong,
var,
b {
  font-weight: 700;
}
q:before {
  content: "'";
}
q:after {
  content: "'";
}
q > q {
  font-style: italic;
}
dfn,
abbr {
  border-bottom: 1px dotted #666;
  cursor: default;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  margin-top: 1rem;
  margin-bottom: 1.6rem;
  font-weight: 700;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}
h1,
h2,
h3,
h4 {
  letter-spacing: -0.002em;
}
h1 sup,
h2 sup,
h3 sup,
h4 sup,
h1 sub,
h2 sub,
h3 sub,
h4 sub,
h1 small,
h2 small,
h3 small,
h4 small {
  font-size: 50%;
}
h1 {
  font-size: 1.8rem;
  line-height: 1.16666667;
}
@media screen and (min-width: 1000px) {
  h1 {
    font-size: 2.6rem;
    line-height: 1.07692308;
    letter-spacing: -0.005em;
  }
}
@media screen and (min-width: 1000px) {
  h1.page-header {
    font-size: 3.5rem;
    line-height: 1;
  }
}
h2.section-header {
  margin-bottom: 2rem;
  margin-top: 1rem;
  text-align: center;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}
h2.section-header::after {
  content: " ";
  display: block;
  width: 80px;
  width: 4rem;
  height: 10px;
  height: 0.5rem;
  margin: 20px auto;
  margin: 1rem auto;
  background-color: #ff522b;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.2;
}
@media screen and (min-width: 1000px) {
  h2 {
    font-size: 1.8rem;
    line-height: 1.16666667;
  }
}
h3 {
  font-size: 1.3rem;
  line-height: 1.23076923;
}
h4 {
  font-size: 0.8rem;
}
@media screen and (min-width: 1000px) {
  h4 {
    font-size: 1.05rem;
    line-height: 1.33333333;
    letter-spacing: -0.001em;
  }
}
h5,
h6 {
  font-size: 0.8rem;
}
a {
  color: currentColor;
  text-decoration: none;
  border-bottom: 2px solid #00aeeb;
}
a:hover,
a:focus,
a:active {
  color: currentColor;
  text-decoration: none;
  border-bottom-style: dashed;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
nav a {
  border-bottom: 2px solid transparent;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
nav a:hover {
  border-color: #00aeeb;
  border-bottom-style: solid;
}
ol,
ul,
dl {
  margin-bottom: 1.6rem;
}
ol ol,
ul ol,
dl ol,
ol ul,
ul ul,
dl ul {
  margin-bottom: 0;
  margin-top: 0.5rem;
}
dd {
  margin-bottom: 0.5em;
  margin-left: 1rem;
}
@media screen and (min-width: 700px) {
  dd {
    margin-left: 2rem;
  }
}
ol,
ul {
  margin-left: 1rem;
}
li {
  margin-bottom: 0.5em;
}
ul {
  list-style: disc;
}
@media screen and (min-width: 700px) {
  ol {
    margin-left: 0;
    counter-reset: section;
    list-style: none;
  }
  ol > li {
    position: relative;
    margin-left: 2rem;
  }
  ol > li:before {
    counter-increment: section;
    content: counters(section, '');
    position: absolute;
    margin-left: -40px;
    margin-left: -2rem;
  }
  ol > li ol > li:before {
    content: counters(section, '.');
  }
  ul {
    margin-left: 0;
  }
  ul > li {
    margin-left: 2rem;
    list-style: none;
  }
  ul > li::before {
    content: "";
    background-color: var(--text-color);
    display: inline-block;
    border-radius: 20px;
    border-radius: 1rem;
    height: 10px;
    height: 0.5rem;
    width: 10px;
    width: 0.5rem;
    margin-left: -40px;
    margin-left: -2rem;
    margin-top: 13.333px;
    margin-top: 0.66666667rem;
    position: absolute;
  }
}
details {
  font-size: 0.75rem;
  line-height: 1.53333333;
  color: var(--muted-color);
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 700px) {
  details {
    padding: 0 1em 0.25em;
  }
}
details + details {
  margin-top: -1.6rem;
}
details summary {
  color: var(--text-color);
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
}
details summary::-webkit-details-marker {
  display: none;
}
details[open] summary {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 700px) {
  details {
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    margin-left: 2rem;
    position: relative;
  }
  details > :last-child {
    margin-bottom: 0;
  }
  details summary {
    list-style: none;
    padding-top: 0.5rem;
  }
  details summary:before {
    content: "+";
    position: absolute;
    width: 40px;
    width: 2rem;
    top: -1px;
    right: 100%;
    padding-top: 10px;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-weight: bold;
  }
  details[open] summary:before {
    content: "–";
    outline: 0;
  }
  details ul li::before {
    margin-top: 6.666px;
    margin-top: 0.33333333rem;
  }
}
img,
video,
svg,
figure {
  display: block;
  max-width: 100%;
  height: auto;
}
figure {
  dislay: block;
  margin: 0 auto;
  margin-bottom: 1.6rem;
}
figure img {
  display: block;
  margin: 0 auto;
}
caption,
figcaption {
  font-size: [object Object],[object Object],[object Object];
  font-style: italic;
}
blockquote {
  position: relative;
  padding: 1rem;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.002em;
  border: 1px solid var(--border-color);
  margin-bottom: 1.6rem;
}
blockquote > :last-child {
  margin-bottom: 0;
}
blockquote footer {
  display: block;
  font-size: 0.8rem;
  font-style: italic;
  margin-top: -0.8rem;
}
pre,
code,
samp,
kbd {
  --bg-color: #f2f2f2;
  background-color: var(--bg-color);
  font-size: 0.75rem;
  font-family: monospace;
  overflow: auto;
}
code,
samp,
kbd {
  padding: 0.25em;
}
pre {
  line-height: 1.6;
  padding: 1em;
  margin-bottom: 1.6rem;
}
pre code,
pre samp,
pre kbd {
  background-color: transparent;
  border: none;
  padding: 0;
}
table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 1.6rem;
  background-color: var(--bg-color);
  color: var(--text-color);
}
th {
  font-weight: 700;
  text-align: left;
  vertical-align: bottom;
}
td {
  vertical-align: top;
}
th,
td {
  padding: 0.25em 0.5em;
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}
th:first-child,
td:first-child {
  border-left: 0;
}
th > :last-child,
td > :last-child {
  padding-bottom: 0;
}
input,
label,
select,
button,
textarea,
option,
fieldset,
legend {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* remove yellow from chrome auto-fill background */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  color: var(--text-color);
  -webkit-text-fill-color: inherit;
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
fieldset {
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.8rem;
}
fieldset.no-border,
fieldset:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
legend {
  display: block;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
label {
  font-size: 0.75rem;
  line-height: 1.53333333;
  color: var(--muted-color);
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  color: var(--text-color);
  margin-bottom: 0.8rem;
  display: block;
}
label span {
  display: inline-block;
  margin-bottom: 0.25em;
}
label.required span:after,
label span.required:after {
  content: "(required)";
  margin-left: 0.25em;
  color: #cb2c30;
}
label {
  cursor: pointer;
}
.error-message {
  display: none;
  background-color: #cb2c30;
  color: #fff;
  padding: 0 0.5em 0.25em;
}
input:not([type]),
[type=color],
[type=date],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
textarea,
select {
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 0.25em 0.5em;
  display: block;
  width: 100%;
  transition-duration: var(--duration);
  transition-property: border, color, margin-bottom;
  outline: none;
  border-radius: 0;
}
input:not([type]):focus,
[type=color]:focus,
[type=date]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
textarea:focus,
select:focus,
input:not([type]):hover,
[type=color]:hover,
[type=date]:hover,
[type=datetime-local]:hover,
[type=email]:hover,
[type=month]:hover,
[type=number]:hover,
[type=password]:hover,
[type=search]:hover,
[type=tel]:hover,
[type=text]:hover,
[type=time]:hover,
[type=url]:hover,
[type=week]:hover,
textarea:hover,
select:hover {
  border-bottom-color: #00aeeb;
}
input:not([type]):invalid,
[type=color]:invalid,
[type=date]:invalid,
[type=datetime-local]:invalid,
[type=email]:invalid,
[type=month]:invalid,
[type=number]:invalid,
[type=password]:invalid,
[type=search]:invalid,
[type=tel]:invalid,
[type=text]:invalid,
[type=time]:invalid,
[type=url]:invalid,
[type=week]:invalid,
textarea:invalid,
select:invalid {
  border-color: #cb2c30;
  border-bottom-width: 0.25em;
  box-shadow: none;
}
input:not([type]):invalid + .error-message,
[type=color]:invalid + .error-message,
[type=date]:invalid + .error-message,
[type=datetime-local]:invalid + .error-message,
[type=email]:invalid + .error-message,
[type=month]:invalid + .error-message,
[type=number]:invalid + .error-message,
[type=password]:invalid + .error-message,
[type=search]:invalid + .error-message,
[type=tel]:invalid + .error-message,
[type=text]:invalid + .error-message,
[type=time]:invalid + .error-message,
[type=url]:invalid + .error-message,
[type=week]:invalid + .error-message,
textarea:invalid + .error-message,
select:invalid + .error-message {
  display: block;
}
input:not([type])[required] ~ span:after,
[type=color][required] ~ span:after,
[type=date][required] ~ span:after,
[type=datetime-local][required] ~ span:after,
[type=email][required] ~ span:after,
[type=month][required] ~ span:after,
[type=number][required] ~ span:after,
[type=password][required] ~ span:after,
[type=search][required] ~ span:after,
[type=tel][required] ~ span:after,
[type=text][required] ~ span:after,
[type=time][required] ~ span:after,
[type=url][required] ~ span:after,
[type=week][required] ~ span:after,
textarea[required] ~ span:after,
select[required] ~ span:after {
  position: absolute;
  content: "(required)";
  color: #cb2c30;
}
input:not([type]):focus,
[type=color]:focus,
[type=date]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
textarea:focus,
select:focus,
input:not([type]):focus:invalid,
[type=color]:focus:invalid,
[type=date]:focus:invalid,
[type=datetime-local]:focus:invalid,
[type=email]:focus:invalid,
[type=month]:focus:invalid,
[type=number]:focus:invalid,
[type=password]:focus:invalid,
[type=search]:focus:invalid,
[type=tel]:focus:invalid,
[type=text]:focus:invalid,
[type=time]:focus:invalid,
[type=url]:focus:invalid,
[type=week]:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
  border-bottom-width: 0.25em;
  border-bottom-style: solid;
}
[type=checkbox] + span:before,
[type=radio] + span:before {
  width: 20px;
  width: 1rem;
  height: 20px;
  height: 1rem;
  display: inline-block;
  vertical-align: top;
  line-height: 20px;
  line-height: 1rem;
  content: "-";
  color: transparent;
  background-color: transparent;
  border: 2px solid var(--border-color);
  margin-right: 10px;
  margin-right: 0.5rem;
  transition-duration: var(--duration);
  transition-property: border-color, background-color;
  cursor: text;
}
[type=checkbox]:hover + span:before,
[type=radio]:hover + span:before,
[type=checkbox]:focus + span:before,
[type=radio]:focus + span:before {
  border-color: #00aeeb;
}
[type=checkbox]:checked + span,
[type=radio]:checked + span {
  color: #00aeeb, 10%;
}
[type=checkbox]:checked + span:before,
[type=radio]:checked + span:before {
  background-color: #00aeeb;
  border-color: #00aeeb;
}
[type=radio] + span:before {
  border-radius: 2em;
}
[type=checkbox]:checked + span:before {
  background-color: var(--bg-color);
  content: "✓";
  color: #00aeeb;
  text-align: center;
  font-size: 25px;
  font-size: 1.25rem;
}
select {
  padding-right: 2rem;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10" width="10" height="10"><polygon fill="currentColor" points="2,4 3,4 5,6.5 7,4 8,4 5,7.5"/></svg>');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  border-radius: 0;
  height: 2.13333333rem;
  padding-bottom: 0;
}
select:invalid {
  height: 2.63333333rem;
}
.btn-form,
[type=button],
[type=submit],
button {
  border-radius: 0;
  border: 1px solid var(--text-color);
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  transition-property: color, background-color;
  transition-duration: var(--duration);
  padding: 0.25em 0.5em;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
  background: var(--bg-color);
  color: var(--text-color);
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 1px;
  margin-bottom: 1px;
}
.btn-form:link,
[type=button]:link,
[type=submit]:link,
button:link,
.btn-form:visited,
[type=button]:visited,
[type=submit]:visited,
button:visited {
  text-decoration: none;
}
.btn-form:focus,
[type=button]:focus,
[type=submit]:focus,
button:focus,
.btn-form:hover,
[type=button]:hover,
[type=submit]:hover,
button:hover,
.btn-form:active,
[type=button]:active,
[type=submit]:active,
button:active {
  color: var(--bg-color);
  background-color: var(--text-color);
  border-color: var(--text-color);
  border-bottom-style: solid;
}
.btn-form:link,
[type=button]:link,
[type=submit]:link,
button:link,
.btn-form:visited,
[type=button]:visited,
[type=submit]:visited,
button:visited {
  text-decoration: none;
}
.btn-form:focus,
[type=button]:focus,
[type=submit]:focus,
button:focus,
.btn-form:hover,
[type=button]:hover,
[type=submit]:hover,
button:hover,
.btn-form:active,
[type=button]:active,
[type=submit]:active,
button:active {
  color: var(--bg-color);
  background-color: var(--text-color);
  border-color: var(--text-color);
  border-bottom-style: solid;
}
[type=reset] {
  font-weight: 400;
}
.form-error-message,
.form-success-message {
  display: none;
}
.form-fail .form-error-message,
.form-complete .form-success-message {
  display: block;
}
.form-fail .form-error-message ~ *,
.form-complete .form-success-message ~ * {
  display: none;
}
hr {
  height: 0;
  width: 80%;
  margin-top: 1rem;
  margin-bottom: 1.6rem;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px dotted var(--border-color);
}
::selection {
  background: #b8edff;
  color: #000;
  text-shadow: none;
}
.wrapper,
.wrapper-sm {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 700px) {
  .wrapper,
  .wrapper-sm {
    max-width: 32rem;
  }
}
.wrapper-lg {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 700px) {
  .wrapper-lg {
    max-width: 62rem;
  }
}
.grid,
.grid-3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: start;
      align-items: flex-start;
}
.grid > *,
.grid-3 > * {
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 700px) {
  .grid,
  .grid-3 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .grid > *,
  .grid-3 > * {
    -ms-flex-preferred-size: calc( 33.33333333% - 1rem );
        flex-basis: calc( 33.33333333% - 1rem );
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 2rem;
  }
  .grid > h2,
  .grid-3 > h2,
  .grid > h3,
  .grid-3 > h3 {
    -ms-flex-preferred-size: calc(100% - 1rem*2);
        flex-basis: calc(100% - 1rem*2);
    -ms-flex-positive: 1;
        flex-grow: 1;
  }
}
.grid-4 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: start;
      align-items: flex-start;
}
.grid-4 > * {
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 700px) {
  .grid-4 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .grid-4 > * {
    -ms-flex-preferred-size: calc( 25% - 1rem );
        flex-basis: calc( 25% - 1rem );
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 2rem;
  }
  .grid-4 > h2,
  .grid-4 > h3 {
    -ms-flex-preferred-size: calc(100% - 1rem*2);
        flex-basis: calc(100% - 1rem*2);
    -ms-flex-positive: 1;
        flex-grow: 1;
  }
}
.grid-2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: start;
      align-items: flex-start;
}
.grid-2 > * {
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 700px) {
  .grid-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .grid-2 > * {
    -ms-flex-preferred-size: calc( 50% - 1rem );
        flex-basis: calc( 50% - 1rem );
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 2rem;
  }
  .grid-2 > h2,
  .grid-2 > h3 {
    -ms-flex-preferred-size: calc(100% - 1rem*2);
        flex-basis: calc(100% - 1rem*2);
    -ms-flex-positive: 1;
        flex-grow: 1;
  }
}
.resource-header {
  text-align: center;
}
.resource-header .wrapper > :last-child {
  border-bottom: 4px solid var(--text-color);
}
.resource-header h1 {
  margin-top: 1rem;
}
.resource-header h1 + p {
  font-weight: 700;
  margin-top: -1.5rem;
  font-size: 1.25rem;
}
[disabled],
.disabled {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (max-width: 699px) {
  table.collapse tr,
  table.collapse th,
  table.collapse td {
    display: block;
    border-left: 0;
    border-top: 0;
    line-height: 1.6;
  }
  table.collapse tr {
    border-top: 1px solid #ccc;
    margin-top: -1px;
  }
}
.embed-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  overflow-y: visible;
  padding-bottom: 56.25%;
}
.embed-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.clearfix,
.cf {
  clear: both;
}
.clearfix:after,
.cf:after {
  content: "";
  clear: both;
  display: table;
}
.ucs-icon {
  display: inline-block;
  height: 1rem;
  width: 1rem;
}
.ucs-icon .ucs-icon-use {
  fill: currentColor;
}
.section-reverse {
  --text-color: #fff;
  --bg-color: #000;
  --border-color: #666;
  --muted-color: #ccc;
}
.bracket {
  border: 0;
  margin-left: 1rem;
  z-index: 1;
}
.bracket::before {
  content: " ";
  display: block;
  position: absolute;
  width: 60px;
  width: 3rem;
  top: -20px;
  top: -1rem;
  left: -40px;
  left: -2rem;
  bottom: -20px;
  bottom: -1rem;
  border: 0 solid var(--text-color);
  border-left-width: 20px;
  border-left-width: 1rem;
  border-top-width: 10px;
  border-top-width: 0.5rem;
  border-bottom-width: 10px;
  border-bottom-width: 0.5rem;
  z-index: -1;
}
@media screen and (min-width: 700px) {
  .bracket {
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 1000px) {
  .bracket {
    margin-left: -1rem;
    width: 125%;
  }
}
.btn-sm,
.btn {
  border-radius: 0;
  border: 1px solid var(--text-color);
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  transition-property: color, background-color;
  transition-duration: var(--duration);
  padding: 0.25em 0.5em;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
  background: var(--bg-color);
  color: var(--text-color);
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 1px;
  margin-bottom: 1px;
}
.btn-sm:link,
.btn:link,
.btn-sm:visited,
.btn:visited {
  text-decoration: none;
}
.btn-sm:focus,
.btn:focus,
.btn-sm:hover,
.btn:hover,
.btn-sm:active,
.btn:active {
  color: var(--bg-color);
  background-color: var(--text-color);
  border-color: var(--text-color);
  border-bottom-style: solid;
}
.btn-action-sm {
  border-radius: 0;
  border: 2px solid #f0ba00;
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  transition-property: color, background-color;
  transition-duration: var(--duration);
  padding: 0.25em 0.5em;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
  background: #ffc600;
  color: #000;
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
}
.btn-action-sm:link,
.btn-action-sm:visited {
  text-decoration: none;
}
.btn-action-sm:focus,
.btn-action-sm:hover,
.btn-action-sm:active {
  color: #000;
  background-color: #fff;
  border-color: #ffc600;
  border-bottom-style: solid;
}
.btn-donate-sm {
  border-radius: 0;
  border: 2px solid #f72d00;
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  transition-property: color, background-color;
  transition-duration: var(--duration);
  padding: 0.25em 0.5em;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
  background: #ff522b;
  color: #fff;
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
}
.btn-donate-sm:link,
.btn-donate-sm:visited {
  text-decoration: none;
}
.btn-donate-sm:focus,
.btn-donate-sm:hover,
.btn-donate-sm:active {
  color: #000;
  background-color: #fff;
  border-color: #ff522b;
  border-bottom-style: solid;
}
.btn-action {
  border-radius: 0;
  border: 3px solid #f0ba00;
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  transition-property: color, background-color;
  transition-duration: var(--duration);
  padding: 0.5em 1em;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
  background: #ffc600;
  color: #000;
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.btn-action:link,
.btn-action:visited {
  text-decoration: none;
}
.btn-action:focus,
.btn-action:hover,
.btn-action:active {
  color: #000;
  background-color: #fff;
  border-color: #ffc600;
  border-bottom-style: solid;
}
.btn-donate {
  border-radius: 0;
  border: 3px solid #f72d00;
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  transition-property: color, background-color;
  transition-duration: var(--duration);
  padding: 0.5em 1em;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
  background: #ff522b;
  color: #fff;
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.btn-donate:link,
.btn-donate:visited {
  text-decoration: none;
}
.btn-donate:focus,
.btn-donate:hover,
.btn-donate:active {
  color: #000;
  background-color: #fff;
  border-color: #ff522b;
  border-bottom-style: solid;
}
.breadcrumb {
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-size: 0.75rem;
}
.breadcrumb a {
  color: #ff522b;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom-color: transparent;
}
.breadcrumb a:hover {
  border-bottom-color: #00aeeb;
  border-bottom-style: solid;
}
.skip-link {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
  display: block;
  top: -1px;
  left: -1px;
}
#site-header > .wrapper-lg {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
/*	********************************
 *	UCSS MODULE: EVERYACTION OVERRIDE
 *	********************************
 */
.ngp-form.at,
.ngp-form.at *,
.ngp-form.at input[type=email] {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
}
.ngp-form.at label {
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
}
.ngp-form.at .at-legend {
  margin-left: 0;
  margin-bottom: 1.6rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
}
@media screen and (min-width: 1000px) {
  .ngp-form.at .at-legend {
    font-size: 1.8rem;
    line-height: 1.16666667;
  }
}
.ngp-form.at .at-legend:empty {
  display: none;
}
.ngp-form.at .at-title {
  display: none;
}
.ngp-form.at a {
  color: inherit;
  text-decoration: none;
}
.ngp-form.at a:hover {
  color: #00aeeb;
}
.ngp-form.at small {
  font-size: 80% !important;
}
.ngp-form.at strong,
.ngp-form.at b {
  font-weight: bold;
}
.ngp-form.at em,
.ngp-form.at i {
  font-style: italic;
}
.ngp-form.at .btn-at-primary {
  border-radius: 0;
  border: 1px solid var(--text-color);
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  transition-property: color, background-color;
  transition-duration: var(--duration);
  padding: 0.25em 0.5em;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
  background: var(--bg-color);
  color: var(--text-color);
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 1px;
  margin-bottom: 1px;
}
.ngp-form.at .btn-at-primary:link,
.ngp-form.at .btn-at-primary:visited {
  text-decoration: none;
}
.ngp-form.at .btn-at-primary:focus,
.ngp-form.at .btn-at-primary:hover,
.ngp-form.at .btn-at-primary:active {
  color: var(--bg-color);
  background-color: var(--text-color);
  border-color: var(--text-color);
  border-bottom-style: solid;
}
.ngp-form.at .btn-at-primary:link,
.ngp-form.at .btn-at-primary:visited {
  text-decoration: none;
}
.ngp-form.at .btn-at-primary:focus,
.ngp-form.at .btn-at-primary:hover,
.ngp-form.at .btn-at-primary:active {
  color: var(--bg-color);
  background-color: var(--text-color);
  border-color: var(--text-color);
  border-bottom-style: solid;
}
.ngp-form.at .at-inner,
.ngp-form.at .at-fieldset,
.ngp-form.at fieldset,
.ngp-form.at .at-markup {
  padding: 0;
  border-color: transparent;
  border-width: 0;
}
.ngp-form.at .at-inner input,
.ngp-form.at .at-fieldset input,
.ngp-form.at fieldset input,
.ngp-form.at .at-markup input,
.ngp-form.at .at-inner select,
.ngp-form.at .at-fieldset select,
.ngp-form.at fieldset select,
.ngp-form.at .at-markup select,
.ngp-form.at .at-inner textarea,
.ngp-form.at .at-fieldset textarea,
.ngp-form.at fieldset textarea,
.ngp-form.at .at-markup textarea {
  border-radius: 0;
}
.ngp-form.at .at-inner input[type]:focus,
.ngp-form.at .at-fieldset input[type]:focus,
.ngp-form.at fieldset input[type]:focus,
.ngp-form.at .at-markup input[type]:focus,
.ngp-form.at .at-inner select[type]:focus,
.ngp-form.at .at-fieldset select[type]:focus,
.ngp-form.at fieldset select[type]:focus,
.ngp-form.at .at-markup select[type]:focus,
.ngp-form.at .at-inner textarea[type]:focus,
.ngp-form.at .at-fieldset textarea[type]:focus,
.ngp-form.at fieldset textarea[type]:focus,
.ngp-form.at .at-markup textarea[type]:focus {
  border-color: #00aeeb;
}
.ngp-form.at .at-inner label,
.ngp-form.at .at-fieldset label,
.ngp-form.at fieldset label,
.ngp-form.at .at-markup label {
  font-size: 0.8rem;
}
.ngp-form.at .at-inner label > *,
.ngp-form.at .at-fieldset label > *,
.ngp-form.at fieldset label > *,
.ngp-form.at .at-markup label > * {
  font-size: 1rem;
}
.ngp-form.at fieldset {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.ngp-form.at .at-form-submit {
  padding: 1rem 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: stretch;
      justify-content: stretch;
  -ms-flex-align: stretch;
      align-items: stretch;
}
.ngp-form.at .at-form-submit > * {
  margin: 0;
}
.ngp-form.at .at-form-submit .at-submit {
  border-radius: 0;
  border: 3px solid #f0ba00;
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  transition-property: color, background-color;
  transition-duration: var(--duration);
  padding: 0.5em 1em;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
  background: #ffc600;
  color: #000;
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.ngp-form.at .at-form-submit .at-submit:link,
.ngp-form.at .at-form-submit .at-submit:visited {
  text-decoration: none;
}
.ngp-form.at .at-form-submit .at-submit:focus,
.ngp-form.at .at-form-submit .at-submit:hover,
.ngp-form.at .at-form-submit .at-submit:active {
  color: #000;
  background-color: #fff;
  border-color: #ffc600;
  border-bottom-style: solid;
}
.ngp-form.at .at-row > [class^="at-"] {
  margin-left: 0;
  margin-bottom: 0;
  margin-right: 0.5em;
}
.ngp-form.at .at-row > [class^="at-"]:last-child {
  margin-right: 0;
}
.ngp-form.at .at-row .MobilePhone {
  margin-bottom: 1.5rem;
}
.ngp-form.at .icon {
  margin-right: 8px;
}
.ngp-form.at form .label-amount {
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-size: 1.2rem;
  color: transparent;
  text-shadow: none;
}
.ngp-form.at form .label-amount > a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: #000;
  border-radius: 0;
  border: 2px solid #cc9e00;
  background-color: #ffc600;
}
.ngp-form.at form .label-amount > a span {
  color: inherit;
  font-size: 1rem;
  line-height: 1;
  margin: 0;
}
.ngp-form.at form .label-amount:hover > a,
.ngp-form.at form .label-amount:focus > a {
  background-color: transparent;
  border-color: #ffc600;
}
.ngp-form.at form .label-amount input[type="radio"]:checked + a {
  background-color: #000;
  color: #ffc600 !important;
  border-color: #000;
}
.ngp-form.at form .label-amount.label-otheramount input {
  color: #000 !important;
  border-bottom-color: #ffc600;
}
.ngp-form.at form .label-amount.label-otheramount input:hover,
.ngp-form.at form .label-amount.label-otheramount input:focus {
  border-color: transparent;
  border-bottom-color: #ffc600;
}
.ngp-form.at form .label-amount.label-otheramount input:required {
  background-color: transparent;
}
.ngp-form.at form .label-amount.label-otheramount,
.ngp-form.at form .label-amount.label-otheramount span::after {
  content: "" !important;
}
.ngp-form.at form .label-amount.label-otheramount .error {
  font-size: 0.8rem !important;
  margin-bottom: 0;
}
.ngp-form.at small.info a {
  text-decoration: none;
}
.ngp-form.at [data-at-id^=Greeting]::before {
  content: "To:\20";
  font-weight: bold;
}
.ngp-form.at .at-recurring {
  background-color: #00aeeb;
  color: #fff;
  padding: 1rem;
  margin: 1rem 0;
}
.ngp-form.at .at-recurring .at-check.IsRecurring,
.ngp-form.at .at-recurring .at-check.IsRecurring .at-checkbox-title-container {
  margin-bottom: 0;
}
.ngp-form.at .at-recurring input[type="checkbox"] + span {
  padding-left: 2rem;
}
.ngp-form.at .at-recurring input[type="checkbox"] + span::before {
  height: 30px;
  height: 1.5rem;
  width: 30px;
  width: 1.5rem;
  background: #fff;
  border-radius: 0;
  border: 4px solid #ff522b;
  content: "";
  display: block;
}
.ngp-form.at .at-recurring input[type="checkbox"] + span::after {
  color: #ff522b;
  font-size: 20px;
  font-size: 1rem;
  line-height: 1.2;
  left: 7px;
}
.ngp-form.at .at-recurring input[type="checkbox"]:hover + span::before {
  border-color: #f72d00;
}
.ngp-form.at .at-recurring input[type="checkbox"]:checked + span::before {
  background-color: #fff;
}
.ngp-form.at .SmsSubscribeMobilePhone label .at-checkbox-title-container,
.ngp-form.at .YesSignMeUpForUpdatesForBinder label .at-checkbox-title-container {
  font-size: 0.8rem;
}
.ngp-form.at .SmsLegalDisclaimer {
  font-size: 0.7rem;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
}
.ngp-form.at .Country .selection {
  width: 100%;
}
.ngp-form.at .at-row label.MobilePhone {
  margin-bottom: 0;
}
.ngp-form.at .at-row label.MobilePhone .intl-tel-input {
  margin-bottom: 1rem;
}
.ngp-form.at .select2-container,
.ngp-form.at .select2-selection--single {
  margin-bottom: 0;
  border-radius: 0;
  display: none;
}
.ngp-form.at .select2-hidden-accessible {
  border: 1px solid var(--border-color) !important;
  clip: auto !important;
  clip: initial !important;
  height: 2.33333333rem !important;
  margin: 0 0 1rem 0 !important;
  overflow: visible !important;
  padding: 0.5em 0.75em 0.5em 0.5em !important;
  position: relative !important;
  width: 100% !important;
}
.ngp-form.at .select2-hidden-accessible[multiple] {
  height: auto !important;
}
.ngp-form.at .at-whatsthis {
  font-size: 0.8rem;
}
.ngp-form.at select {
  line-height: 1.2;
  background-size: 0.5rem;
}
#monthlysubmitcontainer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
#monthlysubmitcontainer #monthlysubmitter {
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif !important;
  float: none !important;
}
.select2-results li,
.intl-tel-input .country-list li,
.select2-results li.country,
.intl-tel-input .country-list li.country {
  list-style: none;
  margin-left: 0;
}
.fastaction-block .fastAction {
  padding-left: 0;
  padding-right: 0;
  font-size: 0.8rem;
}
#site-footer #validators {
  background-color: #eee;
  margin: 1rem 0;
  padding: 1rem 0;
}
#site-footer #validators .wrapper-lg {
  border-top-width: 0;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#site-footer #validators .wrapper-lg::before {
  display: none;
}
#site-footer #validators img {
  display: block;
  width: 100%;
  min-height: 4rem;
}
#site-footer #validators .val-gs img,
#site-footer #validators .val-cw img {
  min-height: 6rem;
}
#site-footer #validators .val-bb img {
  height: 4rem;
  width: auto;
}
#site-footer #validators .val-gs img {
  width: 6rem;
  height: 6rem;
}
#site-footer #validators a {
  border-bottom-width: 0;
  margin: 1rem;
  display: block;
}
.icon {
  margin-right: 0;
}
#site-header {
  padding-top: 0.5rem;
}
#site-header > .wrapper-lg {
  -ms-flex-align: start;
      align-items: flex-start;
}
@media screen and (min-width: 700px) {
  #site-header > .wrapper-lg {
    -ms-flex-align: center;
        align-items: center;
  }
}
#header-logo-unstacked {
  display: none;
  width: 16rem;
}
@media screen and (min-width: 700px) {
  #header-logo-unstacked {
    display: block;
  }
}
#header-logo-stacked {
  display: block;
  width: 6rem;
  max-width: 6rem;
}
@media screen and (min-width: 700px) {
  #header-logo-stacked {
    display: none;
  }
}
.header-actions {
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: end;
      align-items: flex-end;
}
.header-actions > * {
  margin-top: 0.25em;
  margin-left: 0.5rem;
  display: block;
  -ms-flex-order: 2;
      order: 2;
}
.header-actions > .btn-donate-sm {
  margin-top: 0;
  display: inline-block;
  -ms-flex-order: 1;
      order: 1;
}
@media screen and (min-width: 700px) {
  .header-actions {
    display: block;
  }
  .header-actions > * {
    display: inline-block;
  }
}
#site-footer {
  font-size: 0.75rem;
}
@media screen and (min-width: 700px) {
  #site-footer .wrapper-lg {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: end;
        align-items: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#site-footer .wrapper-lg::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  border-top: 2px solid var(--text-color);
}
#site-footer .footer-follow,
#site-footer .footer-info {
  padding-top: 1rem;
}
#site-footer .footer-info span::after {
  content: " |";
}
#site-footer .footer-info span:last-child::after {
  content: "";
}
#site-footer .footer-follow {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-preferred-size: 10rem;
      flex-basis: 10rem;
  padding-top: 1.5rem;
}
@media screen and (min-width: 700px) {
  #site-footer .footer-follow {
    margin-left: 1rem;
  }
}
#site-footer .footer-follow a {
  display: block;
  border-bottom: 0;
}
#site-footer .footer-follow .ucs-icon {
  height: 1.5rem;
  width: 1.5rem;
}
#site-footer nav {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
#site-footer nav a {
  margin-right: 1rem;
}
#site-footer .footer-copy {
  font-size: 0.65rem;
}
.block-field-blocknoderesourcefield-audio-embed,
.block-field-blocknoderesourcefield-embed-code,
.views-element-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 700px) {
  .block-field-blocknoderesourcefield-audio-embed,
  .block-field-blocknoderesourcefield-embed-code,
  .views-element-container {
    max-width: 62rem;
  }
}
#user-login-form,
.column-general .main-region,
.block-page-title-block {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 700px) {
  #user-login-form,
  .column-general .main-region,
  .block-page-title-block {
    max-width: 32rem;
  }
}
@media screen and (min-width: 700px) {
  #user-login-form,
  .column-general .main-region,
  .block-page-title-block {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 700px) and screen and (min-width: 700px) {
  #user-login-form,
  .column-general .main-region,
  .block-page-title-block {
    max-width: 32rem;
  }
}
#block-ucstheme-page-title.hero-parent {
  max-width: none;
  max-width: initial;
  padding-left: 0;
  padding-left: initial;
  padding-right: 0;
  padding-right: initial;
}
@media screen and (min-width: 700px) {
  .column-header .main-region {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 700px) and screen and (min-width: 700px) {
  .column-header .main-region {
    max-width: 32rem;
  }
}
.field--name-field-sections > .field__item > .paragraph {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 700px) {
  .field--name-field-sections > .field__item > .paragraph {
    max-width: 32rem;
  }
}
.field--name-field-sections > .field__item > .paragraph--type--submenu-section,
.field--name-field-sections > .field__item > .paragraph--type--media-section {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 700px) {
  .field--name-field-sections > .field__item > .paragraph--type--submenu-section,
  .field--name-field-sections > .field__item > .paragraph--type--media-section {
    max-width: 62rem;
  }
}
.field--name-field-sections > .field__item > .paragraph--type--issue-action-section,
.field--name-field-sections > .field__item > .paragraph--type--block-section {
  max-width: none;
  max-width: initial;
  padding-left: 0;
  padding-right: 0;
}
.node-id-24 .layout-content {
  --text-color: #fff;
  --bg-color: #000;
  --border-color: #666;
  --muted-color: #ccc;
}
.block,
.region,
.section-reverse,
.node--type-action-alert {
  color: var(--text-color);
  background-color: var(--bg-color);
  border-color: var(--border-color);
}
main {
  margin-top: 3rem;
  margin-bottom: 4rem;
}
[type=submit] {
  border-radius: 0;
  border: 3px solid #f0ba00;
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  transition-property: color, background-color;
  transition-duration: var(--duration);
  padding: 0.5em 1em;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
  background: #ffc600;
  color: #000;
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  white-space: normal;
}
[type=submit]:link,
[type=submit]:visited {
  text-decoration: none;
}
[type=submit]:focus,
[type=submit]:hover,
[type=submit]:active {
  color: #000;
  background-color: #fff;
  border-color: #ffc600;
  border-bottom-style: solid;
}
[hidden],
.visually-hidden {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
  display: block;
  top: -1px;
  left: -1px;
}
.intro {
  font-size: 1.25rem;
}
@media screen and (min-width: 700px) {
  fieldset .at-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: end;
        align-items: flex-end;
  }
  fieldset .at-row > label,
  fieldset .at-row > fieldset {
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    margin-right: 1rem;
  }
  fieldset .at-row > label:last-child,
  fieldset .at-row > fieldset:last-child {
    margin-right: 0;
  }
  [for=title] {
    -ms-flex: 0 0 4rem;
        flex: 0 0 4rem;
  }
  [for=city],
  [for=country],
  [for=fname],
  [for=lname] {
    -ms-flex-positive: 10;
        flex-grow: 10;
  }
}
.contact-options {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: stretch;
      align-items: stretch;
}
.contact-options * {
  -ms-flex: 1 1 100%;
      flex: 1 1 100%;
  margin-bottom: 0.5rem;
}
.contact-options a {
  display: block;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
}
.contact-options a:before {
  content: "… ";
}
@media screen and (min-width: 700px) {
  .contact-options a {
    -ms-flex: 0 0 calc(50% - 1rem/2);
        flex: 0 0 calc(50% - 1rem/2);
  }
}
.at.ngp-form .radios {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 1rem;
}
.at.ngp-form .radios label input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  content: "";
  display: block;
  position: absolute;
  height: 1rem;
  width: 1rem;
  left: 0;
  top: 0.25em;
  margin: 0;
  outline: none;
  border: 2px solid #00aeeb;
  border-radius: 50%;
}
.at.ngp-form .radios label input[type="radio"]:checked {
  background-color: #00aeeb;
  border: 2px solid #00aeeb;
}
.at.ngp-form .radios label {
  display: block;
  position: relative;
  margin: 0;
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
}
.at.ngp-form .at-steps .at-step {
  list-style: none;
  margin: 0;
}
.at.ngp-form .at-steps .at-step::before {
  display: none;
}
#site-footer #validators .donation-assistance {
  text-align: center;
  padding: 0.5rem 1rem;
  max-width: 32rem;
  margin: 0 auto;
}
#site-footer #validators .donation-assistance a {
  display: inline;
  margin: 0;
}
#site-footer #validators {
  display: none;
}
.ucs-donation-template #site-footer #validators {
  display: block;
}
.ucs-donation-template #site-header .btn-donate-sm {
  display: none;
}
