@charset "UTF-8";
html {
  box-sizing: border-box;
}

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

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/sourcesanspro-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/sourcesanspro-light-webfont.woff2") format("woff2"), url("../fonts/sourcesanspro-light-webfont.woff") format("woff"), url("../fonts/sourcesanspro-light-webfont.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/sourcesanspro-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/sourcesanspro-regular-webfont.woff2") format("woff2"), url("../fonts/sourcesanspro-regular-webfont.woff") format("woff"), url("../fonts/sourcesanspro-regular-webfont.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans Pro";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/sourcesanspro-italic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/sourcesanspro-italic-webfont.woff2") format("woff2"), url("../fonts/sourcesanspro-italic-webfont.woff") format("woff"), url("../fonts/sourcesanspro-italic-webfont.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/sourcesanspro-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/sourcesanspro-bold-webfont.woff2") format("woff2"), url("../fonts/sourcesanspro-bold-webfont.woff") format("woff"), url("../fonts/sourcesanspro-bold-webfont.ttf") format("truetype");
}

body {
  background-color: #ffffff;
  overflow-x: hidden;
}

.lt-ie9 * {
  filter: none !important;
}

.usa-grid,
.usa-grid-full {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1040px;
}

.usa-grid::after,
.usa-grid-full::after {
  clear: both;
  content: "";
  display: block;
}

.usa-grid {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

@media screen and (min-width: 951px) {
  .usa-grid {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.usa-grid-full {
  padding: 0;
}

@media screen and (min-width: 600px) {
  .usa-width-one-whole {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 100%;
  }
  .usa-width-one-whole:last-child {
    margin-right: 0;
  }
  .usa-width-one-half {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 47.58542%;
  }
  .usa-width-one-half:last-child {
    margin-right: 0;
  }
  .usa-width-one-third {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 30.11389%;
  }
  .usa-width-one-third:last-child {
    margin-right: 0;
  }
  .usa-width-two-thirds {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 65.05695%;
  }
  .usa-width-two-thirds:last-child {
    margin-right: 0;
  }
  .usa-width-one-fourth {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 47.58542%;
  }
  .usa-width-one-fourth:last-child {
    margin-right: 0;
  }
  .usa-width-one-fourth:nth-child(2n) {
    margin-right: 0;
  }
  .usa-width-three-fourths {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 100%;
  }
  .usa-width-three-fourths:last-child {
    margin-right: 0;
  }
  .usa-width-one-sixth {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 30.11389%;
  }
  .usa-width-one-sixth:last-child {
    margin-right: 0;
  }
  .usa-width-one-sixth:nth-child(3n) {
    margin-right: 0;
  }
  .usa-width-five-sixths {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 65.05695%;
  }
  .usa-width-five-sixths:last-child {
    margin-right: 0;
  }
  .usa-width-one-twelfth {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 30.11389%;
  }
  .usa-width-one-twelfth:last-child {
    margin-right: 0;
  }
  .usa-width-one-twelfth:nth-child(3n) {
    margin-right: 0;
  }
  .usa-width-five-twelfths {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 30.11389%;
  }
  .usa-width-five-twelfths:last-child {
    margin-right: 0;
  }
  .usa-width-seven-twelfths {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 65.05695%;
  }
  .usa-width-seven-twelfths:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 1201px) {
  .usa-width-one-whole {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .usa-width-one-whole:last-child {
    margin-right: 0;
  }
  .usa-width-one-half {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  .usa-width-one-half:last-child {
    margin-right: 0;
  }
  .usa-width-one-third {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
  }
  .usa-width-one-third:last-child {
    margin-right: 0;
  }
  .usa-width-two-thirds {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 65.88078%;
  }
  .usa-width-two-thirds:last-child {
    margin-right: 0;
  }
  .usa-width-one-fourth {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
  }
  .usa-width-one-fourth:last-child {
    margin-right: 0;
  }
  .usa-width-one-fourth:nth-child(2n) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
  }
  .usa-width-one-fourth:nth-child(2n):last-child {
    margin-right: 0;
  }
  .usa-width-one-fourth:nth-child(4n) {
    margin-right: 0;
  }
  .usa-width-three-fourths {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 74.41059%;
  }
  .usa-width-three-fourths:last-child {
    margin-right: 0;
  }
  .usa-width-one-sixth {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 14.70196%;
  }
  .usa-width-one-sixth:last-child {
    margin-right: 0;
  }
  .usa-width-one-sixth:nth-child(3n) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 14.70196%;
  }
  .usa-width-one-sixth:nth-child(3n):last-child {
    margin-right: 0;
  }
  .usa-width-one-sixth:nth-child(6n) {
    margin-right: 0;
  }
  .usa-width-five-sixths {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 82.94039%;
  }
  .usa-width-five-sixths:last-child {
    margin-right: 0;
  }
  .usa-width-one-twelfth {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 6.17215%;
  }
  .usa-width-one-twelfth:last-child {
    margin-right: 0;
  }
  .usa-width-one-twelfth:nth-child(3n) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 6.17215%;
  }
  .usa-width-one-twelfth:nth-child(3n):last-child {
    margin-right: 0;
  }
  .usa-width-one-twelfth:nth-child(12n) {
    margin-right: 0;
  }
  .usa-width-five-twelfths {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 40.29137%;
  }
  .usa-width-five-twelfths:last-child {
    margin-right: 0;
  }
  .usa-width-seven-twelfths {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 57.35098%;
  }
  .usa-width-seven-twelfths:last-child {
    margin-right: 0;
  }
}

.usa-end-row {
  margin-right: 0;
}

.usa-sr-only {
  position: absolute;
  left: -999em;
}

.usa-button,
.usa-button-primary,
.usa-button:visited,
.usa-button-primary:visited,
button,
[type="button"],
[type="submit"],
[type="reset"],
[type="image"] {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin-top: 0.5em;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  -webkit-appearance: none;
          appearance: none;
  background-color: #0071bc;
  border: 0;
  border-radius: 0.3rem;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  outline: none;
  padding: 1rem 2rem;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

@media screen and (min-width: 481px) {
  .usa-button,
  .usa-button-primary,
  .usa-button:visited,
  .usa-button-primary:visited,
  button,
  [type="button"],
  [type="submit"],
  [type="reset"],
  [type="image"] {
    width: auto;
  }
}

.usa-button:hover, .usa-button.usa-button-hover,
.usa-button-primary:hover,
.usa-button-primary.usa-button-hover,
.usa-button:visited:hover,
.usa-button:visited.usa-button-hover,
.usa-button-primary:visited:hover,
.usa-button-primary:visited.usa-button-hover,
button:hover,
button.usa-button-hover,
[type="button"]:hover,
[type="button"].usa-button-hover,
[type="submit"]:hover,
[type="submit"].usa-button-hover,
[type="reset"]:hover,
[type="reset"].usa-button-hover,
[type="image"]:hover,
[type="image"].usa-button-hover {
  background-color: #205493;
  border-bottom: 0;
  color: #ffffff;
  text-decoration: none;
}

.usa-button:focus, .usa-button.usa-button-focus,
.usa-button-primary:focus,
.usa-button-primary.usa-button-focus,
.usa-button:visited:focus,
.usa-button:visited.usa-button-focus,
.usa-button-primary:visited:focus,
.usa-button-primary:visited.usa-button-focus,
button:focus,
button.usa-button-focus,
[type="button"]:focus,
[type="button"].usa-button-focus,
[type="submit"]:focus,
[type="submit"].usa-button-focus,
[type="reset"]:focus,
[type="reset"].usa-button-focus,
[type="image"]:focus,
[type="image"].usa-button-focus {
  box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf;
}

.usa-button:active, .usa-button.usa-button-active,
.usa-button-primary:active,
.usa-button-primary.usa-button-active,
.usa-button:visited:active,
.usa-button:visited.usa-button-active,
.usa-button-primary:visited:active,
.usa-button-primary:visited.usa-button-active,
button:active,
button.usa-button-active,
[type="button"]:active,
[type="button"].usa-button-active,
[type="submit"]:active,
[type="submit"].usa-button-active,
[type="reset"]:active,
[type="reset"].usa-button-active,
[type="image"]:active,
[type="image"].usa-button-active {
  background-color: #112e51;
}

.usa-button.usa-button-primary-alt,
.usa-button-primary.usa-button-primary-alt,
.usa-button:visited.usa-button-primary-alt,
.usa-button-primary:visited.usa-button-primary-alt,
button.usa-button-primary-alt,
[type="button"].usa-button-primary-alt,
[type="submit"].usa-button-primary-alt,
[type="reset"].usa-button-primary-alt,
[type="image"].usa-button-primary-alt {
  background-color: #02bfe7;
  color: #212121;
}

.usa-button.usa-button-primary-alt:hover, .usa-button.usa-button-primary-alt.usa-button-hover,
.usa-button-primary.usa-button-primary-alt:hover,
.usa-button-primary.usa-button-primary-alt.usa-button-hover,
.usa-button:visited.usa-button-primary-alt:hover,
.usa-button:visited.usa-button-primary-alt.usa-button-hover,
.usa-button-primary:visited.usa-button-primary-alt:hover,
.usa-button-primary:visited.usa-button-primary-alt.usa-button-hover,
button.usa-button-primary-alt:hover,
button.usa-button-primary-alt.usa-button-hover,
[type="button"].usa-button-primary-alt:hover,
[type="button"].usa-button-primary-alt.usa-button-hover,
[type="submit"].usa-button-primary-alt:hover,
[type="submit"].usa-button-primary-alt.usa-button-hover,
[type="reset"].usa-button-primary-alt:hover,
[type="reset"].usa-button-primary-alt.usa-button-hover,
[type="image"].usa-button-primary-alt:hover,
[type="image"].usa-button-primary-alt.usa-button-hover {
  background-color: #00a6d2;
}

.usa-button.usa-button-primary-alt:active, .usa-button.usa-button-primary-alt.usa-button-active,
.usa-button-primary.usa-button-primary-alt:active,
.usa-button-primary.usa-button-primary-alt.usa-button-active,
.usa-button:visited.usa-button-primary-alt:active,
.usa-button:visited.usa-button-primary-alt.usa-button-active,
.usa-button-primary:visited.usa-button-primary-alt:active,
.usa-button-primary:visited.usa-button-primary-alt.usa-button-active,
button.usa-button-primary-alt:active,
button.usa-button-primary-alt.usa-button-active,
[type="button"].usa-button-primary-alt:active,
[type="button"].usa-button-primary-alt.usa-button-active,
[type="submit"].usa-button-primary-alt:active,
[type="submit"].usa-button-primary-alt.usa-button-active,
[type="reset"].usa-button-primary-alt:active,
[type="reset"].usa-button-primary-alt.usa-button-active,
[type="image"].usa-button-primary-alt:active,
[type="image"].usa-button-primary-alt.usa-button-active {
  background-color: #046b99;
  color: #ffffff;
}

.usa-button.usa-button-secondary,
.usa-button-primary.usa-button-secondary,
.usa-button:visited.usa-button-secondary,
.usa-button-primary:visited.usa-button-secondary,
button.usa-button-secondary,
[type="button"].usa-button-secondary,
[type="submit"].usa-button-secondary,
[type="reset"].usa-button-secondary,
[type="image"].usa-button-secondary {
  background-color: #e31c3d;
}

.usa-button.usa-button-secondary:hover, .usa-button.usa-button-secondary.usa-button-hover,
.usa-button-primary.usa-button-secondary:hover,
.usa-button-primary.usa-button-secondary.usa-button-hover,
.usa-button:visited.usa-button-secondary:hover,
.usa-button:visited.usa-button-secondary.usa-button-hover,
.usa-button-primary:visited.usa-button-secondary:hover,
.usa-button-primary:visited.usa-button-secondary.usa-button-hover,
button.usa-button-secondary:hover,
button.usa-button-secondary.usa-button-hover,
[type="button"].usa-button-secondary:hover,
[type="button"].usa-button-secondary.usa-button-hover,
[type="submit"].usa-button-secondary:hover,
[type="submit"].usa-button-secondary.usa-button-hover,
[type="reset"].usa-button-secondary:hover,
[type="reset"].usa-button-secondary.usa-button-hover,
[type="image"].usa-button-secondary:hover,
[type="image"].usa-button-secondary.usa-button-hover {
  background-color: #cd2026;
}

.usa-button.usa-button-secondary:active, .usa-button.usa-button-secondary.usa-button-active,
.usa-button-primary.usa-button-secondary:active,
.usa-button-primary.usa-button-secondary.usa-button-active,
.usa-button:visited.usa-button-secondary:active,
.usa-button:visited.usa-button-secondary.usa-button-active,
.usa-button-primary:visited.usa-button-secondary:active,
.usa-button-primary:visited.usa-button-secondary.usa-button-active,
button.usa-button-secondary:active,
button.usa-button-secondary.usa-button-active,
[type="button"].usa-button-secondary:active,
[type="button"].usa-button-secondary.usa-button-active,
[type="submit"].usa-button-secondary:active,
[type="submit"].usa-button-secondary.usa-button-active,
[type="reset"].usa-button-secondary:active,
[type="reset"].usa-button-secondary.usa-button-active,
[type="image"].usa-button-secondary:active,
[type="image"].usa-button-secondary.usa-button-active {
  background-color: #981b1e;
}

.usa-button.usa-button-gray,
.usa-button-primary.usa-button-gray,
.usa-button:visited.usa-button-gray,
.usa-button-primary:visited.usa-button-gray,
button.usa-button-gray,
[type="button"].usa-button-gray,
[type="submit"].usa-button-gray,
[type="reset"].usa-button-gray,
[type="image"].usa-button-gray {
  background-color: #5b616b;
}

.usa-button.usa-button-gray:hover, .usa-button.usa-button-gray.usa-button-hover,
.usa-button-primary.usa-button-gray:hover,
.usa-button-primary.usa-button-gray.usa-button-hover,
.usa-button:visited.usa-button-gray:hover,
.usa-button:visited.usa-button-gray.usa-button-hover,
.usa-button-primary:visited.usa-button-gray:hover,
.usa-button-primary:visited.usa-button-gray.usa-button-hover,
button.usa-button-gray:hover,
button.usa-button-gray.usa-button-hover,
[type="button"].usa-button-gray:hover,
[type="button"].usa-button-gray.usa-button-hover,
[type="submit"].usa-button-gray:hover,
[type="submit"].usa-button-gray.usa-button-hover,
[type="reset"].usa-button-gray:hover,
[type="reset"].usa-button-gray.usa-button-hover,
[type="image"].usa-button-gray:hover,
[type="image"].usa-button-gray.usa-button-hover {
  background-color: #323a45;
}

.usa-button.usa-button-gray:active, .usa-button.usa-button-gray.usa-button-active,
.usa-button-primary.usa-button-gray:active,
.usa-button-primary.usa-button-gray.usa-button-active,
.usa-button:visited.usa-button-gray:active,
.usa-button:visited.usa-button-gray.usa-button-active,
.usa-button-primary:visited.usa-button-gray:active,
.usa-button-primary:visited.usa-button-gray.usa-button-active,
button.usa-button-gray:active,
button.usa-button-gray.usa-button-active,
[type="button"].usa-button-gray:active,
[type="button"].usa-button-gray.usa-button-active,
[type="submit"].usa-button-gray:active,
[type="submit"].usa-button-gray.usa-button-active,
[type="reset"].usa-button-gray:active,
[type="reset"].usa-button-gray.usa-button-active,
[type="image"].usa-button-gray:active,
[type="image"].usa-button-gray.usa-button-active {
  background-color: #212121;
}

.usa-button.usa-button-outline,
.usa-button-primary.usa-button-outline,
.usa-button:visited.usa-button-outline,
.usa-button-primary:visited.usa-button-outline,
button.usa-button-outline,
[type="button"].usa-button-outline,
[type="submit"].usa-button-outline,
[type="reset"].usa-button-outline,
[type="image"].usa-button-outline {
  background-color: #ffffff;
  box-shadow: inset 0 0 0 2px #0071bc;
  color: #0071bc;
}

.usa-button.usa-button-outline:hover, .usa-button.usa-button-outline.usa-button-hover,
.usa-button-primary.usa-button-outline:hover,
.usa-button-primary.usa-button-outline.usa-button-hover,
.usa-button:visited.usa-button-outline:hover,
.usa-button:visited.usa-button-outline.usa-button-hover,
.usa-button-primary:visited.usa-button-outline:hover,
.usa-button-primary:visited.usa-button-outline.usa-button-hover,
button.usa-button-outline:hover,
button.usa-button-outline.usa-button-hover,
[type="button"].usa-button-outline:hover,
[type="button"].usa-button-outline.usa-button-hover,
[type="submit"].usa-button-outline:hover,
[type="submit"].usa-button-outline.usa-button-hover,
[type="reset"].usa-button-outline:hover,
[type="reset"].usa-button-outline.usa-button-hover,
[type="image"].usa-button-outline:hover,
[type="image"].usa-button-outline.usa-button-hover {
  box-shadow: inset 0 0 0 2px #205493;
  color: #205493;
}

.usa-button.usa-button-outline:active, .usa-button.usa-button-outline.usa-button-active,
.usa-button-primary.usa-button-outline:active,
.usa-button-primary.usa-button-outline.usa-button-active,
.usa-button:visited.usa-button-outline:active,
.usa-button:visited.usa-button-outline.usa-button-active,
.usa-button-primary:visited.usa-button-outline:active,
.usa-button-primary:visited.usa-button-outline.usa-button-active,
button.usa-button-outline:active,
button.usa-button-outline.usa-button-active,
[type="button"].usa-button-outline:active,
[type="button"].usa-button-outline.usa-button-active,
[type="submit"].usa-button-outline:active,
[type="submit"].usa-button-outline.usa-button-active,
[type="reset"].usa-button-outline:active,
[type="reset"].usa-button-outline.usa-button-active,
[type="image"].usa-button-outline:active,
[type="image"].usa-button-outline.usa-button-active {
  box-shadow: inset 0 0 0 2px #112e51;
  color: #112e51;
}

.usa-button.usa-button-outline:focus, .usa-button.usa-button-outline.usa-button-focus,
.usa-button-primary.usa-button-outline:focus,
.usa-button-primary.usa-button-outline.usa-button-focus,
.usa-button:visited.usa-button-outline:focus,
.usa-button:visited.usa-button-outline.usa-button-focus,
.usa-button-primary:visited.usa-button-outline:focus,
.usa-button-primary:visited.usa-button-outline.usa-button-focus,
button.usa-button-outline:focus,
button.usa-button-outline.usa-button-focus,
[type="button"].usa-button-outline:focus,
[type="button"].usa-button-outline.usa-button-focus,
[type="submit"].usa-button-outline:focus,
[type="submit"].usa-button-outline.usa-button-focus,
[type="reset"].usa-button-outline:focus,
[type="reset"].usa-button-outline.usa-button-focus,
[type="image"].usa-button-outline:focus,
[type="image"].usa-button-outline.usa-button-focus {
  box-shadow: inset 0 0 0 2px #112e51, 0 0 3px #3e94cf, 0 0 7px #3e94cf;
}

.usa-button.usa-button-outline-inverse,
.usa-button-primary.usa-button-outline-inverse,
.usa-button:visited.usa-button-outline-inverse,
.usa-button-primary:visited.usa-button-outline-inverse,
button.usa-button-outline-inverse,
[type="button"].usa-button-outline-inverse,
[type="submit"].usa-button-outline-inverse,
[type="reset"].usa-button-outline-inverse,
[type="image"].usa-button-outline-inverse {
  background: transparent;
  box-shadow: inset 0 0 0 2px #ffffff;
  color: #ffffff;
}

.usa-button.usa-button-outline-inverse:hover, .usa-button.usa-button-outline-inverse.usa-button-hover,
.usa-button-primary.usa-button-outline-inverse:hover,
.usa-button-primary.usa-button-outline-inverse.usa-button-hover,
.usa-button:visited.usa-button-outline-inverse:hover,
.usa-button:visited.usa-button-outline-inverse.usa-button-hover,
.usa-button-primary:visited.usa-button-outline-inverse:hover,
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-hover,
button.usa-button-outline-inverse:hover,
button.usa-button-outline-inverse.usa-button-hover,
[type="button"].usa-button-outline-inverse:hover,
[type="button"].usa-button-outline-inverse.usa-button-hover,
[type="submit"].usa-button-outline-inverse:hover,
[type="submit"].usa-button-outline-inverse.usa-button-hover,
[type="reset"].usa-button-outline-inverse:hover,
[type="reset"].usa-button-outline-inverse.usa-button-hover,
[type="image"].usa-button-outline-inverse:hover,
[type="image"].usa-button-outline-inverse.usa-button-hover {
  box-shadow: inset 0 0 0 2px #d6d7d9;
  color: #d6d7d9;
}

.usa-button.usa-button-outline-inverse:active, .usa-button.usa-button-outline-inverse.usa-button-active,
.usa-button-primary.usa-button-outline-inverse:active,
.usa-button-primary.usa-button-outline-inverse.usa-button-active,
.usa-button:visited.usa-button-outline-inverse:active,
.usa-button:visited.usa-button-outline-inverse.usa-button-active,
.usa-button-primary:visited.usa-button-outline-inverse:active,
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-active,
button.usa-button-outline-inverse:active,
button.usa-button-outline-inverse.usa-button-active,
[type="button"].usa-button-outline-inverse:active,
[type="button"].usa-button-outline-inverse.usa-button-active,
[type="submit"].usa-button-outline-inverse:active,
[type="submit"].usa-button-outline-inverse.usa-button-active,
[type="reset"].usa-button-outline-inverse:active,
[type="reset"].usa-button-outline-inverse.usa-button-active,
[type="image"].usa-button-outline-inverse:active,
[type="image"].usa-button-outline-inverse.usa-button-active {
  box-shadow: inset 0 0 0 2px #aeb0b5;
  color: #d6d7d9;
}

.usa-button.usa-button-outline-inverse:focus, .usa-button.usa-button-outline-inverse.usa-button-focus,
.usa-button-primary.usa-button-outline-inverse:focus,
.usa-button-primary.usa-button-outline-inverse.usa-button-focus,
.usa-button:visited.usa-button-outline-inverse:focus,
.usa-button:visited.usa-button-outline-inverse.usa-button-focus,
.usa-button-primary:visited.usa-button-outline-inverse:focus,
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-focus,
button.usa-button-outline-inverse:focus,
button.usa-button-outline-inverse.usa-button-focus,
[type="button"].usa-button-outline-inverse:focus,
[type="button"].usa-button-outline-inverse.usa-button-focus,
[type="submit"].usa-button-outline-inverse:focus,
[type="submit"].usa-button-outline-inverse.usa-button-focus,
[type="reset"].usa-button-outline-inverse:focus,
[type="reset"].usa-button-outline-inverse.usa-button-focus,
[type="image"].usa-button-outline-inverse:focus,
[type="image"].usa-button-outline-inverse.usa-button-focus {
  box-shadow: inset 0 0 0 2px #aeb0b5, 0 0 3px #3e94cf, 0 0 7px #3e94cf;
}

.usa-button.usa-button-big,
.usa-button-primary.usa-button-big,
.usa-button:visited.usa-button-big,
.usa-button-primary:visited.usa-button-big,
button.usa-button-big,
[type="button"].usa-button-big,
[type="submit"].usa-button-big,
[type="reset"].usa-button-big,
[type="image"].usa-button-big {
  font-size: 1.9rem;
  padding: 1.5rem 3rem;
}

[type="submit"]:disabled,
.usa-button-disabled {
  background-color: #d6d7d9;
  color: #323a45;
  pointer-events: none;
}

[type="submit"]:disabled:hover, [type="submit"]:disabled.usa-button-hover, [type="submit"]:disabled:active, [type="submit"]:disabled.usa-button-active, [type="submit"]:disabled:focus,
.usa-button-disabled:hover,
.usa-button-disabled.usa-button-hover,
.usa-button-disabled:active,
.usa-button-disabled.usa-button-active,
.usa-button-disabled:focus {
  background-color: #d6d7d9;
  border: 0;
  box-shadow: none;
  color: #323a45;
}

.usa-button-unstyled {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 400;
  margin: 0;
  outline: 0;
  padding: 0;
  text-align: left;
  -webkit-font-smoothing: auto;
}

.usa-button-unstyled:hover {
  background-color: transparent;
}

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

.media_link {
  display: inline-block;
  line-height: 0;
}

input,
textarea,
select {
  -webkit-appearance: none;
          appearance: none;
  border: 1px solid #5b616b;
  border-radius: 0;
  box-sizing: border-box;
  color: #212121;
  display: block;
  font-size: 1.7rem;
  height: 4.4rem;
  line-height: 1.3;
  margin: 0.2em 0;
  max-width: 46rem;
  outline: none;
  padding: 1rem 0.7em;
  width: 100%;
}

input:focus, input.usa-input-focus,
textarea:focus,
textarea.usa-input-focus,
select:focus,
select.usa-input-focus {
  box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf;
}

input.usa-input-success,
textarea.usa-input-success,
select.usa-input-success {
  border: 3px solid #4aa564;
}

.usa-input-error {
  border-left: 4px solid #cd2026;
  margin-top: 3rem;
  padding-bottom: 0.8rem;
  padding-left: 1.5rem;
  padding-top: 0.8rem;
  position: relative;
  right: 1.9rem;
}

.usa-input-error input,
.usa-input-error textarea,
.usa-input-error select {
  border: 3px solid #cd2026;
  width: calc(100% + 1.9rem);
}

.usa-input-error label {
  margin-top: 0;
}

.usa-input-error .usa-input-inline {
  border: 1px solid #5b616b;
  width: inherit;
}

.usa-input-error .usa-input-inline-error {
  border: 3px solid #cd2026;
}

.usa-input-error-label {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
}

.usa-input-error-message {
  color: #cd2026;
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  padding-bottom: 3px;
  padding-top: 3px;
}

.usa-input-required:after {
  color: #981b1e;
  content: ' (*Required)';
}

label {
  display: block;
  margin-top: 3rem;
  max-width: 46rem;
}

.usda-datetime-wrapper-head {
  font-weight: 400;
}

textarea {
  height: 16rem;
}

select {
  -webkit-appearance: none;
  appearance: none;
  background-color: #ffffff;
  background-image: url("../img/arrow-down.png");
  background-image: url("../img/arrow-down.svg");
  background-position: right 1.3rem center;
  background-repeat: no-repeat;
  background-size: 1.3rem;
}

legend {
  font-size: 3rem;
  font-weight: 700;
}

.usa-fieldset-inputs label {
  margin-top: 0;
}

.usa-form-hint {
  color: #757575;
  font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  margin-bottom: 0;
}

[type="checkbox"],
[type="radio"] {
  margin-left: -2rem;
  opacity: 0;
  position: absolute;
}

.lt-ie9 [type="checkbox"], .lt-ie9
[type="radio"] {
  border: 0;
  float: left;
  margin: 0.4em 0.4em 0 0;
  position: static;
  width: auto;
}

[type="checkbox"] + label,
[type="radio"] + label {
  cursor: pointer;
  font-weight: 400;
  margin-bottom: 0.5em;
}

[type="checkbox"] + label::before,
[type="radio"] + label::before {
  background: #ffffff;
  border-radius: 0.3rem;
  box-shadow: 0 0 0 1px #757575;
  content: '\a0';
  display: inline-block;
  height: 1.8rem;
  line-height: 1.8rem;
  margin-right: 0.6em;
  text-indent: 0.15em;
  vertical-align: middle\0;
  width: 1.8rem;
}

[type="radio"] + label::before {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px #757575;
  height: 1.6rem;
  line-height: 1.6rem;
  width: 1.6rem;
  border-radius: 100%;
}

[type="checkbox"]:checked + label::before,
[type="radio"]:checked + label::before {
  background-color: #0071bc;
  box-shadow: 0 0 0 1px #0071bc;
}

[type="radio"]:checked + label::before {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0071bc;
}

[type="radio"]:focus + label::before {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0071bc, 0 0 3px 4px #3e94cf, 0 0 7px 4px #3e94cf;
}

[type="checkbox"]:checked + label::before {
  background-image: url("../img/correct8.png");
  background-image: url("../img/correct8.svg");
  background-position: 50%;
  background-repeat: no-repeat;
}

[type="checkbox"]:focus + label::before {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 3px #0071bc;
}

[type="checkbox"]:disabled + label {
  color: #5b616b;
}

[type="checkbox"]:disabled + label::before,
[type="radio"]:disabled + label::before {
  background: #d6d7d9;
  box-shadow: 0 0 0 1px #aeb0b5;
  cursor: not-allowed;
}

[type=range] {
  -webkit-appearance: none;
  border: none;
  padding-left: 0;
  width: 100%;
}

[type=range]:focus {
  box-shadow: none;
  outline: none;
}

[type=range]::-webkit-slider-runnable-track {
  background: #aeb0b5;
  border: 1px solid #757575;
  cursor: pointer;
  height: 1.2rem;
  width: 100%;
}

[type=range]::-moz-range-track {
  background: #0071bc;
  border: 1px solid #757575;
  cursor: pointer;
  height: 1.2rem;
  width: 100%;
}

[type=range]::-ms-track {
  background: transparent;
  color: transparent;
  cursor: pointer;
  height: 1.2rem;
  width: 100%;
}

[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 1px solid #757575;
  height: 2.2rem;
  border-radius: 1.5rem;
  background: #f1f1f1;
  cursor: pointer;
  margin-top: -.65rem;
  width: 2.2rem;
}

[type=range]::-moz-range-thumb {
  background: #f1f1f1;
  border: 1px solid #757575;
  border-radius: 1.5rem;
  cursor: pointer;
  height: 2.2rem;
  width: 2.2rem;
}

[type=range]::-ms-thumb {
  background: #f1f1f1;
  border: 1px solid #757575;
  border-radius: 1.5rem;
  cursor: pointer;
  height: 2.2rem;
  width: 2.2rem;
}

[type=range]::-ms-fill-lower {
  background: #aeb0b5;
  border: 1px solid #757575;
  border-radius: 2rem;
}

[type=range]::-ms-fill-upper {
  background: #aeb0b5;
  border: 1px solid #757575;
  border-radius: 2rem;
}

[type=range]:focus::-webkit-slider-thumb {
  border: 2px solid #3e94cf;
}

[type=range]:focus::-moz-range-thumb {
  border: 2px solid #3e94cf;
}

[type=range]:focus::-ms-thumb {
  border: 2px solid #3e94cf;
}

.usa-date-of-birth label {
  margin-top: 0;
}

.usa-date-of-birth [type=number]::-webkit-inner-spin-button,
.usa-date-of-birth [type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.usa-date-of-birth [type=number] {
  -moz-appearance: textfield;
}

.usa-form-group-day,
.usa-form-group-month,
.usa-form-group-year {
  clear: none;
  float: left;
  margin-right: 1.5rem;
  width: 5rem;
}

.usa-form-group-year {
  width: 7rem;
}

.usa-label, .usa-label-big {
  background-color: #0071bc;
  border-radius: 0.3rem;
  color: #ffffff;
  font-size: 1.5rem;
  margin-right: 0.5rem;
  padding: 0.1rem 0.7rem;
  text-transform: uppercase;
}

.usa-label:only-of-type, .usa-label-big:only-of-type {
  margin-right: 0;
}

.usa-label-big {
  font-size: 1.7rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
}

ul,
ol {
  margin-top: 1em;
  margin-bottom: 1em;
  padding-left: 1.94em;
}

li {
  line-height: 1.5;
  margin-bottom: 0.5em;
}

li:last-child {
  margin-bottom: 0;
}

h1 + ul,
h1 + ol,
h2 + ul,
h2 + ol,
h3 + ul,
h3 + ol,
h4 + ul,
h4 + ol,
h5 + ul,
h5 + ol,
h6 + ul,
h6 + ol,
p + ul,
p + ol {
  margin-top: 0;
}

.usa-unstyled-list {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
}

.usa-unstyled-list > li {
  margin-bottom: 0;
}

.paragraph--type--mission-statement > div {
  min-height: 161px;
  display: -ms-flexbox;
  display: flex;
}

.paragraph--type--mission-statement .field--name-field-mission-statement-text {
  font-family: "Georgia", "Cambria", "Times New Roman", "Times", serif;
  font-style: italic;
  font-size: 28px;
  color: #ffffff;
  letter-spacing: 0;
  text-align: center;
  padding: 30px 0;
}

select {
  -webkit-appearance: none;
}

#block-quicknavdropdown .paragraph--type-dropdown-menu-slider > div {
  margin: 0 auto;
  padding: 30px 0;
  min-height: 120px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

#block-quicknavdropdown .paragraph--type-dropdown-menu-slider h2 {
  float: left;
  color: #0071bc;
  margin: 0.5em 0;
}

#block-quicknavdropdown .paragraph--type-dropdown-menu-slider h2 {
  margin: 0.3em 0;
}

#block-quicknavdropdown .paragraph--type-dropdown-menu-slider select {
  clear: left;
  float: left;
  font-weight: 700;
  font-size: 2rem;
  height: 6rem;
  max-width: inherit;
  width: 300px !important;
}

#block-quicknavdropdown .paragraph--type-dropdown-menu-slider select {
  clear: none;
  margin: 0 0 0 1em;
  width: 90%;
}

