/* ====================================================================================
	alpha-me() - by @cballenar - January 4th, 2014
=======================================================================================

A SCSS mixin to create RGB fallbacks for RGBa styles.

## How to
This mixin takes up to 4 arguments (minimum of two)

 - $property: the css property to be used,      e.g.: 'border'
 - $attributes: the additional attributes,      e.g.: '1px solid'
 - $color: the translucent color to be used,    e.g.: 'rgba(240,20,200,.5)'
 - $background: color that will be used in mix, e.g.: '#DADADA'

You're required to enter at least the $property and $color variables, so you end up
with the following options:
 - @include alpha-me($property, $color);
 - @include alpha-me($property, $color, $background);
 - @include alpha-me($property, $attributes, $color);
 - @include alpha-me($property, $attributes, $color, $background);

### Sample input
	.element { 
		@include alpha-me( color, rgba(black,.5) );

		@include alpha-me( background-color, rgba(#dffa14,.5), #529ef0);

		@include alpha-me( box-shadow, 1px 1px 2px, rgba(white, .25));

		@include alpha-me( border, 3px solid, rgba(240,20,200,.5), #DADADA); }

### Sample output:
	.element { 
		color: #7F7F7F;
		color: rgba(0, 0, 0, 0.5);

		background-color: #98CC82;
		background-color: rgba(223, 250, 20, 0.5);

		box-shadow: 1px 1px 2px #FFF;
		box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.25);

		border: 3px solid #E577D1;
		border: 3px solid rgba(240, 20, 200, 0.5); }

## Notes
 - If no background color is specified, white is used by default
 - We can use the rgba SASS function to enter the translucent color in other formats
	 - rgba(red, .5)
	 - rgba(#dffa14, .75)
 - Can you think of a better name for the mixin? I'm not in love with it...

=======================================================================================

## Credits
Thanks to John W. Long (@johnwlong) whose work is the heart of this mixin.
(http://thesassway.com/intermediate/mixins-for-semi-transparent-colors)

=======================================================================================
*/
/*body { background: #529ef0; }
.box {
	width: 100px; height: 100px;
	position: absolute;
	margin: auto;
	top: 0; right: 0; bottom: 0; left: 0;

	text-align:center; line-height: 100px; 

	// 2 attributes
	@include alpha-me(color, rgba(black,.5));

	// 3 attributes
	@include alpha-me(background-color, rgba(#dffa14,.5), #529ef0);

	// 3 attributes
	@include alpha-me(box-shadow, 1px 1px 2px, rgba(white, .25));

	// 4 attributes
	@include alpha-me(border, 3px solid, rgba(240,20,200,.5), #DADADA);
}*/
/* Animation mixin
 * 
 * Use this mixin to create multiple animations.
 * 
 * Usage: 
 
	.class { @include animation('animation-1 .5s 1', 'animation-2 .5s 1 .5s') }
	
 * For a list of available animation types, please see MDN
 * [https://developer.mozilla.org/en-US/docs/Web/CSS/animation]
 *
 * Credit: [http://joshbroton.com/quick-fix-sass-mixins-for-css-keyframe-animations/]
 */
/* 384px */
/* 560px */
/* 640px */
/* 782px */
/* 1024px */
/* 1408px */
/* 1888px */
/*
	
	@media only screen and (max-width: 35em) { }
	@media only screen and (min-width: 0em) and (max-width: 35em) { }
	@media only screen and (min-width: 35em) { }
	
	@media only screen and (max-width: 35em) { }
	@media only screen and (min-width: 24.0625em) and (max-width: 35em) { }
	@media only screen and (min-width: 35em) { }
	
	@media only screen and (max-width: 40em) { }
	@media only screen and (min-width: 35.0625em) and (max-width: 40em) { }
	@media only screen and (min-width: 40em) { }
	
	@media only screen and (max-width: 48.875em) { }
	@media only screen and (min-width: 40.0625em) and (max-width: 48.875em) { }
	@media only screen and (min-width: 48.875em) { }
	
	@media only screen and (max-width: 64em) { }
	@media only screen and (min-width: 48.9375em) and (max-width: 64em) { }
	@media only screen and (min-width: 64em) { }
	
	@media only screen and (max-width: 80em) { }
	@media only screen and (min-width: 64.0625em) and (max-width: 80em) { }
	@media only screen and (min-width: 80em) { }
	
	@media only screen and (max-width: 108em) { }
	@media only screen and (min-width: 80.0625em) and (max-width: 108em) { }
	@media only screen and (min-width: 108em) { }
*/
/* Keyframes mixin
 * 
 * Use this mixin to create your own [name] mixin for referencing in your styles.
 * 
 * Usage: 
 
	@include keyframes(fadeIn) {
		from	{ opacity: 0; }
		to		{ opacity: 1; }
	}
	
 * For a list of available animation types, please see MDN
 * [https://developer.mozilla.org/en-US/docs/Web/CSS/animation]
 */
/* Vertical Alignment
 * 
 * Use this mixin to vertically center an elment in its container box
 * 
 * Usage: 
 *
 *	.class { @include vertical-align; }
 *
 * Credit: [http://zerosixthree.se/vertical-align-anything-with-just-3-lines-of-css/]
 * 
 * Note: If blurry, add the following to the parent element:

	.parent-element {
		-webkit-transform-style: preserve-3d;
	}
 */
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:100,300,400,400i,700");
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects; }

a:active,
a:hover {
  outline-width: 0; }

b,
strong {
  font-weight: inherit; }

