@charset "UTF-8";
/* ==========================================================================
   SAO DESIGN SYSTEM STYLES - MAIN STYLESHEET
   ========================================================================== */
/**
 * This is the main design system stylesheet but it can also function as a
 * template for projects that want to use the system SASS variables and mixins.
 *
 * If you are using this as a template, copy this file into your project and
 * update the system-core and system-utilities paths to point at the design
 * system project files. Import your components after the system-core import
 * and import your utilities after the system-utilities import.
 */
/* ==========================================================================
   SAO DESIGN SYSTEM STYLES - CORE
   ========================================================================== */
/**
 * Based off inuitcss, by @csswizardry (github.com/inuitcss)
 * extended for Washington State Auditors Office by Fellow (thinkfellow.com)
 */
/**
 * CONTENTS
 *
 * SETTINGS
 * Web fonts............Import Google Web fonts
 * Tokens...............Variables generated from src/tokens/tokens.js
 *
 * TOOLS
 * Font size............A mixin which guarantees baseline-friendly line-heights.
 * Clearfix.............Micro clearfix mixin.
 * Hidden...............Mixin for hiding elements.
 * Sass MQ..............Media query manager.
 *
 * GENERIC
 * Box-sizing...........Better default `box-sizing`.
 * Normalize.css........A level playing field using @necolas’ Normalize.css.
 * Reset................A tiny reset to complement Normalize.css.
 * Shared...............Sensibly and tersely share some global commonalities
 *                      (particularly useful when managing vertical rhythm).
 *
 * ELEMENTS
 * Page.................Set up our document’s default `font-size` and
 *                      `line-height`.
 * Typography...........Styling for headings, paragraphs, links, and inline text elements.
 *
 * OBJECTS
 * Form.................Forms, input groups, and labels.
 *
 * COMPONENTS
 * All components.......Individual component styles from the ../Components directory.
 */
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700|Roboto:400,500,700");
/* ==========================================================================
   #BOX-SIZING
   ========================================================================== */
/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  box-sizing: border-box; }

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

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Set to "button" to correct the inability to style clickable types in iOS and Safari.
 *    // "button" setting creates annoying border in Chrome that you cannot get rid of any other way.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/* ==========================================================================
   #RESET
   ========================================================================== */
/**
 * A very simple reset that sits on top of Normalize.css.
 */
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
  margin: 0;
  padding: 0; }

/**
  * Remove trailing margins from nested lists.
  */
li > ol,
li > ul {
  margin-bottom: 0; }

/**
  * Remove default table spacing.
  */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/**
  * 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
  *    on fieldsets.
  */
fieldset {
  min-width: 0;
  /* [1] */
  border: 0; }

/* ==========================================================================
   #SHARED
   ========================================================================== */
/**
 * Shared declarations for certain elements.
 */
/**
 * Always declare margins in the same direction:
 * csswizardry.com/2012/06/single-direction-margin-declarations
 */
address,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, ol, ul,
figure,
hr,
table,
fieldset {
  margin-bottom: 24px; }

/**
  * Consistent indentation for lists.
  */
dd, ol, ul {
  margin-left: 24px; }

button,
input,
optgroup,
select,
textarea {
  font-family: "Roboto", sans-serif; }

/* ==========================================================================
   #PAGE
   ========================================================================== */
/**
 * Simple page-level setup.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project,
 *    sourced from our default variables. The `font-size` is calculated to exist
 *    in ems, the `line-height` is calculated to exist unitlessly.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 */
html {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  /* [1] */
  line-height: 1.5;
  min-height: 100%;
  /* [3] */ }

/* ==========================================================================
   #TYPOGRAPHY
   ========================================================================== */
/**
 * Simple default styles for headings 1 through 6. Anything more opinionated
 * than simple font-size changes should likely be applied via classes (see:
 * http://csswizardry.com/2016/02/managing-typography-on-large-apps/).
 */