#block-quicknavdropdown .paragraph--type-dropdown-menu-slider h2 > label {
  max-width: inherit;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .paragraph--type-dropdown-menu-slider > div {
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-direction: column;
        flex-direction: column;
  }
}

table {
  border-spacing: 0;
  margin: 2em 0;
  min-width: 100%;
}

table thead th,
table thead td {
  background-color: #f1f1f1;
}

table th {
  text-align: left;
}

table tbody th {
  font-weight: 400;
}

table th,
table td {
  background-color: #ffffff;
  border: 1px solid #5b616b;
  padding: 1.5rem;
}

.usa-table-borderless thead tr {
  background-color: transparent;
}

.usa-table-borderless thead th {
  border-top: 0;
}

.usa-table-borderless th,
.usa-table-borderless td {
  border-left: 0;
  border-right: 0;
}

.paragraph--type--three-tall-panel-section {
  padding: 60px 0;
}

.paragraph--type--three-tall-panel-section .usda-block {
  border: 1px solid #e9e9e9;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  /* max-width: 400px; */
  min-height: 533px;
  margin-bottom: 20px;
  -ms-flex: 1;
      flex: 1;
}

.paragraph--type--three-tall-panel-section .usda-block .usda-banner {
  background: #f1f1f1;
  min-width: 215px;
  height: 32px;
  position: relative;
  top: 16px;
  float: left;
  font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #262524;
  padding: 0 20px;
}

.paragraph--type--three-tall-panel-section .usda-block .usda-line-separator {
  background: #d8d8d8;
}

.paragraph--type--three-tall-panel-section .usda-block [class^="usda-block-img"] {
  /* max-width: 400px; */
  height: 189px;
}

.paragraph--type--three-tall-panel-section .usda-block h3 {
  color: #0071bc;
  padding-bottom: 0;
  font-size: 1.5rem;
  margin-bottom: 0;
  margin-top: 10px;
}

.paragraph--type--three-tall-panel-section .usda-block p {
  font-size: 1.7rem;
  line-height: 1.9rem;
  margin-top: 0;
}

.paragraph--type--three-tall-panel-section .usda-block [class^="usda-block-content"] div div {
  padding: 0.6rem;
  width: 100%;
  max-height: 320px;
  /* overflow-y: auto; */
}

.paragraph--type--three-tall-panel-section .usda-block .usda-block-content div {
  /* min-height: 115px; */
}

.paragraph--type--three-tall-panel-section .usda-block .usda-block-content div > :last-child {
  border-bottom: 0;
  margin: 0;
}

.paragraph--type--three-tall-panel-section .usda-block .usda-block-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.paragraph--type--three-tall-panel-section .usda-block .usda-block-content .item-list {
  overflow-y: auto;
}

.paragraph--type--three-tall-panel-section .usda-block .usda-block-content2 img {
  float: left;
  padding-left: 20px;
  padding-top: 17px;
  padding-right: 20px;
}

.paragraph--type--three-tall-panel-section .usda-block .usda-block-content3 div li {
  font-size: 1.5rem;
  line-height: 0.3;
  margin-left: -2.3rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 400px;
}

.paragraph--type--three-tall-panel-section .usda-block .usda-block-content3 ul {
  margin: 0 0 0 0.7em;
  padding: 0 0 0 1em;
  list-style: none;
}

.paragraph--type--three-tall-panel-section .usda-block .usda-block-content3 li:before {
  content: "";
  border-color: transparent #aeb0b5;
  border-style: solid;
  border-width: 0.35em 0 0.35em 0.45em;
  display: block;
  height: 0;
  width: 0;
  left: -0.9em;
  top: 0.6em;
  position: relative;
}

.paragraph--type--three-tall-panel-section .usda-block .usda-block-content3 li {
  line-height: 0.7;
  font-size: 1.5rem;
}

.paragraph--type--three-tall-panel-section .view-frontpage {
  display: none;
}

html {
  font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 10px;
}

body {
  font-size: 1.7rem;
}

p {
  line-height: 1.5;
  margin-bottom: 1em;
  margin-top: 1em;
}

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

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

p.text-align-justify {
  text-align: justify;
}

a {
  color: #0071bc;
  text-decoration: underline;
}

a:hover, a:active {
  color: #205493;
}

a:visited {
  color: #4c2c92;
}

a:focus {
  box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf;
  outline: 0;
}

span.ext {
  display: inline-block;
}

a span[class="0"] {
  display: none;
}

.usa-external_link::after {
  background: url("../img/external-link.png") no-repeat 0 0;
  background: url("../img/external-link.svg") no-repeat 0 0;
  background-size: 100%;
  content: '';
  display: inline-block;
  height: 0.65em;
  margin-bottom: -1px;
  margin-left: 4px;
  width: 0.65em;
}

.usa-external_link:hover::after {
  background-image: url("../img/external-link-hover.png");
  background-image: url("../img/external-link-hover.svg");
}