b,
strong {
  font-weight: bolder; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background-color: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

img {
  border-style: none; }

svg:not(:root) {
  overflow: hidden; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

figure {
  margin: 0; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  margin: 0; }

optgroup {
  font-weight: bold; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

textarea {
  overflow: auto; }

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  -webkit-appearance: textfield; }

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

.lazy-load {
  transition: opacity 0.5s;
  opacity: 0; }

.lazy-load.is-loaded {
  opacity: 1; }

html {
  box-sizing: border-box;
  overflow-x: hidden; }

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

body {
  background: #fff; }

#wpadminbar {
  position: fixed; }

#wpadminbar.open {
  position: fixed !important; }

.admin-bar .site-header.is-fixed {
  animation: slidedown 0.5s;
  top: 46px; }

@media screen and (min-width: 48em) {
  .admin-bar .site-header.is-fixed {
    animation: none;
    top: 32px; } }
@keyframes slidedown {
  from {
    top: 0px; }
  to {
    top: 46px; } }
.has-usc-cardinal-color {
  color: #900; }

.has-usc-cardinal-background-color {
  background-color: #900; }

.has-usc-gold-color {
  color: #fc0; }

.has-usc-gold-background-color {
  background-color: #fc0; }

.has-cardinal-50-color {
  color: #900; }

.has-cardinal-50-background-color {
  background-color: #900; }

.has-cardinal-60-color {
  color: #850000; }

.has-cardinal-60-background-color {
  background-color: #850000; }

.has-cardinal-70-color {
  color: #630000; }

.has-cardinal-70-background-color {
  background-color: #630000; }

.has-cardinal-80-color {
  color: #470000; }

.has-cardinal-80-background-color {
  background-color: #470000; }

.has-gold-50-color {
  color: #fc0; }

.has-gold-50-background-color {
  background-color: #fc0; }

.has-gold-60-color {
  color: #deb40b; }

.has-gold-60-background-color {
  background-color: #deb40b; }

.has-white-color {
  color: #fff; }

.has-white-background-color {
  background-color: #fff; }

.has-off-white-color {
  color: #fff; }

.has-off-white-background-color {
  background-color: #fafafa; }

.has-base-10-color {
  color: #f7f7f5; }

.has-base-10-background-color {
  background-color: #f7f7f5; }

.has-base-20-color {
  color: #ededeb; }

.has-base-20-background-color {
  background-color: #ededeb; }

.has-base-30-color {
  color: #e0e0dc; }

.has-base-30-background-color {
  background-color: #e0e0dc; }

.has-base-40-color {
  color: #c3c2bb; }

.has-base-40-background-color {
  background-color: #c3c2bb; }

.has-base-50-color {
  color: #77766f; }

.has-base-50-background-color {
  background-color: #77766f; }

.has-base-60-color {
  color: #5e5d56; }

.has-base-60-background-color {
  background-color: #5e5d56; }

.has-base-70-color {
  color: #44433c; }

.has-base-70-background-color {
  background-color: #44433c; }

.has-base-80-color {
  color: #33322a; }

.has-base-80-background-color {
  background-color: #33322a; }

.has-base-90-color {
  color: #1f1e18; }

.has-base-90-background-color {
  background-color: #1f1e18; }

.has-base-100-color {
  color: #141410; }

.has-base-100-background-color {
  background-color: #141410; }

.has-concrete-10-color {
  color: #fafafa; }

.has-concrete-10-background-color {
  background-color: #fafafa; }

.has-concrete-20-color {
  color: #f5f5f5; }

.has-concrete-20-background-color {
  background-color: #f5f5f5; }

.has-concrete-30-color {
  color: #eee; }

.has-concrete-30-background-color {
  background-color: #eee; }

.has-concrete-40-color {
  color: #e0e0e0; }

.has-concrete-40-background-color {
  background-color: #e0e0e0; }

.has-concrete-50-color {
  color: #bdbdbd; }

.has-concrete-50-background-color {
  background-color: #bdbdbd; }

.has-concrete-60-color {
  color: #9e9e9e; }

.has-concrete-60-background-color {
  background-color: #9e9e9e; }

.has-concrete-70-color {
  color: #757575; }

.has-concrete-70-background-color {
  background-color: #757575; }

.has-concrete-80-color {
  color: #616161; }

.has-concrete-80-background-color {
  background-color: #616161; }

.has-concrete-90-color {
  color: #424242; }

.has-concrete-90-background-color {
  background-color: #424242; }

.has-concrete-100-color {
  color: #212121; }

.has-concrete-100-background-color {
  background-color: #212121; }

.has-sky-40-color {
  color: #2a7db8; }

.has-sky-40-background-color {
  background-color: #2a7db8; }

.has-sky-50-color {
  color: #01548f; }

.has-sky-50-background-color {
  background-color: #01548f; }

.has-sky-60-color {
  color: #01406e; }

.has-sky-60-background-color {
  background-color: #01406e; }

.has-sky-70-color {
  color: #012b4a; }

.has-sky-70-background-color {
  background-color: #012b4a; }

.has-popgreen-30-color {
  color: #56962d; }

.has-popgreen-30-background-color {
  background-color: #56962d; }

.has-popgreen-40-color {
  color: #427d1d; }

.has-popgreen-40-background-color {
  background-color: #427d1d; }

.has-popgreen-50-color {
  color: #305718; }

.has-popgreen-50-background-color {
  background-color: #305718; }

.has-popgreen-70-color {
  color: #254710; }

.has-popgreen-70-background-color {
  background-color: #254710; }

.has-informational-50-color {
  color: #55aafa; }

.has-informational-50-background-color {
  background-color: #55aafa; }

.has-error-50-color {
  color: #e0182d; }

.has-error-50-background-color {
  background-color: #e0182d; }

.has-warning-50-color {
  color: #efc114; }

.has-warning-50-background-color {
  background-color: #efc114; }

.has-success-50-color {
  color: #73c217; }

.has-success-50-background-color {
  background-color: #73c217; }

.has-black-to-transparent-gradient-background {
  background: linear-gradient(176deg, rgba(84, 84, 84, 0) 41%, #000 98%); }

.site-branding,
.site-navigation,
.nav-breadcrumbs,
.site-content,
.site-footer,
.site-contact {
  padding: 0 1rem; }

@media screen and (min-width: 48em) {
  .site-branding,
  .site-navigation,
  .nav-breadcrumbs,
  .site-content,
  .site-footer,
  .site-contact {
    padding: 0; } }
.site-wrapper {
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  height: 100%;
  position: relative;
  padding: 0;
  left: 0;
  transition: 0.2s; }

.site-content {
  height: 100%;
  width: 100vw; }

@media screen and (min-width: 70rem) {
  .page-template-tpl-full-width .site-content {
    height: 100%;
    margin: 0 auto;
    max-width: 70rem;
    padding: 0 1rem; } }
.page-template-tpl-full-width .site-content article {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0; }

.page-template-tpl-full-width .site-content article header .entry-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }

.page-template-tpl-full-width .site-content article figure.wp-block-image:not(.wp-block).alignfull {
  margin: 0 0 1rem; }

@media screen and (min-width: 48em) {
  .page-template-tpl-full-width .site-content article figure.wp-block-image:not(.wp-block).alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 1rem; } }
.page-template-tpl-full-width .site-content article figure.wp-block-image:not(.wp-block).alignwide {
  margin: 0 0 1rem 50%; }

.page-template-tpl-full-width .site-content article footer {
  margin: 0; }

.page-template-default .site-content {
  height: 100%;
  margin: 0 auto;
  max-width: 70rem;
  width: 100%;
  padding: 0 1rem; }

.page-template-default .site-content .entry-image {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 3rem;
  padding: 0; }

.page-template-default .site-content .entry-image img {
  height: auto;
  width: 100%; }

.page-template-default .site-content .entry-image figcaption {
  margin: 0.5rem 0 1rem; }

.page-template-default .site-content .entry-header:before {
  background-color: #900;
  content: "";
  display: block;
  height: 0.5rem;
  margin: 0 0 1rem;
  width: 5rem; }

.page-template-default .site-content .entry-title {
  overflow: hidden;
  text-overflow: ellipsis; }

.search .site-content,
.search-results .site-content,
.archive .site-content,
.blog .site-content,
.category .site-content {
  height: 100%;
  margin: 0 auto;
  max-width: 70rem;
  width: 100%;
  padding: 0 1rem; }

.search .site-content .entry-image,
.search-results .site-content .entry-image,
.archive .site-content .entry-image,
.blog .site-content .entry-image,
.category .site-content .entry-image {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 3rem;
  padding: 0; }

.search .site-content .entry-image img,
.search-results .site-content .entry-image img,
.archive .site-content .entry-image img,
.blog .site-content .entry-image img,
.category .site-content .entry-image img {
  height: auto;
  width: 100%; }

.search .site-content .entry-header:before,
.search-results .site-content .entry-header:before,
.archive .site-content .entry-header:before,
.blog .site-content .entry-header:before,
.category .site-content .entry-header:before {
  background-color: #900;
  content: "";
  display: block;
  height: 0.5rem;
  width: 5rem;
  margin: 0 0 1rem; }

.search .site-content .entry-title,
.search-results .site-content .entry-title,
.archive .site-content .entry-title,
.blog .site-content .entry-title,
.category .site-content .entry-title {
  text-overflow: ellipsis; }

.post-template-default .site-content,
.single .site-content {
  margin: 0 auto;
  max-width: 70rem;
  width: 100%;
  padding: 0 1rem; }

.post-template-default .site-content .entry-image,
.single .site-content .entry-image {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 3rem;
  padding: 0; }

.post-template-default .site-content .entry-image img,
.single .site-content .entry-image img {
  height: auto;
  width: 100%; }

.post-template-default .site-content .entry-title,
.single .site-content .entry-title {
  overflow: hidden;
  text-overflow: ellipsis; }

.post-template-default .site-content .entry-title:before,
.single .site-content .entry-title:before {
  background-color: #900;
  content: "";
  display: block;
  margin-bottom: 1rem;
  height: 0.5rem;
  margin: 0 0 1rem;
  width: 5rem; }

.site-footer-columns {
  border-bottom: 1px solid #5e5d56;
  padding: 1.5rem 0; }

@media screen and (min-width: 48em) {
  .site-footer-columns {
    padding: 3rem 0 2rem; } }
.site-header {
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #fff;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 100vw; }

.site-header.is-fixed {
  animation: slideDown 0.5s;
  position: fixed;
  top: 0;
  z-index: 99; }

@media screen and (min-width: 48em) {
  .site-header.is-fixed {
    animation: none; }
    .site-header.is-fixed .site-branding-usc, .site-header.is-fixed .site-branding-unique {
      display: none; }

  .site-header.is-fixed + #primary {
    margin-top: 9rem; }

  .site-header.is-fixed .site-navigation .site-navigation-wrapper {
    border-top: none; }
  .site-header.is-fixed .site-navigation .edit-menu {
    top: -.8rem; }

  .site-header.is-fixed .site-navigation-menu .menu-item.persist > a {
    color: #fff;
    font-weight: 900;
    background: rgba(180, 0, 0, 0.9); }
    .site-header.is-fixed .site-navigation-menu .menu-item.persist > a:after {
      left: 0;
      opacity: 1; }
    .site-header.is-fixed .site-navigation-menu .menu-item.persist > a:hover {
      background: rgba(180, 0, 0, 0.9) !important; }
      .site-header.is-fixed .site-navigation-menu .menu-item.persist > a:hover:after {
        background: #900; } }
@media screen and (max-width: 48em) {
  .site-header {
    height: 6rem; }
    .site-header.is-fixed {
      height: 3rem; }

  .site-header.is-fixed + #primary {
    margin-top: 6rem; }

  .site-branding-usc, .site-branding-unique {
    position: absolute; }

  .site-branding-usc {
    top: .5rem; }

  .site-branding-unique {
    border-top: 1px solid #ededeb;
    top: 3rem; } }
@keyframes slideDown {
  from {
    top: -48px; }
  to {
    top: 0px; } }
.site-header.is-fixed .site-header-wrapper .site-branding-unique {
  display: none; }

.site-header .site-header-wrapper {
  margin: 0 auto;
  max-width: 70rem;
  position: relative;
  width: 100%; }

@media screen and (min-width: 48em) {
  .site-header .site-header-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap; } }
.content-area {
  width: 100%; }

.site-main {
  margin: 4rem 0;
  width: 100%; }

.page-template-default .site-main {
  margin: 0 0 4rem; }

.page-template-tpl-full-width .site-main {
  margin: 0; }

.site-sidebar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }

.site-sidebar .widget {
  background: #fafafa;
  border-radius: 2px;
  padding: 2em; }

.site-sidebar .widget .widget-title {
  margin: 0; }

.site-sidebar .widget ul {
  list-style: none;
  margin: 0;
  padding: 0; }

.site-sidebar .section-tree-navigation {
  margin: 0 0 4rem; }

.site-sidebar .section-tree-navigation .menu {
  border-bottom: 1px solid #c3c2bb; }

.site-sidebar .section-tree-navigation .menu .menu-item {
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: unset;
  border-left: unset;
  border-top: 1px solid #c3c2bb;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0; }
  .site-sidebar .section-tree-navigation .menu .menu-item a {
    color: #44433c;
    font-size: 1rem;
    font-weight: normal;
    padding: 0.75rem;
    text-decoration: none;
    width: 100%;
    position: relative; }
    .site-sidebar .section-tree-navigation .menu .menu-item a[href$=".pdf"]:after, .site-sidebar .section-tree-navigation .menu .menu-item a[href*="//"]:not([href*="campagriddev.wpengine.com"]):after, .site-sidebar .section-tree-navigation .menu .menu-item a[href*="//"]:not([href*="giving.usc.edu"]):after {
      font-family: FontAwesome;
      font-size: 1rem;
      text-align: center;
      display: inline-block;
      margin-left: .5rem; }
    .site-sidebar .section-tree-navigation .menu .menu-item a[href$=".pdf"]:after {
      content: "\f1c1"; }

body[data-basehref="https://campagriddev.wpengine.com"] .menu .menu-item a[href*="//"]:not([href*="campagriddev.wpengine.com"]):after {
  content: "\f08e"; }

body[data-basehref="https://giving.usc.edu"] .menu .menu-item a[href*="//"]:not([href*="giving.usc.edu"]):after {
  content: "\f08e"; }

.site-sidebar .section-tree-navigation .menu .menu-item.current-menu-item > a {
  color: #900;
  font-weight: 900; }

.menu-item.current-menu-item > a[href*='#'] {
  font-weight: 400 !important;
  color: #000 !important; }

.site-sidebar .section-tree-navigation .menu .menu-item.current-menu-item .accordion > a:first-of-type {
  color: #900;
  font-weight: 900; }

.site-sidebar .section-tree-navigation .menu .menu-item.current-menu-item.menu-item-has-children {
  position: relative; }

.site-sidebar .section-tree-navigation .menu .menu-item.current-menu-item.menu-item-has-children .children {
  display: none; }

@media screen and (min-width: 48em) {
  .site-sidebar .section-tree-navigation .menu .menu-item.current-menu-item.menu-item-has-children .children {
    display: block; } }
.site-sidebar .section-tree-navigation .menu .menu-item.current-menu-parent .children {
  display: none; }

@media screen and (min-width: 48em) {
  .site-sidebar .section-tree-navigation .menu .menu-item.current-menu-parent .children {
    display: block; } }
.site-sidebar .section-tree-navigation .menu .menu-item.current_page_ancestor.menu-item.menu-item-has-children .children {
  display: block; }

.site-sidebar .section-tree-navigation .menu .menu-item.menu-item-has-children .accordion {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 100%; }

.site-sidebar .section-tree-navigation .menu .menu-item.menu-item-has-children .accordion .accordion-link {
  background: transparent;
  cursor: pointer;
  height: 3rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 3rem; }

.site-sidebar .section-tree-navigation .menu .menu-item.menu-item-has-children .accordion .accordion-link:before, .site-sidebar .section-tree-navigation .menu .menu-item.menu-item-has-children.open .accordion .accordion-link:before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"/><path d="M0 0h24v24H0z" fill="none"/></svg>'); }

.site-sidebar .section-tree-navigation .menu .menu-item.menu-item-has-children .children {
  display: none; }

.site-sidebar .section-tree-navigation .menu .menu-item.menu-item-has-children.open .children {
  transition: 2s;
  display: block; }

@media screen and (min-width: 48em) {
  .site-sidebar .section-tree-navigation .menu .menu-item.menu-item-has-children .accordion-link {
    display: none; } }
.site-sidebar .section-tree-navigation .menu .menu-item .children {
  width: 100%; }

.site-sidebar .section-tree-navigation .menu .menu-item .children .menu-item {
  border-bottom: unset;
  border-left: unset;
  border-top: unset;
  width: 100%; }

.site-sidebar .section-tree-navigation .menu .menu-item .children .menu-item a {
  border-left: unset; }

.site-sidebar .section-tree-navigation .menu .menu-item .children .menu-item.current-menu-item > a {
  color: #900;
  font-weight: bold; }

.site-sidebar .widget_nav_menu,
.site-sidebar .widget-section-navigation {
  background: transparent;
  padding: 0; }

.site-sidebar .widget_nav_menu .menu,
.site-sidebar .widget-section-navigation .menu {
  border-bottom: 1px solid #ededeb; }

.site-sidebar .widget_nav_menu .menu .menu-item,
.site-sidebar .widget-section-navigation .menu .menu-item {
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: unset;
  border-left: unset;
  border-top: 1px solid #ededeb;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0; }

.site-sidebar .widget_nav_menu .menu .menu-item a,
.site-sidebar .widget-section-navigation .menu .menu-item a {
  border-left: 0.5rem solid transparent;
  color: #77766f;
  font-size: 1rem;
  font-weight: normal;
  padding: 0.75rem;
  text-decoration: none;
  width: 100%; }

.site-sidebar .widget_nav_menu .menu .menu-item a:hover,
.site-sidebar .widget-section-navigation .menu .menu-item a:hover {
  background: #fafafa; }

.site-sidebar .widget_nav_menu .menu .menu-item.current-menu-item a,
.site-sidebar .widget_nav_menu .menu .menu-item.current-menu-ancestor a,
.site-sidebar .widget-section-navigation .menu .menu-item.current-menu-item a,
.site-sidebar .widget-section-navigation .menu .menu-item.current-menu-ancestor a {
  border-left: 0.5rem solid #900; }

.site-sidebar .widget_nav_menu .menu .menu-item .sub-menu,
.site-sidebar .widget-section-navigation .menu .menu-item .sub-menu {
  display: none; }

.site-sidebar .widget_nav_menu .menu .menu-item.current-menu-item .sub-menu,
.site-sidebar .widget_nav_menu .menu .menu-item.current-menu-ancestor .sub-menu,
.site-sidebar .widget-section-navigation .menu .menu-item.current-menu-item .sub-menu,
.site-sidebar .widget-section-navigation .menu .menu-item.current-menu-ancestor .sub-menu {
  display: block;
  margin-left: 0.5em;
  padding: 0; }

.site-sidebar .widget_nav_menu .menu .menu-item.current-menu-item .sub-menu .menu-item,
.site-sidebar .widget_nav_menu .menu .menu-item.current-menu-ancestor .sub-menu .menu-item,
.site-sidebar .widget-section-navigation .menu .menu-item.current-menu-item .sub-menu .menu-item,
.site-sidebar .widget-section-navigation .menu .menu-item.current-menu-ancestor .sub-menu .menu-item {
  border-top: 0; }

.site-sidebar .widget_nav_menu .menu .menu-item.current-menu-item .sub-menu .menu-item a,
.site-sidebar .widget_nav_menu .menu .menu-item.current-menu-ancestor .sub-menu .menu-item a,
.site-sidebar .widget-section-navigation .menu .menu-item.current-menu-item .sub-menu .menu-item a,
.site-sidebar .widget-section-navigation .menu .menu-item.current-menu-ancestor .sub-menu .menu-item a {
  border-bottom: unset;
  border-left: 0.5rem solid transparent;
  color: #77766f;
  font-weight: normal; }

.site-sidebar .widget_nav_menu .menu .menu-item.current-menu-item .sub-menu .menu-item a:hover,
.site-sidebar .widget_nav_menu .menu .menu-item.current-menu-ancestor .sub-menu .menu-item a:hover,
.site-sidebar .widget-section-navigation .menu .menu-item.current-menu-item .sub-menu .menu-item a:hover,
.site-sidebar .widget-section-navigation .menu .menu-item.current-menu-ancestor .sub-menu .menu-item a:hover {
  background: transparent;
  text-decoration: underline; }

.site-sidebar .widget_nav_menu .menu .menu-item.current-menu-item .sub-menu .menu-item.current-menu-item > a,
.site-sidebar .widget_nav_menu .menu .menu-item.current-menu-ancestor .sub-menu .menu-item.current-menu-item > a,
.site-sidebar .widget-section-navigation .menu .menu-item.current-menu-item .sub-menu .menu-item.current-menu-item > a,
.site-sidebar .widget-section-navigation .menu .menu-item.current-menu-ancestor .sub-menu .menu-item.current-menu-item > a {
  color: #900;
  font-weight: bold; }

.site-sidebar .section-tree-navigation .menu .sub-menu {
  width: calc(100% + -1em); }

html,
body {
  height: 100%;
  min-height: 100%; }

.site {
  min-height: 100%; }

.site-footer.inactive .site-footer-wrapper {
  display: none; }

.site-footer-wrapper {
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 70rem;
  padding: 0 1rem;
  position: relative;
  width: 100%; }

.site-footer {
  background: #44433c;
  color: #fff;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  font-size: 1rem;
  padding: 0;
  width: 100vw; }

.site-footer .widget-title {
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.125rem;
  margin: 0 0 0.5rem;
  text-transform: uppercase; }

.site-footer p {
  font-size: 1rem; }

.site-footer a {
  color: #fff;
  font-size: 1rem;
  line-height: 1.25rem; }

.site-footer a:hover {
  color: #fff !important; }

.site-footer a:focus {
  color: #fff; }

.site-footer a:visited {
  color: #fff; }

.site-footer ul {
  list-style: none;
  margin: 0; }

.site-footer .site-footer-strip {
  margin: 0 auto;
  min-height: 2rem;
  padding: 1rem 0;
  position: relative;
  width: 100%; }

@media screen and (min-width: 48em) {
  .site-footer .site-footer-strip {
    max-width: 70rem;
    padding: 0.5rem 0;
    line-height: 2rem; } }
.site-footer .site-footer-strip .site-footer-strip-left {
  -ms-flex-align: start;
  align-items: flex-start;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start; }

@media screen and (min-width: 48em) {
  .site-footer .site-footer-strip .site-footer-strip-left {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap; } }
.site-footer .site-footer-strip .site-footer-strip-left .site-footer-credits {
  margin: 0 0 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap; }

@media screen and (min-width: 48em) {
  .site-footer .site-footer-strip .site-footer-strip-left .site-footer-credits {
    display: block;
    -ms-flex-flow: unset;
    flex-flow: unset;
    margin: 0 1rem 0 0; } }
.site-footer .site-footer-strip .site-footer-strip-left .site-footer-credits .site-credit a {
  color: #fff; }

.site-footer .site-footer-strip .site-footer-strip-left .site-footer-credits .site-credit a:hover {
  color: #fff; }

.site-footer .site-footer-strip .site-footer-strip-left .site-footer-credits .site-credit a:focus {
  color: #fff; }

.site-footer .site-footer-strip .site-footer-strip-left .site-footer-credits .theme-credit {
  margin-right: 1em; }

.site-footer .site-footer-strip .site-footer-strip-left .widget_nav_menu {
  margin: 0; }

.site-footer .site-footer-strip .site-footer-strip-left .widget_nav_menu .menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap; }

@media screen and (min-width: 48em) {
  .site-footer .site-footer-strip .site-footer-strip-left .widget_nav_menu .menu {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap; } }
.site-footer .site-footer-strip .site-footer-strip-left .widget_nav_menu .menu li {
  margin: 0 1em 0 0; }

.site-footer .site-footer-strip .site-footer-strip-left .widget_nav_menu .menu li a {
  color: #fff; }

.site-footer .site-footer-strip .site-footer-strip-left .widget_nav_menu .menu li a:hover {
  color: #fff; }

.site-footer .site-footer-strip .site-footer-strip-left .widget_nav_menu .menu li a:focus {
  color: #fff; }

.site-footer .site-footer-strip .site-footer-strip-right {
  -ms-flex-align: end;
  align-items: flex-end;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 0 1rem; }

@media screen and (min-width: 48em) {
  .site-footer .site-footer-strip .site-footer-strip-right {
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 0; } }
.site-footer .site-footer-strip .site-footer-strip-right .social-media-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 0; }

.site-footer .site-footer-strip .site-footer-strip-right .social-media-menu li {
  margin: 0 0.5em 0 0; }

.site-footer .site-footer-strip .site-footer-strip-right .social-media-menu li:last-of-type {
  margin: 0; }

.site-footer .site-footer-strip .site-footer-strip-right .social-media-menu li a {
  color: #fff;
  text-decoration: none; }

.site-footer .site-footer-strip .site-footer-strip-right .social-media-menu li a:hover {
  text-decoration: none;
  color: #fff; }

.site-footer .site-footer-strip .site-footer-strip-right .social-media-menu li svg {
  display: block;
  fill: #fff;
  height: 1.75em;
  width: 1.75em; }

div[class^="wp-block-"] h1,
div[class^="wp-block-"] h2,
div[class^="wp-block-"] h3,
div[class^="wp-block-"] h4,
div[class^="wp-block-"] h5,
div[class^="wp-block-"] h6 {
  margin: 0 0 1rem; }

.wp-block-audio > figcaption {
  color: #6f6f6f;
  font-size: 1rem;
  line-height: 1.375; }

.wp-block-buttons {
  margin-bottom: 1.5rem; }

.wp-block-buttons .wp-block-button.wp-block-button {
  margin: 0; }

.wp-block-buttons .wp-block-button .wp-block-button__link,
.wp-block-buttons .wp-block-button.wp-block-button__link {
  background: #900;
  border: none;
  border-radius: 0.25rem;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  font-weight: normal;
  line-height: 1.25rem;
  overflow-wrap: break-word;
  padding: 0.75rem 1.5rem;
  text-align: inherit;
  text-decoration: none;
  white-space: normal;
  word-break: break-word; }

.wp-block-buttons .wp-block-button .wp-block-button__link:link,
.wp-block-buttons .wp-block-button.wp-block-button__link:link {
  background: #900;
  color: #fff; }

.wp-block-buttons .wp-block-button .wp-block-button__link:disabled,
.wp-block-buttons .wp-block-button.wp-block-button__link:disabled {
  background: #d9d9d8;
  color: #fff; }

.wp-block-buttons .wp-block-button .wp-block-button__link:hover,
.wp-block-buttons .wp-block-button .wp-block-button__link:visited:hover,
.wp-block-buttons .wp-block-button.wp-block-button__link:hover,
.wp-block-buttons .wp-block-button.wp-block-button__link:visited:hover {
  background: #ae2725;
  color: #fff; }

.wp-block-buttons .wp-block-button .wp-block-button__link:active,
.wp-block-buttons .wp-block-button.wp-block-button__link:active {
  background: #900;
  color: #fff; }

.wp-block-buttons .wp-block-button .wp-block-button__link:visited,
.wp-block-buttons .wp-block-button.wp-block-button__link:visited {
  background: #900;
  color: #fff; }

.wp-block-buttons .wp-block-button.is-style-usc-button-link {
  color: #900; }

.wp-block-buttons .wp-block-button.is-style-usc-button-link .wp-block-button__link,
.wp-block-buttons .wp-block-button.is-style-usc-button-link.wp-block-button__link {
  background: transparent;
  border: none;
  box-shadow: none;
  color: #900;
  cursor: pointer;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.5rem;
  overflow-wrap: break-word;
  padding: 0;
  position: relative;
  text-align: inherit;
  text-decoration: none;
  text-transform: none;
  transition: none;
  white-space: normal;
  word-break: break-word; }

.wp-block-buttons .wp-block-button.is-style-usc-button-link .wp-block-button__link:link,
.wp-block-buttons .wp-block-button.is-style-usc-button-link .wp-block-button__link:active,
.wp-block-buttons .wp-block-button.is-style-usc-button-link.wp-block-button__link:link,
.wp-block-buttons .wp-block-button.is-style-usc-button-link.wp-block-button__link:active {
  color: #900; }

.wp-block-buttons .wp-block-button.is-style-usc-button-link .wp-block-button__link:after,
.wp-block-buttons .wp-block-button.is-style-usc-button-link.wp-block-button__link:after {
  bottom: -4px;
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="%23990000" viewBox="0 0 24 24"><title id="icon_title">Right Chevron</title><desc id="icon_desc">An icon of a chevron pointing right.</desc><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  display: inline-block;
  position: relative;
  width: 12px; }

.wp-block-buttons .wp-block-button.is-style-usc-button-link .wp-block-button__link:hover,
.wp-block-buttons .wp-block-button.is-style-usc-button-link .wp-block-button__link:visited:hover,
.wp-block-buttons .wp-block-button.is-style-usc-button-link.wp-block-button__link:hover,
.wp-block-buttons .wp-block-button.is-style-usc-button-link.wp-block-button__link:visited:hover {
  color: #01548f; }

.wp-block-buttons .wp-block-button.is-style-usc-button-link .wp-block-button__link:hover:after,
.wp-block-buttons .wp-block-button.is-style-usc-button-link .wp-block-button__link:visited:hover:after,
.wp-block-buttons .wp-block-button.is-style-usc-button-link.wp-block-button__link:hover:after,
.wp-block-buttons .wp-block-button.is-style-usc-button-link.wp-block-button__link:visited:hover:after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="%2301548f" viewBox="0 0 24 24"><title id="icon_title">Right Chevron</title><desc id="icon_desc">An icon of a chevron pointing right.</desc><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/><path d="M0 0h24v24H0z" fill="none"/></svg>'); }

.wp-block-buttons .wp-block-button.is-style-usc-button-link .wp-block-button__link:visited,
.wp-block-buttons .wp-block-button.is-style-usc-button-link.wp-block-button__link:visited {
  color: #900; }

.wp-block-buttons .wp-block-button.is-style-usc-button-link-white {
  color: #fff; }

.wp-block-buttons .wp-block-button.is-style-usc-button-link-white .wp-block-button__link,
.wp-block-buttons .wp-block-button.is-style-usc-button-link-white.wp-block-button__link {
  background: transparent;
  border: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.5rem;
  overflow-wrap: break-word;
  padding: 0;
  position: relative;
  text-align: inherit;
  text-decoration: none;
  text-transform: none;
  transition: none;
  white-space: normal;
  word-break: break-word; }

.wp-block-buttons .wp-block-button.is-style-usc-button-link-white .wp-block-button__link:link,
.wp-block-buttons .wp-block-button.is-style-usc-button-link-white .wp-block-button__link:active,
.wp-block-buttons .wp-block-button.is-style-usc-button-link-white.wp-block-button__link:link,
.wp-block-buttons .wp-block-button.is-style-usc-button-link-white.wp-block-button__link:active {
  color: #fff; }

.wp-block-buttons .wp-block-button.is-style-usc-button-link-white .wp-block-button__link:after,
.wp-block-buttons .wp-block-button.is-style-usc-button-link-white.wp-block-button__link:after {
  bottom: -4px;
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="%23FFFFFF" viewBox="0 0 24 24"><title id="icon_title">Right Chevron</title><desc id="icon_desc">An icon of a chevron pointing right.</desc><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  display: inline-block;
  position: relative;
  width: 12px; }

.wp-block-buttons .wp-block-button.is-style-usc-button-link-white .wp-block-button__link:hover,
.wp-block-buttons .wp-block-button.is-style-usc-button-link-white.wp-block-button__link:hover {
  color: #fff; }

.wp-block-buttons .wp-block-button.is-style-usc-button-link-white .wp-block-button__link:visited,
.wp-block-buttons .wp-block-button.is-style-usc-button-link-white.wp-block-button__link:visited {
  color: #fff; }

.wp-block-buttons .wp-block-button.is-style-usc-button-secondary .wp-block-button__link,
.wp-block-buttons .wp-block-button.is-style-usc-button-secondary.wp-block-button__link {
  background: transparent;
  border: 0.125rem solid #900;
  border-radius: 0.25rem;
  box-shadow: none;
  color: #900;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  font-weight: normal;
  line-height: 1.25rem;
  overflow-wrap: break-word;
  padding: 0.625rem 1.375rem;
  text-align: inherit;
  text-decoration: none;
  white-space: normal;
  word-break: break-word; }

.wp-block-buttons .wp-block-button.is-style-usc-button-secondary .wp-block-button__link:link,
.wp-block-buttons .wp-block-button.is-style-usc-button-secondary .wp-block-button__link:visited,
.wp-block-buttons .wp-block-button.is-style-usc-button-secondary.wp-block-button__link:link,
.wp-block-buttons .wp-block-button.is-style-usc-button-secondary.wp-block-button__link:visited {
  border: 0.125rem solid #900;
  color: #900; }

.wp-block-buttons .wp-block-button.is-style-usc-button-secondary .wp-block-button__link:disabled,
.wp-block-buttons .wp-block-button.is-style-usc-button-secondary.wp-block-button__link:disabled {
  background: transparent;
  border: 0.125rem solid #fff;
  color: #fff; }

.wp-block-buttons .wp-block-button.is-style-usc-button-secondary .wp-block-button__link:hover,
.wp-block-buttons .wp-block-button.is-style-usc-button-secondary .wp-block-button__link:visited:hover,
.wp-block-buttons .wp-block-button.is-style-usc-button-secondary.wp-block-button__link:hover,
.wp-block-buttons .wp-block-button.is-style-usc-button-secondary.wp-block-button__link:visited:hover {
  background: #ae2725;
  border: 0.125rem solid #ae2725;
  color: #fff; }

.wp-block-buttons .wp-block-button.is-style-usc-button-secondary .wp-block-button__link:active,
.wp-block-buttons .wp-block-button.is-style-usc-button-secondary.wp-block-button__link:active {
  background: #900;
  border: 2px solid #900;
  color: #fff; }

.wp-block-buttons .wp-block-button.is-style-usc-button-big .wp-block-button__link,
.wp-block-buttons .wp-block-button.is-style-usc-button-big.wp-block-button__link {
  background: #900;
  border: none;
  border-radius: 0.5rem;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  font-size: 1.75em;
  font-weight: normal;
  line-height: 1.5rem;
  overflow-wrap: break-word;
  padding: 1.5rem;
  text-align: inherit;
  text-decoration: none;
  white-space: normal;
  word-break: break-word; }

.wp-block-buttons .wp-block-button.is-style-usc-button-big .wp-block-button__link:link,
.wp-block-buttons .wp-block-button.is-style-usc-button-big.wp-block-button__link:link {
  background: #900;
  color: #fff; }

.wp-block-buttons .wp-block-button.is-style-usc-button-big .wp-block-button__link:disabled,
.wp-block-buttons .wp-block-button.is-style-usc-button-big.wp-block-button__link:disabled {
  background: #d9d9d8;
  color: #fff; }

.wp-block-buttons .wp-block-button.is-style-usc-button-big .wp-block-button__link:hover,
.wp-block-buttons .wp-block-button.is-style-usc-button-big .wp-block-button__link:visited:hover,
.wp-block-buttons .wp-block-button.is-style-usc-button-big.wp-block-button__link:hover,
.wp-block-buttons .wp-block-button.is-style-usc-button-big.wp-block-button__link:visited:hover {
  background: #ae2725;
  color: #fff; }

.wp-block-buttons .wp-block-button.is-style-usc-button-big .wp-block-button__link:active,
.wp-block-buttons .wp-block-button.is-style-usc-button-big.wp-block-button__link:active {
  background: #900;
  color: #fff; }

.wp-block-buttons .wp-block-button.is-style-usc-button-big .wp-block-button__link:visited,
.wp-block-buttons .wp-block-button.is-style-usc-button-big.wp-block-button__link:visited {
  background: #900;
  color: #fff; }

.wp-block-categories.wp-block-categories-list ul,
.wp-block-categories.wp-block-categories-list li {
  list-style: none; }

@media screen and (min-width: 48em) {
  .wp-block-columns.has-2-columns .wp-block-column:first-of-type,
  .wp-block-columns.has-3-columns .wp-block-column:first-of-type,
  .wp-block-columns.has-4-columns .wp-block-column:first-of-type,
  .wp-block-columns.has-5-columns .wp-block-column:first-of-type,
  .wp-block-columns.has-6-columns .wp-block-column:first-of-type {
    margin-left: 0; }

  .wp-block-columns.has-2-columns .wp-block-column:last-of-type,
  .wp-block-columns.has-3-columns .wp-block-column:last-of-type,
  .wp-block-columns.has-4-columns .wp-block-column:last-of-type,
  .wp-block-columns.has-5-columns .wp-block-column:last-of-type,
  .wp-block-columns.has-6-columns .wp-block-column:last-of-type {
    margin-right: 0; } }
.wp-block-columns.has-2-columns .wp-block-column,
.wp-block-columns.has-3-columns .wp-block-column,
.wp-block-columns.has-4-columns .wp-block-column,
.wp-block-columns.has-5-columns .wp-block-column,
.wp-block-columns.has-6-columns .wp-block-column {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin: 2rem 1rem; }

.wp-block-columns.is-style-usc-columns-content-width {
  margin: 0 auto;
  min-width: unset;
  width: calc(100% - 2rem); }

@media screen and (min-width: 48em) {
  .wp-block-columns.is-style-usc-columns-content-width {
    padding: 0 1rem;
    max-width: 70rem; }
    .wp-block-columns.is-style-usc-columns-content-width.narrow {
      max-width: 46rem; } }
@media screen and (min-width: 37.5em) and (max-width: 48em) {
  .wp-block-columns.is-style-usc-columns-no-gap .wp-block-column {
    -ms-flex-preferred-size: 50% !important;
    flex-basis: 50% !important; } }
.wp-block-columns.is-style-usc-columns-no-gap .wp-block-column:not(:first-child) {
  margin-left: 0; }

@media screen and (max-width: 37.5em) {
  .wp-block-columns .wp-block-column {
    margin: 0 0 1rem; } }
@media screen and (max-width: 37.5em) {
  .wp-block-columns .wp-block-column .wp-block-image {
    margin: 0 0 1rem; } }
.wp-block-columns .wp-block-column p {
  margin-right: 1rem; }

.wp-block-columns .wp-block-column p:last-of-type {
  margin: 0 0 1rem; }

.wp-block-columns.alignwide,
.wp-block-columns.alignfull {
  overflow: visible; }

.wp-block-latest-comments__comment-date {
  color: #5e5d56;
  font-size: 0.875rem;
  line-height: 1rem; }

.wp-block-cover {
  margin: 0; }

.wp-block-cover .wp-block-cover__inner-container {
  max-width: 70rem;
  width: 100%; }

.wp-block-cover .wp-block-cover-image-text a {
  color: #fc0; }

.wp-block-cover.is-style-usc-cover-image-hero {
  -ms-flex-align: end;
  align-items: flex-end;
  height: 16rem;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: unset; }

@media screen and (min-width: 48em) {
  .wp-block-cover.is-style-usc-cover-image-hero {
    height: 40rem; }

  .wp-block-cover.is-style-usc-cover-image-hero .wp-block-cover__inner-container {
    margin: 0 0 2rem; } }
.wp-block-cover.is-style-usc-cover-image-hero .wp-block-cover__inner-container {
  padding: 0 2rem; }

.wp-block-cover.has-background-dim.has-usc-cardinal-background-color {
  background-color: #900; }

.wp-block-cover.has-background-dim.has-usc-gold-background-color {
  background-color: #fc0; }

.wp-block-cover.has-background-dim.has-cardinal-60-background-color {
  background-color: #850000; }

.wp-block-cover.has-background-dim.has-cardinal-70-background-color {
  background-color: #630000; }

.wp-block-cover.has-background-dim.has-cardinal-80-background-color {
  background-color: #470000; }

.wp-block-cover.has-background-dim.has-gold-60-background-color {
  background-color: #deb40b; }

.wp-block-cover.has-background-dim.has-white-background-color {
  background-color: #fff; }

.wp-block-cover.has-background-dim.has-off-white-background-color {
  background-color: #fafafa; }

.wp-block-cover.has-background-dim.has-base-20-background-color {
  background-color: #ededeb; }

.wp-block-cover.has-background-dim.has-base-30-background-color {
  background-color: #e0e0dc; }

.wp-block-cover.has-background-dim.has-base-40-background-color {
  background-color: #c3c2bb; }

.wp-block-cover.has-background-dim.has-base-50-background-color {
  background-color: #77766f; }

.wp-block-cover.has-background-dim.has-base-60-background-color {
  background-color: #5e5d56; }

.wp-block-cover.has-background-dim.has-base-70-background-color {
  background-color: #44433c; }

.wp-block-embed {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 auto;
  position: relative; }

.wp-block-embed .wp-block-embed__wrapper {
  width: 100%; }

.wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper {
  padding-top: 42.85%; }

.wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper {
  padding-top: 50%; }

.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  padding-top: 56.25%; }

.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper {
  padding-top: 75%; }

.wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper {
  padding-top: 100%; }

.wp-block-embed.wp-embed-aspect-9-6 .wp-block-embed__wrapper {
  padding-top: 66.66%; }

.wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper {
  padding-top: 200%; }

.wp-block-embed iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%; }

.wp-block-embed.alignfull {
  height: auto;
  overflow: hidden;
  width: 100vw; }

.wp-block-embed.alignfull .wp-block-embed__wrapper {
  margin: 0 calc(50% - 50vw);
  width: 100vw; }

.wp-block-embed.alignfull iframe {
  margin: 0 calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw; }

.wp-block-embed.alignwide {
  height: auto;
  overflow: unset;
  width: 90vw; }

.wp-block-embed.alignwide .wp-block-embed__wrapper {
  margin: 0 calc(50% - 45vw);
  position: relative;
  width: 100%; }

.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  background: #33322a;
  font-size: 0.875rem;
  letter-spacing: 0.26px;
  line-height: 1rem;
  margin: 0;
  padding: 10px; }

.wp-block-gallery .blocks-gallery-caption {
  color: #6f6f6f;
  margin: 0 0 1rem; }

.wp-block-group.is-style-usc-group-content-width {
  margin: 0 auto;
  min-width: unset;
  width: calc(100% - 2rem);
  margin: 0 auto;
  min-width: unset;
  width: calc(100% - 2rem); }

@media screen and (min-width: 48em) {
  .wp-block-group.is-style-usc-group-content-width {
    margin: 0 0 0 50%;
    overflow: hidden;
    transform: translateX(-50%);
    width: calc(100% - 2rem); } }
@media screen and (min-width: 70rem) {
  .wp-block-group.is-style-usc-group-content-width {
    margin: 0 0 0 50%;
    overflow: hidden;
    padding: 0 1rem;
    transform: translateX(-50%);
    width: 70rem; } }
.wp-block-group.is-style-usc-group-border-top {
  border-top: 1px solid #e0e0dc; }

.wp-block-image .aligncenter img,
.wp-block-image .alignleft img,
.wp-block-image .alignright img,
.wp-block-image .is-resized img {
  width: auto; }

.wp-block-image.alignfull figcaption {
  margin: 0.5rem 0.5rem 1rem; }

@media screen and (min-width: 37.5em) {
  .wp-block-image {
    margin: 0 0 1rem; }

  .wp-block-image > figcaption {
    color: #6f6f6f;
    font-size: 0.875rem;
    letter-spacing: 0.26px;
    line-height: 1rem;
    margin: 0.5rem 0 1rem; }

  .wp-block-image .alignleft {
    margin-right: 2rem; }

  .wp-block-image .alignright {
    margin-left: 2rem; }

  .wp-block-image .aligncenter > figcaption,
  .wp-block-image .alignleft > figcaption,
  .wp-block-image .alignright > figcaption,
  .wp-block-image .is-resized > figcaption {
    color: #6f6f6f;
    font-size: 0.875rem;
    letter-spacing: 0.26px;
    line-height: 1rem;
    margin: 0.5rem 0 1rem; } }
.wp-block-latest-posts {
  list-style: none;
  margin: 0 0 1.5rem; }

.wp-block-latest-posts.has-dates time {
  color: #5e5d56; }

.wp-block-media-text .wp-block-media-text__media,
.wp-block-media-text.alignfull .wp-block-media-text__media,
.wp-block-media-text.alignwide .wp-block-media-text__media {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden; }

.wp-block-media-text .wp-block-media-text__media > img,
.wp-block-media-text.alignfull .wp-block-media-text__media > img,
.wp-block-media-text.alignwide .wp-block-media-text__media > img {
  width: auto; }

.wp-block-media-text .wp-block-media-text__media > video,
.wp-block-media-text.alignfull .wp-block-media-text__media > video,
.wp-block-media-text.alignwide .wp-block-media-text__media > video {
  width: 100%; }

.wp-block-media-text .wp-block-media-text__content {
  padding: 2rem; }

.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content .has-no-padding-left {
  padding: 2rem 2rem 2rem 0; }

.wp-block-media-text.is-style-media-fill .wp-block-media-text__media,
.wp-block-media-text.is-style-media-fill.alignfull .wp-block-media-text__media,
.wp-block-media-text.is-style-media-fill.alignwide .wp-block-media-text__media {
  height: 100%;
  width: 100%; }

.wp-block-media-text.is-style-media-fill .wp-block-media-text__media > img,
.wp-block-media-text.is-style-media-fill .wp-block-media-text__media > video,
.wp-block-media-text.is-style-media-fill.alignfull .wp-block-media-text__media > img,
.wp-block-media-text.is-style-media-fill.alignfull .wp-block-media-text__media > video,
.wp-block-media-text.is-style-media-fill.alignwide .wp-block-media-text__media > img,
.wp-block-media-text.is-style-media-fill.alignwide .wp-block-media-text__media > video {
  height: 100%;
  object-fit: cover;
  width: 100%; }

.wp-block-navigation:not(.has-background) .wp-block-navigation__container {
  background: #f7f7f5; }

.wp-block-navigation__container .wp-block-navigation-link {
  padding: 0; }

.wp-block-navigation__container .wp-block-navigation-link:not(.has-text-color) .wp-block-navigation-link__content {
  color: #1f1e18;
  padding: 0.5rem 1rem;
  text-decoration: none; }

.wp-block-navigation__container .wp-block-navigation-link:not(.has-text-color) .wp-block-navigation-link__content:hover {
  color: #01548f;
  text-decoration: underline; }

.wp-block-navigation__container .wp-block-navigation-link:not(.has-text-color) .wp-block-navigation-link__content:focus {
  color: #01548f;
  text-decoration: underline; }

.wp-block-navigation__container .wp-block-navigation-link__content {
  color: inherit;
  padding: 0.5rem 1rem;
  text-decoration: none; }

.wp-block-navigation__container .wp-block-navigation-link__content:hover {
  color: inherit;
  text-decoration: underline; }

.wp-block-navigation__container .wp-block-navigation-link__content:focus {
  color: inherit;
  text-decoration: underline; }

.wp-block-navigation__container .wp-block-navigation-link__label {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.25rem; }

.wp-block-navigation.is-style-light .wp-block-navigation__container {
  background: #f7f7f5; }

.wp-block-navigation.is-style-dark .wp-block-navigation__container {
  background: #1f1e18; }

.wp-block-pullquote {
  border-bottom: none;
  border-top: none;
  padding: 0; }

.wp-block-pullquote.is-style-caslon {
  font-family: "adobe-caslon-pro";
  margin: 0 auto;
  max-width: 48rem; }

.wp-block-pullquote.is-style-caslon blockquote {
  border-bottom: solid 1px #e0e0dc;
  border-left: none;
  border-right: none;
  border-top: solid 1px #e0e0dc;
  padding: 2.5rem 0 1rem; }

.wp-block-pullquote.is-style-caslon blockquote p {
  font-size: 2rem;
  line-height: 1.5;
  margin: 0 0 1rem; }

.wp-block-pullquote.is-style-caslon blockquote cite {
  font-size: 1.25rem;
  font-style: normal;
  text-transform: none; }

.wp-block-pullquote blockquote {
  border-bottom: solid 1px #e0e0dc;
  border-left: none;
  border-right: none;
  border-top: solid 1px #e0e0dc;
  margin: 0; }

.wp-block-pullquote blockquote p {
  margin: 0 auto; }

.wp-block-pullquote blockquote cite {
  font-size: 1rem;
  font-style: normal; }

.wp-block-pullquote.alignleft blockquote cite,
.wp-block-pullquote.alignright blockquote cite {
  margin: 0; }

.wp-block-pullquote.alignwide blockquote,
.wp-block-pullquote.alignfull blockquote {
  margin: 0; }

.wp-block-pullquote.alignwide blockquote p,
.wp-block-pullquote.alignfull blockquote p {
  max-width: 66ch; }

.wp-block-quote {
  border-bottom: solid 1px #e0e0dc;
  border-top: solid 1px #e0e0dc; }

@media screen and (min-width: 48em) {
  .wp-block-quote {
    border-bottom: solid 1px #e0e0dc;
    border-left: none;
    border-right: none;
    border-top: solid 1px #e0e0dc;
    padding: 2.5rem 0 1rem; }

  .wp-block-quote p {
    font-size: 2rem;
    line-height: 1.5;
    margin: 0 0 1rem; }

  .wp-block-quote cite {
    font-size: 1.25rem; } }
.wp-block-quote.is-style-caslon {
  border-bottom: none;
  border-top: none;
  font-family: "adobe-caslon-pro";
  margin: 0 auto;
  max-width: 48rem;
  padding: 0; }

@media screen and (min-width: 48em) {
  .wp-block-quote.is-style-caslon {
    border-bottom: solid 1px #e0e0dc;
    border-left: none;
    border-right: none;
    border-top: solid 1px #e0e0dc;
    padding: 2.5rem 1rem 1rem; }

  .wp-block-quote.is-style-caslon p {
    font-size: 2rem;
    line-height: 1.5;
    margin: 0 0 1rem; }

  .wp-block-quote.is-style-caslon cite {
    font-size: 1.25rem; } }
.wp-block-quote.is-style-caslon p {
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 0 0 1rem; }

.wp-block-quote.is-style-caslon cite {
  font-style: normal;
  font-size: 1rem;
  text-transform: none; }

.wp-block-quote.is-large {
  margin: 2em 0;
  padding: 2em 0; }

.wp-block-quote.is-large p {
  font-size: 2em;
  margin: 0;
  padding: 0; }

.wp-block-quote.is-large cite {
  display: -ms-flexbox;
  display: flex;
  margin: 1em 0; }

.wp-block-separator.is-style-wide {
  margin: 1em 0 1em 50%;
  overflow: hidden;
  transform: translateX(-50%);
  width: 90vw; }

.wp-block-separator.is-style-cardinal-bar {
  max-width: 80px;
  background-color: #900;
  height: 8px; }

.wp-block-embed-vimeo figcaption {
  color: #6f6f6f;
  font-size: 14px;
  letter-spacing: 0.26px;
  line-height: 1.375;
  margin: 1rem;
  text-align: center;
  width: calc(100% - 2rem); }

.wp-block-embed-youtube {
  height: 100%;
  margin: 0;
  width: 100%; }

.wp-block-embed-youtube.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
  max-height: 25.875rem; }

.wp-block-embed-youtube.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe {
  max-height: 30rem; }

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
  text-align: left; }

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
  text-align: right; }

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  clear: both; }

.alignfull .alignwide {
  margin: 0;
  min-width: unset;
  overflow: unset;
  transform: unset; }

.page-template-tpl-full-width .alignfull {
  margin: 0;
  max-width: 100vw;
  width: 100vw; }

@media screen and (min-width: 48em) {
  .page-template-tpl-full-width .alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw); } }
.page-template-tpl-full-width .alignwide {
  margin: 0 0 0 50%;
  min-width: 90vw;
  overflow: hidden;
  transform: translateX(-50%); }

.page-template-tpl-full-width .alignwide img,
.page-template-tpl-full-width .alignfull img {
  display: block;
  margin: 0;
  width: 100%; }

.clear::before,
.clear::after,
.entry-content::before,
.entry-content::after,
.comment-content::before,
.comment-content::after,
.site-header::before,
.site-header::after,
.site-content::before,
.site-content::after,
.site-footer::before,
.site-footer::after {
  content: "";
  display: table;
  table-layout: fixed; }

.clear::after,
.entry-content::after,
.comment-content::after,
.site-header::after,
.site-content::after,
.site-footer::after {
  clear: both; }

@font-face {
    font-display: optional !important;
}
body,
button,
input,
select,
textarea {
  color: #1f1e18;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.25em;
  line-height: 1.5;
  -moz-font-smoothing: greyscale;
  -webkit-font-smoothing: antialiased; }

p {
  font-size: 1.25rem;
  margin: 0 0 1rem; }

p.is-style-paragraph-narrow {
  margin: 0 0 1rem;
  max-width: 66ch; }

b,
strong {
  font-weight: bold; }

dfn,
cite,
em,
i {
  font-style: italic; }

blockquote {
  background: rgba(0, 0, 0, 0);
  border-bottom: solid 2px #44433c;
  border-top: solid 2px #44433c;
  margin: 3em 0;
  padding: 2rem 0;
  quotes: '"' '"'; }

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

blockquote a {
  color: #33322a; }

blockquote p {
  color: #1f1e18;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0.5em; }

blockquote cite {
  margin: 0 0.5em;
  text-transform: uppercase; }

q {
  font-style: italic; }

address {
  font-size: 1rem;
  font-style: normal;
  line-height: 22px;
  margin: 0 0 1.5rem; }

sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  bottom: 1ex; }

sub {
  top: 0.5ex; }

small {
  font-size: 75%; }

big {
  font-size: 125%; }

pre {
  font-size: 0.875rem;
  color: #5e5d56;
  font-family: "Source Code Pro", Courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word; }

code,
kbd,
tt,
var {
  font-size: 0.875rem;
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; }

hr {
  background-color: #c3c2bb;
  border: 0;
  clear: both;
  height: 1px;
  margin-bottom: 1.5em; }

abbr,
acronym {
  border-bottom: 1px dashed #666;
  cursor: help;
  font-style: italic;
  text-decoration: none; }

mark,
ins {
  background: #fff9c0;
  text-decoration: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1f1e18;
  margin: 0 0 1rem; }

h1.is-style-cardinal-bar,
h2.is-style-cardinal-bar,
h3.is-style-cardinal-bar,
h4.is-style-cardinal-bar,
h5.is-style-cardinal-bar,
h6.is-style-cardinal-bar {
  padding-top: 1.5rem;
  position: relative; }

h1.is-style-cardinal-bar:before,
h2.is-style-cardinal-bar:before,
h3.is-style-cardinal-bar:before,
h4.is-style-cardinal-bar:before,
h5.is-style-cardinal-bar:before,
h6.is-style-cardinal-bar:before {
  background: #900;
  content: "";
  display: block;
  height: 0.5rem;
  margin: 0 0 1.5rem;
  position: absolute;
  top: 0;
  width: 3rem; }

h1.is-style-cardinal-bar.has-text-align-center:before,
h2.is-style-cardinal-bar.has-text-align-center:before,
h3.is-style-cardinal-bar.has-text-align-center:before,
h4.is-style-cardinal-bar.has-text-align-center:before,
h5.is-style-cardinal-bar.has-text-align-center:before,
h6.is-style-cardinal-bar.has-text-align-center:before {
  left: calc(50% - 1.5rem);
  right: calc(50% - 1.5rem); }

h1.is-style-cardinal-bar.has-text-align-left:before,
h2.is-style-cardinal-bar.has-text-align-left:before,
h3.is-style-cardinal-bar.has-text-align-left:before,
h4.is-style-cardinal-bar.has-text-align-left:before,
h5.is-style-cardinal-bar.has-text-align-left:before,
h6.is-style-cardinal-bar.has-text-align-left:before {
  left: 0; }

h1.is-style-cardinal-bar.has-text-align-right:before,
h2.is-style-cardinal-bar.has-text-align-right:before,
h3.is-style-cardinal-bar.has-text-align-right:before,
h4.is-style-cardinal-bar.has-text-align-right:before,
h5.is-style-cardinal-bar.has-text-align-right:before,
h6.is-style-cardinal-bar.has-text-align-right:before {
  right: 0; }

h1,
h2,
h3 {
  letter-spacing: -0.015rem; }

h1 {
  font-size: 2.5rem; }

h2 {
  font-size: 1.875rem; }

h3 {
  font-size: 1.40625rem; }

h4 {
  font-size: 1.05469rem; }

h5 {
  font-size: 0.79102rem; }

h6 {
  font-size: 0.59326rem; }

h1 {
  font-size: 44px;
  font-weight: 900;
  line-height: 48px; }

h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 40px; }

h3 {
  font-size: 28px;
  font-weight: 900;
  line-height: 32px; }

h4 {
  font-size: 20px;
  font-weight: 900;
  line-height: 24px; }

h5 {
  font-size: 16px;
  font-weight: 900;
  line-height: 20px; }

h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase; }

.site-sidebar h1 {
  font-size: 1.5rem; }

.site-sidebar h2 {
  font-size: 1.125rem; }

.site-sidebar h3 {
  font-size: 0.84375rem; }

.site-sidebar h4 {
  font-size: 0.63281rem; }

.site-sidebar h5 {
  font-size: 0.47461rem; }

.site-sidebar h6 {
  font-size: 0.35596rem; }

.site-footer h1 {
  font-size: 1.5rem; }

.site-footer h2 {
  font-size: 1.125rem; }

.site-footer h3 {
  font-size: 0.84375rem; }

.site-footer h4 {
  font-size: 0.63281rem; }

.site-footer h5 {
  font-size: 0.47461rem; }

.site-footer h6 {
  font-size: 0.35596rem; }

#content[tabindex="-1"]:focus,
#secondary[tabindex="-1"]:focus {
  outline: 0; }

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px; }

.screen-reader-text:focus {
  font-size: 0.875rem;
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto;
  color: #1f1e18;
  display: block;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; }

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.has-small-font-size {
  font-size: 1rem;
  line-height: 1.25;
  margin: 0 0 1rem; }

.has-normal-font-size {
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0 0 1rem; }

.has-large-font-size {
  font-size: 2.25rem;
  line-height: 1; }

.is-style-display-1 {
  font-size: 2rem;
  font-weight: 900; }

@media screen and (min-width: 48em) {
  .is-style-display-1 {
    font-size: 4rem;
    line-height: 1; } }
.is-style-display-2 {
  font-size: 2rem;
  font-weight: 300; }

@media screen and (min-width: 48em) {
  .is-style-display-2 {
    font-size: 5rem;
    line-height: 1; } }
.is-style-lead-paragraph {
  font-weight: 100;
  line-height: 1.5rem;
  margin: 0 auto 1rem; }

@media screen and (min-width: 48em) {
  .is-style-lead-paragraph {
    font-size: 1.5rem;
    line-height: 2rem; }
    .is-style-lead-paragraph.larger {
      font-size: 1.8rem;
      line-height: 1.5; } }
.is-style-lead-paragraph-narrow {
  font-weight: 100;
  line-height: 1.5rem;
  margin: 0 auto 1rem;
  max-width: 66ch; }

@media screen and (min-width: 48em) {
  .is-style-lead-paragraph-narrow {
    font-size: 1.5rem;
    line-height: 2rem; } }
ul,
ol {
  margin: 0 0 1.5em 1em;
  padding: 0; }

li {
  margin: 0.25em 0 0; }

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1em; }

ul {
  list-style: disc; }

ol {
  list-style: decimal; }

dt {
  font-weight: bold; }

dd {
  margin: 0 0 1.5em 0.25em; }

ul.is-style-quick-links,
ol.is-style-quick-links {
  border-bottom: 1px solid #ededeb;
  margin: 0;
  padding: 0; }

ul.is-style-quick-links li,
ol.is-style-quick-links li {
  border-top: 1px solid #ededeb;
  margin: 0;
  padding: 0; }

ul.is-style-quick-links li a,
ol.is-style-quick-links li a {
  color: #1f1e18;
  display: inline-block;
  margin: 1rem 0;
  text-decoration: none; }

ul.is-style-quick-links li a:hover,
ol.is-style-quick-links li a:hover {
  color: #1f1e18;
  text-decoration: underline; }

ol.is-style-quick-links {
  list-style: decimal inside none;
  margin: unset; }

ul.is-style-quick-links {
  list-style: none; }

table {
  border-left: 1px solid #ededeb;
  border-top: 1px solid #ededeb;
  border-spacing: 0;
  font-size: 1rem;
  margin: 0 0 1.5em;
  width: 100%; }

th,
td {
  border-right: 1px solid #ededeb;
  border-bottom: 1px solid #ededeb;
  padding: 2%; }

th {
  background-color: #fafafa;
  color: #5e5d56;
  font-weight: bold; }

label {
  display: block;
  margin: 1em 0 0; }

input,
select,
textarea {
  margin: 0;
  vertical-align: baseline;
  font-size: 100%; }

[type="checkbox"],
[type="radio"] {
  padding: 0;
  vertical-align: text-bottom; }

[type="search"] {
  box-sizing: content-box;
  -webkit-appearance: textfield; }

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

[type="text"],
[type="email"],
[type="url"],
[type="password"],
[type="search"],
[type="number"],
[type="tel"],
[type="range"],
[type="date"],
[type="month"],
[type="week"],
[type="time"],
[type="datetime"],
[type="datetime-local"],
[type="color"],
select,
textarea {
  border-radius: 0.25rem;
  border-width: 1px;
  border-style: solid;
  border-color: #44433c;
  background: #fff;
  padding: 0.5rem;
  min-width: 2em;
  line-height: 1;
  color: #000; }

[type="text"]:focus,
[type="email"]:focus,
[type="url"]:focus,
[type="password"]:focus,
[type="search"]:focus,
[type="number"]:focus,
[type="tel"]:focus,
[type="range"]:focus,
[type="date"]:focus,
[type="month"]:focus,
[type="week"]:focus,
[type="time"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="color"]:focus,
select:focus,
textarea:focus {
  color: #111; }

select {
  height: 2.5rem;
  font-weight: bold;
  padding: 0 0.5rem; }

textarea {
  padding-left: 0.5rem;
  width: 100%; }

input::-webkit-input-placeholder {
  color: #2d2c23; }

input::-moz-placeholder {
  color: #2d2c23; }

input:-ms-input-placeholder {
  color: #2d2c23; }

button {
  margin: 0;
  vertical-align: baseline;
  font-size: 100%; }

button.file-input {
  position: relative;
  overflow: hidden; }

button.file-input label {
  margin: 0; }

button.file-input [type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.001; }

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 0;
  background: #900;
  border-radius: 0.25rem;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.25rem;
  margin: 0;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;
  word-break: break-all; }

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background: #ae2725;
  color: #fff;
  border: 0 none; }

button:disabled,
input[type="button"]:disabled,
input[type="reset"]:disabled,
input[type="submit"]:disabled {
  background: #d9d9d8;
  color: #fff; }

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
  background: #900;
  color: #fff; }

button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  background: #900;
  color: #fff;
  border: 0 none; }

button:visited,
input[type="button"]:visited,
input[type="reset"]:visited,
input[type="submit"]:visited {
  color: #fff; }

.not-found input[type="submit"] {
  width: auto;
  min-width: 10rem;
  border-radius: .25rem;
  margin: 0 0 0 1rem;
  font-size: .8rem;
  line-height: 1; }

img {
  max-width: 100%;
  height: auto; }

img.alignleft,
img.alignright,
img.aligncenter {
  margin-top: 0; }

figure {
  max-width: 100%; }

figure.alignleft {
  margin-left: 0; }

figure.alignright {
  margin-right: 0; }

figure.alignleft,
figure.alignright,
figure.aligncenter {
  margin-bottom: 0;
  margin-top: 0; }

figcaption {
  background-color: rgba(0, 0, 0, 0);
  color: #6f6f6f;
  font-size: 0.875rem;
  line-height: 1rem;
  margin: 0.5rem 0 1rem; }

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%; }

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption .wp-caption-text {
  margin: 0.8075em 0; }

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

.gallery {
  content: "";
  display: table;
  table-layout: fixed;
  margin-bottom: 1.5em; }

.gallery-item {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  text-align: center; }

.gallery-columns-2 .gallery-item {
  max-width: 50%; }

.gallery-columns-3 .gallery-item {
  max-width: 33.33%; }

.gallery-columns-4 .gallery-item {
  max-width: 25%; }

.gallery-columns-5 .gallery-item {
  max-width: 20%; }

.gallery-columns-6 .gallery-item {
  max-width: 16.66%; }

.gallery-columns-7 .gallery-item {
  max-width: 14.28%; }

.gallery-columns-8 .gallery-item {
  max-width: 12.5%; }

.gallery-columns-9 .gallery-item {
  max-width: 11.11%; }

.gallery-caption {
  display: block; }

embed,
iframe,
object {
  max-width: 100%; }

a {
  color: #900; }

a:active {
  color: #900; }

a:visited {
  color: #900; }

a:hover,
a:visited:hover,
a:focus {
  color: #01548f; }

a:hover,
a:active {
  outline: 0; }


.cta-link {
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none; }

.cta-link:hover,
.cta-link:focus,
.cta-link:active,
.cta-link:visited {
  color: #fff; }

.cta-link:after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" viewBox="0 0 24 24"><path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"/><path fill="none" d="M0 0h24v24H0V0z"/></svg>');
  margin-left: 0.25em; }

.menu {
  margin: 0;
  padding: 0; }

.menu li {
  list-style: none; }

.site-navigation .site-navigation-wrapper {
  border: none; }
  @media screen and (min-width: 48em) {
    .site-navigation .site-navigation-wrapper {
      border-top: 1px solid #850000; } }

.site-navigation .site-navigation-wrapper .site-navigation-container {
  background: transparent; }
  @media screen and (min-width: 48em) {
    .site-navigation .site-navigation-wrapper .site-navigation-container {
      background: transparent; } }

@media screen and (min-width: 48em) {
  .site-navigation-menu .menu-item.menu-item-has-children:after {
    color: #fff;
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" viewBox="0 0 24 24"><path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"/><path fill="none" d="M0 0h24v24H0V0z"/></svg>'); } }
.site-navigation-menu .menu-item.menu-item-has-children .accordion .accordion-link:before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="%23FFFFFF" viewBox="0 0 24 24"><path d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"/><path d="M0 0h24v24H0z" fill="none"/></svg>'); }

.site-navigation-menu .menu-item:hover {
  background: #800; }

.site-navigation-menu .menu-item:hover:before {
  background: transparent; }

@media screen and (min-width: 48em) {
  .site-navigation-menu .menu-item:hover:before {
    background: #850000; } }
@media screen and (min-width: 48em) {
  .site-navigation-menu .menu-item:hover .sub-menu {
    border-bottom: solid 0.25em #850000; }

  .site-navigation-menu .menu-item:hover .sub-menu .menu-item {
    background: #850000; } }
.site-navigation-menu .menu-item a {
  color: #fff; }

.site-navigation .site-navigation-wrapper {
  border: none; }

@media screen and (min-width: 48em) {
  .site-navigation .site-navigation-wrapper {
    border-top: 1px solid #eee; } }
.site-navigation .site-navigation-wrapper .site-navigation-container {
  background: transparent; }

@media screen and (min-width: 48em) {
  .site-navigation .site-navigation-wrapper .site-navigation-container {
    background: transparent; } }
.site-menu-toggle-wrapper .site-menu-toggle svg {
  fill: #1f1e18; }

body.admin-bar .site-navigation-menu {
  /*	margin-top: calc(3rem + 46px);*/ }

@media screen and (min-width: 48em) {
  .site-navigation-menu {
    margin-top: 0;
    background: transparent; }

  body.admin-bar .site-navigation-menu {
    margin-top: 0; } }
@media screen and (min-width: 48em) {
  .site-navigation-menu .menu-item.menu-item-has-children:after {
    color: #1f1e18;
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%2344433C" viewBox="0 0 24 24"><path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"/><path fill="none" d="M0 0h24v24H0V0z"/></svg>'); } }
.site-navigation-menu .menu-item.menu-item-has-children .accordion .accordion-link:before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="%2344433C" viewBox="0 0 24 24"><path d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"/><path d="M0 0h24v24H0z" fill="none"/></svg>'); }

.site-navigation-menu .menu-item:hover {
  background: #f7f7f5; }

.site-navigation-menu .menu-item:hover:before {
  background: transparent; }

@media screen and (min-width: 48em) {
  .site-navigation-menu .menu-item:hover:before {
    background: #900; } }
@media screen and (min-width: 48em) {
  .site-navigation-menu .menu-item:hover .sub-menu {
    border-bottom: solid 0.25em #f7f7f5; }

  .site-navigation-menu .menu-item:hover .sub-menu .menu-item {
    background: #f7f7f5; } }
.site-navigation-menu .menu-item a {
  color: #1f1e18; }

.site-navigation {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0;
  width: 100vw;
  flex-basis: 100%; }

@media screen and (min-width: 48em) {
  .site-navigation {
    height: auto; } }
.site-navigation .site-navigation-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row-reverse nowrap;
  flex-flow: row-reverse nowrap;
  height: 3rem;
  max-width: 70rem;
  padding: 0;
  width: 100%; }

@media screen and (min-width: 48em) {
  .site-navigation .site-navigation-wrapper {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    height: auto; } }
.site-navigation .site-navigation-wrapper .site-navigation-container {
  top: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  height: 0px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  transition: opacity 100ms ease-out;
  width: 100%;
  z-index: 99; }

@media screen and (min-width: 48em) {
  .site-navigation .site-navigation-wrapper .site-navigation-container {
    background: transparent;
    display: block;
    height: 100%;
    left: unset;
    opacity: 1;
    overflow: visible;
    padding: 0;
    position: relative;
    top: 0;
    transition: none;
    width: 100%; } }
.site-navigation .site-navigation-wrapper .site-navigation-container.open {
  height: -webkit-max-content;
  height: max-content;
  opacity: 1;
  width: 100%;
  margin-top: 3rem; }

@media screen and (min-width: 48em) {
  .site-navigation .site-navigation-wrapper div[class^="menu-"][class$="-container"] {
    display: block;
    min-height: 2.5rem; } }
.site-menu-toggle-wrapper {
  display: -ms-flexbox;
  display: flex;
  height: 3rem;
  -ms-flex-pack: start;
  justify-content: flex-start; }

@media screen and (min-width: 48em) {
  .site-menu-toggle-wrapper {
    display: none; } }
.site-menu-toggle-wrapper .site-menu-toggle {
  background-color: transparent;
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 3rem;
  -ms-flex-pack: center;
  justify-content: center;
  width: 3rem; }

.site-menu-toggle-wrapper .site-menu-toggle svg {
  height: 2rem;
  pointer-events: none;
  width: 2rem; }

@media screen and (min-width: 48em) {
  .site-menu-toggle-wrapper .site-menu-toggle svg {
    height: 1.5rem;
    width: 1.5rem; } }
.site-navigation-menu {
  background: #eee;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  height: auto;
  padding: 0;
  position: relative;
  margin: 0; }

@media screen and (min-width: 48em) {
  .site-navigation-menu {
    -ms-flex-align: center;
    align-items: center;
    background: unset;
    bottom: unset;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    height: auto;
    -ms-flex-pack: start;
    justify-content: flex-start; } }
.site-navigation-menu ul {
  margin: 0;
  padding: 0; }

.site-navigation-menu .menu-item {
  -ms-flex-align: start;
  align-items: flex-start;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  float: none;
  height: 3rem;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  min-height: 3rem;
  position: relative; }

@media screen and (min-width: 48em) {
  .site-navigation-menu .menu-item {
    float: left;
    height: 100%;
    min-height: 2.5rem; } }
@media screen and (min-width: 48em) {
  .site-navigation-menu .menu-item.menu-item-has-children {
    padding-right: 1rem; }

  .site-navigation-menu .menu-item.menu-item-has-children:after {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem; } }
.site-navigation-menu .menu-item.menu-item-has-children .accordion {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  height: 3rem;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 3rem;
  position: relative;
  width: 100%; }

@media screen and (min-width: 48em) {
  .site-navigation-menu .menu-item.menu-item-has-children .accordion {
    height: 2.5rem;
    min-height: unset; } }
.site-navigation-menu .menu-item.menu-item-has-children .accordion .accordion-link {
  background: transparent;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 3rem;
  transition: transform .3s ease-out;
  transform-origin: 59.5% 47%; }

@media screen and (min-width: 48em) {
  .site-navigation-menu .menu-item.menu-item-has-children .accordion .accordion-link {
    display: none; } }
.site-navigation-menu .menu-item.menu-item-has-children.open {
  height: auto; }
  .site-navigation-menu .menu-item.menu-item-has-children.open .accordion-link {
    transform: rotate(180deg); }

.site-navigation-menu .menu-item.menu-item-has-children.open > .sub-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  height: 100%;
  position: relative;
  transition: height 0.5s ease-out;
  width: 100%; }

.site-navigation-menu .menu-item.menu-item-has-children.open > .sub-menu .menu-item a {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  height: 100%;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 1rem;
  position: relative;
  transition: 0.1s;
  white-space: nowrap;
  width: 100%; }

.site-navigation-menu .menu-item.menu-item-has-children.open > .sub-menu .menu-item a:hover {
  background: transparent;
  text-decoration: underline; }

.site-navigation-menu .menu-item.menu-item-has-children.open > .sub-menu .menu-item a:hover:before {
  background: transparent;
  content: ""; }

.site-navigation-menu .menu-item.menu-item-has-children.open > .sub-menu .menu-item.current-menu-item.menu-item-type-custom a {
  font-weight: 300; }

.site-navigation-menu .menu-item.menu-item-has-children.open > .sub-menu .menu-item.current-menu-item a:before {
  background: transparent;
  content: ""; }

.site-navigation-menu .menu-item.current-menu-item a {
  font-weight: 900;
  position: unset; }

.site-navigation-menu .menu-item.current-menu-item .sub-menu a:before {
  background: transparent;
  content: ""; }

.site-navigation-menu .menu-item.menu-item-has-children.open > .sub-menu .menu-item.current-menu-item a {
  font-weight: 900;
  position: unset; }

.site-navigation-menu .menu-item .sub-menu {
  display: none;
  position: absolute; }

.site-navigation-menu .menu-item:hover:before {
  content: "";
  left: 0;
  height: 0.25rem;
  position: absolute;
  top: 0;
  width: 100%; }

.site-navigation-menu .menu-item:hover .sub-menu {
  display: none; }

.site-navigation-menu .menu-item:hover .sub-menu.open {
  display: -ms-flexbox;
  display: flex;
  height: 100%; }

@media screen and (min-width: 48em) {
  .site-navigation-menu .menu-item:hover .sub-menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    position: absolute;
    top: 2.5rem;
    z-index: 1;
    background: #fff; }

  .site-navigation-menu .menu-item:hover .sub-menu .menu-item {
    display: block;
    float: left;
    height: 2.25rem;
    min-width: 11.5rem;
    position: relative;
    transition: 0.1s; }

  .site-navigation-menu .menu-item:hover .sub-menu .menu-item:before {
    background: transparent;
    content: ""; }

  .site-navigation-menu .menu-item:hover .sub-menu .menu-item.menu-item-has-children {
    padding-right: 0.5em; }

  .site-navigation-menu .menu-item:hover .sub-menu .menu-item.menu-item-has-children:before {
    background: transparent;
    content: ""; }

  .site-navigation-menu .menu-item:hover .sub-menu .menu-item.menu-item-has-children:after {
    content: ""; }

  .site-navigation-menu .menu-item:hover .sub-menu .menu-item.menu-item-has-children > .sub-menu {
    display: none; }

  .site-navigation-menu .menu-item:hover .sub-menu .menu-item.menu-item-has-children:hover:before {
    background: transparent;
    content: ""; }

  .site-navigation-menu .menu-item:hover .sub-menu .menu-item.menu-item-has-children:hover > .sub-menu {
    display: none;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    margin: 0 0 0 100%;
    position: absolute;
    top: 0; }

  .site-navigation-menu .menu-item:hover .sub-menu .menu-item a {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    font-size: 1rem;
    font-weight: 400;
    height: 100%;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0;
    position: relative;
    transition: 0.1s;
    white-space: nowrap;
    width: 100%; }

  .site-navigation-menu .menu-item:hover .sub-menu .menu-item a:hover {
    background: transparent;
    text-decoration: underline; }

  .site-navigation-menu .menu-item:hover .sub-menu .menu-item a:hover:before {
    background: transparent;
    content: ""; }

  .site-navigation-menu .menu-item:hover .sub-menu .menu-item.current-menu-item a {
    font-weight: 900;
    position: unset; }

  .site-navigation-menu .menu-item:hover .sub-menu .menu-item.current-menu-item a:before {
    background: transparent;
    content: ""; } }
.site-navigation-menu .menu-item a {
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  height: 100%;
  line-height: 1rem;
  margin: 0;
  padding: .75rem 1rem;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  width: 100%; }
.site-navigation-menu .menu-item.persist > a {
  transition: all .6s ease-out;
  position: relative;
  overflow: hidden;
  background: rgba(180, 0, 0, 0); }
  .site-navigation-menu .menu-item.persist > a:after {
    content: '';
    background: #b00;
    position: absolute;
    top: 0;
    left: -100%;
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all .4s ease-out; }

.site-header .site-search-toggle-wrapper .site-search-toggle svg {
  fill: #44433c; }

.site-header .site-search-toggle-wrapper .site-search-toggle svg title,
.site-header .site-search-toggle-wrapper .site-search-toggle svg desc {
  color: #44433c; }

.site-header .site-search-wrapper {
  background-color: #33322a; }

.site-header .site-search-toggle-wrapper {
  display: -ms-flexbox;
  display: flex;
  height: 3rem;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: auto; }

@media screen and (min-width: 48em) {
  .site-header .site-search-toggle-wrapper {
    height: 2.5rem;
    max-width: 40px; } }
.site-header .site-search-toggle-wrapper .site-search-toggle {
  background-color: transparent;
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 3rem;
  -ms-flex-pack: center;
  justify-content: center;
  width: 3rem; }

@media screen and (min-width: 48em) {
  .site-header .site-search-toggle-wrapper .site-search-toggle {
    background-color: transparent;
    height: 2.5rem;
    width: 2.5rem; } }
.site-header .site-search-toggle-wrapper .site-search-toggle svg {
  height: 2rem;
  pointer-events: none;
  width: 2rem; }

@media screen and (min-width: 48em) {
  .site-header .site-search-toggle-wrapper .site-search-toggle svg {
    height: 1.5rem;
    width: 1.5rem; } }
.site-header .site-search-wrapper {
  background: #33322a;
  bottom: -3rem;
  display: none;
  height: 3rem;
  position: absolute;
  width: 100%;
  z-index: 99; }

@media screen and (min-width: 48em) {
  .site-header .site-search-wrapper {
    bottom: -2.5rem;
    height: 2.5rem; } }
.site-header .site-search-wrapper .site-search {
  -ms-transition: 0.1s;
  -moz-transition: 0.1s;
  -o-transition: 0.1s;
  -webkit-transition: 0.1s;
  display: none;
  height: 100%;
  margin: 0 auto;
  max-width: 70rem;
  opacity: 0;
  padding: 0;
  transition: 0.2s;
  width: 100%;
  z-index: 1; }

.search-form {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  height: auto;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 70rem;
  width: 100%; }

.search-form label {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  float: left;
  margin: 0;
  width: 100%;
  height: 100%; }

.search-form label .search-icon-search {
  fill: white;
  height: 1.5rem;
  margin: 0.75rem;
  padding: 0.25rem;
  pointer-events: none;
  width: 1.5rem; }

.search-form .search-icon-close {
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  fill: #fff;
  height: 100%;
  -ms-flex-pack: center;
  justify-content: center;
  width: 3rem; }

@media screen and (min-width: 48em) {
  .search-form .search-icon-close {
    width: 2.5rem; } }
.search-form .search-icon-close:hover {
  cursor: pointer; }

.search-form .search-field {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-size: 1rem;
  height: 100%;
  margin: 0;
  padding: 0;
  text-indent: 1rem;
  width: 100%; }

.search-form .search-field:-ms-input-placeholder {
  color: #fff;
  text-indent: 1rem; }

.search-form .search-field::placeholder {
  color: #fff;
  text-indent: 1rem; }

.search-form .search-submit {
  border-radius: 0; }

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden; }

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%; }

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  width: 50%;
  text-align: right; }

.page-links {
  clear: both;
  margin: 0 0 1.5em; }

.breadcrumbs {
  font-size: 1rem;
  padding: 0; }

.breadcrumbs ol {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  list-style-type: none;
  margin: 3rem 0; }

.breadcrumbs ol li {
  margin: 0 1rem 0 0;
  position: relative; }

.breadcrumbs ol li:before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23c3c2bb" viewBox="0 0 24 24"><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  position: absolute;
  right: -1rem;
  top: 0.25rem;
  width: 1rem; }

.breadcrumbs ol li:last-of-type:before {
  content: "";
  display: none; }

.breadcrumbs a {
  color: #44433c;
  text-decoration: none; }

.breadcrumbs a:hover {
  color: #01548f;
  text-decoration: underline; }

.breadcrumbs a.current {
  cursor: default;
  pointer-events: none;
  text-decoration: none; }

.breadcrumbs .sep {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  height: 100%;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 1rem; }

.breadcrumbs .sep:before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23c3c2bb" viewBox="0 0 24 24"><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  position: absolute;
  top: 0.25rem; }

.breadcrumbs .current {
  color: #900; }

.site-branding-unique .site-branding-title a {
  color: #44433c; }

.site-branding-unique .site-branding-description {
  color: #44433c; }

.site-branding-usc {
  -ms-flex-align: start;
  align-items: flex-start;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -ms-flex-pack: center;
  justify-content: center; }

@media screen and (min-width: 48em) {
  .site-branding-usc {
    height: auto;
    width: 9rem; } }
.site-branding-usc .site-branding-usc-logo {
  background-image: url(../images/logo-usc-gateway-2018-light.svg);
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: 0 bottom;
  display: block;
  height: 100%;
  margin-left: 0.75rem;
  max-height: 2rem;
  overflow: hidden;
  text-align: left;
  text-indent: -119988px;
  text-transform: capitalize;
  width: 6rem; }

@media screen and (min-width: 48em) {
  .site-branding-usc .site-branding-usc-logo {
    height: 100%;
    max-height: 2.75rem;
    background-size: 100%;
    max-width: 8rem;
    position: absolute;
    width: 100%; } }
.site-branding-unique {
  -ms-flex-align: start;
  align-items: flex-start;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 0.875rem 0;
  width: 100vw; }

@media screen and (min-width: 48em) {
  .site-branding-unique {
    border-top: none;
    margin: 1.5rem 0 1.5rem 1.5rem;
    width: calc(100% - 10.5rem); }
    .site-branding-unique:after {
      content: "";
      display: -ms-flexbox;
      display: flex;
      height: 2.5rem;
      margin-left: -1rem;
      position: absolute;
      width: auto;
      border-left: 1px solid #77766f; } }
.site-branding-unique .site-branding-title {
  font-size: inherit;
  line-height: 1;
  margin: 0 1rem; }

@media screen and (min-width: 48em) {
  .site-branding-unique .site-branding-title {
    margin: 0; } }
.site-branding-unique .site-branding-title a {
  color: #44433c;
  font-size: 1.25rem;
  font-weight: 100;
  text-decoration: none; }

@media screen and (min-width: 48em) {
  .site-branding-unique .site-branding-title a {
    font-size: 1.75rem; } }
.site-branding-unique .site-branding-title a:hover {
  text-decoration: none; }

.site-branding-unique .site-branding-description {
  color: #fff;
  display: none; }

@media screen and (min-width: 48em) {
  .site-branding-unique .site-branding-description {
    display: block;
    font-size: 1rem;
    margin: 0; } }
.error404 .site-content .entry-image {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 0; }

.error404 .site-content .entry-image img {
  height: auto;
  width: 100%; }

.error404 .site-content.sidebar-left {
  padding: 0 1rem; }

@media screen and (min-width: 70rem) {
  .error404 .site-content.sidebar-left {
    padding: 0; } }
.error404 .site-content.sidebar-right {
  padding: 0 1rem; }

.error404 .site-content.sidebar-right .entry-title {
  margin: 2rem 0 0;
  overflow: hidden;
  text-overflow: ellipsis; }

.error404 .site-content.sidebar-right .entry-title:before {
  background-color: #990000;
  content: "";
  display: block;
  margin-bottom: 1rem;
  height: 0.5rem;
  width: 5rem; }

.sticky {
  display: block; }

.page .entry-footer {
  margin: 2em 0;
  width: 100%; }

.archive .site-content .content-area .page-header,
.blog .site-content .content-area .page-header,
.category .site-content .content-area .page-header {
  margin: 0 0 2rem; }

.archive .site-content .content-area article .entry-header:before,
.blog .site-content .content-area article .entry-header:before,
.category .site-content .content-area article .entry-header:before {
  display: none; }

.archive .site-content .content-area article .entry-header h1, .search-results .site-content .content-area article .entry-header h1.entry-title {
  font-size: 1.75rem;
  line-height: 1; }
  .archive .site-content .content-area article .entry-header h1 a, .search-results .site-content .content-area article .entry-header h1.entry-title a {
    color: #000;
    text-decoration: none; }
    .archive .site-content .content-area article .entry-header h1 a:hover, .search-results .site-content .content-area article .entry-header h1.entry-title a:hover {
      text-decoration: underline; }

.categories {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 1rem; }

.categories .category-single, .categories a[rel~='category'], .categories a[rel~='tag'] {
  background: #ededeb;
  border-radius: 4px;
  color: #5e5d56;
  font-size: 14px;
  font-weight: normal;
  height: 24px;
  margin: 0 0.5rem 0.5rem 0;
  padding: 2px 10px;
  text-decoration: none;
  text-transform: capitalize; }

.categories .category-single:hover, .categories a[rel~='category']:hover, .categories a[rel~='tag']:hover {
  background: #ededeb;
  color: #5e5d56;
  text-decoration: none; }

.categories .category-single:visited {
  color: #5e5d56; }

.entry-header {
  width: 100%; }

.entry-meta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  margin: 1rem 0 1.5rem; }

.posted-on {
  color: #1f1e18;
  font-size: 1rem;
  line-height: 1.25rem;
  margin: 0 0 0.5rem; }

.last-updated {
  color: #5e5d56;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.25rem;
  margin: 0 0 0.5rem; }

.byline {
  color: #1f1e18;
  font-size: 1rem;
  line-height: 1.25rem;
  margin: 0 0 0.5rem; }

.entry-content {
  margin: 0 auto;
  width: 100%; }

.entry-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 1rem 0; }

.comments-area ol {
  list-style: none;
  padding: 0; }

.comments-area .comment-form-cookies-consent {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 0 0 1rem; }

.comments-area .comment-form-cookies-consent input {
  margin: 0 0 0 1rem; }

.comments-area .comment-form-cookies-consent label {
  margin: 0; }

.comment-body {
  margin: 2rem 0; }

.comment-body .comment-content a {
  word-wrap: break-word; }

.comment-body .comment-content p {
  margin: 0;
  padding: 0; }

.bypostauthor {
  display: block; }

.widget {
  margin: 0 0 1.5em; }

.widget select {
  max-width: 100%; }

.error404 .site-content {
  height: 100%;
  margin: 0 auto;
  max-width: 70rem;
  padding: 0;
  width: 100%;
  padding: 0 1rem; }

.error404 .site-content .content-area .error-404 .page-header {
  margin: 0 0 2rem; }

.error404 .site-content .content-area .error-404 .page-header .page-title {
  font-weight: 100; }

.error404 .site-content .content-area .error-404 .search-form {
  height: 2rem;
  margin: 1rem 0 3rem; }

.error404 .site-content .content-area .error-404 .search-form .search-field {
  background: transparent;
  box-shadow: inset 1px 1px 6px #c3c2bb;
  border-radius: 0.25rem;
  color: #141410;
  padding: 1rem; }

.error404 .site-content .content-area .error-404 .search-form .search-field:-ms-input-placeholder {
  color: #5e5d56; }

.error404 .site-content .content-area .error-404 .search-form .search-field::placeholder {
  color: #5e5d56; }

.error404 .site-content .content-area .error-404 .search-form .search-icon-close {
  display: none; }

.search-results .site-content,
.search.search-no-results .site-content {
  height: 100%;
  margin: 0 auto;
  max-width: 70rem;
  padding: 0;
  width: 100%;
  padding: 0 1rem; }

.search-results .site-content .content-area .page-header,
.search.search-no-results .site-content .content-area .page-header {
  margin: 0 0 2rem; }

.search-results .site-content .content-area article .entry-header:before,
.search.search-no-results .site-content .content-area article .entry-header:before {
  display: none; }

.search-results .site-content .content-area article .entry-header h1.entry-title,
.search.search-no-results .site-content .content-area article .entry-header h1.entry-title {
  font-size: 1.75rem;
  line-height: 1.25; }

.search-results .site-content .content-area article .entry-header h1.entry-title a,
.search.search-no-results .site-content .content-area article .entry-header h1.entry-title a {
  text-decoration: none; }

.site-content .search-form {
  height: 2rem;
  margin: 1rem 0 3rem; }

.site-content .search-form .search-field {
  background: transparent;
  box-shadow: inset 1px 1px 6px #c3c2bb;
  border-radius: 0.25rem;
  color: #141410;
  height: auto;
  padding: 0.5rem 0; }

.site-content .search-form .search-field:-ms-input-placeholder {
  color: #5e5d56; }

.site-content .search-form .search-field::placeholder {
  color: #5e5d56; }

.site-content .search-form .search-icon-close {
  display: none; }

@media print {
  @page {
    margin: 0.5cm; }
  body {
    background: #fff; }

  div,
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  main,
  nav,
  section {
    background: transparent !important;
    color: #000 !important; }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #000 !important;
    background: transparent !important;
    border-color: #000 !important; }

  h1 {
    border-bottom: 1px solid #000;
    padding-bottom: 0.5em; }

  .site-branding-title {
    border: 0 none; }

  .site-branding-title a {
    clear: both;
    color: #000 !important; }

  .site-content {
    clear: both;
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid #000; }

  p {
    color: #000; }

  q,
  blockquote {
    background: #ccc; }

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

  q[cite]:after,
  blockquote[cite]:after {
    content: " [Source: " attr(cite) "]";
    font-size: 75%; }

  a {
    color: #999 !important;
    text-decoration: underline; }

  a:not([href*=""]):after {
    content: " [" attr(href) "] ";
    color: #bfbfbf;
    text-decoration: none; }

  p a {
    word-wrap: break-word; }

  img {
    max-width: 500px; }

  header nav,
  footer,
  audio,
  video,
  embed,
  object,
  .site-breadcrumbs,
  .widget_search {
    display: none; } }
/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/fonts/fa-solid-900.eot");
  src: url("/fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/fonts/fa-solid-900.woff2") format("woff2"), url("/fonts/fa-solid-900.woff") format("woff"), url("/fonts/fa-solid-900.ttf") format("truetype"), url("/fonts/fa-solid-900.svg#fontawesome") format("svg"); }
html {
  font-family: "Source Sans Pro", helvetica neue, helvetica, arial, sans-serif;
  font-size: 15px;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

body, button, input, select, textarea {
  color: #1f1e18;
  font-family: "Source Sans Pro", helvetica neue, helvetica, arial, sans-serif;
  font-size: 1.25em;
  line-height: 1.5;
  -moz-font-smoothing: greyscale;
  -webkit-font-smoothing: antialiased;
  font-family: Source Sans Pro, Helvetica Neue, Helvetica, sans-serif; }

a {
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }

dl {
  margin: 1rem 0;
  display: grid;
  grid-template-columns: 1fr 3fr;
  line-height: 1.2; }
  dl dt {
    font-weight: 700;
    margin: 0;
    padding: 0; }
  dl dd {
    margin: 0 0 1rem;
    padding: 0; }
  dl.selects {
    grid-template-columns: 1fr 1fr; }
    dl.selects dt {
      padding-top: .625rem; }
    dl.selects dd select {
      width: 100%; }
    dl.selects .dropdown {
      margin: 0;
      text-align: left; }

p {
  font-size: 1.25rem;
  margin: 0 0 1rem; }

select {
  font-weight: 300;
  font-size: 1.25rem;
  border-color: transparent;
  /*box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.4);*/
  border-right-width: 0.5rem; }

.center {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd; }
  .center iframe {
    margin: 0 auto; }

.sprite {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  background-repeat: no-repeat; }

.smallcaps {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: .1rem;
  text-transform: uppercase;
  font-variant: small-caps; }

.smallercaps {
  font-family: "Source Sans Pro", helvetica neue, helvetica, arial, sans-serif;
  font-size: .8rem;
  font-weight: 300;
  letter-spacing: .05rem;
  text-transform: uppercase; }

.search-field:focus {
  outline: 0; }

article > .hero-block {
  margin-bottom: 3rem !important; }

.banner {
  position: absolute;
  top: 6rem;
  z-index: 2;
  width: 100%;
  text-align: center;
  background: #eee;
  backdrop-filter: blur(0.2rem);
  -webkit-backdrop-filter: blur(0.2rem); }
  @media screen and (min-width: 48em) {
    .banner {
      top: 6.5rem; } }
  .banner.background-red {
    background: rgba(153, 0, 0, 0.7);
    backdrop-filter: blur(0.2rem) grayscale(1);
    -webkit-backdrop-filter: blur(0.2rem) grayscale(1); }
  .banner.background-black {
    background: rgba(0, 0, 0, 0.5); }
  .banner.background-white {
    background: rgba(255, 255, 255, 0.7); }
  .banner figure {
    width: 36rem;
    margin: 0 auto; }
    .banner figure img {
      display: block; }

.hero, .header {
  position: relative; }
  .hero .overlay, .header .overlay {
    width: 100%;
    max-width: 68rem;
    text-align: center;
    z-index: 1; }
    @media only screen and (min-width: 40em) {
      .hero .overlay, .header .overlay {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 1rem; } }
    @media only screen and (min-width: 48.875em) {
      .hero .overlay, .header .overlay {
        bottom: 8rem; }


    }

@media only screen and (max-width: 48.875em) {
    .hero h2, .header h2 {
        margin: 1rem 3rem;
    }
}


    @media only screen and (min-width: 108em) {
      .hero .overlay, .header .overlay {
        bottom: 16rem; } }
.hero h2, .header h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 700;
    max-width: 59rem;
    
    transition: opacity .4s ease;
}
@media only screen and (max-width: 39.98em) {
/*    .hero h2, .header h2 {
        margin: 1.5rem 0;
    }*/
    body.section .hero .toggles, body.section .header .toggles {
        margin: 1.5rem 0;
    }
}
    @media only screen and (min-width: 40em) {
        .hero h2, .header h2 {
            margin: 0 auto;
            font-weight: 300;
            font-size: 2.5rem;
        }
        body.section .hero .toggles, body.section .header .toggles {
            margin: 0 0 1.5em 1em !important;
        }

    }
    @media only screen and (min-width: 48.875em) {
      .hero h2, .header h2 {
        font-size: 3.5rem; } }
  .hero form, .header form {
    width: 100%;
    max-width: 44rem;
    margin: 2.5rem auto;
    position: relative; }
    .hero form input, .header form input {
      padding: .75rem;
      font-size: 1.75rem;
      width: calc(100% + -2rem);
      margin: 0 1rem; }
      @media only screen and (min-width: 40em) {
        .hero form input, .header form input {
          box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.6); } }
      .hero form input:focus, .header form input:focus {
        outline: none; }
      .hero form input + label, .header form input + label {
        left: 1rem; }
    .hero form button, .header form button {
      position: absolute;
      top: 1rem;
      right: 1.5rem;
      background: none;
      width: 2rem;
      height: 2rem;
      padding: 0;
      text-indent: -1000rem; }
      .hero form button:before, .header form button:before {
        font-family: 'Font Awesome';
        position: absolute;
        top: .125rem;
        right: .25rem;
        width: 1.25rem;
        height: 1.25rem;
        transition: color .3s ease;
        content: '\f002';
        text-indent: 0;
        font-size: 1.25rem;
        color: #000; }
        @media only screen and (min-width: 40em) {
          .hero form button:before, .header form button:before {
            top: 0;
            right: .5rem;
            font-size: 1.5rem;
            width: 1.5rem;
            height: 1.5rem; } }

.hero {
  padding: 0;
  overflow: hidden; }
  @media only screen and (min-width: 40em) {
    .hero {
      width: 0;
      height: 0;
      padding: 25% 50%;
      overflow: hidden; }
      .hero:after {
        content: '';
        align-items: center;
        background: linear-gradient(rgba(84, 84, 84, 0) 40%, rgba(0, 0, 0, 0.9) 98%);
        display: flex;
        width: 100%;
        height: 100%;
        justify-content: center;
        left: 0;
        position: absolute;
        top: 0; } }
  @media only screen and (min-width: 108em) {
    .hero {
      padding: 20% 50%; } }
  .hero figure {
    margin: 0 !important;
    object-fit: cover; }
    @media only screen and (min-width: 40em) {
      .hero figure {
        height: 100% !important;
        width: 100% !important;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); } }
    @media only screen and (min-width: 40em) {
      .hero figure img {
        width: 100% !important;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
        .hero figure img.nudge-10 {
          transform: translate(-50%, -40%); } }
  @media only screen and (min-width: 40em) {
    .hero h2 {
      color: #fff;
      text-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.6); } }

@media only screen and (max-width: 39.98em) {
    .hero figure img {
        transform: none !important;
    }
}

.header {
  width: 100%;
  height: 10rem;
  background: #eee;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  color: #000; }

/* Floating labels, via Bootstrap */
.form-floating {
  position: relative; }
  .form-floating > .form-control,
  .form-floating > .form-select {
    height: 4rem;
    line-height: 1.25; }
  .form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem .75rem;
    font-size: 1.25rem;
    margin-top: 0;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .4s ease-in-out, transform .2s ease-in-out; }
    @media only screen and (min-width: 40em) {
      .form-floating > label {
        font-size: 1.5rem;
        padding: .75rem; } }
  .form-floating > .form-control {
    padding: .5rem .75rem; }
    .form-floating > .form-control::placeholder {
      color: transparent; }
    .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
      padding-top: 1.5rem;
      padding-bottom: .625rem; }
    .form-floating > .form-control:-webkit-autofill {
      padding-top: 1.625rem;
      padding-bottom: .625rem; }
  .form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: .625rem; }
  .form-floating > .form-control:focus ~ label,
  .form-floating > .form-control:not(:placeholder-shown) ~ label,
  .form-floating > .form-select ~ label {
    opacity: .65;
    transform: scale(0.66) translateY(-0.6rem) translateX(0.375rem); }
  .form-floating > .form-control:-webkit-autofill ~ label {
    opacity: .65;
    transform: scale(0.66) translateY(-0.6rem) translateX(0.375rem); }

/* Top menu
--------------------------------------------- */
.top-menu {
  text-align: center;
  transition: transform .5s ease;
  margin: 1rem;
  padding: 1rem 0; }
  @media only screen and (min-width: 48.875em) {
    .top-menu {
      padding: 0;
      margin: -8rem 0 0 0; } }
  @media only screen and (min-width: 108em) {
    .top-menu {
      margin: -16rem 0 0 0; } }
  .top-menu ul {
    margin: 0 auto 2rem auto;
    padding: 0;
    list-style: none;
    width: 100%;
    max-width: 68rem;
    column-gap: .5rem; }
    @media only screen and (min-width: 48.875em) {
      .top-menu ul {
        display: grid;
        column-gap: 2rem;
        grid-template-columns: 1fr 1fr 1fr 1fr; } }
    @media only screen and (min-width: 108em) {
      .top-menu ul {
        max-width: 72.5rem; } }
  .top-menu li {
    margin: 0 0 1rem;
    padding: 0;
    width: 100%;
    clear: both;
    text-align: left; }
    @media only screen and (min-width: 48.875em) {
      .top-menu li {
        text-align: center; } }
    .top-menu li figure {
      position: relative;
      width: 0;
      height: 0;
      padding: 2rem;
      float: left;
      position: relative;
      overflow: hidden;
      transition: transform .3s ease;
      margin: 0 1rem 0 0;
      outline-offset: 0; }
      @media only screen and (min-width: 48.875em) {
        .top-menu li figure {
          float: none;
          margin: 0 0 .5rem;
          padding: calc(50% + -10px);
          border: 10px solid #fff; } }
      .top-menu li figure:before, .top-menu li figure:after {
        display: none; }
      .top-menu li figure img {
        height: 100% !important;
        margin: 0 !important;
        object-fit: cover;
        width: auto !important;
        position: absolute;
        z-index: 0;
        border: none;
        top: 50%;
        left: 50%;
        border: none;
        transform: translate(-50%, -50%) scale(1.01);
        transition: transform .5s ease, filter .5s ease; }
    .top-menu li a {
      text-decoration: none;
      font-weight: 700;
      font-size: 1.25rem;
      color: #000;
      line-height: 1.05;
      display: flex;
      align-items: center;
      border: 1px solid rgba(255, 255, 255, 0.25);
      transition: background .3s ease; }
      @media only screen and (min-width: 48.875em) {
        .top-menu li a {
          font-size: 1.75rem;
          display: block;
          border: none;
          margin-bottom: 2rem; } }
      .top-menu li a:hover {
        color: #000; }
        @media only screen and (max-width: 48.875em) {
          .top-menu li a:hover {
            background: rgba(255, 255, 255, 0.2); } }
        @media only screen and (min-width: 48.875em) {
          .top-menu li a:hover img {
            transform: translate(-50%, -50%) scale(1.05); } }

.close-menu {
  display: none; }

.btn.outline {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  color: #000;
  padding: .5rem 2rem;
  border: 1px solid #000;
  display: inline-block; }

/* Help info */
.help-info {
  background: #eee;
  border-top: 1px solid #ccc;
  margin-top: 2.5rem;
  padding: 2rem 1rem;
  text-align: center; }
  .help-info .wrapper {
    margin: 0 auto;
    max-width: 28rem;
    text-align: left; }
  .help-info a {
    font-weight: 700;
    text-decoration: none; }

.fund, .content ul.funds li, .category {
  background: #eee;
  border: 1px solid #ddd;
  border-radius: .2rem;
  margin: 0 0 1.25rem;
  position: relative;
  padding: .5rem 13rem .5rem 1rem;
  line-height: 1.2;
  font-size: 1.2rem; }
  .fund a, .content ul.funds li a, .category a {
    font-size: 1.2rem; }
    .fund a:before, .content ul.funds li a:before, .category a:before {
      display: none; }
    .fund a.info, .content ul.funds li a.info, .fund a.give, .content ul.funds li a.give, .fund a.show, .content ul.funds li a.show, .category a.info, .category a.give, .category a.show {
      position: absolute;
      top: 0;
      height: 100%;
      transition: color .3s ease, background .3s ease; }
      .fund a.info span, .content ul.funds li a.info span, .fund a.give span, .content ul.funds li a.give span, .fund a.show span, .content ul.funds li a.show span, .category a.info span, .category a.give span, .category a.show span {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%); }
    .fund a.give, .content ul.funds li a.give, .fund a.show, .content ul.funds li a.show, .category a.give, .category a.show {
      right: 0;
      width: 4rem;
      min-height: 2rem;
      background: #fff;
      color: #900;
      padding: .5rem .75rem;
      border-top-right-radius: .25rem;
      border-bottom-right-radius: .25rem; }
      .fund a.give:hover, .content ul.funds li a.give:hover, .fund a.show:hover, .content ul.funds li a.show:hover, .category a.give:hover, .category a.show:hover {
        color: #fff;
        background: #900;
        text-decoration: none; }
      .fund a.give.active, .content ul.funds li a.give.active, .fund a.show.active, .content ul.funds li a.show.active, .category a.give.active, .category a.show.active {
        background: #900;
        color: #fff; }
        .fund a.give.active span, .content ul.funds li a.give.active span, .fund a.show.active span, .content ul.funds li a.show.active span, .category a.give.active span, .category a.show.active span {
          text-indent: -1000rem;
          position: relative; }
          .fund a.give.active span:before, .content ul.funds li a.give.active span:before, .fund a.show.active span:before, .content ul.funds li a.show.active span:before, .category a.give.active span:before, .category a.show.active span:before {
            font-family: 'Font Awesome';
            position: absolute;
            top: 0;
            right: 0;
            width: 2.5rem;
            height: 1.625rem;
            transition: color .3s ease;
            text-indent: 0;
            font-size: 1.5rem;
            line-height: 1.625rem;
            text-align: center;
            color: #fff;
            content: '\f00c'; }
    .fund a.show, .content ul.funds li a.show, .category a.show {
      width: 8rem; }
  .fund.show-all, .content ul.funds li.show-all, .category.show-all {
    background: none;
    border: none;
    padding-right: 1rem; }
    .fund.show-all a, .content ul.funds li.show-all a, .category.show-all a {
      color: #900;
      padding-left: .5rem; }
      .fund.show-all a:before, .content ul.funds li.show-all a:before, .category.show-all a:before {
        display: block;
        content: '\f0ca';
        top: 1rem; }

@media screen and (max-width: 40em) {
    .fund, .content ul.funds li, .category {
        padding: .5rem 4.5rem .5rem 1rem;
    }
}


.fund a.info, .content ul.funds li a.info {
  right: 4rem;
  width: 8rem;
  color: #777; }
  .fund a.info:before, .content ul.funds li a.info:before {
    content: '+';
    display: inline-block;
    font-weight: 700;
    font-size: 1.2rem;
    top: calc(50% + -.8rem);
    left: .5rem;
    color: #777; }
  .fund a.info:hover, .content ul.funds li a.info:hover {
    color: #444; }
    .fund a.info:hover:before, .content ul.funds li a.info:hover:before {
      color: #444; }
.fund .more, .content ul.funds li .more {
  max-height: 0;
  overflow: hidden;
  transition: max-height .7s ease;
  font-size: 1.1rem;
  line-height: 1.35;
  font-weight: normal; }
.fund.expand a.info:before, .content ul.funds li.expand a.info:before {
  content: '\2013'; }
.fund.expand .more, .content ul.funds li.expand .more {
  max-height: 50rem; }

.content ul li.show-all a {
    color: #900;
}

.pagination {
  border-top: 1px solid #ccc;
  margin: 2rem 0;
  padding: 2rem 0;
  height: 6rem; }
  .pagination a {
    background: #333;
    color: #fff;
    font-weight: 700;
    display: inline-block;
    padding: .75rem 1rem;
    border-radius: .2rem; }
    .pagination a:before, .pagination a:after {
      font-family: 'Font Awesome';
      transition: color .3s ease;
      text-indent: 0;
      text-align: center;
      font-size: 1rem;
      color: #fc0; }
    .pagination a:hover {
      text-decoration: none;
      background: #000; }
    .pagination a.inactive {
      display: none; }
    .pagination a.previous {
      float: left; }
      .pagination a.previous:before {
        content: '\f060';
        margin-right: .5rem; }
    .pagination a.next {
      float: right; }
      .pagination a.next:after {
        content: '\f061';
        margin-left: .5rem; }

.content {
  margin: 4rem auto;
  padding: 0 1rem;
  max-width: 48rem; }
  .content h3 {
    border-bottom: .1rem solid #fc0;
    padding: .375rem 0;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: .1rem;
    font-size: 1.2rem;
    font-weight: 400; }
  .content p {
    margin: 1rem auto;
    max-width: 28rem; }
    .content p.summary, .content p.note {
      text-align: center;
      max-width: none;
      font-size: 1.375rem;
      margin-bottom: 2rem; }
    .content p.note {
      margin-top: 4rem;
      text-align: left;
      font-size: 1rem;
      text-indent: -.625rem;
      padding-left: .625rem; }
  .content ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 28rem; }
    .content ul li {
      display: block;
      font-weight: 700;
      position: relative; }
      .content ul li a {
        display: block;
        color: #000;
        padding: .375rem 0 .375rem 1.5rem; }
        .content ul li a:before {
          font-family: 'Font Awesome';
          position: absolute;
          top: .625rem;
          left: 0;
          width: 1rem;
          height: 1rem;
          transition: color .3s ease;
          content: '\f105';
          text-indent: 0;
          font-size: 1rem;
          color: #900; }
    .content ul.funds {
      max-width: none; }
    .content ul.results {
      max-width: none; }
  .content.wide {
    max-width: 70rem; }

a[href^="tel:"] {
  font-weight: normal;
  color: #000;
  text-decoration: none; }

footer {
  background: #000;
  color: #fff;
  font-size: 1rem; }
  footer .wrapper {
    padding: .5rem 1rem 1rem 1rem;
    max-width: 68rem;
    margin: 0 auto;
    position: relative;
    top: auto;
    left: auto; }
    @media only screen and (min-width: 48.875em) {
      footer .wrapper {
        padding: .5rem 0 1rem; } }
    @media only screen and (min-width: 48.875em) {
      footer .wrapper ul {
        display: flex;
        justify-content: center;
        list-style: none;
        column-gap: 2rem; } }
footer a, footer a:visited, .menu a:visited {
    text-decoration: underline;
    color: #fff;
}
    footer a:hover, footer a:focus, footer a:active {
      color: #fc0; }

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em; }

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em; }

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em; }

@media only screen and (min-width: 40em) {
  body.section .hero .overlay, body.section .header .overlay {
    bottom: 0; } }
@media only screen and (min-width: 48.875em) {
  body.section .hero .overlay, body.section .header .overlay {
    bottom: 2rem; } }
body.section .hero h2, body.section .header h2 {
  font-weight: 700; }
body.section .hero .toggles, body.section .header .toggles {
  list-style: none;
  margin: 0; }
  body.section .hero .toggles li, body.section .header .toggles li {
    position: absolute;
    bottom: 1rem; }
    @media only screen and (min-width: 40em) {
      body.section .hero .toggles li, body.section .header .toggles li {
        bottom: 1.75rem; } }
    @media only screen and (min-width: 48.875em) {
        body.section .hero .toggles li,
        body.section .header .toggles li {
           /* text-indent: 0;
            width: 4rem;
            height: 4rem;
            padding-top: 2rem;*/
            bottom: 1.5rem;
        } }
body.section .hero .toggles li a,
body.section .header .toggles li a {
    display: block;
    width: 3rem;
    height: 3rem;
    text-indent: -1000rem;
    color: #fff;
    font-size: 1.125rem;
    padding: 2.5rem 0 0;
    padding-top: 2.5rem;
    font-weight: 700;
    transition: background .3s ease;
    /* display: block;
    width: 3rem;
    height: 3rem;
    text-indent: -1000rem;
    transition: background .3s ease;
    color: #fff;
    font-size: 1.125rem;
    padding: 2.5rem 0 0;
    font-weight: 700;*/
}
      @media only screen and (min-width: 48.875em) {
        body.section .hero .toggles li a,
        body.section .header .toggles li a {
            text-indent: 0;
            width: 4rem;
            height: 4rem;
            padding-top: 2rem;
        } }
body.section .hero .toggles li a:before,
body.section .header .toggles li a:before {
    font-family: 'Font Awesome';
    position: absolute;
    top: 1rem;
    left: .5rem;
    width: 2rem;
    height: 2rem;
    transition: color .3s ease;
    text-indent: 0;
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: center;
}
        @media only screen and (min-width: 48.875em) {
            body.section .hero .toggles li a:before,
            body.section .header .toggles li a:before {
                /* top: 1rem;
            left: 1rem;
            font-size: 1.5rem; */
                top: .25rem;
                left: 1rem;
                font-size: 1.5rem;
            } }
      body.section .hero .toggles li a:hover, body.section .header .toggles li a:hover {
        text-decoration: none; }
    body.section .hero .toggles li.toggle-menu, body.section .header .toggles li.toggle-menu {
      left: 0; }
      body.section .hero .toggles li.toggle-menu a, body.section .header .toggles li.toggle-menu a {
        /*							span {
        								display: block;
        								text-indent: 0;
        								color: #fff;
        								padding-left: 0;//3.25rem;
        								opacity: 0;//1;
        								padding-top: 1.1rem;
        								text-transform: uppercase;
        								font-weight: 700;
        								letter-spacing: .1rem;
        								transition: padding .3s ease, opacity .3s ease;
        							}
        */
        /*
        							&:hover, &.expand {
        								span {
        									padding-left: 3.25rem;
        									opacity: 1;
        								}
        							}
        */ }
        body.section .hero .toggles li.toggle-menu a:before, body.section .header .toggles li.toggle-menu a:before {
          content: '\f0c9'; }
    body.section .hero .toggles li.toggle-search, body.section .header .toggles li.toggle-search {
      right: 0; }
      body.section .hero .toggles li.toggle-search a:before, body.section .header .toggles li.toggle-search a:before {
        content: '\f002'; }
@media only screen and (min-width: 40em) {
  body.section .hero {
    padding: 20% 50%; } }
@media only screen and (min-width: 108em) {
  body.section .hero {
    padding: 17.5% 50%; } }
body.section .hero .toggles li a:before {
  color: #000; }
  @media only screen and (min-width: 40em) {
    body.section .hero .toggles li a:before {
      color: #fff; } }
@media only screen and (min-width: 40em) {
  body.section .hero .toggles li a:hover {
    background: rgba(0, 0, 0, 0.6); }
    body.section .hero .toggles li a:hover:before {
      color: #fff; } }
body.section .header .toggles li a:before {
  color: #000; }
body.section .header .toggles li a:hover {
  background: rgba(0, 0, 0, 0.1); }
  body.section .header .toggles li a:hover:before {
    color: #000; }
body.section form {
  display: none; }
body.section .top-menu {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8); }
  body.section .top-menu a {
    color: #fff; }
body.personal .hero h2, body.personal .header h2 {
  font-weight: 300; }
body.open-menu .hero h2, body.open-menu .header h2, body.open-search .hero h2, body.open-search .header h2 {
  opacity: 0; }
body.open-menu:before, body.open-search:before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  content: '';
  background: rgba(0, 0, 0, 0.8);
  transition: background .4s ease; }
body.open-menu .close-menu, body.open-search .close-menu {
  display: block;
  position: fixed;
  top: 4rem;
  left: calc( 50% + -5rem );
  background: none;
  width: auto;
  height: 3rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  z-index: 3;
  padding: .35rem 0 .375rem 1.875rem;
  transition: color .3s ease; }
  body.open-menu .close-menu:before, body.open-search .close-menu:before {
    font-family: 'Font Awesome';
    position: absolute;
    top: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    transition: color .3s ease;
    content: '\f00d';
    text-indent: 0;
    font-size: 2rem;
    color: #fff; }
  body.open-menu .close-menu:hover, body.open-search .close-menu:hover {
    text-decoration: none;
    color: #fc0; }
    body.open-menu .close-menu:hover:before, body.open-search .close-menu:hover:before {
      color: #fc0; }
body.open-menu .toggles, body.open-search .toggles {
  display: none; }
body.open-menu .top-menu {
  position: fixed;
  left: 50%;
  top: 10rem;
  z-index: 3;
  display: block;
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 1rem;
  transform: translateX(-50%) scale(1); }
body.open-menu .btn.outline {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  padding: .5rem 2rem;
  border: 1px solid #fff;
  display: inline-block; }
body.open-search .hero .overlay, body.open-search .header .overlay {
  position: fixed;
  top: 4rem;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%) scale(1); }
  body.open-search .hero .overlay form, body.open-search .header .overlay form {
    display: block; }

.dropbtn {
  background-color: #fff;
  color: #000;
  padding: .5rem 3rem .5rem 1rem;
  font-size: 1.25rem;
  text-align: left;
  cursor: pointer;
  width: 22rem;
  margin: 0 auto;
  text-transform: none;
  border: 1px solid #bbb;
  position: relative;
  transition: border-color .3s ease; }
  .dropbtn:before {
    content: '';
    right: 2.75rem;
    top: 0;
    width: 1px;
    height: 100%;
    background: #bbb;
    position: absolute;
    transition: background .3s ease; }
  .dropbtn:after {
    content: '\f107';
    font-family: 'Font Awesome';
    position: absolute;
    top: .75rem;
    right: .75rem;
    width: 1rem;
    height: 1rem;
    transition: color .3s ease;
    text-indent: 0;
    font-size: 1rem;
    color: #aaa; }

.dropdown {
  position: relative;
  display: block;
  width: 22rem;
  margin: 0 auto;
  text-align: center; }
  .dropdown:hover .dropdown-content, .dropdown:focus .dropdown-content, .dropdown:active .dropdown-content {
    display: block; }
  .dropdown:hover .dropbtn, .dropdown:focus .dropbtn, .dropdown:active .dropbtn {
    border: 1px solid #777;
    background: #fff;
    color: #000; }
    .dropdown:hover .dropbtn:before, .dropdown:focus .dropbtn:before, .dropdown:active .dropbtn:before {
      background: #777;
      transform: scaleX(0.5); }
    .dropdown:hover .dropbtn:after, .dropdown:focus .dropbtn:after, .dropdown:active .dropbtn:after {
      color: #777; }
    .dropdown:hover .dropbtn:focus + .dropdown-content, .dropdown:hover .dropbtn:active + .dropdown-content, .dropdown:focus .dropbtn:focus + .dropdown-content, .dropdown:focus .dropbtn:active + .dropdown-content, .dropdown:active .dropbtn:focus + .dropdown-content, .dropdown:active .dropbtn:active + .dropdown-content {
      display: block; }
  .dropdown span {
    display: block; }
    .dropdown span.subject {
      font-weight: 700;
      font-size: 1.1rem; }
    .dropdown span.full-name {
      font-size: .9rem; }

h4 .dropdown {
  margin-bottom: 3rem; }

/* Dropdown Content (Hidden by Default) */
ul.dropdown-content {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f9f9f9;
  min-width: 22rem;
  text-align: left;
  font-size: 1rem;
  box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
  list-style: none; }
  ul.dropdown-content li {
    margin: 0; }
    ul.dropdown-content li.current a {
      background: #ddd; }
    ul.dropdown-content li a {
      color: #000;
      padding: .375rem 1.25rem;
      text-decoration: none;
      display: block;
      font-weight: normal;
      transition: background .3s ease; }
      ul.dropdown-content li a:hover {
        background-color: #f1f1f1; }
      ul.dropdown-content li a:before {
        display: none; }
      ul.dropdown-content li a:active {
        color: #fff;
        background: #900; }

.confirm {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 30rem;
  max-height: 30rem;
  overflow: auto;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 0.1rem 1.5rem rgba(0, 0, 0, 0.1);
  z-index: 100; }
  .confirm.on {
    display: block; }
  .confirm .wrapper {
    padding: 2rem;
    text-align: center; }
    .confirm .wrapper form {
      display: block; }
    .confirm .wrapper button {
      display: inline-block;
      padding: .75rem;
      background: #ddd;
      font-weight: normal;
      font-size: 1.25rem;
      text-transform: none;
      margin: 0 .25rem;
      border-radius: .2rem;
      transition: background .3s ease; }
      .confirm .wrapper button:hover {
        text-decoration: none;
        color: #000;
        background: #ccc; }
      .confirm .wrapper button.proceed {
        background: #900;
        color: #fff;
        font-weight: 700; }
        .confirm .wrapper button.proceed:hover {
          color: #fff;
          background: #800; }

.filters h4 {
    display: inline-block;
    font-size: 1.25rem;
    width: 9rem;
    padding-left: 1rem;
    text-align: left;
    margin: 0;
}

.content .filter-tag {
    padding: .25rem 1.75rem .25rem .5rem;
    margin-left: .25rem;
    background: #eee;
    white-space: nowrap;
    box-shadow: 0 0.1rem 0.1rem rgba(0,0,0,0.2);
    position: relative
}

.content .filter-tag .cancel {
    position: absolute;
    right: .125rem;
    width: 1.25rem;
    text-indent: -1000rem
}

.content .filter-tag .cancel:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.25rem;
    height: 1.5rem;
    transition: color .25s ease;
    content: '\00D7';
    text-indent: 0;
    text-align: center;
    font-size: 1.5rem;
    color: #000
}

.content .filter-tag .cancel:hover:before {
    color: #900
}

.content p {
    margin: 1rem auto;
    max-width: 28rem
}

.results h3 {
    text-transform: none !important;
    letter-spacing: normal;
    display: none;
}

.content ul li.show-all a {
    color: #900;
}

.content ul li.show-all a:before {
    font-family: 'Font Awesome';
    display: block;
    content: '\f0ca';
    top: 0.65rem;
    left: 0;
    background: none;
    font-size: 1rem;
}

.content ul li a:before {
    position: absolute;
    top: 1.2rem;
    left: 0.375rem;
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    content: '';
    text-indent: 0;
    background-color: #900;
}

.instructions a {
    color: #fc0 !important;
}



    @media only screen and (min-width: 48.875em) {
        .columns {
            display: flex;
            column-gap: 4rem;
        }

            .columns .column {
                width: 60%;
            }

                .columns .column.summary {
                    width: 40%;
                }

                    .columns .column.summary p {
                        font-size: 1.375rem;
                    }

            .columns p {
                max-width: none;
            }
    }

    @-webkit-keyframes collapse {
        from {
            padding-left: 3.25rem;
            opacity: 1;
        }

        to {
            padding-left: 0;
            opacity: 0;
        }
    }

    @-moz-keyframes collapse {
        from {
            padding-left: 3.25rem;
            opacity: 1;
        }

        to {
            padding-left: 0;
            opacity: 0;
        }
    }

    @-ms-keyframes collapse {
        from {
            padding-left: 3.25rem;
            opacity: 1;
        }

        to {
            padding-left: 0;
            opacity: 0;
        }
    }

    @-o-keyframes collapse {
        from {
            padding-left: 3.25rem;
            opacity: 1;
        }

        to {
            padding-left: 0;
            opacity: 0;
        }
    }

    @keyframes collapse {
        from {
            padding-left: 3.25rem;
            opacity: 1;
        }

        to {
            padding-left: 0;
            opacity: 0;
        }
    }
    /*# sourceMappingURL=advance.css.map */