h1 {
  font-size: 56px;
  font-size: 3.5rem;
  line-height: 1.17857;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  color: #979693; }

h2 {
  font-size: 44px;
  font-size: 2.75rem;
  line-height: 1.22727;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  color: #979693; }

h3 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.28571;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  color: #979693; }

h4 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.36364;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  color: #979693; }

h5 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  color: #979693; }

h6 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  color: #979693; }

p {
  color: #444444; }

a {
  color: #026CA3;
  text-decoration: none; }
  a:hover, a:focus {
    text-decoration: underline; }

strong {
  font-weight: 700; }

em {
  font-style: italic; }

.o-form__field {
  margin-bottom: 24px; }

.o-form__label {
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  color: #979693;
  margin-bottom: 6px; }

.o-form--inline .o-form__field {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-column-gap: 24px; }

.o-form--inline .o-form__label {
  display: block;
  width: 200px;
  float: left;
  text-align: right; }

.o-form--inline .o-form__input {
  display: block;
  width: calc(100% - 200px - 24px);
  float: left;
  padding-bottom: 24px;
  padding-left: 24px;
  margin-left: 24px;
  border-left: 1px solid #BCBCBC; }

@supports (display: grid) {
  .o-form--inline .o-form__input {
    width: 100%;
    margin-left: 0; } }

.c-button {
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 6px 12px;
  border: 1px solid #979693;
  border-radius: 4px;
  background-color: #979693;
  font-weight: 700;
  cursor: pointer; }
  .c-button:hover, .c-button:focus {
    background-color: #FFFFFF;
    color: #979693;
    border-color: #979693; }

.c-button--primary {
  background-color: #026CA3;
  border-color: #026CA3;
  color: #FFFFFF; }
  .c-button--primary:hover, .c-button--primary:focus {
    color: #026CA3;
    border-color: #026CA3; }

.c-button--no-op {
  border-radius: 0;
  border: 0;
  background-color: #55AEE2;
  text-transform: none; }
  .c-button--no-op:hover, .c-button--no-op:focus {
    background-color: #026CA3;
    color: #FFFFFF; }

.c-button[disabled],
.c-button--disabled {
  color: #444444;
  background-color: #979693;
  border-color: #979693;
  cursor: default; }
  .c-button[disabled]:hover, .c-button[disabled]:focus,
  .c-button--disabled:hover,
  .c-button--disabled:focus {
    color: #444444;
    background-color: #979693; }

.c-checkbox__label {
  display: inline-block;
  font-weight: 500;
  vertical-align: middle;
  line-height: 18px; }
  .c-checkbox__label::before {
    content: " ";
    width: 18px;
    height: 18px;
    border: 1px solid #979693;
    background-color: #FFFFFF;
    color: #026CA3;
    margin-right: 6px;
    text-align: center;
    float: left; }

.c-checkbox__input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute; }

.c-checkbox__input:checked + .c-checkbox__label::before {
  content: "✔"; }

.c-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 6px 48px 6px 12px;
  background-color: #F4F6F2;
  background-image: url("/assets/images/dropdown-arrow.svg");
  background-repeat: no-repeat;
  background-position: right;
  border: 1px solid #F4F6F2;
  border-radius: 4px;
  width: 100%; }
  .c-dropdown:focus {
    border-color: #BCBCBC;
    outline: none; }
  .c-dropdown--inverted {
    color: #FFFFFF;
    background-color: #979693;
    border-color: #DAD9D7; }
  .c-dropdown::-ms-expand {
    display: none; }

@media screen and (min-width: 0\0) {
  .c-dropdown {
    background: none\9;
    padding: 5px\9; } }

.c-input {
  border: 1px solid #979693;
  width: 100%;
  display: block;
  border-radius: 2px;
  padding: 6px 12px; }
  .c-input:focus {
    box-shadow: 0px 0px 12px #3E49C3; }

.c-radio-button__label {
  display: inline-block;
  font-weight: 500;
  vertical-align: middle;
  line-height: 18px;
  position: relative; }
  .c-radio-button__label::before {
    content: " ";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #979693;
    background-color: #FFFFFF;
    float: left;
    margin-right: 6px; }

.c-radio-button__input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute; }

.c-radio-button__input:checked + .c-radio-button__label::after {
  content: " ";
  width: 10px;
  height: 10px;
  background-color: #026CA3;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px; }

/* Styles for slider */
/* Styles for Tab-bar */
/*
You can, and should, build custom headings for components as needed instead of relying on the generic styling.
Here is an example of custom typography treatment.
*/
.c-typography-example {
  margin-bottom: 24px;
  margin-left: 48px;
  padding-left: 24px;
  border-left: 2px solid #979693; }
  .c-typography-example__heading {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.36364;
    color: #4C9F83;
    text-transform: uppercase; }
  .c-typography-example__text {
    color: #979693;
    font-weight: 500; }

/* ==========================================================================
   SAO DESIGN SYSTEM STYLES - UTILITIES
   ========================================================================== */
/**
 * Utilities come last so they can most effectively override previously defined styles.
 */
/**
 * CONTENTS
 *
 * UTILITIES
 * Clearfix.............Bind our clearfix onto a utility class.
 * Headings.............Reassigning our heading styles to helper classes.
 * Spacings.............Nudge bits of the DOM around with these spacing
 *                      classes.
 * Print................Reset-like styles taken from the HTML5 Boilerplate.
 * Hide.................Helper classes to hide content
 */
/* ==========================================================================
   #CLEARFIX
   ========================================================================== */
/**
 * Attach our clearfix mixin to a utility class.
 */
.u-clearfix:after {
  content: "" !important;
  display: block !important;
  clear: both !important; }

/* ==========================================================================
   #COLORS
   ========================================================================== */
/**
 * Utility classes to apply design system colors onto an element.
 * Generates classes for each defined color value like so:
 *
 *      * .u-color-primary-base
 *      * .u-background-color-primary-base
 *      * .u-border-color-primary-base
 */
.u-color-primary-light {
  color: #5076DB !important; }

.u-color-primary-base {
  color: #3957AA !important; }

.u-color-primary-dark {
  color: #001E61 !important; }

.u-color-secondary-light {
  color: #55AEE2 !important; }

.u-color-secondary-base {
  color: #026CA3 !important; }

.u-color-secondary-dark {
  color: #014164 !important; }

.u-color-accent-blue {
  color: #B9D6E3 !important; }

.u-color-accent-orange {
  color: #FDDB8D !important; }

.u-color-accent-green {
  color: #959A14 !important; }

.u-color-accent-teal {
  color: #4C9F83 !important; }

.u-color-accent-indigo {
  color: #49346B !important; }

.u-color-neutral-white {
  color: #FFFFFF !important; }

.u-color-neutral-lightest {
  color: #F4F6F2 !important; }

.u-color-neutral-lighter {
  color: #DAD9D7 !important; }

.u-color-neutral-light {
  color: #BCBCBC !important; }

.u-color-neutral-base {
  color: #979693 !important; }

.u-color-neutral-dark {
  color: #81807E !important; }

.u-color-neutral-darker {
  color: #646464 !important; }

.u-color-neutral-darkest {
  color: #444444 !important; }

.u-color-status-okay {
  color: #A2D45E !important; }

.u-color-status-current {
  color: #A2D45E !important; }

.u-color-status-cautionary {
  color: #F6B333 !important; }

.u-color-status-historical {
  color: #F6B333 !important; }

.u-color-status-concerning {
  color: #E8702D !important; }

.u-color-status-projection {
  color: #E8702D !important; }

.u-color-status-changed {
  color: #F3E234 !important; }

.u-background-color-primary-light {
  background-color: #5076DB !important; }

.u-background-color-primary-base {
  background-color: #3957AA !important; }

.u-background-color-primary-dark {
  background-color: #001E61 !important; }

.u-background-color-secondary-light {
  background-color: #55AEE2 !important; }

.u-background-color-secondary-base {
  background-color: #026CA3 !important; }

.u-background-color-secondary-dark {
  background-color: #014164 !important; }

.u-background-color-accent-blue {
  background-color: #B9D6E3 !important; }

.u-background-color-accent-orange {
  background-color: #FDDB8D !important; }

.u-background-color-accent-green {
  background-color: #959A14 !important; }

.u-background-color-accent-teal {
  background-color: #4C9F83 !important; }

.u-background-color-accent-indigo {
  background-color: #49346B !important; }

.u-background-color-neutral-white {
  background-color: #FFFFFF !important; }

.u-background-color-neutral-lightest {
  background-color: #F4F6F2 !important; }

.u-background-color-neutral-lighter {
  background-color: #DAD9D7 !important; }

.u-background-color-neutral-light {
  background-color: #BCBCBC !important; }

.u-background-color-neutral-base {
  background-color: #979693 !important; }

.u-background-color-neutral-dark {
  background-color: #81807E !important; }

.u-background-color-neutral-darker {
  background-color: #646464 !important; }

.u-background-color-neutral-darkest {
  background-color: #444444 !important; }

.u-background-color-status-okay {
  background-color: #A2D45E !important; }

.u-background-color-status-current {
  background-color: #A2D45E !important; }

.u-background-color-status-cautionary {
  background-color: #F6B333 !important; }

.u-background-color-status-historical {
  background-color: #F6B333 !important; }

.u-background-color-status-concerning {
  background-color: #E8702D !important; }

.u-background-color-status-projection {
  background-color: #E8702D !important; }

.u-background-color-status-changed {
  background-color: #F3E234 !important; }

.u-border-color-primary-light {
  border-color: #5076DB !important; }

.u-border-color-primary-base {
  border-color: #3957AA !important; }

.u-border-color-primary-dark {
  border-color: #001E61 !important; }

.u-border-color-secondary-light {
  border-color: #55AEE2 !important; }

.u-border-color-secondary-base {
  border-color: #026CA3 !important; }

.u-border-color-secondary-dark {
  border-color: #014164 !important; }

.u-border-color-accent-blue {
  border-color: #B9D6E3 !important; }

.u-border-color-accent-orange {
  border-color: #FDDB8D !important; }

.u-border-color-accent-green {
  border-color: #959A14 !important; }

.u-border-color-accent-teal {
  border-color: #4C9F83 !important; }

.u-border-color-accent-indigo {
  border-color: #49346B !important; }

.u-border-color-neutral-white {
  border-color: #FFFFFF !important; }

.u-border-color-neutral-lightest {
  border-color: #F4F6F2 !important; }

.u-border-color-neutral-lighter {
  border-color: #DAD9D7 !important; }

.u-border-color-neutral-light {
  border-color: #BCBCBC !important; }

.u-border-color-neutral-base {
  border-color: #979693 !important; }

.u-border-color-neutral-dark {
  border-color: #81807E !important; }

.u-border-color-neutral-darker {
  border-color: #646464 !important; }

.u-border-color-neutral-darkest {
  border-color: #444444 !important; }

.u-border-color-status-okay {
  border-color: #A2D45E !important; }

.u-border-color-status-current {
  border-color: #A2D45E !important; }

.u-border-color-status-cautionary {
  border-color: #F6B333 !important; }

.u-border-color-status-historical {
  border-color: #F6B333 !important; }

.u-border-color-status-concerning {
  border-color: #E8702D !important; }

.u-border-color-status-projection {
  border-color: #E8702D !important; }

.u-border-color-status-changed {
  border-color: #F3E234 !important; }

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
/**
 * Redefine all of our basic heading styles against utility classes so as to
 * allow for double stranded heading hierarchy, e.g. we semantically need an H2,
 * but we want it to be sized like an H1:
 *
 *   <h2 class="u-h1"></h2>
 *
 */
.u-h1 {
  font-size: 56px !important;
  font-size: 3.5rem !important;
  line-height: 1.17857 !important; }

.u-h2 {
  font-size: 44px !important;
  font-size: 2.75rem !important;
  line-height: 1.22727 !important; }

.u-h3 {
  font-size: 28px !important;
  font-size: 1.75rem !important;
  line-height: 1.28571 !important; }

.u-h4 {
  font-size: 22px !important;
  font-size: 1.375rem !important;
  line-height: 1.36364 !important; }

.u-h5 {
  font-size: 20px !important;
  font-size: 1.25rem !important;
  line-height: 1.5 !important; }

.u-h6 {
  font-size: 16px !important;
  font-size: 1rem !important;
  line-height: 1.5 !important; }

.u-small {
  font-size: 14px !important;
  font-size: 0.875rem !important;
  line-height: 1.71429 !important; }

.u-tiny {
  font-size: 12px !important;
  font-size: 0.75rem !important;
  line-height: 1.5 !important; }

/* ==========================================================================
   #SPACINGS
   ========================================================================== */
/**
 * Utility classes to put specific spacing values onto elements. The below loop
 * will generate us a suite of classes like:
 *
 *   .u-margin-top {}
 *   .u-padding-left-large {}
 *   .u-margin-right-small {}
 *   .u-padding {}
 *   .u-padding-right-none {}
 *   .u-padding-horizontal {}
 *   .u-padding-vertical-small {}
 */
.u-padding {
  padding: 24px !important; }

.u-padding-tiny {
  padding: 6px !important; }

.u-padding-small {
  padding: 12px !important; }

.u-padding-large {
  padding: 48px !important; }

.u-padding-huge {
  padding: 96px !important; }

.u-padding-none {
  padding: 0 !important; }

.u-padding-top {
  padding-top: 24px !important; }

.u-padding-top-tiny {
  padding-top: 6px !important; }

.u-padding-top-small {
  padding-top: 12px !important; }

.u-padding-top-large {
  padding-top: 48px !important; }

.u-padding-top-huge {
  padding-top: 96px !important; }

.u-padding-top-none {
  padding-top: 0 !important; }

.u-padding-right {
  padding-right: 24px !important; }

.u-padding-right-tiny {
  padding-right: 6px !important; }

.u-padding-right-small {
  padding-right: 12px !important; }

.u-padding-right-large {
  padding-right: 48px !important; }

.u-padding-right-huge {
  padding-right: 96px !important; }

.u-padding-right-none {
  padding-right: 0 !important; }

.u-padding-bottom {
  padding-bottom: 24px !important; }

.u-padding-bottom-tiny {
  padding-bottom: 6px !important; }

.u-padding-bottom-small {
  padding-bottom: 12px !important; }

.u-padding-bottom-large {
  padding-bottom: 48px !important; }

.u-padding-bottom-huge {
  padding-bottom: 96px !important; }

.u-padding-bottom-none {
  padding-bottom: 0 !important; }

.u-padding-left {
  padding-left: 24px !important; }

.u-padding-left-tiny {
  padding-left: 6px !important; }

.u-padding-left-small {
  padding-left: 12px !important; }

.u-padding-left-large {
  padding-left: 48px !important; }

.u-padding-left-huge {
  padding-left: 96px !important; }

.u-padding-left-none {
  padding-left: 0 !important; }

.u-padding-horizontal {
  padding-left: 24px !important;
  padding-right: 24px !important; }

.u-padding-horizontal-tiny {
  padding-left: 6px !important;
  padding-right: 6px !important; }

.u-padding-horizontal-small {
  padding-left: 12px !important;
  padding-right: 12px !important; }

.u-padding-horizontal-large {
  padding-left: 48px !important;
  padding-right: 48px !important; }

.u-padding-horizontal-huge {
  padding-left: 96px !important;
  padding-right: 96px !important; }

.u-padding-horizontal-none {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.u-padding-vertical {
  padding-top: 24px !important;
  padding-bottom: 24px !important; }

.u-padding-vertical-tiny {
  padding-top: 6px !important;
  padding-bottom: 6px !important; }

.u-padding-vertical-small {
  padding-top: 12px !important;
  padding-bottom: 12px !important; }

.u-padding-vertical-large {
  padding-top: 48px !important;
  padding-bottom: 48px !important; }

.u-padding-vertical-huge {
  padding-top: 96px !important;
  padding-bottom: 96px !important; }

.u-padding-vertical-none {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.u-margin {
  margin: 24px !important; }

.u-margin-tiny {
  margin: 6px !important; }

.u-margin-small {
  margin: 12px !important; }

.u-margin-large {
  margin: 48px !important; }

.u-margin-huge {
  margin: 96px !important; }

.u-margin-none {
  margin: 0 !important; }

.u-margin-top {
  margin-top: 24px !important; }

.u-margin-top-tiny {
  margin-top: 6px !important; }

.u-margin-top-small {
  margin-top: 12px !important; }

.u-margin-top-large {
  margin-top: 48px !important; }

.u-margin-top-huge {
  margin-top: 96px !important; }

.u-margin-top-none {
  margin-top: 0 !important; }

.u-margin-right {
  margin-right: 24px !important; }

.u-margin-right-tiny {
  margin-right: 6px !important; }

.u-margin-right-small {
  margin-right: 12px !important; }

.u-margin-right-large {
  margin-right: 48px !important; }

.u-margin-right-huge {
  margin-right: 96px !important; }

.u-margin-right-none {
  margin-right: 0 !important; }

.u-margin-bottom {
  margin-bottom: 24px !important; }

.u-margin-bottom-tiny {
  margin-bottom: 6px !important; }

.u-margin-bottom-small {
  margin-bottom: 12px !important; }

.u-margin-bottom-large {
  margin-bottom: 48px !important; }

.u-margin-bottom-huge {
  margin-bottom: 96px !important; }

.u-margin-bottom-none {
  margin-bottom: 0 !important; }

.u-margin-left {
  margin-left: 24px !important; }

.u-margin-left-tiny {
  margin-left: 6px !important; }

.u-margin-left-small {
  margin-left: 12px !important; }

.u-margin-left-large {
  margin-left: 48px !important; }

.u-margin-left-huge {
  margin-left: 96px !important; }

.u-margin-left-none {
  margin-left: 0 !important; }

.u-margin-horizontal {
  margin-left: 24px !important;
  margin-right: 24px !important; }

.u-margin-horizontal-tiny {
  margin-left: 6px !important;
  margin-right: 6px !important; }

.u-margin-horizontal-small {
  margin-left: 12px !important;
  margin-right: 12px !important; }

.u-margin-horizontal-large {
  margin-left: 48px !important;
  margin-right: 48px !important; }

.u-margin-horizontal-huge {
  margin-left: 96px !important;
  margin-right: 96px !important; }

.u-margin-horizontal-none {
  margin-left: 0 !important;
  margin-right: 0 !important; }

.u-margin-vertical {
  margin-top: 24px !important;
  margin-bottom: 24px !important; }

.u-margin-vertical-tiny {
  margin-top: 6px !important;
  margin-bottom: 6px !important; }

.u-margin-vertical-small {
  margin-top: 12px !important;
  margin-bottom: 12px !important; }

.u-margin-vertical-large {
  margin-top: 48px !important;
  margin-bottom: 48px !important; }

.u-margin-vertical-huge {
  margin-top: 96px !important;
  margin-bottom: 96px !important; }

.u-margin-vertical-none {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

/* ==========================================================================
   #PRINT
   ========================================================================== */
/**
 * Very crude, reset-like styles taken from the HTML5 Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/5.3.0/dist/doc/css.md#print-styles
 * https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css#L205-L282
 */
@media print {
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  /**
   * Don’t show links that are fragment identifiers, or use the `javascript:`
   * pseudo protocol.
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  /**
   * Printing Tables: http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  /**
   * Print utilities
   */
  .u-hidden-print {
    display: none !important; } }

@media screen {
  .u-display-print {
    display: none !important; } }

/* ==========================================================================
   #HIDE
   ========================================================================== */
/**
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.u-hidden-visually {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important; }

/**
 * Hide visually and from screen readers.
 */
.u-hidden {
  display: none !important; }

/* ==========================================================================
   #TYPOGRAPHY
   ========================================================================== */
/**
 * Miscellaneous typography utilities
 *
 */
.u-text-align-center {
  text-align: center !important; }

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

.u-text-align-left {
  text-align: left !important; }

.u-text-transform-none {
  text-transform: none !important; }

.u-text-transform-uppercase {
  text-transform: uppercase !important; }