.usa-external_link-alt::after {
  background: url("../img/external-link-alt.png") no-repeat 0 0;
  background: url("../img/external-link-alt.svg") no-repeat 0 0;
  background-size: 100%;
  content: '';
  display: inline-block;
  height: 0.65em;
  margin-bottom: -1px;
  margin-left: 4px;
  width: 0.65em;
}

.usa-external_link-alt:hover::after {
  background-image: url("../img/external-link-alt-hover.png");
  background-image: url("../img/external-link-alt-hover.svg");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  line-height: 1.3;
  margin-bottom: .5em;
  margin-top: 1em;
}

@media screen and (min-width: 1201px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-top: 1.5em;
  }
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #0071bc;
}

.usda-page-title {
  margin-top: 2.8rem;
}

h2 {
  font-size: 3rem;
  font-weight: 700;
}

h3 {
  font-size: 2rem;
  font-weight: 700;
}

h4 {
  font-size: 1.7rem;
  font-weight: 700;
}

h5 {
  font-size: 1.5rem;
  font-weight: 700;
}

h6 {
  font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
}

cite,
var,
address,
dfn {
  font-style: normal;
}

.usa-sans p,
.usa-sans a,
.usa-sans li,
.usa-sans span {
  font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
}

.usa-sans a {
  border-bottom: none;
  font-weight: 700;
}

.usa-serif p,
.usa-serif a,
.usa-serif li,
.usa-serif span {
  font-family: "Georgia", "Cambria", "Times New Roman", "Times", serif;
}

.usa-display {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
}

@media screen and (min-width: 481px) {
  .usa-display {
    font-size: 4rem;
    font-weight: 700;
    color: #0071bc;
  }
}

@media screen and (min-width: 600px) {
  .usa-display {
    font-size: 5.2rem;
    font-weight: 700;
  }
}

.usa-font-lead {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.7;
}

.usa-image-block {
  position: relative;
}

.usa-image-text-block {
  color: #ffffff;
  left: 0;
  margin-left: 8%;
  position: absolute;
  top: 0;
}

.usa-image-text {
  margin-top: 0;
}

.usa-drop_text {
  margin-bottom: 0;
}

.usa-background-dark {
  background-color: #323a45;
}

.usa-background-dark p,
.usa-background-dark span {
  color: #ffffff;
}

.usa-background-dark a {
  color: #d6d7d9;
}

.usa-background-dark a:hover {
  color: #ffffff;
}

.usa-text-small {
  font-size: 1.3rem;
  margin-top: 0;
}

.usa-section > :first-child:not(.usda-page-title),
.usa-grid > :first-child:not(.usda-page-title) {
  margin-top: 0;
}

.usa-section > :last-child,
.usa-grid > :last-child {
  margin-bottom: 0;
}

.usa-width-one-whole:first-child > :first-child,
.usa-width-one-half:first-child > :first-child,
.usa-width-one-third:first-child > :first-child,
.usa-width-two-thirds:first-child > :first-child,
.usa-width-one-fourth:first-child > :first-child,
.usa-width-three-fourths:first-child > :first-child,
.usa-width-one-sixth:first-child > :first-child,
.usa-width-five-sixths:first-child > :first-child,
.usa-width-one-twelfth:first-child > :first-child {
  margin-top: 0;
}

@media screen and (min-width: 600px) {
  .usa-width-one-whole > :first-child,
  .usa-width-one-half > :first-child,
  .usa-width-one-third > :first-child,
  .usa-width-two-thirds > :first-child,
  .usa-width-one-fourth > :first-child,
  .usa-width-three-fourths > :first-child,
  .usa-width-one-sixth > :first-child,
  .usa-width-five-sixths > :first-child,
  .usa-width-one-twelfth > :first-child {
    margin-top: 0;
  }
}

.usa-width-one-whole:last-child > :last-child,
.usa-width-one-half:last-child > :last-child,
.usa-width-one-third:last-child > :last-child,
.usa-width-two-thirds:last-child > :last-child,
.usa-width-one-fourth:last-child > :last-child,
.usa-width-three-fourths:last-child > :last-child,
.usa-width-one-sixth:last-child > :last-child,
.usa-width-five-sixths:last-child > :last-child,
.usa-width-one-twelfth:last-child > :last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 600px) {
  .usa-width-one-whole > :last-child,
  .usa-width-one-half > :last-child,
  .usa-width-one-third > :last-child,
  .usa-width-two-thirds > :last-child,
  .usa-width-one-fourth > :last-child,
  .usa-width-three-fourths > :last-child,
  .usa-width-one-sixth > :last-child,
  .usa-width-five-sixths > :last-child,
  .usa-width-one-twelfth > :last-child {
    margin-bottom: 0;
  }
}

.usa-accordion,
.usa-accordion-bordered {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  color: #212121;
  margin: 0;
  padding: 0;
  width: 100%;
}

.usa-accordion > li,
.usa-accordion-bordered > li {
  margin-bottom: 0;
}

.usa-accordion + .usa-accordion,
.usa-accordion + .usa-accordion-bordered,
.usa-accordion-bordered + .usa-accordion,
.usa-accordion-bordered + .usa-accordion-bordered {
  margin-top: 1rem;
}

.usa-accordion > ul,
.usa-accordion-bordered > ul {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  color: #212121;
  margin: 0;
  padding: 0;
  width: 100%;
}

.usa-accordion > ul > li,
.usa-accordion-bordered > ul > li {
  margin-bottom: 0;
}

.usa-accordion > ul > li,
.usa-accordion-bordered > ul > li {
  background-color: #f1f1f1;
  font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  list-style: none;
  margin-bottom: 6px;
  width: 100%;
}

.usa-accordion > ul button,
.usa-accordion-bordered > ul button {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 400;
  margin: 0;
  outline: 0;
  padding: 0;
  text-align: left;
  -webkit-font-smoothing: auto;
  background-color: #f1f1f1;
  background-image: url("../img/minus.png");
  background-image: url("../img/minus.svg");
  background-position: right 3rem center;
  background-repeat: no-repeat;
  background-size: 13px;
  color: #212121;
  cursor: pointer;
  display: inline-block;
  font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  margin: 0;
  padding: 1.5rem 5.5rem 1.5rem 3rem;
  width: 100%;
}

.usa-accordion > ul button:hover,
.usa-accordion-bordered > ul button:hover {
  background-color: transparent;
}

.usa-accordion > ul button:focus,
.usa-accordion-bordered > ul button:focus {
  box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf;
}

.usa-accordion > ul button:hover,
.usa-accordion-bordered > ul button:hover {
  background-color: #d6d7d9;
  color: #212121;
}

.usa-accordion > ul button h1,
.usa-accordion > ul button h2,
.usa-accordion > ul button h3,
.usa-accordion > ul button h4,
.usa-accordion > ul button h5,
.usa-accordion > ul button h6,
.usa-accordion-bordered > ul button h1,
.usa-accordion-bordered > ul button h2,
.usa-accordion-bordered > ul button h3,
.usa-accordion-bordered > ul button h4,
.usa-accordion-bordered > ul button h5,
.usa-accordion-bordered > ul button h6 {
  margin: 0;
}

.usa-accordion > ul [aria-expanded=false],
.usa-accordion-bordered > ul [aria-expanded=false] {
  background-image: url("../img/plus.png");
  background-image: url("../img/plus.svg");
  background-repeat: no-repeat;
  background-size: 1.3rem;
}

.usa-accordion > li,
.usa-accordion-bordered > li {
  background-color: #f1f1f1;
  font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  list-style: none;
  margin-bottom: 6px;
  width: 100%;
}

.usa-accordion-bordered .usa-accordion-content {
  border-bottom: 3px solid #f1f1f1;
  border-left: 3px solid #f1f1f1;
  border-right: 3px solid #f1f1f1;
}

.usa-accordion-content {
  background-color: #ffffff;
  overflow: auto;
  padding: 3rem;
}

.usa-accordion-content > *:first-child {
  margin-top: 0;
}

.usa-accordion-content > *:last-child {
  margin-bottom: 0;
}

.usa-accordion-content:not([aria-hidden]) {
  position: absolute;
  left: -999em;
}

.usa-accordion-content[aria-hidden=true] {
  display: none;
}

.usa-accordion-button {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 400;
  margin: 0;
  outline: 0;
  padding: 0;
  text-align: left;
  -webkit-font-smoothing: auto;
  background-color: #f1f1f1;
  background-image: url("../img/minus.png");
  background-image: url("../img/minus.svg");
  background-position: right 3rem center;
  background-repeat: no-repeat;
  background-size: 13px;
  color: #212121;
  cursor: pointer;
  display: inline-block;
  font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  margin: 0;
  padding: 1.5rem 5.5rem 1.5rem 3rem;
  width: 100%;
}

.usa-accordion-button:hover {
  background-color: transparent;
}

.usa-accordion-button:focus {
  box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf;
}

.usa-accordion-button:hover {
  background-color: #d6d7d9;
  color: #212121;
}

.usa-accordion-button h1,
.usa-accordion-button h2,
.usa-accordion-button h3,
.usa-accordion-button h4,
.usa-accordion-button h5,
.usa-accordion-button h6 {
  margin: 0;
}

.usa-accordion-button[aria-expanded=false] {
  background-image: url("../img/plus.png");
  background-image: url("../img/plus.svg");
  background-repeat: no-repeat;
  background-size: 1.3rem;
}

.agency-reports-filter {
  padding: 1rem 0;
  border-bottom: 1px solid #d6d7d9;
}

.agency-reports-filter::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (min-width: 1201px) {
  .agency-reports-filter-title {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
  }
  .agency-reports-filter-title:last-child {
    margin-right: 0;
  }
  .agency-reports-filter-title > h3 {
    margin-top: 1.5em;
  }
}

@media screen and (min-width: 600px) {
  .agency-reports-filter-date {
    width: 100%;
  }
}

@media screen and (min-width: 1201px) {
  .agency-reports-filter-date {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 65.88078%;
  }
  .agency-reports-filter-date:last-child {
    margin-right: 0;
  }
}

.agency-reports-filter-date form {
  display: table;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .agency-reports-filter-date .form-item {
    padding-right: 1rem;
    display: table-cell;
    vertical-align: top;
  }
}

.agency-reports-filter-date .form-item > label {
  margin: 0;
}

.agency-reports-filter-date .form-item > input {
  max-width: 100%;
  border-color: #aeb0b5;
}

@media screen and (min-width: 600px) {
  .agency-reports-filter-date .form-actions {
    display: table-cell;
    vertical-align: top;
  }
}

.agency-reports-filter-date .form-actions > input {
  margin-right: 0;
  margin-bottom: 0;
  padding: 0 2rem;
  width: 100%;
  max-width: 100%;
}

.agency-reports {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  border-bottom: 1px solid #d6d7d9;
  padding-bottom: 3rem;
}

.agency-reports > li {
  margin-bottom: 0;
}

.agency-report-item::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (max-width: 599px) {
  .agency-report-item {
    position: relative;
    padding-bottom: 2.5rem;
    margin-bottom: 1rem !important;
  }
  .agency-report-date {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .agency-report-agency {
    position: absolute;
    bottom: 0;
    left: 8rem;
  }
}

@media screen and (min-width: 600px) {
  .agency-report-date {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 14.70196%;
    display: inline-block;
    padding-left: 1rem;
  }
  .agency-report-date:last-child {
    margin-right: 0;
  }
  .agency-report-title {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 65.88078%;
    display: inline-block;
  }
  .agency-report-title:last-child {
    margin-right: 0;
  }
  .agency-report-agency {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 14.70196%;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
  }
  .agency-report-agency:last-child {
    margin-right: 0;
  }
}

.usda-agency-report-legend {
  background-color: #f7f7f7;
  padding: 2rem;
}

.usda-agency-report-legend::after {
  clear: both;
  content: "";
  display: block;
}

.usda-agency-report-legend > dt {
  float: left;
  clear: left;
  min-width: 7rem;
}

.usda-agency-report-legend > dt:after {
  content: " = ";
  float: right;
}

.usda-agency-report-legend > dd {
  float: left;
  margin-left: 2rem;
}

.usa-alert {
  background-color: #f1f1f1;
  background-position: 1rem 2rem;
  background-repeat: no-repeat;
  background-size: 4rem;
  margin-top: 1.5em;
  padding: 1em;
}

@media screen and (min-width: 600px) {
  .usa-alert {
    background-size: 5.2rem;
  }
}

.usa-alert ul {
  margin-bottom: 0;
  margin-top: 1em;
}

.usa-alert-icon {
  display: table-cell;
  padding-right: 1rem;
}

.usa-alert-body {
  display: table-cell;
  padding-left: 3.5rem;
  vertical-align: top;
}

@media screen and (min-width: 600px) {
  .usa-alert-body {
    padding-left: 5rem;
  }
}

.usa-alert-heading {
  margin-bottom: .3rem;
  margin-top: 0;
}

@media screen and (min-width: 600px) {
  .usa-alert-heading {
    margin-top: .3rem;
  }
}

.usa-alert-text {
  font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  margin-bottom: 0;
  margin-top: 0;
}

.usa-alert-success {
  background-color: #e7f4e4;
  background-image: url("../img/alerts/success.png");
  background-image: url("../img/alerts/success.svg");
}

.usa-alert-warning {
  background-color: #fff1d2;
  background-image: url("../img/alerts/warning.png");
  background-image: url("../img/alerts/warning.svg");
}

.usa-alert-error {
  background-color: #f9dede;
  background-image: url("../img/alerts/error.png");
  background-image: url("../img/alerts/error.svg");
}

.usa-alert-info {
  background-color: #e1f3f8;
  background-image: url("../img/alerts/info.png");
  background-image: url("../img/alerts/info.svg");
}

.usa-alert-no_icon {
  background-image: none;
}

.usa-banner {
  background-color: #ffffff;
  padding-bottom: 0;
}

@media screen and (min-width: 481px) {
  .usa-banner {
    font-size: 1.3rem;
  }
}

.usa-header > .usa-banner:first-child {
  background-color: #f7f7f7;
}

@media screen and (max-width: 481px) {
  .usa-header > .usa-banner:first-child {
    padding-bottom: 0.7rem;
  }
}

.usa-banner-content {
  padding-right: 1.5rem;
  padding-bottom: 3px;
  padding-left: 1.5rem;
  background-color: transparent;
  font-size: 1.5rem;
  padding-top: 2rem;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .usa-banner-content {
    padding-bottom: 2.3rem;
    padding-top: 4rem;
  }
}

@media screen and (min-width: 951px) {
  .usa-banner-content {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.usa-banner-content p:first-child {
  margin-top: 1rem;
}

@media screen and (min-width: 600px) {
  .usa-banner-content p:first-child {
    margin-top: 0;
  }
}

.usa-banner-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 1040px;
}

.usa-banner-inner::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (min-width: 951px) {
  .usa-banner-inner {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.usa-banner-header {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  font-size: 1.2rem;
  font-weight: 400;
}

@media screen and (min-width: 481px) {
  .usa-banner-header {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.usa-banner-header p {
  margin-top: 0;
  margin-bottom: 0;
  display: inline;
  overflow: hidden;
  vertical-align: middle;
}

@media screen and (min-width: 481px) {
  .usa-banner-header p {
    margin-top: 2px;
    margin-bottom: 2px;
    display: inline-block;
  }
}

.usa-banner-header img {
  float: left;
  margin-right: 1rem;
  margin-top: 1px;
  width: 2.4rem;
}

@media screen and (min-width: 481px) {
  .usa-banner-header img {
    margin-right: 0.7rem;
    width: 2rem;
  }
}

.usa-banner-header-expanded {
  -ms-flex-align: center;
      align-items: center;
  border-bottom: 1px solid #aeb0b5;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  min-height: 5.6rem;
  padding-right: 3rem;
}

@media screen and (min-width: 481px) {
  .usa-banner-header-expanded {
    border-bottom: none;
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    min-height: 0;
    padding-right: 0;
  }
}

.usa-banner-header-expanded > .usa-banner-inner {
  margin-left: 0;
}

@media screen and (min-width: 481px) {
  .usa-banner-header-expanded > .usa-banner-inner {
    margin-left: auto;
  }
}

.usa-banner-header-expanded img {
  margin-right: 2.4rem;
}

@media screen and (min-width: 481px) {
  .usa-banner-header-expanded img {
    margin-right: 0.7rem;
  }
}

.usa-banner-header-expanded p {
  line-height: 1.3;
  vertical-align: top;
}

@media screen and (min-width: 481px) {
  .usa-banner-header-expanded p {
    line-height: 1.5;
    vertical-align: middle;
  }
}

.usa-banner-button {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 400;
  margin: 0;
  outline: 0;
  padding: 0;
  text-align: left;
  -webkit-font-smoothing: auto;
  padding-top: 1.3rem;
  padding-left: 4.8rem;
  background-position-x: right;
  color: #0071bc;
  display: block;
  font-size: 1.2rem;
  height: 4.3rem;
  left: 0;
  position: absolute;
  text-decoration: underline;
  top: 0;
  width: 100%;
}

.usa-banner-button:hover {
  background-color: transparent;
}

@media screen and (min-width: 481px) {
  .usa-banner-button {
    padding-top: 0;
    padding-left: 0;
    display: inline;
    height: auto;
    margin-left: 3px;
    position: relative;
    vertical-align: middle;
    width: auto;
  }
}

.usa-banner-button:hover {
  color: #205493;
  text-decoration: underline;
}

.usa-banner-button[aria-expanded=false] {
  background-image: none;
}

.usa-banner-button[aria-expanded=false]::after {
  background-image: url(../img/angle-arrow-down-primary.png);
  background-image: url(../img/angle-arrow-down-primary.svg);
  background-size: 100%;
  content: '';
  display: inline-block;
  height: 1rem;
  width: 1rem;
  margin-left: 0;
}

.usa-banner-button[aria-expanded=false]:hover::after {
  background-image: url(../img/angle-arrow-down-primary-hover.png);
  background-image: url(../img/angle-arrow-down-primary-hover.svg);
}

.usa-banner-button[aria-expanded=false]::after {
  background-position-y: 1px;
}

.usa-banner-button[aria-expanded=true] {
  background-image: none;
  height: 5.6rem;
}

.usa-banner-button[aria-expanded=true]::after {
  background-image: url(../img/close-primary.png);
  background-image: url(../img/close-primary.svg);
  background-size: 100%;
  content: '';
  display: inline-block;
  height: 1.3rem;
  width: 1.3rem;
  margin-left: 0;
}

@media screen and (min-width: 481px) {
  .usa-banner-button[aria-expanded=true] {
    height: auto;
    padding: 0;
    position: relative;
  }
  .usa-banner-button[aria-expanded=true]::after {
    background-image: url(../img/angle-arrow-up-primary.png);
    background-image: url(../img/angle-arrow-up-primary.svg);
    background-size: 100%;
    content: '';
    display: inline-block;
    height: 1rem;
    width: 1rem;
    margin-left: 0;
  }
  .usa-banner-button[aria-expanded=true]:hover::after {
    background-image: url(../img/angle-arrow-up-primary-hover.png);
    background-image: url(../img/angle-arrow-up-primary-hover.svg);
  }
  .usa-banner-button[aria-expanded=true]::after {
    background-position-y: 1px;
  }
}

.usa-banner-button[aria-expanded=true]::after {
  position: absolute;
  right: 1.5rem;
  top: 2.15rem;
}

@media screen and (min-width: 481px) {
  .usa-banner-button[aria-expanded=true]::after {
    position: static;
  }
}

.usa-banner-button[aria-expanded=true] .usa-banner-button-text {
  display: none;
}

@media screen and (min-width: 481px) {
  .usa-banner-button[aria-expanded=true] .usa-banner-button-text {
    display: inline;
  }
}

.usa-banner-icon {
  width: 3.8rem;
}

.usa-banner__lock-image {
  height: 1.5ex;
  width: 1.21875ex;
}

.usa-banner__lock-image path {
  fill: currentColor;
}

.usda-blog-teaser {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 2px solid #d6d7d9;
}

.usda-blog-teaser-wrapper {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.usda-blog-teaser-thumbnail {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .usda-blog-teaser-thumbnail {
    display: table-cell;
    vertical-align: top;
    width: 18rem;
  }
}

@media screen and (min-width: 1201px) {
  .usda-blog-teaser-thumbnail {
    width: 27rem;
  }
}

@media screen and (min-width: 600px) {
  .usda-blog-teaser-related-blog-thumbnail {
    width: 18rem;
  }
}

@media screen and (min-width: 1201px) {
  .usda-blog-teaser-related-blog-thumbnail {
    width: 24rem;
  }
}

@media screen and (min-width: 600px) {
  .usda-blog-teaser-content {
    padding-left: 3rem;
    display: table-cell;
    vertical-align: top;
  }
}

.usda-blog-teaser-content > *:first-child {
  margin-top: 0;
}

.usda-blog-teaser-content a:visited {
  color: #0071bc;
}

.usda-blog-teaser-content a:hover {
  color: #205493;
}

.usda-blog-teaser-author > a::after {
  content: ', ';
  display: inline-block;
}

.usda-blog-teaser-author > a:last-child::after {
  content: none;
}

.usda-blog-teaser-date {
  color: #757575;
}

.usda-blog-teaser-links {
  margin-top: 1em;
}

.usda-blog-teaser-links > a {
  display: block;
}

.usda-blog-teaser-links-with-comment::before {
  content: '';
  background-image: url("../img/blog-comment.svg");
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  width: 22px;
  height: 20px;
  display: table-cell;
  vertical-align: middle;
}

.usda-blog-teaser-links-with-comment > span {
  display: table-cell;
  vertical-align: middle;
  padding-left: 1rem;
}

.usda-blog-teaser-footer {
  font-size: 1.4rem;
}

.usda-related-blog.usa-grid {
  margin-top: 1.5rem;
}

@media screen and (min-width: 600px) {
  .usda-related-blog.usa-grid {
    margin-top: 3rem;
  }
}

.usda-related-blog-block-title {
  width: 100%;
  color: #0071bc;
  border-bottom: 4px solid #f1f1f1;
  margin-bottom: 3rem;
}

.usda-blog-full-categories span, .usda-blog-full-tags span {
  display: block;
  margin-bottom: .5rem;
}

@media screen and (min-width: 1201px) {
  .usda-blog-full-categories span, .usda-blog-full-tags span {
    display: inline-block;
  }
}

.usda-blog-full-categories {
  margin-top: 4rem;
  margin-bottom: 1rem;
}

.usda-blog-full-category, .usda-blog-full-tag {
  padding: 0.2rem 0.5rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  background: #0071bc;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
}

.usda-blog-full-category:visited, .usda-blog-full-tag:visited {
  color: #ffffff;
}

.usda-blog-full-category:hover, .usda-blog-full-tag:hover {
  color: #ffffff;
  background: #205493;
}

.usda-blog-full-tags {
  padding-bottom: 2em;
  border-bottom: 2px solid #d6d7d9;
}

@media screen and (min-width: 1201px) {
  .usda-blog-full-tags {
    padding-bottom: 5rem;
  }
}

.usda-blog-full-author {
  font-size: 1.4rem;
}

.usda-blog-full-author > a::after {
  content: ', ';
  display: inline-block;
}

.usda-blog-full-author > a:last-child::after {
  content: none;
}

.usda-blog-full-date {
  font-size: 1.4rem;
  color: #757575;
}

.comment-blog-comment-form {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 2px solid #d6d7d9;
}

.comment-blog-comment-form input, .comment-blog-comment-form textarea, .comment-blog-comment-form select {
  max-width: 100%;
}

@media screen and (min-width: 1201px) {
  .comment-blog-comment-form {
    margin-bottom: 2em;
    padding-bottom: 2em;
  }
}

.js-comment {
  padding: 1rem;
  background: #f1f1f1;
}

.js-comment:nth-child(4n) {
  background: #ffffff;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.usda-comment-author {
  font-weight: 700;
}

.usda-comment-date {
  font-size: 1.4rem;
  color: #323a45;
  margin-bottom: 1em;
}

.usda-blog-change-categories {
  display: none;
}

@media screen and (max-width: 1040px) {
  .blog-section .usa-layout-docs-sidenav select {
    max-width: 100%;
    color: #0071bc;
    font-weight: 700;
    border-color: #aeb0b5;
  }
  .blog-section .usa-layout-docs-sidenav option {
    color: #323a45;
  }
}

.usda-breadcrumb {
  background: #f7f7f7;
  width: 100%;
}

.usda-breadcrumb-list {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  height: 3.2rem;
  line-height: 2.8rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.usda-breadcrumb-list > li {
  margin-bottom: 0;
}

@media screen and (min-width: 1201px) {
  .usda-breadcrumb-with-sidebar .usda-breadcrumb-list {
    margin-left: 25.58941%;
  }
}

.usda-breadcrumb-item {
  display: inline;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: bold;
}

.usda-breadcrumb-item > a {
  text-decoration: none;
  color: #5b616b;
}

.usda-breadcrumb-item > a:hover {
  color: #323a45;
}

.usda-breadcrumb-item::after {
  content: "›";
  display: inline-block;
  padding: 0 .6rem;
  color: #aeb0b5;
}

.usda-breadcrumb-item:last-child::after {
  content: "";
}

/* --------------- System Tabs  --------------- */
nav.tabs {
  margin: 1em 0;
}

.tabs ul.primary li a {
  color: #000;
  background-color: #ededed;
  border-color: #bbb;
  border-style: solid solid none solid;
  border-width: 1px;
  height: 1.8em;
  line-height: 1.9;
  display: block;
  font-size: 0.929em;
  padding: 0 10px 3px;
  text-shadow: 0 1px 0 #fff;
  text-decoration: none;
}

.tabs ul.primary li a:hover {
  text-decoration: underline;
}

.tabs ul.primary li.is-active a {
  background-color: #ffffff;
  border: 1px solid #bbb;
}

@media screen and (max-width: 37.5em) {
  /* 600px */
  .tabs ul.primary {
    padding: 0 3px;
    border-bottom: 1px solid #bbb;
  }
  .tabs ul.primary li {
    display: block;
    margin: 0;
  }
  .tabs ul.primary li a {
    padding: 5px 10px;
    line-height: 1.2;
  }
  .tabs ul.primary li.is-active a {
    border-bottom: none;
  }
}

@media screen and (min-width: 37.5em) {
  /* 600px */
  .tabs ul.primary {
    border-collapse: collapse;
    height: auto;
    line-height: normal;
    padding: 0 3px;
    margin: 0;
    overflow: hidden;
    border: none;
    background: transparent url(/core/themes/bartik/images/tabs-border.png) repeat-x left bottom;
    white-space: nowrap;
  }
  .tabs ul.primary li {
    display: block;
    float: left;
    /* LTR */
    vertical-align: bottom;
    margin: 0 5px 0 0;
    /* LTR */
  }
  [dir="rtl"] .tabs ul.primary li {
    margin: 0 0 0 5px;
    float: right;
  }
  .tabs ul.primary li a {
    float: left;
    /* not LTR */
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
  .tabs ul.primary li.is-active a {
    border-bottom: 1px solid #fff;
  }
}

.tabs ul.secondary {
  border-bottom: none;
  margin: 5px;
  padding: 0.5em 0;
  overflow: hidden;
}

.tabs ul.secondary li {
  border-right: 1px solid #ccc;
  /* LTR */
  display: block;
  float: left;
  /* LTR */
  margin: 0;
  padding: 0 1em;
}

[dir="rtl"] .tabs ul.secondary li {
  border-left: 1px solid #ccc;
  border-right: none;
  float: right;
}

.tabs ul.secondary li:last-child {
  border-right: none;
  /* LTR */
}

[dir="rtl"] .tabs ul.secondary li:last-child {
  border-left: none;
}

.tabs ul.secondary li:first-child {
  padding-left: 0;
  /* LTR */
}

[dir="rtl"] .tabs ul.secondary li:first-child {
  padding-right: 0;
}

.tabs ul.secondary li a {
  display: inline;
  padding: 0.25em 0.5em;
  text-decoration: none;
}

.tabs ul.secondary li a.is-active {
  background: #f2f2f2;
  border-bottom: none;
  border-radius: 5px;
}

.path-frontpage .block--nav-tabs {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1040px;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.path-frontpage .block--nav-tabs::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (min-width: 600px) {
  .path-frontpage .block--nav-tabs {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.messages {
  margin-top: 1.6rem;
}

.ui-datepicker {
  z-index: 510 !important;
}

#edit-field-formatted-comment-0-format.form-wrapper:empty {
  display: none;
}

.usda-featured {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.usda-featured .usa-grid .usa-width-one-fourth img {
  margin-top: 4rem;
}

.usda-featured h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.usda-featured h3 a {
  text-decoration: none;
}

.usda-featured h3 a:visited {
  color: #0071bc;
}

.usda-featured h3 a:visited:hover {
  color: #205493;
}

.usda-featured p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.usda-featured-header {
  width: 100%;
  color: #0071bc;
  border-bottom: 4px solid #f1f1f1;
}

.usda-featured-header-left {
  width: 100%;
  color: #0071bc;
  border-bottom: 4px solid #f1f1f1;
  text-align: left;
}

.usa-footer .usa-unstyled-list {
  display: block;
}

.usa-footer .usa-footer-primary-link {
  color: #212121;
  display: block;
  font-weight: 700;
  margin-top: 0;
  padding-bottom: 2rem;
  padding-top: 2rem;
  text-decoration: none;
}

@media screen and (min-width: 600px) {
  .usa-footer .usa-footer-primary-link {
    border-top: none;
  }
}

.usa-footer .usa-footer-primary-link:hover {
  text-decoration: underline;
}

.usa-footer a {
  font-weight: normal;
}

.usa-footer-return-to-top {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.usa-footer-primary-section {
  background-color: #f1f1f1;
}

.usa-footer-primary-section .usa-footer-primary-content {
  padding-left: 3rem;
  padding-right: 3rem;
}

@media screen and (min-width: 600px) {
  .usa-footer-primary-section .usa-footer-primary-content {
    padding-left: 0;
    padding-right: 0;
  }
}

.usa-footer-primary-section .usa-footer-primary-content li {
  margin-left: 1rem;
}

@media screen and (min-width: 600px) {
  .usa-footer-primary-section .usa-footer-primary-content li {
    margin-left: 0;
  }
}

@media screen and (min-width: 600px) {
  .usa-footer-primary-section .usa-grid-full {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.usa-footer-medium .usa-footer-primary-section {
  padding: 0;
}

@media screen and (min-width: 600px) {
  .usa-footer-medium .usa-footer-primary-section {
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
}

@media screen and (min-width: 1201px) {
  .usa-footer-medium .usa-footer-primary-section .usa-footer-primary-content {
    margin-right: 6%;
    width: inherit;
  }
}

@media screen and (min-width: 1201px) {
  .usa-footer-medium .usa-footer-primary-section .usa-footer-primary-content:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 600px) {
  .usa-footer-medium .usa-footer-nav ul {
    -ms-flex-align: center;
        align-items: center;
  }
}

.usa-footer-slim .usa-footer-nav a {
  display: block;
}

@media screen and (min-width: 600px) {
  .usa-footer-slim .usa-footer-nav .usa-footer-primary-content {
    margin-right: 4%;
    width: inherit;
  }
}

@media screen and (min-width: 600px) {
  .usa-footer-slim .usa-footer-nav .usa-footer-primary-content:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 600px) {
  .usa-footer-slim .usa-footer-primary-section {
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .usa-footer-slim .usa-footer-primary-section .usa-grid-full {
    -ms-flex-align: center;
        align-items: center;
  }
}

@media screen and (min-width: 600px) {
  .usa-footer-slim .usa-footer-contact_info > * {
    margin: 0;
  }
}

@media screen and (min-width: 600px) {
  .usa-footer-slim .usa-footer-contact_info {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media screen and (min-width: 600px) {
  .usa-footer-slim .usa-footer-contact_info {
    width: 100%;
  }
}

@media screen and (min-width: 1201px) {
  .usa-footer-slim .usa-footer-contact_info {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  .usa-footer-slim .usa-footer-contact_info:last-child {
    margin-right: 0;
  }
}

ul.usa-footer-primary-content,
li.usa-footer-primary-content,
li.usa-footer-primary-content {
  border-top: 1px solid #212121;
}

@media screen and (min-width: 600px) {
  ul.usa-footer-primary-content,
  li.usa-footer-primary-content,
  li.usa-footer-primary-content {
    border: none;
  }
}

ul.usa-footer-primary-content:last-child,
li.usa-footer-primary-content:last-child,
li.usa-footer-primary-content:last-child {
  border-bottom: 1px solid #212121;
}

@media screen and (min-width: 600px) {
  ul.usa-footer-primary-content:last-child,
  li.usa-footer-primary-content:last-child,
  li.usa-footer-primary-content:last-child {
    border-bottom: none;
  }
}

@media screen and (min-width: 600px) {
  .usa-sign_up-block {
    float: right;
  }
}

.usa-sign_up-block label:first-of-type {
  margin-top: 0;
}

.usa-sign_up-block button {
  float: none;
  margin-right: 0;
  margin-top: 1.5rem;
}

.usa-sign_up-block .signup__input {
  width: 100%;
  font-size: 1.6rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  height: 3rem;
}

.usa-sign_up-block .signup__button {
  margin: 1rem 0 0;
}

@media screen and (min-width: 600px) {
  .usa-sign_up-block .signup__button {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    height: 3.4rem;
  }
}

.usa-footer-secondary_section {
  background-color: #f7f7f7;
  padding-bottom: 3rem;
  padding-top: 3rem;
}

.usa-footer-secondary_section a {
  color: #212121;
  text-decoration: none;
}

.usa-footer-secondary_section a:hover {
  text-decoration: underline;
}

.usa-footer-secondary_section .usa-grid-full {
  padding-left: 3rem;
  padding-right: 3rem;
}

@media screen and (min-width: 600px) {
  .usa-footer-big-secondary-section {
    padding-top: 5rem;
  }
}

@media screen and (min-width: 600px) {
  .usda-footer-navigation {
    column-count: 2;
  }
}

@media screen and (min-width: 1201px) {
  .usda-footer-navigation {
    column-count: 4;
  }
}

.usda-footer-navigation > .usda-footer-navigation-link {
  font-size: 1.4rem;
  padding-bottom: 1.8rem;
  line-height: 1;
  display: block;
  break-inside: avoid;
}

@-moz-document url-prefix() {
  .usda-footer-navigation > .usda-footer-navigation-link {
    margin-bottom: 0;
    padding-bottom: 1.8rem;
  }
}

@media screen and (min-width: 600px) {
  .usa-footer-contact-links {
    text-align: right;
  }
}

.usa-social-links a {
  text-decoration: none;
}

@media screen and (min-width: 600px) {
  .usa-footer-big .usa-footer-primary-section {
    padding-bottom: 4rem;
    padding-top: 3rem;
  }
}

.usa-footer-big ul {
  padding-bottom: 2.5rem;
}

@media screen and (min-width: 600px) {
  .usa-footer-big ul {
    padding-bottom: 0;
  }
}

.usa-footer-big ul:last-child {
  border-bottom: 1px solid #212121;
}

@media screen and (min-width: 600px) {
  .usa-footer-big ul:last-child {
    border-bottom: none;
  }
}

.usa-footer-big ul li {
  line-height: 2em;
}

.usa-footer-big ul .usa-footer-primary-link {
  background-image: url("../img/arrow-down.png");
  background-image: url("../img/arrow-down.svg");
  background-position: 1.5rem center;
  background-repeat: no-repeat;
  background-size: 1.3rem;
  margin-left: 0;
  padding-left: 3.5rem;
}

@media screen and (min-width: 600px) {
  .usa-footer-big ul .usa-footer-primary-link {
    background: none;
    margin-bottom: .8rem;
    padding-bottom: 0;
    padding-left: 0;
  }
}

.usa-footer-big ul .usa-footer-primary-link > * {
  margin-top: 0;
  margin-bottom: 0;
}

.usa-footer-big ul.hidden {
  padding-bottom: 0;
}

.usa-footer-big ul.hidden li {
  display: none;
}

.usa-footer-big ul.hidden .usa-footer-primary-link {
  background-image: url("../img/arrow-right.png");
  background-image: url("../img/arrow-right.svg");
  cursor: pointer;
  display: block;
}

@media screen and (min-width: 600px) {
  .usa-footer-big ul.hidden .usa-footer-primary-link {
    background: none;
    padding-left: 0;
  }
}

.usa-footer-topic {
  margin: 0;
  padding: 2rem 0;
}

@media screen and (min-width: 600px) {
  .usa-sign_up-header {
    margin: 0;
    padding-bottom: 1rem;
    line-height: 2rem;
  }
}

.usa-footer-logo-img {
  max-width: 14rem;
}

.usa-footer-slim-logo-img {
  float: left;
  max-width: 10rem;
}

.usa-footer-logo-heading {
  margin-top: 2rem;
}

.usa-footer-contact-heading {
  margin-top: 0;
}

@media screen and (min-width: 600px) {
  .usa-footer-contact-heading {
    margin-top: 1rem;
  }
}

.usa-footer-slim-logo-heading {
  display: block;
  padding-top: 1rem;
}

@media screen and (min-width: 600px) {
  .usa-footer-slim-logo-heading {
    display: inline-block;
    padding-left: 1em;
  }
}

.usa-social_link, .usa-link-facebook, .usa-link-linkedin, .usa-link-flickr, .usa-link-google, .usa-link-govdelivery, .usa-link-constant-contact, .usa-link-instagram, .usa-link-rss, .usa-link-twitter, .usa-link-youtube {
  margin: 0 0.5rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 3rem;
  display: inline-block;
  height: 4.4rem;
  position: relative;
  text-align: center;
  width: 4.4rem;
}

@media screen and (min-width: 481px) {
  .usa-social_link, .usa-link-facebook, .usa-link-linkedin, .usa-link-flickr, .usa-link-google, .usa-link-govdelivery, .usa-link-constant-contact, .usa-link-instagram, .usa-link-rss, .usa-link-twitter, .usa-link-youtube {
    margin: 0 0.5rem 0 0;
  }
}

.usa-social_link span, .usa-link-facebook span, .usa-link-linkedin span, .usa-link-flickr span, .usa-link-google span, .usa-link-govdelivery span, .usa-link-constant-contact span, .usa-link-instagram span, .usa-link-rss span, .usa-link-twitter span, .usa-link-youtube span {
  position: absolute;
  left: -999em;
}

.usa-link-facebook {
  background-image: url("../img/social-icons/png/social-icon-facebook.png");
  background-image: url("../img/social-icons/svg/social-icon-facebook.svg");
}

.usa-link-linkedin {
  background-image: url("../img/social-icons/png/social-icon-linkedin.png");
  background-image: url("../img/social-icons/svg/social-icon-linkedin.svg");
}

.usa-link-flickr {
  background-image: url("../img/social-icons/png/social-icon-flickr.png");
  background-image: url("../img/social-icons/svg/social-icon-flickr.svg");
}

.usa-link-google {
  background-image: url("../img/social-icons/png/social-icon-google.png");
  background-image: url("../img/social-icons/svg/social-icon-google.svg");
}

.usa-link-govdelivery {
  background-image: url("../img/social-icons/png/social-icon-govdelivery.png");
  background-image: url("../img/social-icons/svg/social-icon-govdelivery.svg");
}

.usa-link-constant-contact {
  background-image: url("../img/social-icons/png/social-icon-constant-contact.png");
  background-image: url("../img/social-icons/svg/social-icon-constant-contact.svg");
}

.usa-link-instagram {
  background-image: url("../img/social-icons/png/social-icon-instagram.png");
  background-image: url("../img/social-icons/svg/social-icon-instagram.svg");
}

.usa-link-rss {
  background-image: url("../img/social-icons/png/social-icon-rss.png");
  background-image: url("../img/social-icons/svg/social-icon-rss.svg");
}

.usa-link-twitter {
  background-image: url("../img/social-icons/png/social-icon-twitter.png");
  background-image: url("../img/social-icons/svg/social-icon-twitter.svg");
}

.usa-link-youtube {
  background-image: url("../img/social-icons/png/social-icon-youtube.png");
  background-image: url("../img/social-icons/svg/social-icon-youtube.svg");
}

.usda-footer-branding {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.footer-social {
  float: left;
  text-align: center;
  width: 100%;
}

@media screen and (min-width: 481px) {
  .footer-social {
    margin-left: .9rem;
  }
}

@media screen and (min-width: 600px) {
  .footer-social {
    text-align: left;
  }
}

@media screen and (min-width: 951px) {
  .footer-social {
    float: right;
    width: auto;
  }
}

.footer-social-set {
  white-space: nowrap;
  margin: 0 auto;
}

@media screen and (min-width: 481px) {
  .footer-social-set {
    display: inline;
  }
}

form a {
  border-bottom: 0;
}

form [type="submit"],
form [type="submit"] {
  display: block;
  margin-bottom: 1.5em;
  margin-top: 2.5rem;
}

@media screen and (min-width: 600px) {
  form [type="submit"],
  form [type="submit"] {
    padding-left: 2.7em;
    padding-right: 2.7em;
    width: auto;
  }
}

form [name="password"],
form [name="confirmPassword"] {
  margin-bottom: 1.1rem;
}

@media screen and (min-width: 600px) {
  .usa-form {
    max-width: 32rem;
  }
}

.usa-form-note {
  float: right;
  font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
}

.usa-form-note + * {
  clear: both;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 600px) {
  .usa-form-large {
    max-width: 46rem;
  }
}

@media screen and (min-width: 600px) {
  input.usa-input-tiny {
    max-width: 6rem;
  }
}

@media screen and (min-width: 600px) {
  input.usa-input-medium {
    max-width: 12rem;
  }
}

@media screen and (min-width: 600px) {
  .usa-input-grid {
    padding-right: 5%;
  }
}

@media screen and (min-width: 600px) {
  .usa-input-grid:last-of-type {
    padding-right: 0;
  }
}

@media screen and (min-width: 600px) {
  .usa-input-grid-small {
    float: left;
    width: 35%;
  }
}

.usa-input-grid-small input {
  margin-bottom: 3rem;
}

.usa-input-grid-small select {
  margin-bottom: 3rem;
}

@media screen and (min-width: 600px) {
  .usa-input-grid-medium {
    float: left;
    width: 65%;
  }
}

.usa-input-grid-medium input {
  margin-bottom: 3rem;
}

.usa-input-grid-medium select {
  margin-bottom: 3rem;
}

@media screen and (min-width: 600px) {
  .usa-input-grid-large {
    float: left;
    width: 100%;
  }
}

.usa-input-grid-large input {
  margin-bottom: 3rem;
}

.usa-input-grid-large select {
  margin-bottom: 3rem;
}

.usa-additional_text {
  float: right;
  font-style: italic;
  font-weight: normal;
}

.usa-checklist {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.usa-checklist li {
  display: inline-block;
  list-style: none;
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 3em;
  text-indent: -2em;
}

.usa-checklist li::before {
  content: ' ';
  display: inline-block;
  height: .8em;
  margin-right: .2em;
  width: 1.8em;
}

.usa-checklist-checked::before {
  background-image: url("../img/correct9.png");
  background-image: url("../img/correct9.svg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 600px) {
  .contact-message-official-event-request-form > .field--type-datetime > div {
    display: table;
    width: 46rem;
  }
  .contact-message-official-event-request-form > .field--type-datetime > div .js-form-type-date {
    display: table-cell;
    width: 50%;
  }
  .contact-message-official-event-request-form > .field--type-datetime > div .js-form-type-date:first-child {
    padding-right: 1rem;
  }
  .contact-message-official-event-request-form > .field--type-datetime > div .js-form-type-date:last-child {
    padding-left: 1rem;
  }
}

.usa-graphic_list .usa-graphic_list-row .usa-media_block {
  margin-bottom: 3rem;
}

@media screen and (min-width: 600px) {
  .usa-graphic_list .usa-graphic_list-row .usa-media_block {
    margin-bottom: 6rem;
  }
}

@media screen and (min-width: 600px) {
  .usa-graphic_list .usa-graphic_list-row:last-child .usa-media_block {
    margin-bottom: 0;
  }
}

.usa-graphic_list .usa-graphic_list-row:last-child .usa-media_block:last-child {
  margin-bottom: 0;
}

.usa-graphic_list .usa-media_block-img {
  margin-right: 3rem;
}

.usa-graphic_list .usa-media_block-body > :first-child {
  margin-top: 0;
}

.usa-hero {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../img/hero.png");
  background-position: center;
  background-size: cover;
  min-height: 360px;
}

.usa-hero .usa-button {
  color: #ffffff;
}

.usa-section-dark .usa-hero-link {
  color: #02bfe7;
}

.usa-hero-callout {
  background-color: #112e51;
  padding: 20px;
  width: auto;
  max-width: 480px;
  max-height: 330;
  -ms-flex-align: center;
      align-items: center;
  vertical-align: center;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 20px;
}

.usa-hero-callout h2 {
  color: #0071bc;
  margin-bottom: 0px;
}

@media screen and (min-width: 481px) {
  .usa-hero-callout {
    max-width: 440px;
    max-height: 300px;
  }
}

.usa-hero-callout > *:first-child {
  margin-top: 0;
  margin-bottom: 3rem;
}

.usa-hero-callout > *:last-child {
  margin-bottom: 0;
}

.usa-hero-callout > p {
  font-size: 2.2rem;
}

.usa-hero-callout .usa-button {
  font-size: 1.4rem;
  width: auto;
  max-width: 160px;
  max-height: 45px;
  text-align: center;
}

.usa-hero-callout-alt {
  color: #ffffff;
  display: block;
}

.paragraph--type-basic-hero > .usa-hero {
  position: relative;
  height: 0;
  padding-bottom: 17%;
  max-height: 300px;
}

.usa-hero-callout--below {
  background-color: #ffffff;
  padding: 1.2rem 0 3rem;
  width: 100%;
  max-width: inherit;
}

.usa-hero-callout--right {
  float: right;
}

.usa-grid > .usa-hero-callout--below > h2, .usa-grid > .usa-hero-callout--below > h3, .usa-grid > .usa-hero-callout--below > p {
  margin: .5rem 0;
}

.paragraph--type-dropdown-menu-slider::after {
  clear: both;
  content: "";
  display: block;
}

.paragraph--type-dropdown-menu-slider h2 {
  float: left;
  color: #0071bc;
  margin: .5em 0;
}

@media screen and (min-width: 600px) {
  .paragraph--type-dropdown-menu-slider h2 {
    margin: 1em 0;
  }
}

.paragraph--type-dropdown-menu-slider h2 > label {
  max-width: inherit;
  margin-top: 0;
}

.paragraph--type-dropdown-menu-slider select {
  clear: left;
  float: left;
  font-weight: 700;
  font-size: 2rem;
  height: 6rem;
  max-width: inherit;
  width: 300px;
}

@media screen and (max-width: 599px) {
  .paragraph--type-dropdown-menu-slider select {
    width: 100% !important;
    margin-bottom: 1em;
  }
}

@media screen and (min-width: 600px) {
  .paragraph--type-dropdown-menu-slider select {
    clear: none;
    margin: 1em 0 1em 1em;
  }
}

.usda-page-title-block-with-hero {
  position: absolute;
  left: 0;
  right: 0;
}

@media screen and (min-width: 1040px) {
  .usda-page-title-block-with-hero {
    position: relative;
    right: initial;
  }
}

@media screen and (min-width: 1201px) {
  .with-sidebar .usda-page-title-block-with-hero {
    position: inherit;
  }
}

.usda-page-title-with-hero {
  padding: 1rem 1.5rem;
  margin: 0;
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  color: #ffffff;
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 600px) {
  .usda-page-title-with-hero {
    padding: 1rem 3rem;
  }
}

@media screen and (min-width: 1040px) {
  .usda-page-title-with-hero {
    padding: 2rem auto;
    font-size: 4.6rem;
    width: auto;
    top: -14.3rem;
    bottom: auto;
    left: 3rem;
  }
}

@media screen and (min-width: 1040px) {
  .with-sidebar .usda-page-title-with-hero {
    left: 0;
  }
}

.with-breadcrumb .usda-page-title-with-hero {
  bottom: 3.2rem;
}

@media screen and (min-width: 1040px) {
  .with-breadcrumb .usda-page-title-with-hero {
    top: -17.5rem;
    bottom: auto;
  }
}

@media screen and (min-width: 1040px) {
  .usa-width-one-whole .usda-page-title-with-hero {
    left: 0;
  }
}

.usda-latest {
  background: #0071bc;
  color: #ffffff;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.usda-latest .usa-grid .usa-width-one-half img {
  margin-top: 4rem;
}

.usda-latest-header {
  width: 100%;
  color: #ffffff;
  border-bottom: 4px solid #205493;
}

.usda-tags {
  margin: .5rem 0;
}

.usda-tag {
  background: #205493;
  color: #ffffff;
  display: inline-block;
  padding: 0 .5rem;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
}

.usda-latest-link {
  color: #ffffff;
  text-decoration: none;
}

.usda-latest-link:visited {
  color: #ffffff;
}

.usda-latest-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.usa-layout-docs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

@media screen and (min-width: 1201px) {
  .usa-layout-docs {
    display: inherit;
  }
}

.usa-layout-docs .usa-grid > :first-child:not(.usa-width-*) {
  margin-top: 0;
}

.usa-layout-docs .usa-grid > :last-child:not(.usa-width-*) {
  margin-bottom: 0;
}

.usa-layout-docs-sidenav {
  margin-right: 0;
  margin-left: 0;
  float: none;
  -ms-flex-order: 2;
      order: 2;
}

.usa-layout-docs-sidenav h2 {
  font-size: 2rem;
}

@media screen and (min-width: 1201px) {
  .usa-layout-docs-sidenav {
    background: #f1f1f1;
    display: table-cell;
    width: 26.21019%;
  }
  .usa-layout-docs-sidenav > div:first-child {
    background: #f1f1f1;
    padding: 1.3rem 3rem;
  }
  .usa-layout-docs-sidenav > div:first-child > *:first-child, .usa-layout-docs-sidenav > div:first-child > *:first-child > h2 {
    margin-top: 0;
  }
  .with-breadcrumb > .usa-layout-docs-sidenav > div:first-child {
    margin-top: -3.2rem;
  }
}

.usa-layout-docs-main_content {
  margin-right: 0;
  margin-bottom: 3rem;
  margin-left: 0;
  float: none;
  -ms-flex-order: 1;
      order: 1;
}

@media screen and (min-width: 1201px) {
  .usa-layout-docs-main_content {
    margin-bottom: 0;
  }
  .usa-layout-docs-main_content.usa-width-three-fourths {
    display: table-cell;
    vertical-align: top;
    padding-left: 23.797px;
    width: 76.76824%;
    padding-bottom: 3rem;
  }
}

.usa-layout-docs-main_content > :first-child {
  margin-top: 0;
}

.js .maintenance-page {
  background-color: #f7f7f7;
}

.maintenance-page .main-content-wrapper {
  background-color: #ffffff;
}

@media screen and (min-width: 600px) {
  .maintenance-page h1 {
    font-size: 5.2rem;
  }
}

.maintenance-page.path-frontpage h1 {
  position: inherit;
}

.usda-maintenance-nav {
  height: 66px;
}

.news-releases {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-bottom: 1rem;
}

.news-releases > li {
  margin-bottom: 0;
}

.news-releases-item {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.news-release-date {
  font-weight: 700;
}

.news-releases-filter {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #aeb0b5;
  padding-bottom: 2rem;
}

.news-releases-filter form {
  display: table;
  width: 100%;
}

.news-releases-filter .form-item {
  width: 100%;
  text-align: right;
  box-sizing: border-box;
}

@media screen and (min-width: 600px) {
  .news-releases-filter .form-item {
    display: table-cell;
    vertical-align: top;
    padding-right: 10px;
  }
}

.news-releases-filter .form-item > label {
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
}

@media screen and (max-width: 599px) {
  .news-releases-filter .form-item > label {
    margin-top: 0;
  }
}

@media screen and (min-width: 600px) {
  .news-releases-filter .form-item > label {
    width: 50%;
    display: inline-block;
    white-space: nowrap;
    padding-right: 1rem;
    margin-top: 1rem;
    float: left;
  }
}

@media screen and (min-width: 1201px) {
  .news-releases-filter .form-item > label {
    width: 70%;
    float: none;
  }
}

.news-releases-filter .form-item > input {
  border-color: #aeb0b5;
  max-width: 100%;
}

@media screen and (min-width: 600px) {
  .news-releases-filter .form-item > input {
    width: 49%;
    margin: 0;
    display: inline-block;
  }
}

@media screen and (min-width: 1201px) {
  .news-releases-filter .form-item > input {
    width: 29%;
  }
}

@media screen and (min-width: 600px) {
  .news-releases-filter .form-actions {
    display: table-cell;
    vertical-align: top;
  }
}

.news-releases-filter .form-actions > input {
  margin: 0;
  padding: 0 2rem;
}

@media screen and (max-width: 599px) {
  .news-releases-filter .form-actions > input {
    display: block;
    max-width: 100%;
    width: 100%;
  }
}

.news-releases-filter .description {
  margin-top: 1rem;
  text-align: left;
}

.news-release-info {
  margin-bottom: 1rem;
  padding: 2rem;
  background-color: #f1f1f1;
}

.news-release-info p:first-child {
  margin-top: 0;
}

.news-release-info p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 600px) {
  .news-release-info {
    float: right;
    max-width: 35rem;
    min-width: 20rem;
    margin-left: 2rem;
  }
}

.usa-media_block-img {
  float: left;
  margin-right: 1rem;
}

.usa-media_block-body {
  overflow: hidden;
}

.pager {
  margin-top: 1.5rem;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .pager {
    margin-top: 3rem;
  }
}

.pager__items {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  font-size: 1.4rem;
}

.pager__items > li {
  margin-bottom: 0;
}

.pager__item {
  display: none;
  text-transform: uppercase;
}

.pager__item--first, .pager__item--previous, .pager__item--next, .pager__item--last {
  display: inline-block;
}

.pager__item--first:before, .pager__item--previous:before, .pager__item--next:before, .pager__item--last:before {
  content: '|';
  color: #d6d7d9;
  padding: 0;
}

@media screen and (min-width: 600px) {
  .pager__item--first:before, .pager__item--previous:before, .pager__item--next:before, .pager__item--last:before {
    padding: 0 0.5rem;
  }
}

@media screen and (min-width: 1201px) {
  .pager__item--first:before, .pager__item--previous:before, .pager__item--next:before, .pager__item--last:before {
    padding: 0 1rem;
  }
}

.pager__item--previous:after {
  content: '|';
  display: inline-block;
  color: #d6d7d9;
  padding: 0;
}

@media screen and (min-width: 600px) {
  .pager__item--previous:after {
    padding: 0 0.5rem;
  }
}

@media screen and (min-width: 1201px) {
  .pager__item--previous:after {
    padding: 0 1rem;
  }
}

.pager__item.is-active {
  display: inline-block;
}

.pager__item.is-active > span {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media screen and (min-width: 600px) {
  .pager__item {
    display: inline-block;
  }
}

.pager__item:first-child::before {
  content: none;
}

.pager__item > a {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  text-decoration: none;
}

@media screen and (min-width: 1201px) {
  .pager__item > a {
    padding: 0.5rem 1rem;
  }
}

.pager__item > a:visited {
  color: #0071bc;
}

.pager__item > a:hover {
  text-decoration: underline;
}

.pager__item.is-active > a {
  color: #000000;
}

.paragraph--type-content, .paragraph--type-block {
  margin-top: 1.5rem;
}

@media screen and (min-width: 600px) {
  .paragraph--type-content, .paragraph--type-block {
    margin-top: 3rem;
  }
}

.paragraph--style-bg-gray {
  background: #f1f1f1;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media screen and (min-width: 600px) {
  .paragraph--style-bg-gray {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.paragraph--style-bg-gray + .paragraph--style-bg-gray {
  margin-top: 0;
  padding-top: 0;
}

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

.usda-paragraph-columns-wrapper {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.usda-paragraph-column-one-whole {
  margin-bottom: 2rem;
}

@media screen and (min-width: 600px) {
  .usda-paragraph-column-one-whole {
    display: table-cell;
    width: 100%;
    vertical-align: top;
    padding: 0;
    margin: 0;
  }
}

.usda-paragraph-column-one-half {
  margin-bottom: 2rem;
}

@media screen and (min-width: 600px) {
  .usda-paragraph-column-one-half {
    display: table-cell;
    width: 50%;
    vertical-align: top;
    padding: 0;
    margin: 0;
  }
}

.usda-paragraph-column-one-third {
  margin-bottom: 2rem;
}

@media screen and (min-width: 600px) {
  .usda-paragraph-column-one-third {
    display: table-cell;
    width: 33.33333%;
    vertical-align: top;
    padding: 0;
    margin: 0;
  }
}

.usda-paragraph-column-one-fourth {
  margin-bottom: 2rem;
}

@media screen and (min-width: 600px) {
  .usda-paragraph-column-one-fourth {
    display: table-cell;
    width: 25%;
    vertical-align: top;
    padding: 0;
    margin: 0;
  }
}

.usda-paragraph-column {
  background: #F2F8FC;
}

@media screen and (min-width: 600px) {
  .usda-paragraph-column:not(:last-child) {
    border-right: 1px solid #e7e7e7;
  }
}

.usda-paragraph-column > *:first-child {
  display: table;
  width: 100%;
  table-layout: fixed;
  background: #0071bc;
  margin: 0;
  text-align: center;
}

.usda-paragraph-column > *:first-child span {
  padding: 2rem;
  display: table-cell;
  vertical-align: middle;
  color: #ffffff;
}

.usda-paragraph-column ul {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding: 2rem;
}

.usda-paragraph-column ul > li {
  margin-bottom: 0;
}

.usda-paragraph-column li {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.usda-help-search {
  display: table;
  width: 100%;
  table-layout: fixed;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.usda-help-search .usda-form-item {
  display: table-cell;
  width: 100%;
  vertical-align: top;
}

.usda-help-search .usda-form-action {
  display: table-cell;
  vertical-align: top;
}

.usda-help-search label {
  margin: 0;
}

.usda-help-search input[type="search"] {
  box-sizing: border-box;
  margin: 0;
  max-width: 100%;
  border-color: #aeb0b5;
  -webkit-appearance: none;
          appearance: none;
}

.usda-help-search input[type="submit"] {
  margin: 0;
  width: 50px;
  border-radius: 0;
  font-size: 0;
  background-image: url("../img/search.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.usa-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.usa-section.usa-layout-docs {
  padding-top: 0;
}

@media screen and (min-width: 1201px) {
  .usa-section.usa-layout-docs {
    padding-bottom: 0;
  }
  .usa-section.usa-layout-docs.with-sidebar {
    position: relative;
    display: table;
    table-layout: fixed;
    width: 100%;
    padding-left: 0;
  }
}

@media screen and (min-width: 600px) {
  .usa-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.usa-section-white {
  background-color: #ffffff;
}

.usa-section-light {
  background-color: #f1f1f1;
}

.usa-section-dark {
  background-color: #112e51;
  color: #ffffff;
}

.usa-section-dark h1,
.usa-section-dark h2,
.usa-section-dark h3,
.usa-section-dark h4,
.usa-section-dark h5,
.usa-section-dark h6 {
  color: #02bfe7;
}

.usa-section-dark p {
  color: #ffffff;
}

.usa-section-dark a {
  color: #d6d7d9;
}

.usa-section-dark a:hover {
  color: #ffffff;
}

@media screen and (max-width: 1200px) {
  .usa-layout-docs-sidenav {
    width: 100%;
  }
}

.usa-layout-docs-sidenav .usda-block {
  margin-top: 2em;
}

@media screen and (min-width: 1201px) {
  .usa-layout-docs-sidenav .usda-block:first-child {
    margin-top: 0;
  }
}

.usa-sidenav-list {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
}

.usa-sidenav-list > li {
  margin-bottom: 0;
}

.usa-sidenav-list > li {
  background-color: transparent;
  border-top: 1px solid #d6d7d9;
  font-size: 1.7rem;
}

.usa-sidenav-list > li:first-child {
  border-top: none;
}

.usa-sidenav-list li > a {
  border: none;
  color: #212121;
  background-color: inherit;
  display: block;
  font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  line-height: 1.3;
  padding: 0.85rem 1rem 0.85rem 1.8rem;
  text-decoration: none;
}

.usa-sidenav-list li > a:hover {
  background-color: #f1f1f1;
  color: #0071bc;
  text-decoration: none;
}

.usa-sidenav-list li > a:focus {
  position: relative;
  z-index: 1;
}

.usa-sidenav-list li > a.usa-current {
  border-left: 4px solid #0071bc;
  color: #0071bc;
  font-weight: 700;
  padding-left: 1.4rem;
}

@media screen and (min-width: 1201px) {
  .usa-sidenav-list {
    margin: 0 -1.7rem;
  }
}

.usa-sidenav-sub_list {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  width: 100%;
}

.usa-sidenav-sub_list > li {
  margin-bottom: 0;
}

.usa-sidenav-sub_list li {
  border: none;
  font-size: 1.5rem;
}

.usa-sidenav-sub_list li > a {
  padding-left: 2.8rem;
  line-height: 1.3;
}

.usa-sidenav-sub_list li > a:hover, .usa-sidenav-sub_list li > a.usa-current {
  border: none;
  padding-left: 2.8rem;
}

.usa-sidenav-sub_list .usa-sidenav-sub_list li > a {
  padding-left: 3.8rem;
}

.usa-sidenav-sub_list .usa-sidenav-sub_list li > a:hover {
  padding-left: 3.8rem;
}

.usa-blog-sidenav-list {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
}

.usa-blog-sidenav-list > li {
  margin-bottom: 0;
}

.usa-blog-sidenav-list li a {
  padding: 0.85rem 0;
  display: block;
  color: #212121;
  text-decoration: none;
}

.usa-blog-sidenav-list li a:hover {
  color: #0071bc;
  text-decoration: none;
}

.usa-layout-docs-sidenav .signup__label {
  margin-top: .5em;
}

.usa-header {
  width: 100%;
  z-index: 300;
}

@media screen and (min-width: 951px) {
  .usa-header {
    border-bottom: 1px solid #aeb0b5;
  }
}

.usa-header a {
  border-bottom: none;
}

@media screen and (max-width: 950px) {
  .usa-header .usa-search {
    -ms-flex-order: 1;
        order: 1;
    margin-top: 3rem;
  }
}

@media screen and (min-width: 951px) {
  .usa-header .usa-search {
    margin-bottom: 0;
    max-width: 21.5rem;
    position: absolute;
    top: 1.6rem;
    right: 3rem;
  }
}

.usa-navbar {
  border-bottom: 1px solid #aeb0b5;
  height: 4rem;
}

@media screen and (min-width: 951px) {
  .usa-navbar {
    border-bottom: none;
    display: inline-block;
    height: 10.3rem;
  }
}

.usa-logo {
  line-height: 4rem;
  height: 4rem;
  margin-left: 1.5rem;
}

@media screen and (max-width: 600px) {
  .usda-footer-branding .usa-logo {
    float: none;
  }
}

@media screen and (min-width: 481px) {
  .usa-logo {
    float: left;
  }
}

@media screen and (min-width: 951px) {
  .usa-logo {
    line-height: 2rem;
    margin-left: 0;
  }
}

.usa-logo a {
  color: #212121;
  text-decoration: none;
}

.usa-logo br {
  display: none;
}

@media screen and (min-width: 951px) {
  .usa-logo br {
    display: block;
  }
}

.usa-logo-text {
  display: block;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  margin: 0;
}

@media screen and (min-width: 951px) {
  .usa-logo-text {
    display: block;
    font-size: 2.4rem;
    line-height: 1.3;
  }
}

.usda-logo {
  display: inline-block;
  float: left;
  margin-right: 1rem;
  line-height: 1;
  width: 45px;
}

@media screen and (min-width: 951px) {
  .usda-logo {
    float: none;
    width: 55px;
    height: auto;
  }
}

.usda-footer-branding .usa-logo {
  height: auto;
  line-height: inherit;
}

.usda-footer-branding .usda-logo {
  display: block;
  text-align: center;
  float: none;
}

@media screen and (min-width: 600px) {
  .usda-footer-branding .usda-logo {
    display: inline-block;
  }
}

@media screen and (max-width: 599px) {
  .usda-footer-branding .usda-logo {
    margin: 0 auto;
  }
}

.usda-logo-img {
  width: auto;
  height: 31px;
  margin-top: 3px;
}

@media screen and (min-width: 481px) {
  .usda-logo-img {
    display: block;
  }
}

@media screen and (min-width: 951px) {
  .usda-logo-img {
    vertical-align: inherit;
    display: inline;
    height: 38px;
    margin-top: 0;
  }
}

.usda-logo-img:hover {
  cursor: pointer;
}

.usda-logo-text {
  text-transform: uppercase;
  line-height: 3.8rem;
}

@media screen and (max-width: 405px) {
  .usda-logo-text {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 481px) {
  .usda-logo-text {
    display: inline-block;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 951px) {
  .usda-logo-text {
    display: inline;
    font-size: 1.8rem;
  }
}

.usda-footer-branding .usda-logo-text {
  line-height: inherit;
  white-space: nowrap;
  text-align: center;
}

@media screen and (min-width: 481px) {
  .usda-footer-branding .usda-logo-text {
    display: inline-block;
    line-height: 3rem;
  }
}

@media screen and (max-width: 481px) {
  .usda-footer-branding .usda-logo-text {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 599px) {
  .usda-footer-branding .usda-logo-text {
    display: block;
  }
}

.usa-menu-btn {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 400;
  margin: 0;
  outline: 0;
  padding: 0;
  text-align: left;
  -webkit-font-smoothing: auto;
  background-color: #0071bc;
  color: #ffffff;
  display: inline;
  float: right;
  font-size: 1.3rem;
  height: 4rem;
  line-height: 4rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 5.8rem;
}

.usa-menu-btn:hover {
  background-color: transparent;
}

@media screen and (min-width: 951px) {
  .usa-menu-btn {
    display: none;
  }
}

.usa-menu-btn:hover {
  color: #ffffff;
  background-color: #205493;
}

.usa-menu-btn:visited {
  color: #ffffff;
}

.usa-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000000;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  visibility: hidden;
  z-index: 400;
}

.usa-overlay.is-visible {
  opacity: 0.1;
  visibility: visible;
}

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

@media screen and (min-width: 951px) {
  .usa-nav-link.is-active span, .usa-nav-link.usa-current span, .usa-nav-link:hover span {
    border-bottom: 0.4rem solid #ffffff;
    padding-bottom: .2rem;
  }
}

@media screen and (min-width: 951px) {
  .usa-nav-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 3rem;
    padding-left: 3rem;
    max-width: 1040px;
  }
  .usa-nav-container::after {
    clear: both;
    content: "";
    display: block;
  }
}

.usa-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  height: 100%;
  width: 26rem;
  transform: translateX(26rem);
  background: #0071bc;
  border-left: 1px solid #aeb0b5;
  border-right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  overflow-y: auto;
  padding: 2rem;
  z-index: 500;
}

@media screen and (min-width: 951px) {
  .usa-nav {
    padding-top: 5rem;
    padding-right: 0;
    padding-bottom: 0;
    transform: translateX(0);
    border-left: none;
    display: block;
    float: right;
    overflow-y: visible;
    position: relative;
    width: auto;
  }
}

.usa-nav.is-visible {
  transform: translateX(0);
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 950px) {
  .usa-nav nav {
    -ms-flex-order: 2;
        order: 2;
    margin-top: 1rem;
  }
}

@media screen and (min-width: 951px) {
  .usa-nav nav {
    margin-top: 0;
  }
}

@media screen and (max-width: 950px) {
  .usa-nav .usa-nav-secondary {
    -ms-flex-order: 3;
        order: 3;
  }
}

.usa-nav .is-active,
.usa-nav .usa-current {
  font-weight: 700;
}

.usa-nav .usa-button {
  width: 100%;
}

@media screen and (min-width: 951px) {
  .usa-nav .usa-search {
    margin-left: 1.5rem;
  }
}

.usa-nav-primary {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  -ms-flex-order: 2;
      order: 2;
}

.usa-nav-primary > li {
  margin-bottom: 0;
}

.usa-nav-primary > li {
  background-color: transparent;
  border-top: 1px solid #205493;
  font-size: 1.7rem;
}

.usa-nav-primary > li:first-child {
  border-top: none;
}

.usa-nav-primary li > a {
  border: none;
  color: #ffffff;
  background-color: inherit;
  display: block;
  font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  line-height: 1.3;
  padding: 0.85rem 1rem 0.85rem 1.8rem;
  text-decoration: none;
}

.usa-nav-primary li > a:hover {
  background-color: #205493;
  color: #ffffff;
  text-decoration: none;
}

.usa-nav-primary li > a:focus {
  position: relative;
  z-index: 1;
}

.usa-nav-primary li > a.usa-current {
  border-left: 4px solid #0071bc;
  color: #ffffff;
  font-weight: 700;
  padding-left: 1.4rem;
}

.usa-nav-primary li > a:hover {
  color: #ffffff;
}

@media screen and (min-width: 951px) {
  .usa-nav-primary {
    display: inline;
  }
}

@media screen and (min-width: 951px) {
  .usa-nav-primary li {
    border-top: none;
  }
}

.usa-nav-primary > li {
  width: auto;
}

@media screen and (min-width: 951px) {
  .usa-nav-primary > li {
    display: inline-block;
    margin-left: -4px;
  }
}

@media screen and (min-width: 951px) {
  .usa-nav-primary > li > a {
    padding: 1.3rem 1.5rem 1.7rem;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 951px) {
  .usa-nav-primary > li > a:hover {
    background-color: transparent;
  }
}

.usa-nav-primary button {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 400;
  margin: 0;
  outline: 0;
  padding: 0;
  text-align: left;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  padding: 1.4rem 1.5rem 1rem 1.8rem;
  color: #ffffff;
}

.usa-nav-primary button:hover {
  background-color: transparent;
}

@media screen and (min-width: 951px) {
  .usa-nav-primary button {
    padding-right: 2rem;
    padding-bottom: 2.4rem;
    padding-left: 2rem;
    font-size: 1.5rem;
    width: auto;
  }
}

.usa-nav-primary button:focus, .usa-nav-primary button:active {
  box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf;
}

.usa-nav-primary button:hover {
  background-color: #205493;
  color: #ffffff;
}

@media screen and (min-width: 951px) {
  .usa-nav-primary button:hover {
    background-color: inherit;
  }
}

.usa-nav-primary button[aria-expanded=false] {
  background-image: url("../img/plus-alt.png");
  background-image: url("../img/plus-alt.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

@media screen and (min-width: 951px) {
  .usa-nav-primary button[aria-expanded=false] {
    background-image: none;
  }
}

.usa-nav-primary button[aria-expanded=true] {
  background-image: url("../img/minus-alt.png");
  background-image: url("../img/minus-alt.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

@media screen and (min-width: 951px) {
  .usa-nav-primary button[aria-expanded=true] {
    background-image: none;
  }
  .usa-nav-primary button[aria-expanded=true] span {
    border-bottom: 0.4rem solid #ffffff;
    padding-bottom: .2rem;
  }
}

@media screen and (min-width: 951px) {
  .usa-header-basic .usa-logo {
    bottom: 1.9rem;
    position: absolute;
  }
}

@media screen and (min-width: 951px) {
  .usa-header-basic .usa-navbar {
    position: relative;
    width: 18%;
  }
}

@media screen and (min-width: 951px) {
  .usa-header-extended .usa-header {
    border-bottom: none;
  }
}

@media screen and (min-width: 951px) {
  .usa-header-extended .usa-logo {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 951px) {
  .usa-header-extended em {
    font-size: 3.2rem;
    line-height: 1;
  }
}

@media screen and (min-width: 951px) {
  .usa-header-extended .usa-navbar {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 3rem;
    padding-left: 3rem;
    display: block;
    height: auto;
    max-width: 1040px;
  }
  .usa-header-extended .usa-navbar::after {
    clear: both;
    content: "";
    display: block;
  }
}

@media screen and (min-width: 951px) {
  .usa-header-extended .usa-nav {
    float: none;
    padding: 0;
    width: 100%;
  }
}

@media screen and (max-width: 950px) {
  .usa-header-extended .usa-nav-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 951px) {
  .usa-header-extended .usa-nav-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 3rem;
    padding-left: 2rem;
    max-width: 1040px;
    position: relative;
  }
  .usa-header-extended .usa-nav-inner::after {
    clear: both;
    content: "";
    display: block;
  }
}

@media screen and (min-width: 951px) {
  .usa-header-extended .usa-nav-primary::after {
    clear: both;
    content: "";
    display: block;
  }
}

.usa-header-extended .usa-nav-primary button {
  text-transform: uppercase;
}

@media screen and (min-width: 951px) {
  .usa-header-extended .usa-nav-primary button[aria-expanded=false], .usa-header-extended .usa-nav-primary button[aria-expanded=true] {
    background-position: right 1.5rem top 50%;
    position: relative;
    line-height: 1.2;
  }
  .usa-header-extended .usa-nav-primary button[aria-expanded=false]::before, .usa-header-extended .usa-nav-primary button[aria-expanded=true]::before {
    content: " ";
    display: block;
    height: 3rem;
    border-left: 1px solid #205493;
    position: absolute;
    left: 0;
    top: 1.8rem;
  }
}

@media screen and (min-width: 951px) {
  .usa-header-extended .usa-nav-primary li:not(:first-child) .usa-nav-link::before {
    content: " ";
    display: block;
    height: 3rem;
    border-left: 1px solid #205493;
    position: absolute;
    left: 0;
    top: 1.8rem;
  }
}

.usa-header-extended .usa-nav-link {
  text-transform: uppercase;
  position: relative;
}

@media screen and (min-width: 951px) {
  .usa-header-extended .usa-nav-link {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
}

@media screen and (min-width: 951px) {
  .usa-header-extended .usa-nav-submenu .usa-grid-full {
    padding-left: 1.2rem;
  }
}

@media screen and (min-width: 951px) {
  .usa-header-extended .usa-megamenu {
    padding-left: 3rem;
  }
}

.usa-nav-submenu .usda-nav-feature {
  display: none;
}

@media screen and (min-width: 951px) {
  .usa-nav-submenu .usda-nav-feature {
    box-sizing: content-box;
    display: table-cell;
    vertical-align: top;
    background: #f1f1f1;
  }
}

.usa-nav-submenu .usda-nav-feature-wrapper {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  box-sizing: border-box;
  min-width: 21.5rem;
  max-width: 40rem;
  height: 100%;
}

.usda-nav-feature-content {
  margin-right: 3.2rem;
  margin-left: 3.2rem;
}

.usda-nav-feature-content h2 {
  margin-top: .2em;
  color: #323a45;
}

.usa-nav-secondary > nav {
  margin-top: 2rem;
}

@media screen and (min-width: 951px) {
  .usa-nav-secondary {
    position: absolute;
    right: 3rem;
    top: -3rem;
  }
  .usa-nav-secondary > nav {
    float: left;
    margin-top: 0;
  }
  .usa-nav-secondary > nav + nav li:first-child {
    padding-left: 1.4rem;
  }
}

.usa-nav-secondary .usa-search {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media screen and (min-width: 951px) {
  .usa-nav-secondary .usa-search {
    margin-top: -0.2rem;
    margin-bottom: 0;
    margin-left: 0;
    display: none;
    float: left;
  }
  .usa-nav-secondary .usa-search.is-visible {
    display: block;
  }
}

@media screen and (min-width: 951px) {
  .usa-nav-secondary-links {
    float: left;
  }
}

@media screen and (min-width: 951px) {
  .usa-nav-secondary-links li {
    display: inline;
    padding-left: 1.8rem;
  }
}

.usa-nav-secondary-links a,
.usa-nav-secondary-links .usa-header-search-button {
  color: #f1f1f1;
  display: inline-block;
  font-size: 1.3rem;
  text-decoration: none;
  text-transform: uppercase;
}

.usa-nav-secondary-links a:hover,
.usa-nav-secondary-links .usa-header-search-button:hover {
  color: #f7f7f7;
}

@media screen and (min-width: 951px) {
  .usa-nav-secondary-links a,
  .usa-nav-secondary-links .usa-header-search-button {
    color: #323a45;
  }
  .usa-nav-secondary-links a:hover,
  .usa-nav-secondary-links .usa-header-search-button:hover {
    color: #5b616b;
  }
}

.usa-nav-secondary-links .usa-header-search-button {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 400;
  margin: 0;
  outline: 0;
  padding: 0;
  text-align: left;
  -webkit-font-smoothing: auto;
  display: none;
}

.usa-nav-secondary-links .usa-header-search-button:hover {
  background-color: transparent;
}

@media screen and (min-width: 951px) {
  .usa-nav-secondary-links .usa-header-search-button {
    background-image: url("../img/search-alt.png");
    background-image: url("../img/search-alt.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 2.2rem;
    display: inline-block;
    padding-left: 2.3rem;
  }
}

@media screen and (min-width: 951px) {
  .usa-nav-secondary-links .usa-header-search-button.is-hidden {
    display: none;
  }
}

.usa-nav-submenu {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  width: 100%;
}

.usa-nav-submenu > li {
  margin-bottom: 0;
}

.usa-nav-submenu li {
  border: none;
  font-size: 1.5rem;
}

.usa-nav-submenu li > a {
  padding-left: 2.8rem;
  line-height: 1.3;
}

.usa-nav-submenu li > a:hover, .usa-nav-submenu li > a.usa-current {
  border: none;
  padding-left: 2.8rem;
}

.usa-nav-submenu .usa-sidenav-sub_list li > a {
  padding-left: 3.8rem;
}

.usa-nav-submenu .usa-sidenav-sub_list li > a:hover {
  padding-left: 3.8rem;
}

@media screen and (min-width: 951px) {
  .usa-nav-submenu {
    margin-top: 0;
    margin-bottom: 0;
    list-style-type: none;
    padding-left: 0;
    background-color: #ffffff;
    min-width: 21.5rem;
    width: auto;
    display: none;
    position: absolute;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
  }
  .usa-nav-submenu > li {
    margin-bottom: 0;
  }
}

.usa-nav-submenu[aria-hidden=true] {
  display: none;
}

.usa-nav-submenu[aria-hidden=false] {
  display: block;
}

@media screen and (min-width: 951px) {
  .usa-nav-submenu li > a {
    color: #000000;
    padding-left: 3.2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

@media screen and (min-width: 951px) {
  .usa-nav-submenu li > a:hover {
    background-color: #112e51;
    color: #ffffff;
  }
}

@media screen and (min-width: 951px) {
  .usa-nav-submenu li > a:hover, .usa-nav-submenu li > a.is-active, .usa-nav-submenu li > a.usa-current {
    padding-left: 3.2rem;
  }
}

.usa-nav-submenu li {
  margin-bottom: 0;
}

.usa-nav-submenu .usda-nav-overview > a {
  padding-bottom: .25rem;
  text-transform: uppercase;
  font-weight: bold;
}

@media screen and (min-width: 951px) {
  .usa-nav-submenu .usda-nav-overview > a {
    padding-left: 1.9rem;
    padding-right: 1.9rem;
    color: #205493;
  }
  .usa-nav-submenu .usda-nav-overview > a:hover {
    padding-left: 1.9rem;
  }
  .usa-nav-submenu .usda-nav-overview > a:hover span {
    border-bottom: 0 none;
    padding-bottom: .7rem;
  }
  .usa-nav-submenu .usda-nav-overview > a.is-active {
    padding-left: 1.9rem;
  }
}

.usa-nav-submenu .usda-nav-overview > a span {
  padding-bottom: .6rem;
  border-bottom: 1px solid #aeb0b5;
  display: block;
}

.usa-nav-close {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 400;
  margin: 0;
  outline: 0;
  padding: 0;
  text-align: left;
  -webkit-font-smoothing: auto;
  height: 4.4rem;
  text-align: center;
  width: 4.4rem;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

.usa-nav-close:hover {
  background-color: transparent;
}

@media screen and (min-width: 951px) {
  .usa-nav-close {
    display: none;
  }
}

.usa-nav-close img {
  width: 1.3rem;
}

.usa-mobile_nav-active {
  overflow: hidden;
}

@media screen and (min-width: 951px) {
  .usa-megamenu {
    padding-top: 3.15rem;
    padding-bottom: 3.15rem;
    left: -1.8rem;
    width: 100%;
  }
}

@media screen and (min-width: 951px) {
  .usa-megamenu::before {
    background-color: #112e51;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 1000%;
    right: 100%;
  }
}

@media screen and (min-width: 951px) {
  .usa-megamenu::after {
    background-color: #112e51;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 1000%;
    left: 100%;
  }
}

@media screen and (min-width: 951px) {
  .usa-header-basic-megamenu .usa-nav {
    padding-top: 0;
    width: 100%;
  }
}

.usa-header-basic-megamenu .usa-nav-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (min-width: 951px) {
  .usa-header-basic-megamenu .usa-nav-inner {
    display: initial;
    float: right;
    margin-top: -4.8rem;
  }
}

@media screen and (min-width: 951px) {
  .usa-header-basic-megamenu .usa-nav-submenu .usa-grid-full {
    margin-left: -1.8rem;
  }
}

@media screen and (min-width: 951px) {
  .usa-megamenu-col {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
  }
  .usa-megamenu-col:last-child {
    margin-right: 0;
  }
  .usa-megamenu-col:nth-child(2n) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
  }
  .usa-megamenu-col:nth-child(2n):last-child {
    margin-right: 0;
  }
  .usa-megamenu-col:nth-child(4n) {
    margin-right: 0;
  }
}

.usa-megamenu-col > ul {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
}

.usa-megamenu-col > ul > li {
  margin-bottom: 0;
}

.usda-nav-subheader {
  color: #0071bc;
  font-size: 1.7rem;
  text-transform: uppercase;
  margin: 1rem 0 0.5rem 1.8rem;
}

.usda-nav-submenu {
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 0;
  min-width: 21.5rem;
  padding: 1.2rem 0;
  width: auto;
  display: table-cell;
  vertical-align: top;
}

.usda-section-image-content-wrapper {
  margin-top: 1.76471em;
  margin-bottom: 1.76471em;
  display: table;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .usda-section-image-wrapper {
    display: table-cell;
    vertical-align: top;
    padding-right: 2rem;
  }
  .usda-section-image-wrapper img {
    max-width: 350px;
  }
}

@media screen and (min-width: 1201px) {
  .usda-section-image-wrapper img {
    max-width: 740px;
  }
}

@media screen and (min-width: 600px) {
  .usda-section-content {
    display: table-cell;
    vertical-align: top;
    width: 100%;
  }
}

.usda-section-content > *:first-child {
  margin-top: 0;
}

.usda-section-content > *:last-child {
  margin-bottom: 0;
}

.usda-bio-callout {
  padding: 1rem;
  margin-bottom: 2rem;
  margin-left: 2rem;
  float: right;
  max-width: 18rem;
  background-color: #f1f1f1;
}

.usda-bio-callout img {
  width: 100%;
  height: auto;
}

.usda-bio-callout ul {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
}

.usda-bio-callout ul > li {
  margin-bottom: 0;
}

hr {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

hr.usda_hr_half {
  width: 50%;
  margin-right: auto;
  margin-left: auto;
}

blockquote {
  margin: 2rem 0;
  padding: 5rem;
  box-sizing: border-box;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #0071bc;
}

blockquote p:first-child {
  margin-top: 0;
}

blockquote p:last-child {
  margin-bottom: 0;
}

.embedded-entity {
  margin: 0.7em 0;
}

.embedded-entity.embedded-video {
  width: 100%;
}

.embedded-entity > img {
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .embedded-entity[data-align="left"],
  .embedded-entity.align-left {
    float: left;
    margin: 0.7em 1em 0 0;
  }
  .embedded-entity[data-align="left"].embedded-video,
  .embedded-entity.align-left.embedded-video {
    width: 50%;
  }
}

.embedded-entity[data-align="center"],
.embedded-entity.align-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.embedded-entity[data-align="center"].embedded-video,
.embedded-entity.align-center.embedded-video {
  width: 75%;
}

@media screen and (min-width: 600px) {
  .embedded-entity[data-align="right"],
  .embedded-entity.align-right {
    float: right;
    margin: 0.7rem 0 0 1em;
  }
  .embedded-entity[data-align="right"].embedded-video,
  .embedded-entity.align-right.embedded-video {
    width: 50%;
  }
}

figure.embedded-entity {
  margin-right: auto;
  margin-left: auto;
  padding-top: 1rem;
  padding-right: 1rem;
  padding-left: 1rem;
  text-align: center;
  display: table;
  border-radius: 3px 3px 0 0;
  background-color: #f7f7f7;
  border: 1px solid #f1f1f1;
  border-bottom: 0;
}

figure.embedded-entity img {
  display: block;
  object-fit: cover;
}

figure.embedded-entity > figcaption {
  display: table-caption;
  caption-side: bottom;
  background-color: #f7f7f7;
  font-size: 1.4rem;
  padding: 1rem;
  color: #5b616b;
  border-radius: 0 0 3px 3px;
  border: 1px solid #f1f1f1;
  border-top: 0;
}

.usda-section-icon-content-wrapper {
  margin-top: 2.8rem;
  margin-bottom: 1rem;
  display: table;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .usda-section-icon-content-wrapper {
    margin-top: 4.5rem;
    margin-bottom: 1.5rem;
  }
}

.usda-section-icon-content-wrapper > .embedded-entity {
  display: table-cell;
  width: 30px;
  vertical-align: top;
  padding-top: 5px;
}

.usda-section-icon-content-wrapper > h2, .usda-section-icon-content-wrapper > h3 {
  display: table-cell;
  padding-left: 1rem;
  vertical-align: top;
}

.usda-section-icon-content-wrapper > h3 {
  vertical-align: middle;
}

.usa-list-items-wrapper {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.usa-list-items-wrapper::after {
  clear: both;
  content: "";
  display: block;
}

.usa-list-items-wrapper h3 {
  margin-top: 1rem;
}

.usa-list-items-wrapper p {
  margin-top: 0;
}

.usa-list-item-thumbnail a {
  display: block;
  line-height: 0;
}

.usa-search {
  max-width: none;
  position: relative;
}

.usa-search::after {
  clear: both;
  content: "";
  display: block;
}

.usa-search [type="search"],
.usa-search .usa-search-input {
  padding-top: 0;
  padding-bottom: 0;
  -webkit-appearance: none;
  border-bottom-right-radius: 0;
  border-right: none;
  border-top-right-radius: 0;
  box-sizing: border-box;
  float: left;
  font-size: 1.6rem;
  height: 3.3rem;
  margin: 0;
  width: calc(100% - 4.5rem);
}

@media screen and (min-width: 481px) {
  .usa-search [type="search"],
  .usa-search .usa-search-input {
    width: calc(100% - 8.5rem);
  }
}

.usa-search [type="submit"],
.usa-search .usa-search-submit {
  background-image: url("../img/search.png");
  background-image: url("../img/search.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  height: 3.3rem;
  margin: 0;
  padding: 0;
  width: 4.5rem;
}

@media screen and (min-width: 481px) {
  .usa-search [type="submit"],
  .usa-search .usa-search-submit {
    background-image: none;
    width: 8.5rem;
  }
}

.usa-search .usa-search-submit-text {
  display: none;
}

@media screen and (min-width: 481px) {
  .usa-search .usa-search-submit-text {
    display: block;
  }
}

@media screen and (min-width: 481px) {
  .usa-search.usa-search-big [type="search"],
  .usa-search.usa-search-big .usa-search-input {
    font-size: 1.7rem;
    height: 4.4rem;
    width: calc(100% - 11.6rem);
  }
  .usa-search.usa-search-big [type="submit"],
  .usa-search.usa-search-big .usa-search-submit {
    font-size: 2rem;
    height: 4.4rem;
    width: 11.6rem;
  }
}

@media screen and (min-width: 481px) {
  .usa-search.usa-search-small [type="search"],
  .usa-search.usa-search-small .usa-search-input {
    width: calc(100% - 4.5rem);
  }
  .usa-search.usa-search-small [type="submit"],
  .usa-search.usa-search-small .usa-search-submit {
    background-image: url("../img/search.png");
    background-image: url("../img/search.svg");
    background-position: 50%;
    background-repeat: no-repeat;
    width: 4.5rem;
  }
}

@media screen and (max-width: 950px) {
  .usa-search.usa-search-small.usa-sr-only {
    left: auto;
    position: relative;
  }
}

.opioid-programs header {
  padding-bottom: 3rem;
}

.opioid-programs header .usa-button {
  margin-top: 20px;
}

.opioid-programs .programs-state {
  border-left: 1px solid #0071bc;
  padding: 25px;
  margin-left: 16px;
  position: relative;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  display: block;
}

@media screen and (min-width: 600px) {
  .opioid-programs .programs-state {
    display: -ms-flexbox;
    display: flex;
  }
}

.opioid-programs .programs-state:first {
  margin-top: 3rem;
}

.opioid-programs .programs-state:after {
  content: '';
  width: 95%;
  border-bottom: 1px solid #d6d7d9;
  position: absolute;
  left: 26px;
  bottom: 0;
  display: block;
}

.opioid-programs .programs-state h3 {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 0;
  padding: 0;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .opioid-programs .programs-state h3 {
    width: 25%;
  }
}

.opioid-programs .programs-state--abbr {
  background-color: #0071bc;
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  letter-spacing: -1px;
  text-transform: uppercase;
  position: absolute;
  left: -17px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 18px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.opioid-programs .programs-state ul {
  display: inline-block;
  vertical-align: middle;
  padding: 0 0 0 20px;
  margin: 15px 0 0 0;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .opioid-programs .programs-state ul {
    width: 75%;
    margin-top: 0;
  }
}

.opioid-programs--selected {
  background-color: #fad980;
}

.opioid-programs--map-star {
  max-width: none;
  width: 10px;
}

.opioid-programs-select .select-wrapper {
  background-color: #f1f1f1;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-align: center;
      align-items: center;
  margin: 10px 0;
  padding: 10px;
}

.opioid-programs-select .form-item-state {
  width: 85%;
  padding: 0 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.opioid-programs-select .form-item-state label {
  display: none;
}

@media screen and (min-width: 600px) {
  .opioid-programs-select .form-item-state label {
    max-width: none;
    padding: 0 10px;
    margin: 0;
    width: 35%;
    min-width: 180px;
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
  }
  .opioid-programs-select .form-item-state select {
    display: inline-block;
    width: 65%;
  }
}

.opioid-programs-select .form-submit {
  width: 15%;
  min-width: 120px;
  margin: 5px;
}

.opioid-programs--node h1 {
  font-size: 3rem;
  margin: 40px 0 20px;
  border-bottom: 4px solid #f1f1f1;
}

.opioid-programs--node .embedded-entity {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .opioid-programs--node .embedded-entity {
    width: 46%;
  }
}

.home-topics-session {
  width: 100%;
  height: 490px;
  padding-bottom: 20px;
}

.home-topic-outter-box {
  width: 98%;
  height: 376px;
  background-color: #f1f1f1;
  border: 1px solid darkgray;
  border-bottom: 10px solid white;
}

.home-topic-container {
  position: relative;
  text-align: center;
  color: black;
  background-color: white;
  width: 100%;
  height: auto;
}

.home-topic-top-left {
  position: absolute;
  top: 20px;
  color: #ffffff;
  background-color: #0071bc;
  width: auto;
  padding-right: 7px;
  padding-left: 7px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 11px;
}

.home-topic-bottom {
  position: absolute;
  bottom: 0px;
  width: 100%;
  min-height: 65px;
  text-align: left;
  font-size: 1.8rem;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  background: black;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
}

.home-topic-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.home-topic-description {
  text-align: left;
  padding-left: 20px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 12px;
  width: 100%;
  height: 100px;
  background-color: #f1f1f1;
  font-size: 14px;
  color: #212121;
}

.home-topic-button {
  width: 100%;
  background-color: #0071bc;
  text-align: center;
}

.home-news-release-usda-latest-header {
  width: 100%;
  color: #ffffff;
  border-bottom: 3px solid #0e8ed3;
  text-align: left;
}

.home-news-release-date-image {
  height: 20px;
  text-align: left;
  vertical-align: middle;
  border-radius: 50%;
  right-padding: 2px;
}

.home-news-release-date {
  height: 40px;
  text-align: right;
  padding: 2px;
  vertical-align: middle;
  opacity: 0.5;
  filter: alpha(opacity=50);
  color: #ffffff;
}

.home-news-release-title {
  height: 60px;
  text-align: left;
  font-size: 14px;
}

.home-news-release-title a:link {
  text-decoration: underline;
}

.home-news-release-body {
  height: 130px;
  text-align: left;
  color: #ffffff;
  font-size: 13px;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.home-news-release-background {
  background-image: url("/sites/default/files/home-news-release-background.jpg");
  object-fit: cover;
}

.home-news-release-background-transbox {
  background-color: #0071bc;
  border: 1px solid black;
  opacity: 0.95;
  filter: alpha(opacity=95);
  width: 100%;
  height: 100%;
}

.home-flickr-photo-circle {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 6px solid #d1d1d3;
}

.home-blog-container {
  position: relative;
  text-align: left;
  color: black;
  background-color: white;
  height: auto;
}

.home-blog-top-left {
  position: absolute;
  top: 10px;
  background-color: #0071bc;
  font-size: 11px;
  padding-right: 7px;
  padding-left: 7px;
  padding-top: 2px;
  padding-bottom: 2px;
  width: 42px;
  height: 16px;
  background-color: #0071bc;
  color: #ffffff;
}

.home-blog-title {
  position: relative;
  font-size: 14px;
  padding-right: 5px;
  padding-left: 7px;
  padding-top: 2px;
  padding-bottom: 2px;
  width: 100%;
  margin-top: 0px;
  color: #212121;
  height: 72px;
}

.home-blog-background {
  background-image: url("/sites/default/files/home-blog-background.jpg");
  object-fit: cover;
}

.home-blog-background-transbox {
  background-color: #0071bc;
  border: 1px solid black;
  opacity: 0.95;
  filter: alpha(opacity=95);
  width: 100%;
  height: 100%;
}

.home-blog-usda-latest-link {
  color: #000000;
  text-decoration: none;
}

.home-blog-usda-latest-link:visited {
  color: #000000;
}

.home-blog-blog-usda-latest-link:hover {
  color: #000000;
  text-decoration: underline;
}

.home-tell-us-caption {
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 345px;
  height: 146px;
  border-radius: 8px;
  box-shadow: 0 2px 22px 1px rgba(0, 0, 0, 0.24);
  background-color: #ffffff;
  color: #212121;
}

.home-tell-us-caption a:link {
  text-decoration: none;
}

.home-tell-us-caption-title-line {
  width: 96%;
  height: 14px;
  padding-top: 5px;
  border-bottom: 3px solid #979797;
  text-align: center;
  color: #0071bc;
}

.home-tell-us-caption-title {
  font-size: 28px;
  color: #0071bc;
  background-color: #ffffff;
  padding-top: 2px;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 2px;
  position: absolute;
  left: 28.5%;
  top: 2px;
}

.home-tell-us-caption-description {
  font-size: 13px;
  text-align: center;
  color: #212121;
  padding: 20px 34px 10px 20px;
  color: #212121;
}

.slick-prev:before {
  color: black;
  background-color: black;
  border-radius: 70%;
  border-color: white;
}

.slick-next:before {
  color: black;
  background-color: black;
  border-radius: 70%;
  border-color: white;
}

.slick-dotted.slick-slider {
  margin-bottom: 5px;
  height: 450px;
}

.slick-dots {
  padding-bottom: 20px;
}

.home-i-am-looking-for {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.home-i-am-looking-for::after {
  clear: both;
  content: "";
  display: block;
}

.home-i-am-looking-for h2 {
  float: left;
  color: #0071bc;
  margin: .5em 0;
  width: 200px;
}

@media screen and (min-width: 600px) {
  .home-i-am-looking-for h2 {
    margin: 1em 0;
  }
}

.home-i-am-looking-for h2 > label {
  max-width: inherit;
  margin-top: 0;
  text-align: center;
  color: #0071bc;
  height: 24px;
}

.home-i-am-looking-for select {
  clear: left;
  float: left;
  width: 380px;
  height: 42px;
  background-color: #ffffff;
  color: #1b1c1a;
}

@media screen and (max-width: 599px) {
  .home-i-am-looking-for select {
    width: 100% !important;
    margin-bottom: 1em;
  }
}

@media screen and (min-width: 600px) {
  .home-i-am-looking-for select {
    clear: none;
    margin: 1em 0 1em 1em;
  }
}

/* customized 5 columns that is not uswds standard */
@media screen and (min-width: 600px) {
  .usda-width-one-whole {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 100%;
  }
  .usda-width-one-whole:last-child {
    margin-right: 0;
  }
  .usda-width-one-half {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 47.58542%;
  }
  .usda-width-one-half:last-child {
    margin-right: 0;
  }
  .usda-width-one-third {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 30.11389%;
  }
  .usda-width-one-third:last-child {
    margin-right: 0;
  }
  .usda-width-two-thirds {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 65.05695%;
  }
  .usda-width-two-thirds:last-child {
    margin-right: 0;
  }
  /* -fourth 1 */
  .usda-width-one-fourth {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 47.58542%;
  }
  .usda-width-one-fourth:last-child {
    margin-right: 0;
  }
  .usda-width-one-fourth:nth-child(2n) {
    margin-right: 0;
  }
  .usda-width-three-fourths {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 100%;
  }
  .usda-width-three-fourths:last-child {
    margin-right: 0;
  }
  /* one-fifth 1 , wider column */
  .usda-width-one-fifth {
    float: left;
    display: block;
    /*
    margin-right: 4.82916%;
    width: 47.58542%;
    */
    margin-right: 3%;
    width: 47%;
  }
  .usda-width-one-fifth:last-child {
    margin-right: 0;
  }
  .usda-width-one-fifth:nth-child(2n) {
    margin-right: 0;
  }
  .usda-width-three-fifths {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 100%;
  }
  .usda-width-three-fifths:last-child {
    margin-right: 0;
  }
  .usda-width-one-sixth {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 30.11389%;
  }
  .usda-width-one-sixth:last-child {
    margin-right: 0;
  }
  .usda-width-one-sixth:nth-child(3n) {
    margin-right: 0;
  }
  .usda-width-five-sixths {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 65.05695%;
  }
  .usda-width-five-sixths:last-child {
    margin-right: 0;
  }
  .usda-width-one-twelfth {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 30.11389%;
  }
  .usda-width-one-twelfth:last-child {
    margin-right: 0;
  }
  .usda-width-one-twelfth:nth-child(3n) {
    margin-right: 0;
  }
  .usda-width-five-twelfths {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 30.11389%;
  }
  .usda-width-five-twelfths:last-child {
    margin-right: 0;
  }
  .usda-width-seven-twelfths {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 65.05695%;
  }
  .usda-width-seven-twelfths:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 1201px) {
  .usda-width-one-whole {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .usda-width-one-whole:last-child {
    margin-right: 0;
  }
  .usda-width-one-half {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  .usda-width-one-half:last-child {
    margin-right: 0;
  }
  .usda-width-one-third {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
  }
  .usda-width-one-third:last-child {
    margin-right: 0;
  }
  .usda-width-two-thirds {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 65.88078%;
  }
  .usda-width-two-thirds:last-child {
    margin-right: 0;
  }
  /* four 2 */
  .usda-width-one-fourth {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
  }
  .usda-width-one-fourth:last-child {
    margin-right: 0;
  }
  .usda-width-one-fourth:nth-child(2n) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
  }
  .usda-width-one-fourth:nth-child(2n):last-child {
    margin-right: 0;
  }
  .usda-width-one-fourth:nth-child(4n) {
    margin-right: 0;
  }
  .usda-width-three-fourths {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 74.41059%;
  }
  .usda-width-three-fourths:last-child {
    margin-right: 0;
  }
  .usda-width-one-fourth {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
  }
  .usda-width-one-fourth:last-child {
    margin-right: 0;
  }
  .usda-width-one-fourth:nth-child(2n) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
  }
  .usda-width-one-fourth:nth-child(2n):last-child {
    margin-right: 0;
  }
  .usda-width-one-fourth:nth-child(4n) {
    margin-right: 0;
  }
  .usda-width-three-fourths {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 74.41059%;
  }
  .usda-width-three-fourths:last-child {
    margin-right: 0;
  }
  /* one-fifth2 - list five */
  .usda-width-one-fifth {
    float: left;
    display: block;
    /*margin-right: 2.35765%;
    width: 23.23176%;*/
    margin-right: 1%;
    width: 19%;
  }
  .usda-width-one-fifth:last-child {
    margin-right: 0;
    margin-left: 1%;
    /* new last child of the 5 */
  }
  /* every 2nd child of the five */
  .usda-width-one-fifth:nth-child(2n) {
    float: left;
    display: block;
    /*margin-right: 2.35765%;
    width: 23.23176%;*/
    margin-right: 1%;
    width: 19%;
  }
  .usda-width-one-fifth:nth-child(2n):last-child {
    margin-right: 0;
  }
  .usda-width-one-fifth:nth-child(4n) {
    margin-right: 0;
  }
  .usda-width-three-fifths {
    float: left;
    display: block;
    /*margin-right: 2.35765%;
    width: 74.41059%;*/
    margin-right: 1.5%;
    width: 60%;
  }
  .usda-width-three-fifths:last-child {
    margin-right: 0;
  }
  .usda-width-one-sixth {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 14.70196%;
  }
  .usda-width-one-sixth:last-child {
    margin-right: 0;
  }
  .usda-width-one-sixth:nth-child(3n) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 14.70196%;
  }
  .usda-width-one-sixth:nth-child(3n):last-child {
    margin-right: 0;
  }
  .usda-width-one-sixth:nth-child(6n) {
    margin-right: 0;
  }
  .usda-width-five-sixths {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 82.94039%;
  }
  .usda-width-five-sixths:last-child {
    margin-right: 0;
  }
  .usda-width-one-twelfth {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 6.17215%;
  }
  .usda-width-one-twelfth:last-child {
    margin-right: 0;
  }
  .usda-width-one-twelfth:nth-child(3n) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 6.17215%;
  }
  .usda-width-one-twelfth:nth-child(3n):last-child {
    margin-right: 0;
  }
  .usda-width-one-twelfth:nth-child(12n) {
    margin-right: 0;
  }
  .usda-width-five-twelfths {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 40.29137%;
  }
  .usda-width-five-twelfths:last-child {
    margin-right: 0;
  }
  .usda-width-seven-twelfths {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 57.35098%;
  }
  .usda-width-seven-twelfths:last-child {
    margin-right: 0;
  }
}

/* usda 2 --------------------------------------------------- */
.usda-width-one-whole:first-child > :first-child,
.usda-width-one-half:first-child > :first-child,
.usda-width-one-third:first-child > :first-child,
.usda-width-two-thirds:first-child > :first-child,
.usda-width-one-fourth:first-child > :first-child,
.usda-width-three-fourths:first-child > :first-child,
.usda-width-one-fifth:first-child > :first-child,
.usda-width-three-fifths:first-child > :first-child,
.usda-width-one-sixth:first-child > :first-child,
.usda-width-five-sixths:first-child > :first-child,
.usda-width-one-twelfth:first-child > :first-child {
  margin-top: 0;
}

@media screen and (min-width: 600px) {
  .usda-width-one-whole > :first-child,
  .usda-width-one-half > :first-child,
  .usda-width-one-third > :first-child,
  .usda-width-two-thirds > :first-child,
  .usda-width-one-fourth > :first-child,
  .usda-width-three-fourths > :first-child,
  .usda-width-one-fifth > :first-child,
  .usda-width-three-fifths > :first-child,
  .usda-width-one-sixth > :first-child,
  .usda-width-five-sixths > :first-child,
  .usda-width-one-twelfth > :first-child {
    margin-top: 0;
  }
}

.usda-width-one-whole:last-child > :last-child,
.usda-width-one-half:last-child > :last-child,
.usda-width-one-third:last-child > :last-child,
.usda-width-two-thirds:last-child > :last-child,
.usda-width-one-fourth:last-child > :last-child,
.usda-width-three-fourths:last-child > :last-child,
.usda-width-one-fifth:last-child > :last-child,
.usda-width-three-fifths:last-child > :last-child,
.usda-width-one-sixth:last-child > :last-child,
.usda-width-five-sixths:last-child > :last-child,
.usda-width-one-twelfth:last-child > :last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 600px) {
  .usda-width-one-whole > :last-child,
  .usda-width-one-half > :last-child,
  .usda-width-one-third > :last-child,
  .usda-width-two-thirds > :last-child,
  .usda-width-one-fourth > :last-child,
  .usda-width-three-fourths > :last-child,
  .usda-width-one-fifth > :last-child,
  .usda-width-three-fifths > :last-child,
  .usda-width-one-sixth > :last-child,
  .usda-width-five-sixths > :last-child,
  .usda-width-one-twelfth > :last-child {
    margin-bottom: 0;
  }
}

/*
.usa-layout-docs .usa-grid > :first-child:not(.usda-width-*) {
  margin-top: 0;
}

.usa-layout-docs .usa-grid > :last-child:not(.usda-width-*) {
  margin-bottom: 0;
}

*/
.iframe-pdfs-container {
  overflow: hidden;
  padding-top: 125%;
  position: relative;
}

.iframe-pdfs-container iframe {
  border: 2px solid #696969;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.ckeditor-accordion-container > dl {
  position: relative;
  border: 1px solid #0071bc;
  border-radius: 0.3rem;
}

.ckeditor-accordion-container > dl dt > a {
  border-bottom: 1px solid #0071bc;
  background-color: #0071bc !important;
  text-decoration: none;
  margin-bottom: 1px;
}

.ckeditor-accordion-container > dl dt:last-of-type > a {
  margin-bottom: 0px;
}

.ckeditor-accordion-container > dl dt.active > a {
  background-color: #ffffff !important;
  border-color: #0071bc;
  color: #0071bc !important;
}

.ckeditor-accordion-container > dl dt > a:hover {
  background-color: #ffffff !important;
  color: #0071bc !important;
}

.ckeditor-accordion-container [href]:focus {
  outline: none;
  outline-offset: 0;
}

.ckeditor-accordion-container > dl dt.active > a > .ckeditor-accordion-toggle::before {
  background-color: #0071bc !important;
}

.ckeditor-accordion-container > dl dt.active > a > .ckeditor-accordion-toggle::after {
  background-color: #0071bc !important;
}

a.hotline-submit-compliant-btn {
  display: block;
  width: 70%;
  background-color: #FF0000;
  color: white;
  padding: 14px;
  cursor: pointer;
  text-align: center;
  margin: auto;
  margin-top: 50px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 3rem;
  text-decoration: none;
  border-radius: 0.3rem;
}

a.hotline-submit-compliant-btn:hover {
  color: #FF3300;
  background-color: white;
  border-color: #FF3300;
  border-style: solid;
  border-width: medium;
}

#block-whistleblowersideimages img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

a.wpc-bottom-links {
  display: block;
  width: 100%;
  height: auto;
  background-color: #0071bc;
  color: white;
  padding: 14px;
  cursor: pointer;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  border-radius: 0.3rem;
  margin-bottom: 1px;
}

a.wpc-bottom-links:hover {
  color: #0071bc;
  background-color: white;
  border-color: #0071bc;
  border-style: solid;
  border-width: thin;
}

.make-red {
  color: #ef0000;
}

.make-centered {
  margin-right: auto;
  margin-left: auto;
}

.usa-jobs {
  width: 100%;
}

@media screen and (min-width: 800px) {
  .usa-jobs {
    width: 55%;
  }
}

.usa-jobs .usa-button-big {
  width: 100%;
}

.page-node-type-audit-report .pc-tab > input,
.page-node-type-audit-report .pc-tab section > div {
  display: none;
}

.page-node-type-audit-report #tab1:checked ~ section .tab1,
.page-node-type-audit-report #tab2:checked ~ section .tab2 {
  display: block;
}

.page-node-type-audit-report #tab1:checked ~ nav .tab1,
.page-node-type-audit-report #tab2:checked ~ nav .tab2 {
  /* color: red; */
}

.page-node-type-audit-report .pc-tab {
  width: 100%;
  margin: -30px auto 0;
}

.page-node-type-audit-report .pc-tab ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-node-type-audit-report .pc-tab ul li label {
  float: left;
  padding: 15px 25px;
  border: 1px solid #ddd;
  border-bottom: 0;
  background: #ddd;
  cursor: pointer;
  /* color: #444; */
}

.page-node-type-audit-report .pc-tab ul li label:hover {
  /* background: $unactiveHoverColor; */
}

.page-node-type-audit-report .pc-tab ul li label:active {
  background: #0071bc;
  color: #fff;
}

.page-node-type-audit-report .pc-tab ul li:not(:last-child) label {
  border-right-width: 0;
}

.page-node-type-audit-report .pc-tab section {
  clear: both;
}

.page-node-type-audit-report .pc-tab section ul {
  list-style: initial;
  padding-left: 20px;
}

.page-node-type-audit-report .pc-tab section > div {
  padding: 20px;
  width: 100%;
  border: 1px solid #ddd;
  /* background: #fff;
            line-height: 1.5em;
            letter-spacing: 0.3px;
            color: #444; */
}

.page-node-type-audit-report .pc-tab section > div h2 {
  /* margin: 0;
                letter-spacing: 1px;
                color: #34495e; */
}

.page-node-type-audit-report #tab1:checked ~ nav .tab1 label,
.page-node-type-audit-report #tab2:checked ~ nav .tab2 label {
  background: #0071bc;
  color: #fff;
  position: relative;
}

.page-node-type-audit-report #tab1:checked ~ nav .tab1 label:after,
.page-node-type-audit-report #tab2:checked ~ nav .tab2 label:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #0071bc;
  left: 0;
  bottom: -1px;
}

.page-node-type-audit-report .views-field-field-radio-mp3-file ul {
  list-style: none;
  padding-left: 0;
}

.page-node-type-audit-report .views-field-field-radio-mp3-file audio,
.page-node-type-audit-report .views-field-field-radio-mp3-file canvas,
.page-node-type-audit-report .views-field-field-radio-mp3-file progress,
.page-node-type-audit-report .views-field-field-radio-mp3-file video {
  margin: 0;
  padding: 0;
  width: 100%;
}

.page-node-type-audit-report h1 {
  margin-bottom: 10px;
}

.page-node-type-audit-report h2 {
  margin-top: 20px;
}

.page-node-type-audit-report h3 {
  margin-top: 0;
}

.page-node-type-audit-report .audit-details {
  /* color: #5a5a5a; */
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 5px;
}

.page-node-type-audit-report .tab1 > div > div:first-of-type {
  display: none;
}

.path-oig label {
  margin-top: initial;
}

.path-oig .js-form-item {
  margin-right: 10px;
}

.path-oig .views-exposed-form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: end;
      align-items: end;
}

.path-oig select {
  min-width: 100px;
}

.path-oig h3 {
  margin-top: 15px;
}

.path-oig #views-exposed-form-audit-reports-page .views-exposed-form {
  -ms-flex-align: end;
      align-items: flex-end;
}

.path-oig #views-exposed-form-audit-reports-page button {
  margin: 0.2em 0;
}

.path-oig #views-exposed-form-audit-reports-page #edit-published-min--description {
  display: none;
}

.path-oig #views-exposed-form-audit-reports-page label {
  margin-top: initial;
  font-size: 1.1rem;
}

.path-oig #views-exposed-form-audit-reports-page #edit-actions {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin: 0.2em 0;
}

.path-oig #views-exposed-form-audit-reports-page #edit-submit-audit-reports {
  margin: 0;
}

.path-oig input, .path-oig textarea, .path-oig select {
  font-size: 1.1rem;
}

@media screen and (max-width: 950px) {
  .path-oig label {
    margin-top: initial;
  }
  .path-oig .js-form-item {
    width: 100%;
  }
  .path-oig .views-exposed-form {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .path-oig #views-exposed-form-audit-reports-page .views-exposed-form {
    -ms-flex-align: start;
        align-items: flex-start;
  }
  .path-oig #views-exposed-form-audit-reports-page button {
    margin: 0.2em 0;
  }
  .path-oig #views-exposed-form-audit-reports-page label {
    margin-top: initial;
    font-size: initial;
  }
  .path-oig #views-exposed-form-audit-reports-page #edit-actions {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin: 1.2em 0;
  }
  .path-oig #views-exposed-form-audit-reports-page #edit-submit-audit-reports {
    margin: 0;
  }
  .path-oig input, .path-oig textarea, .path-oig select {
    font-size: initial;
  }
}

.usa-search [type="submit"],
.usa-search .usa-search-submit {
  background-color: #205493;
}

.usa-search [type="submit"]:hover, .usa-search .usa-search-submit:hover {
  background-color: #112e51;
}

.usa-search [type="search"],
.usa-search .usa-search-input {
  border-color: #ffffff;
}

.usa-skipnav {
  background: transparent;
  color: #212121;
  left: 0;
  padding: 1rem 1.5rem;
  position: absolute;
  top: -4.2rem;
  transition: all 0.2s ease-in-out;
  z-index: 100;
}

.usa-skipnav:focus {
  background: #ffffff;
  left: 0;
  outline: 0;
  position: absolute;
  top: 0;
  transition: all 0.2s ease-in-out;
}

.visually-hidden {
  position: absolute;
  left: -999em;
}

.path-frontpage h1 {
  position: absolute;
  left: -999em;
}

.learn-more {
  text-transform: uppercase;
  color: #0071bc;
  font-weight: 700;
  text-decoration: none;
}

.learn-more:hover {
  color: #205493;
}

.learn-more::after {
  content: " ›";
  font-size: 1.3em;
  line-height: 1px;
}

.usda-social-media-wrapper {
  margin-top: 2rem;
  margin-bottom: 1rem;
  height: 35px;
}

.at-share-btn-elements {
  position: absolute;
}
