﻿@charset "UTF-8";
/*! uswds @version */
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;
}

/*njohnson5817*/
/*added njohnson 04/18/17*/
/*$font-path:   '../fonts' !default;
$image-path:  '../images' !default;*/
/* stylelint-disable at-rule-empty-line-before */
@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");
}
@font-face {
  font-family: "Source Sans Pro Bold";
  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");
}
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/merriweather-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/merriweather-light-webfont.woff2") format("woff2"), url("../fonts/merriweather-light-webfont.woff") format("woff"), url("../fonts/merriweather-light-webfont.ttf") format("truetype");
}
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/merriweather-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/merriweather-regular-webfont.woff2") format("woff2"), url("../fonts/merriweather-regular-webfont.woff") format("woff"), url("../fonts/merriweather-regular-webfont.ttf") format("truetype");
}
@font-face {
  font-family: "Merriweather";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/merriweather-italic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/merriweather-italic-webfont.woff2") format("woff2"), url("../fonts/merriweather-italic-webfont.woff") format("woff"), url("../fonts/merriweather-italic-webfont.ttf") format("truetype");
}
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/merriweather-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/merriweather-bold-webfont.woff2") format("woff2"), url("../fonts/merriweather-bold-webfont.woff") format("woff"), url("../fonts/merriweather-bold-webfont.ttf") format("truetype");
}
/* stylelint-enable */
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  background-color: #ffffff;
  overflow-x: hidden;
}

.lt-ie9 * {
  filter: none !important; /* stylelint-disable-line declaration-no-important */
}

[hidden] {
  display: none !important; /* stylelint-disable-line declaration-no-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: 600px) {
  .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.8291588071%;
    width: 100%;
  }
  .usa-width-one-whole:last-child {
    margin-right: 0;
  }
  .usa-width-one-half {
    float: left;
    display: block;
    margin-right: 4.8291588071%;
    width: 47.5854205965%;
  }
  .usa-width-one-half:last-child {
    margin-right: 0;
  }
  .usa-width-one-third {
    float: left;
    display: block;
    margin-right: 4.8291588071%;
    width: 30.1138941286%;
  }
  .usa-width-one-third:last-child {
    margin-right: 0;
  }
  .usa-width-two-thirds {
    float: left;
    display: block;
    margin-right: 4.8291588071%;
    width: 65.0569470643%;
  }
  .usa-width-two-thirds:last-child {
    margin-right: 0;
  }
  .usa-width-one-fourth {
    float: left;
    display: block;
    margin-right: 4.8291588071%;
    width: 47.5854205965%;
  }
  .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.8291588071%;
    width: 100%;
  }
  .usa-width-three-fourths:last-child {
    margin-right: 0;
  }
  .usa-width-one-sixth {
    float: left;
    display: block;
    margin-right: 4.8291588071%;
    width: 30.1138941286%;
  }
  .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.8291588071%;
    width: 65.0569470643%;
  }
  .usa-width-five-sixths:last-child {
    margin-right: 0;
  }
  .usa-width-one-twelfth {
    float: left;
    display: block;
    margin-right: 4.8291588071%;
    width: 30.1138941286%;
  }
  .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.8291588071%;
    width: 30.1138941286%;
  }
  .usa-width-five-twelfths:last-child {
    margin-right: 0;
  }
  .usa-width-seven-twelfths {
    float: left;
    display: block;
    margin-right: 4.8291588071%;
    width: 65.0569470643%;
  }
  .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.3576520234%;
    width: 100%;
  }
  .usa-width-one-whole:last-child {
    margin-right: 0;
  }
  .usa-width-one-half {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 48.8211739883%;
  }
  .usa-width-one-half:last-child {
    margin-right: 0;
  }
  .usa-width-one-third {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 31.7615653177%;
  }
  .usa-width-one-third:last-child {
    margin-right: 0;
  }
  .usa-width-two-thirds {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 65.8807826589%;
  }
  .usa-width-two-thirds:last-child {
    margin-right: 0;
  }
  .usa-width-one-fourth {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 23.2317609825%;
  }
  .usa-width-one-fourth:last-child {
    margin-right: 0;
  }
  .usa-width-one-fourth:nth-child(2n) {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 23.2317609825%;
  }
  .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.3576520234%;
    width: 74.4105869942%;
  }
  .usa-width-three-fourths:last-child {
    margin-right: 0;
  }
  .usa-width-one-sixth {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 14.7019566472%;
  }
  .usa-width-one-sixth:last-child {
    margin-right: 0;
  }
  .usa-width-one-sixth:nth-child(3n) {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 14.7019566472%;
  }
  .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.3576520234%;
    width: 82.9403913294%;
  }
  .usa-width-five-sixths:last-child {
    margin-right: 0;
  }
  .usa-width-one-twelfth {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 6.1721523119%;
  }
  .usa-width-one-twelfth:last-child {
    margin-right: 0;
  }
  .usa-width-one-twelfth:nth-child(3n) {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 6.1721523119%;
  }
  .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.3576520234%;
    width: 40.291369653%;
  }
  .usa-width-five-twelfths:last-child {
    margin-right: 0;
  }
  .usa-width-seven-twelfths {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 57.3509783236%;
  }
  .usa-width-seven-twelfths:last-child {
    margin-right: 0;
  }
}
.usa-end-row {
  margin-right: 0;
}

.usa-sr-only {
  position: absolute;
  left: -999em;
}

/*--- Only IE9 ---*/
/*for all versions of ie only*/
/*basic declarations
$underline: underline;
$auto: auto;
$none: none;
$block: block;
$inline-block: inline-block; 
$list-nums: decimal;
$list-disc: disc;
$valign-m: middle;
$valign-t: top;
$valign-b: bottom;
$visible: visible;
$hidden: hidden;
*/
/*basic fonts*/
/* Font weights*/
/*color*/
/*math numbers*/
/*basic sass definitions I created*/
/* stylelint-disable selector-no-qualifying-type */
.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;
  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 1px #3e94cf, 0 0 1px #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 1px #3e94cf, 0 0 1px #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 1px #3e94cf, 0 0 1px #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;
}

/* stylelint-disable */
.usa-button:disabled,
.usa-button-disabled {
  background-color: #d6d7d9;
  color: #323a45;
  pointer-events: none;
}
.usa-button:disabled:hover, .usa-button:disabled.usa-button-hover, .usa-button:disabled:active, .usa-button:disabled.usa-button-active, .usa-button: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;
}

/*@import 'elements/figure';*/ /* stylelint-disable selector-no-qualifying-type */
input,
textarea,
select {
  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 1px #3e94cf, 0 0 1px #3e94cf;
}
input.usa-input-success,
textarea.usa-input-success,
select.usa-input-success {
  border: 3px solid #4aa564;
}

/* stylelint-enable */
.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 pink;
  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;
}

textarea {
  height: 16rem;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #ffffff;
  background-image: url("../images/arrow-down.png");
  background-image: url("../images/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: " ";
  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,
[type=checkbox]:checked:disabled + label::before {
  background-image: url("../images/correct8.png");
  background-image: url("../images/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: -0.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;
}

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;
}

@media screen and (max-width: 600px) {
  thead { /*accessibility hide thead.. screen readers will still need read column heads. this method allows for that*/
    border: 0 none;
    clip: rect(0px, 0px, 0px, 0px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

@media screen and (max-width: 600px) {
  html[data-useragent*="MSIE 9.0"] thead {
    /* height: auto;
     margin: auto;*/
    position: static;
    /* width: auto;*/
    display: block;
  }
}

@media screen and (max-width: 600px) {
  tr {
    display: block;
  }
}

td p {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 600px) {
  td {
    display: block;
    clear: both;
  }
  td p {
    padding: 0.1em 0;
    margin: 0.1em 0;
  }
  td:last-child {
    border-bottom: 3px solid #00104c;
  }
}

@media screen and (max-width: 600px) {
  td:last-child {
    /*border-bottom: 0;*/
  }
}

@media screen and (max-width: 600px) {
  td:before {
    content: attr(data-label);
    text-transform: uppercase;
    font-weight: bold;
  }
}

/*css for standard responsive table*/
table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  *cursor: hand;
  background-repeat: no-repeat;
  background-position: 98%;
  background-size: 15px;
}

table.dataTable thead .sorting {
  background-image: url("../images/sort-solid-light-gray.svg");
}

table.dataTable thead .sorting_asc {
  background-image: url("../images/sort-up-solid-white.svg");
}

table.dataTable thead .sorting_desc {
  background-image: url("../images/sort-down-solid-white.svg");
}

/*table.dataTable thead .sorting_asc_disabled{background-image:url("../images/sort_asc_disabled.png")}
table.dataTable thead .sorting_desc_disabled{background-image:url("../images/sort_desc_disabled.png")}*/
table.sortable {
  width: 100% !important;
}

.sortable thead tr.second th {
  background-color: #e0e6f3;
  color: #000;
  font-weight: normal;
}

.sortable thead tr.second th a {
  color: #0071BC;
}

.sortable thead tr.second th:nth-child(3) {
  text-align: center;
}

/*css for standard responsive table*/
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;
}

a {
  color: #0071bc;
  text-decoration: underline;
}
a:hover, a:active {
  color: #205493;
}
a:visited {
  color: #0071bc;
}
a:focus {
  box-shadow: 0 0 1px #3e94cf, 0 0 1px #3e94cf;
  outline: 0;
}

.usa-external_link::after {
  background: url("../images/external-link.png") no-repeat 0 0;
  background: url("../images/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("../images/external-link-hover.png");
  background-image: url("../images/external-link-hover.svg");
}

.usa-external_link-alt::after {
  background: url("../images/external-link-alt.png") no-repeat 0 0;
  background: url("../images/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("../images/external-link-alt-hover.png");
  background-image: url("../images/external-link-alt-hover.svg");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: "Merriweather", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  line-height: 1.3;
  margin-bottom: 0.5em;
  margin-top: 1.5em;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
}

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-content p:not(.usa-font-lead) {
  max-width: 53rem;
}

.usa-content-list {
  max-width: 53rem;
}

.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: "Merriweather", "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;
  }
}
@media screen and (min-width: 600px) {
  .usa-display {
    font-size: 5.2rem;
    font-weight: 700;
  }
}

.usa-font-lead {
  font-family: "Merriweather", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  font-size: 2rem;
  line-height: 1.7;
  max-width: 77rem;
}

.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,
.usa-grid > :first-child {
  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("../images/minus.png");
  background-image: url("../images/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 1px #3e94cf, 0 0 1px #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("../images/plus.png");
  background-image: url("../images/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("../images/minus.png");
  background-image: url("../images/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 1px #3e94cf, 0 0 1px #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("../images/plus.png");
  background-image: url("../images/plus.svg");
  background-repeat: no-repeat;
  background-size: 1.3rem;
}

.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-body p:first-child {
  margin-top: 0.8rem;
}

.usa-alert-heading {
  margin-bottom: 0.3rem;
  margin-top: 0;
}
@media screen and (min-width: 600px) {
  .usa-alert-heading {
    margin-top: 0.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("../images/alerts/success.png");
  background-image: url("../images/alerts/success.svg");
}

.usa-alert-warning {
  background-color: #fff1d2;
  background-image: url("../images/alerts/warning.png");
  background-image: url("../images/alerts/warning.svg");
}

.usa-alert-error {
  background-color: #f9dede;
  background-image: url("../images/alerts/error.png");
  background-image: url("../images/alerts/error.svg");
}

.usa-alert-info {
  background-color: #e1f3f8;
  background-image: url("../images/alerts/info.png");
  background-image: url("../images/alerts/info.svg");
}

.usa-alert-no_icon {
  background-image: none;
}

/*@import 'components/banner';*/
/*@import 'components/footer';*/
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;
  }
}

input.usa-input-tiny { /* stylelint-disable-line selector-no-qualifying-type */ }
@media screen and (min-width: 600px) {
  input.usa-input-tiny {
    max-width: 6rem;
  }
}
input.usa-input-medium { /* stylelint-disable-line selector-no-qualifying-type */ }
@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 {
  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: 0.8em;
  margin-right: 0.2em;
  width: 1.8em;
}

.usa-checklist-checked::before {
  background-image: url("../images/correct9.png");
  background-image: url("../images/correct9.svg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
}

/*@import 'components/graphic-list';*/
.usa-header {
  width: 100%;
  z-index: 7000;
}
@media screen and (min-width: 951px) {
  .usa-header {
    border-bottom: 1px solid #aeb0b5;
  }
}
.usa-header a {
  border-bottom: none;
}
.usa-header .usa-search {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 951px) {
  .usa-header .usa-search {
    float: right;
    margin-bottom: 0;
    max-width: 21.5rem;
  }
}

.usa-logo {
  float: left;
  line-height: 4rem;
  margin-left: 1.5rem;
}
@media screen and (min-width: 951px) {
  .usa-logo {
    line-height: 7.5rem;
    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;
  }
}

.usa-menu-btn {
  /* stylelint-disable declaration-block-no-ignored-properties */
  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;
  /* stylelint-enable */
}
.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: 8000;
}
.usa-overlay.is-visible {
  opacity: 0.1;
  visibility: visible;
}

@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: 3rem;
    margin-bottom: 3rem;
  }
}
@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 {
    border-top: 1px solid #aeb0b5;
    float: none;
    padding: 0;
    width: 100%;
  }
}
@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;
    margin-top: -1px;
    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[aria-expanded=false], .usa-header-extended .usa-nav-primary button[aria-expanded=true] { /* stylelint-disable-line selector-no-qualifying-type */ }
@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] { /* stylelint-disable-line selector-no-qualifying-type */
    background-position: right 1.5rem top 50%;
  }
}
@media screen and (min-width: 951px) {
  .usa-header-extended .usa-nav-link {
    padding-top: 1.9rem;
  }
}
@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;
  }
}

/*@import 'components/hero';*/
/*@import 'components/layout';*/
/*@import 'components/media-block';*/
.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-nav-link {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 951px) {
  .usa-nav-link:hover span {
    border-bottom: 0.7rem solid #0071bc;
    padding-bottom: 1rem;
  }
}

@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;
  -webkit-transform: translateX(26rem);
  -moz-transform: translateX(26rem);
  -ms-transform: translateX(26rem);
  -o-transform: translateX(26rem);
  transform: translateX(26rem);
  background: #ffffff;
  border-left: 1px solid #aeb0b5;
  border-right: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 2rem;
  z-index: 9000;
}
@media screen and (min-width: 951px) {
  .usa-nav {
    padding-top: 5rem;
    padding-right: 0;
    padding-bottom: 0;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    border-left: none;
    display: block;
    float: right;
    overflow-y: visible;
    position: relative;
    width: auto;
  }
}
.usa-nav.is-visible {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.usa-nav nav {
  margin-top: 6rem;
  min-height: 100%;
}
@media screen and (min-width: 951px) {
  .usa-nav nav {
    margin-top: 0;
  }
}
.usa-nav .usa-current {
  border-left: 4px solid #0071bc;
  color: #0071bc;
  font-weight: 700;
  padding-left: 1.4rem;
}
.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;
  order: 2;
}
.usa-nav-primary > li {
  margin-bottom: 0;
}
.usa-nav-primary > li {
  background-color: transparent;
  border-top: 1px solid #5b616b;
  font-size: 1.7rem;
}
.usa-nav-primary > li:first-child {
  border-top: none;
}
.usa-nav-primary a {
  border: none;
  color: #212121;
  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 a:hover {
  background-color: #f1f1f1;
  color: #0071bc;
  text-decoration: none;
}
.usa-nav-primary a:focus {
  position: relative;
  z-index: 1;
}
.usa-nav-primary a.usa-current { /* stylelint-disable-line selector-no-qualifying-type */
  border-left: 4px solid #0071bc;
  color: #0071bc;
  font-weight: 700;
  padding-left: 1.4rem;
}
@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: #5b616b;
    font-size: 1.5rem;
    font-weight: 700;
    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;
}
.usa-nav-primary button:hover {
  background-color: transparent;
}
@media screen and (min-width: 951px) {
  .usa-nav-primary button {
    padding-right: 3rem;
    padding-bottom: 1.9rem;
    padding-left: 1.5rem;
    color: #5b616b;
    font-size: 1.5rem;
    font-weight: 700;
    width: initial;
  }
}
.usa-nav-primary button:focus, .usa-nav-primary button:active {
  box-shadow: 0 0 1px #3e94cf, 0 0 1px #3e94cf;
}
.usa-nav-primary button:hover {
  background-color: #f1f1f1;
  color: #0071bc;
}
@media screen and (min-width: 951px) {
  .usa-nav-primary button:hover {
    background-color: transparent;
  }
}
.usa-nav-primary button[aria-expanded=false] { /* stylelint-disable-line selector-no-qualifying-type */
  background-image: url("../images/plus-alt.png");
  background-image: url("../images/plus-alt.svg");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 1rem;
}
@media screen and (min-width: 951px) {
  .usa-nav-primary button[aria-expanded=false] {
    background-image: url("../images/angle-arrow-down.png");
    background-image: url("../images/angle-arrow-down.svg");
    background-position: right 1.5rem top 44%;
  }
}
.usa-nav-primary button[aria-expanded=true] { /* stylelint-disable-line selector-no-qualifying-type */
  background-image: url("../images/minus-alt.png");
  background-image: url("../images/minus-alt.svg");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 1rem;
}
@media screen and (min-width: 951px) {
  .usa-nav-primary button[aria-expanded=true] {
    background-color: #112e51;
    color: #ffffff;
    background-image: url("../images/angle-arrow-down-hover.png");
    background-image: url("../images/angle-arrow-down-hover.svg");
    background-position: right 1.5rem top 44%;
  }
  .usa-nav-primary button[aria-expanded=true]:hover {
    background-color: #112e51;
  }
  .usa-nav-primary button[aria-expanded=true] span {
    border-bottom: 0.7rem solid #0071bc;
    padding-bottom: 1rem;
  }
}

@media screen and (min-width: 951px) {
  .usa-nav-secondary {
    position: absolute;
    right: 3rem;
    top: -5.7rem;
  }
}
.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;
    float: left;
  }
}

@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: 1rem;
  }
}
@media screen and (min-width: 951px) {
  .usa-nav-secondary-links li:not(:last-child)::after {
    content: "|";
    padding-left: 1rem;
  }
}
.usa-nav-secondary-links a,
.usa-nav-secondary-links .usa-header-search-button {
  color: #5b616b;
  display: inline-block;
  font-size: 1.5rem;
  text-decoration: none;
}
.usa-nav-secondary-links a:hover,
.usa-nav-secondary-links .usa-header-search-button:hover {
  color: #0071bc;
}
.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("../images/search-alt.png");
    background-image: url("../images/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 a {
  padding-left: 2.8rem;
  line-height: 1.3;
}
.usa-nav-submenu a:hover, .usa-nav-submenu a.usa-current { /* stylelint-disable-line selector-no-qualifying-type */
  border: none;
  padding-left: 2.8rem;
}
.usa-nav-submenu .usa-sidenav-sub_list a {
  padding-left: 3.8rem;
}
.usa-nav-submenu .usa-sidenav-sub_list 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;
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
    background-color: #112e51;
    min-width: 21.5rem;
    width: auto;
    position: absolute;
  }
  .usa-nav-submenu > li {
    margin-bottom: 0;
  }
}
.usa-nav-submenu[aria-hidden=true] {
  display: none;
}
@media screen and (min-width: 951px) {
  .usa-nav-submenu a {
    color: #ffffff;
    padding-left: 1.8rem;
  }
}
@media screen and (min-width: 951px) {
  .usa-nav-submenu a:hover {
    background-color: #112e51;
    color: #ffffff;
    text-decoration: underline;
  }
}
.usa-nav-submenu a:hover, .usa-nav-submenu a.usa-current { /* stylelint-disable-line selector-no-qualifying-type */ }
@media screen and (min-width: 951px) {
  .usa-nav-submenu a:hover, .usa-nav-submenu a.usa-current {
    padding-left: 1.8rem;
  }
}
.usa-nav-submenu li {
  margin-bottom: 0;
}

.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;
  margin: -1.2rem -1.5rem 2.4rem auto;
  float: right;
  height: 4.4rem;
  text-align: center;
  width: 4.4rem;
}
.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: flex;
  flex-direction: column;
}
@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.3576520234%;
    width: 23.2317609825%;
  }
  .usa-megamenu-col:last-child {
    margin-right: 0;
  }
  .usa-megamenu-col:nth-child(2n) {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 23.2317609825%;
  }
  .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;
}

.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.4rem;
  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("../images/search.png");
  background-image: url("../images/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("../images/search.png");
    background-image: url("../images/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;
  }
}

.usa-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 600px) {
  .usa-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.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;
}

.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 #5b616b;
  font-size: 1.7rem;
}
.usa-sidenav-list > li:first-child {
  border-top: none;
}
.usa-sidenav-list a {
  border: none;
  color: #212121;
  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 a:hover {
  background-color: #f1f1f1;
  color: #0071bc;
  text-decoration: none;
}
.usa-sidenav-list a:focus {
  position: relative;
  z-index: 1;
}
.usa-sidenav-list a.usa-current { /* stylelint-disable-line selector-no-qualifying-type */
  border-left: 4px solid #0071bc;
  color: #0071bc;
  font-weight: 700;
  padding-left: 1.4rem;
}

.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 a {
  padding-left: 2.8rem;
  line-height: 1.3;
}
.usa-sidenav-sub_list a:hover, .usa-sidenav-sub_list a.usa-current { /* stylelint-disable-line selector-no-qualifying-type */
  border: none;
  padding-left: 2.8rem;
}
.usa-sidenav-sub_list .usa-sidenav-sub_list a {
  padding-left: 3.8rem;
}
.usa-sidenav-sub_list .usa-sidenav-sub_list a:hover {
  padding-left: 3.8rem;
}

.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;
}

/*fmcsa*/
/*global*/
html {
  background: #6e6159;
  /*height:100%;*/
}

body {
  background-color: transparent;
  font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  color: #323a45;
  height: 100%;
}

p {
  margin: 0;
}

.no-wrap {
  white-space: nowrap;
}

a {
  text-decoration: none;
}

a:focus, a:hover {
  text-decoration: underline;
}

td {
  vertical-align: top;
}

/* 'element-invisible': Accessibility non visual instructions or labeling for screen reader users used bootstraps sample with focus for non assistive technology users
.element-invisible
	{
		border: 0 none; 
		clip: rect(0px, 0px, 0px, 0px);
		height: $px1;
		margin: -$px1;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: $px1;	
	}*/
.max-content-width {
  max-width: 1281px;
  margin: auto;
}

/*.page-wrapper
	{
		margin: auto; 
		max-width: 980px;

		margin-top: $px1*20;
		display:block;		
	}
*/
html[data-useragent*="MSIE 10.0"] [hidden], [data-useragent*="MSIE 9.0"] [hidden] {
  display: none;
}

/*fmcsa styles for the us dot at very top of site Current FMCSA phone size looses the right links */
.mode-ribbon-wrapper {
  background: #001647;
  height: 24px;
  /*end .mode-ribbon styles*/
}
.mode-ribbon-wrapper .mode-ribbon {
  font-size: 0.8em;
  padding: 0 0.5em;
  margin: 0 auto;
  min-width: 580px;
  max-width: 1281px; /*same width as main wrapper*/
  display: flex;
  /*end .mode-ribbon ul styles for right links*/
}
.mode-ribbon-wrapper .mode-ribbon img {
  vertical-align: middle;
  padding: 0;
}
.mode-ribbon-wrapper .mode-ribbon a {
  -webkit-align-self: flex-start;
  align-self: flex-start;
  color: white;
  padding: 0.2em 0;
}
.mode-ribbon-wrapper .mode-ribbon ul {
  display: none;
}
@media screen and (min-width: 951px) {
  .mode-ribbon-wrapper .mode-ribbon ul {
    display: inline-block;
    padding: 0;
    margin: 0;
    margin-left: auto;
    list-style: none;
    text-align: right;
    display: flex;
    font-size: 0.8em;
  }
  .mode-ribbon-wrapper .mode-ribbon ul li {
    margin: 0;
    padding: 0.2em;
  }
  .mode-ribbon-wrapper .mode-ribbon ul li a {
    margin: 0;
    padding: 0;
    border-right: #fff solid 1px;
    padding: 0 1em 0 3px;
  }
  .mode-ribbon-wrapper .mode-ribbon ul li:last-child a {
    border-right: 0px;
    padding: 0 0 0 3px;
  }
}

/*end mode-ribbon-wrapper*/
/*ie9 mode ribbon*/
html[data-useragent*="MSIE 9.0"] .mode-ribbon-wrapper .mode-ribbon img {
  display: inline-block;
  vertical-align: top;
}
html[data-useragent*="MSIE 9.0"] .mode-ribbon-wrapper .mode-ribbon a {
  display: inline-block;
  vertical-align: top;
  width: 300px;
}
html[data-useragent*="MSIE 9.0"] .mode-ribbon-wrapper .mode-ribbon ul {
  display: inline-block;
  vertical-align: top;
  float: right;
}
html[data-useragent*="MSIE 9.0"] .mode-ribbon-wrapper .mode-ribbon ul li {
  display: inline-block;
  vertical-align: top;
}
html[data-useragent*="MSIE 9.0"] .mode-ribbon-wrapper .mode-ribbon ul li a {
  width: 100%;
}

/*end ribbon ie9*/
header {
  min-height: 30px;
  background: #001647;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-align-content: stretch;
  align-content: stretch;
}

html[data-useragent*="MSIE 9.0"] header {
  display: block;
  height: 200px;
  margin: auto;
}

.fmcsa-section { /*fmcsa branding and logo section*/
  background: #64a1d2; /* Old browsers */
  background: -moz-linear-gradient(top, #64a1d2 0%, #266092 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #64a1d2 0%, #266092 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #64a1d2 0%, #266092 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#64a1d2", endColorstr="#266092",GradientType=0 ); /* IE6-9 */
}
.fmcsa-section .max-content-width {
  display: flex;
  /*-ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;*/
  padding-right: 0.5em;
  padding-left: 0.5em;
}

/*end fmcsa header section*/
.fmcsa-section, .sub-header-section, .mobile-fmcsa-login-search-wrapper {
  padding: 0.75em 0;
  width: 100%;
  clear: both;
}

.fmcsa-section a.fmcsa-header-logo-wrapper {
  background: url("../images/fmcsa/mobile_logo_small.png") no-repeat;
  /*display:inline-block;*/
  width: 148px;
  height: 35px;
  margin: auto;
  margin-left: 0;
}
@media screen and (min-width: 951px) {
  .fmcsa-section a.fmcsa-header-logo-wrapper {
    background: url("../images/fmcsa/logo.png") no-repeat;
    height: 48px;
    width: 339px;
  }
}

html[data-useragent*="MSIE 10.0"] .fmcsa-section a.fmcsa-header-logo-wrapper { /*addresses partial support for flexbox width*/
  display: inline-block;
}

html[data-useragent*="MSIE 9.0"] .fmcsa-section a.fmcsa-header-logo-wrapper {
  display: inline-block;
  vertical-align: middle;
  width: 75%;
}
@media screen and (min-width: 951px) {
  html[data-useragent*="MSIE 9.0"] .fmcsa-section a.fmcsa-header-logo-wrapper {
    width: 60%;
  }
}

@media screen and (min-width: 951px) {
  html[data-useragent*="MSIE 9.0"] .fmcsa-section .fmcsa-login-search-wrapper {
    display: inline-block;
    vertical-align: middle;
    /*end Search Section*/
  }
  html[data-useragent*="MSIE 9.0"] .fmcsa-section .fmcsa-login-search-wrapper html[data-useragent*="MSIE 9.0"] .usa-search html[data-useragent*="MSIE 9.0"] input[type=submit] {
    vertical-align: top;
    display: inline-block;
  }
  html[data-useragent*="MSIE 9.0"] .fmcsa-section .fmcsa-login-search-wrapper html[data-useragent*="MSIE 9.0"] .usa-search html[data-useragent*="MSIE 9.0"] input[type=text] {
    vertical-align: top;
    display: inline-block;
  }
}

/*end right side of fmcsa section*/
p {
  margin: 0.25em 0 0.5em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Source Sans Pro Bold", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  margin: 0.25em 0;
  font-weight: 400;
}

table thead th, table thead td {
  background-color: #001647;
  color: #ffffff;
  padding: 0.5em 1em;
}
table thead th a, table thead th a:hover, table thead th a:focus, table thead td a, table thead td a:hover, table thead td a:focus {
  color: #ffffff;
}
table tbody td {
  background-color: transparent;
}
table tbody tr:nth-child(even) {
  background-color: #e0e6f3;
}
table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.right {
  text-align: right;
}

.smaller-font-size {
  font-size: 1.4rem;
}

.bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /*all versions of IE*/
  .IEall-78 {
    width: 100%;
  }
}
@media screen and (-ms-high-contrast: none) and (min-width: 951px), screen and (-ms-high-contrast: active) and (min-width: 951px) {
  .IEall-78 {
    width: 78%;
  }
}
@media screen and (min-width: 0\0 ) {
  /*all versions of IE*/
  .IEall-78 {
    width: 100%;
  }
}
@media screen and (min-width: 0\0 ) and (min-width: 951px) {
  .IEall-78 {
    width: 78%;
  }
}
html[data-useragent*="MSIE 10.0"] .IE10-78 {
  width: 100%;
}
@media screen and (min-width: 951px) {
  html[data-useragent*="MSIE 10.0"] .IE10-78 {
    width: 78%;
  }
}

label {
  font-weight: 700;
}

/*validation success*/
.success {
  color: #2e8540;
  font-weight: bold;
}

/*hide show to go with jquery-accessible-hide-show-aria.js*/
.js-to_expand[aria-hidden=true],
.js-to_expand[data-hidden=true] {
  display: none;
}

.expandmore__button {
  background-color: transparent;
  font-size: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

/*content pages*/
.button-wrapper-right {
  width: 20%;
  float: right;
  clear: both;
  text-align: right;
}

.content-inside-chapter {
  margin: 1em 0;
  font-weight: 700;
}
.content-inside-chapter table {
  width: 90%;
}

.callout {
  margin: 1em;
  border-top: 1px solid #205493;
  border-bottom: 1px solid #4773aa;
  color: #205493;
  font-weight: bold;
  padding: 0.5em 0;
}

.center {
  text-align: center;
}

/*highlights bookmark styling */
.highlight-color {
  background-color: #fff1d2;
}

.note-color {
  background-color: #f1f1f1;
}

.note-image {
  width: 25px;
  height: 25px;
  vertical-align: top;
}

.chapter h3, .chapter h4, .chapter h5, .chapter h6, .forms h3, .forms h4, .forms h5, .forms h6, .resources h3, .resources h4, .resources h5, .resources h6, .gl-ac h3, .gl-ac h4, .gl-ac h5, .gl-ac h6 {
  margin: 1em 0 0;
}
.chapter .right button, .forms .right button, .resources .right button, .gl-ac .right button {
  background-image: url("../images/fmcsa/prev-arrow.svg");
  background-repeat: no-repeat;
  background-size: 23.3px 16.8px;
  background-position: 5% center;
  padding-left: 2.5em;
  width: 7.5em;
  text-align: left;
}
.chapter .right button.next, .forms .right button.next, .resources .right button.next, .gl-ac .right button.next {
  background-image: url("../images/fmcsa/next-arrow.svg");
  padding-right: 3em;
  background-position: 95%;
  text-align: right;
}

.checkbox-wrapper {
  position: relative;
  vertical-align: middle;
}
.checkbox-wrapper label {
  display: inline-block;
}
.checkbox-wrapper input[type=checkbox] {
  max-width: 6%;
  /* margin:$em1*.25; 
  */
}

/*drop-down "add to my files" forms toc*/
.dropdown-wrapper {
  width: 9.1em;
  margin: 0 1em 1em 0;
}
.dropdown-wrapper .dropbtn {
  cursor: pointer;
  margin: 0;
}
.dropdown-wrapper .dropdown {
  /*position: relative;*/
  display: inline-block;
}
.dropdown-wrapper .dropdown-content {
  display: block;
  /*position: absolute;*/
  background-color: #e0e6f3;
  min-width: 140px;
  /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
   z-index: 1;*/
}
.dropdown-wrapper .dropdown-content a {
  color: black;
  padding: 0.35em;
  padding-left: 0;
  text-decoration: none;
  display: block;
}
.dropdown-wrapper .dropdown-content a:hover, .dropdown-wrapper .dropdown-content a:focus {
  background-color: #d3dbeb;
  text-decoration: underline;
}
.dropdown-wrapper .show {
  display: block;
}

/*works on TOC and Forms action items. */
.toc-forms-header {
  display: flex;
  border-bottom: 5px solid #001647;
  justify-content: space-between;
}
.toc-forms-header h1 {
  flex: 1;
}
.toc-forms-header .toc-todo {
  /*make a bookmark*/
  background-color: #e0e6f3;
  padding: 0.5em 1em;
  margin: auto 1em;
  height: 3em;
  flex: 0.5;
}
@media screen and (min-width: 951px) {
  .toc-forms-header .toc-todo {
    display: flex;
    /*color:white;*/
  }
}
.toc-forms-header .toc-todo img {
  width: 35px;
  height: 35px;
  vertical-align: middle;
  margin-right: 2%;
}
.toc-forms-header .toc-todo div {
  padding: 0.2em;
  border-bottom: 1px solid #494440;
}
@media screen and (min-width: 951px) {
  .toc-forms-header .toc-todo div {
    flex: 1;
    border-right: 1px solid #494440;
    text-align: center;
    /*&.last  {border-right:0;}*/
    padding: 0 0.2em;
    border-bottom: 0;
  }
  .toc-forms-header .toc-todo div:last-child {
    border-right: 0;
  }
}
.toc-forms-header .toc-todo a {
  color: #323a45;
  text-decoration: none;
  white-space: nowrap;
}
.toc-forms-header .toc-todo .tool {
  cursor: pointer;
}
.toc-forms-header .toc-todo .tool.Selected {
  text-decoration: underline;
}
.toc-forms-header .downloads-print-email {
  color: #0071BC;
  display: flex;
  margin: auto;
  height: 50%;
  font-size: 1.2rem;
}
.toc-forms-header .downloads-print-email img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.toc-forms-header .downloads-print-email div {
  padding: 0 1em;
  /*&:last-child{padding-right:0;}
  &:first-child{padding-left:0;}*/
  cursor: pointer;
}
.toc-forms-header .wrap-right {
  flex: 0.12;
  text-align: left;
  margin: auto;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .toc-forms-header .wrap-right {
    height: 15%;
  }
}
@media screen and (min-width: 0\0 ) {
  .toc-forms-header .wrap-right {
    height: 15%;
  }
}

.no-wrap {
  white-space: nowrap;
}

.width100 {
  width: 100%;
}

.pink {
  background-color: pink;
}

.lime {
  background-color: lime;
}

.orange {
  background-color: orange;
}

.aqua {
  background-color: aqua;
}

.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  text-decoration: none;
  color: #ffffff;
  display: none;
  border-radius: 33px;
  width: 2.5em;
  height: 2.5em;
  font-weight: 600;
  padding-top: 0.75em;
  text-transform: uppercase;
  text-align: center;
  background: rgba(0, 113, 188, 0.8) url("../images/angle-arrow-up-hover.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: top center;
}
.back-to-top:hover {
  background: #0071BC url("../images/angle-arrow-up-hover.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: top center;
  color: #ffffff;
}
@media screen and (min-width: 951px) {
  .back-to-top {
    bottom: 55px;
  }
}

.shared-planner-text {
  border: 3px solid #e31c3d;
  padding: 0.5em;
}

.usa-input-error-message {
  color: #e31c3d !important;
}

.text-left {
  text-align: left;
}

.chart img {
  width: 100%;
  height: auto;
}

/*login styling*/
.header-login {
  width: auto;
  padding: 0.4em 0 0;
  color: white;
  text-align: right;
}
@media screen and (min-width: 951px) {
  .header-login {
    padding: 0;
  }
}
.header-login a {
  /*padding-right: $px10;
  border-right:1px solid #fff;*/
  text-transform: uppercase;
  color: #ffffff;
}

/*end header login styling*/
html[data-useragent*="MSIE 9.0"] .header-login {
  display: inline-block;
  vertical-align: middle;
  float: right;
}
@media screen and (min-width: 951px) {
  html[data-useragent*="MSIE 9.0"] .header-login {
    float: none;
  }
}

h1.login {
  margin-bottom: 0;
}

@media screen and (min-width: 951px) {
  .loginPnl {
    display: flex;
  }
}

@media screen and (min-width: 951px) {
  html[data-useragent*="MSIE 10.0"] .loginPnl {
    width: 49%;
  }
}

.half-width-desktop, .loginMessage {
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 4px;
  border: 1px solid #001647;
  margin: 1em 0;
}
@media screen and (min-width: 951px) {
  .half-width-desktop:first-child, .loginMessage:first-child {
    margin-right: 0.5em;
  }
  .half-width-desktop:last-child, .loginMessage:last-child {
    margin-left: 0.5em;
  }
}
.half-width-desktop h2, .loginMessage h2 {
  background-color: #0071BC;
  color: #ffffff;
  margin-bottom: 0;
  padding: 0.5em 1em;
  margin: 0;
  font-size: 2.5rem;
  border-radius: 4px 4px 0 0;
}
.half-width-desktop p, .loginMessage p {
  margin: 0 1.8em 1em;
}
.half-width-desktop input[type=submit], .loginMessage input[type=submit] {
  background-color: #F9C642;
  color: #323a45;
  padding: 0.5em 1em;
  border-radius: 10px;
  margin: 0.3em 1.6em;
}

@media screen and (min-width: 951px) {
  html[data-useragent*="MSIE 9.0"].half-width-desktop {
    width: 47.5%;
    display: inline-block;
    vertical-align: top;
  }
}

ul.loginItems {
  padding-left: 1.65em;
}

ul.loginItems li {
  list-style: none;
  margin: 1em 1.5em 1em 0;
}

ul.loginItems li label {
  margin-top: 1rem;
  font-weight: 600;
}

ul.square li {
  list-style: none;
  margin-bottom: 0;
  padding-bottom: 0;
  line-height: 1.2;
}

ul.square li::before {
  content: "■ ";
  color: #F9C642;
  font-size: 1.5em;
  margin: 0;
  padding: 0;
}

.loginMessage h2 {
  color: #cd2026;
  background-color: #ffffff;
  position: relative;
  top: -15px;
  left: 20px;
  width: 130px;
  text-transform: uppercase;
  padding: 0 0.3em;
}
.loginMessage p {
  margin: -0.5em 1.5em 1em 1.5em;
}

.loginError {
  color: #cd2026;
  position: relative;
}

.back-to-top {
  color: #ffffff;
}

.fmcsa-login-search-wrapper {
  /*search styling*/
  /*end Search Section*/
}
@media screen and (min-width: 951px) {
  .fmcsa-login-search-wrapper {
    text-align: right;
    width: auto;
    display: flex;
    padding: 0.5em 0.4em 0.5em 0;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .fmcsa-login-search-wrapper {
    display: inline-block;
    vertical-align: middle;
  }
}
@media screen and (min-width: 0\0 ) {
  .fmcsa-login-search-wrapper {
    display: inline-block;
    vertical-align: middle;
  }
}
.fmcsa-login-search-wrapper .usa-search {
  float: none;
  vertical-align: middle;
  padding: 8px 1em 0 1em;
}
@media screen and (min-width: 951px) {
  .fmcsa-login-search-wrapper .usa-search {
    display: inline-block;
    margin-bottom: 0;
    max-width: 100%;
    padding: 0;
    text-align: right;
  }
}
.fmcsa-login-search-wrapper .usa-search button[type=submit] {
  background-color: #0071bc;
  border-top-right-radius: 0.3em;
  border-bottom-right-radius: 0.3em;
}
/*end right side of fmcsa section*/
html[data-useragent*="MSIE 9.0"] .fmcsa-login-search-wrapper {
  display: inline-block;
  vertical-align: top;
}
@media screen and (min-width: 951px) {
  html[data-useragent*="MSIE 9.0"] .fmcsa-login-search-wrapper {
    width: 22%;
  }
}

html[data-useragent*="MSIE 9.0"] .ie9-search-input {
  width: 75%;
  float: left;
  margin: 0;
  height: 3.3rem;
}

html[data-useragent*="MSIE 9.0"] .ie9-search-submit {
  float: left;
}

.usa-header {
  border-bottom: 0;
}

.sub-header-section { /*sub area for ETA CSA etc*/
  /*background-color:$darkblue;*/
  display: flex;
  /*-ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 0 .5em;*/
  padding-right: 0.5em;
  padding-left: 0.5em;
}

html[data-useragent*="MSIE 9.0"] .sub-header-section {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.sub-header-section .sub-header-logo-wrapper {
  color: #ffffff;
  font-size: 4rem;
  font-weight: 700;
}
.sub-header-section .sub-header-logo-wrapper span {
  font-weight: 400;
}

html[data-useragent*="MSIE 9.0"] .sub-header-section .sub-header-logo-wrapper {
  display: inline-block;
  width: 60%;
  vertical-align: middle;
  padding: 10px 0 0 50px;
}

.sub-header-section .sub-header-login-search-wrapper {
  display: none;
}
@media screen and (min-width: 951px) {
  .sub-header-section .sub-header-login-search-wrapper {
    display: inline-block;
    text-align: right;
    max-width: 60%;
    margin-left: auto;
  }
  .sub-header-section .sub-header-login-search-wrapper a.external-link {
    color: #ffffff;
    background: url("../images/external-link-alt-hover.svg") no-repeat;
    background-size: 20px 20px; /*ie needs fixed width and height*/
    background-position: right;
    padding-right: 25px;
    width: 100%;
    display: inline-block;
    text-transform: uppercase;
    font-size: 1.7rem;
  }
  .sub-header-section .sub-header-login-search-wrapper a.external-link:hover {
    color: white;
    text-decoration: underline;
  }
}

html[data-useragent*="MSIE 9.0"] .sub-header-section .sub-header-login-search-wrapper {
  display: none;
}
@media screen and (min-width: 951px) {
  html[data-useragent*="MSIE 9.0"] .sub-header-section .sub-header-login-search-wrapper {
    display: inline-block;
    float: right;
    width: 30%;
    vertical-align: middle;
  }
}

/*end sub-header-section*/
/*right wrapper for mobile button*/
.sub-header-section .mobile-fmcsa-login-search-wrapper {
  display: flex;
  margin-left: auto;
  width: auto;
  padding: 0;
  white-space: nowrap;
}
@media screen and (min-width: 951px) {
  .sub-header-section .mobile-fmcsa-login-search-wrapper {
    display: none;
  }
}
.sub-header-section .mobile-fmcsa-login-search-wrapper .usa-menu-btn {
  background: url("../images/fmcsa/hamburger-blue.svg") 0 0 no-repeat;
  overflow: hidden;
  background-size: 40px 40px;
  width: 4rem;
}
.sub-header-section .mobile-fmcsa-login-search-wrapper .sub-header-section { /*sub area for ETA CSA etc*/
  /*background-color:$darkblue;*/
  display: block;
}

html[data-useragent*="MSIE 9.0"] .sub-header-section .mobile-fmcsa-login-search-wrapper {
  display: inline-block;
  vertical-align: middle;
  float: right;
}

/*navigation*/
.nav-wrapper {
  display: flex;
  width: 100%;
  -webkit-flex: 2 1;
  flex: 2 1 1;
}

.usa-nav {
  border-left: 0;
  padding: 0;
  background-color: #001647;
}
@media screen and (min-width: 951px) {
  .usa-nav {
    /*border-top: 1px solid $color-gray-light;*/
    -webkit-flex-direction: row;
    flex-direction: row;
    padding-top: 0;
    width: 100%;
  }
}

html[data-useragent*="MSIE 9.0"] .usa-nav {
  border-top: 0;
}
@media screen and (min-width: 951px) {
  html[data-useragent*="MSIE 9.0"] .usa-nav {
    height: 50px;
  }
}

@media screen and (min-width: 951px) {
  .usa-nav-inner {
    text-transform: uppercase;
    display: flex;
  }
}

@media screen and (min-width: 951px) {
  html[data-useragent*="MSIE 9.0"] .usa-nav-inner {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
  }
}

.nav-constact-help li:last-child {
  display: none;
}
@media screen and (min-width: 951px) {
  .nav-constact-help {
    -webkit-flex: 1;
    flex: 1;
    text-align: right;
  }
  .nav-constact-help li:last-child {
    display: inline-block;
  }
}

/*IE9  IE10*/
@media screen and (min-width: 951px) {
  html[data-useragent*="MSIE 10.0"] .nav-constact-help, [data-useragent*="MSIE 9.0"] .nav-constact-help {
    width: 30%;
    display: inline-block;
    float: right;
  }
}

@media screen and (min-width: 951px) {
  .usa-accordion + .usa-accordion {
    margin-top: 0;
  }
}

@media screen and (min-width: 951px) {
  .nav-primary {
    -webkit-flex: 2 0 0;
    flex: 2 0 0;
  }
}
@media screen and (min-width: 951px) and (-ms-high-contrast: none), screen and (min-width: 951px) and (-ms-high-contrast: active) {
  .nav-primary {
    width: 80%;
  }
}
@media screen and (min-width: 951px) and (min-width: 0\0 ) {
  .nav-primary {
    width: 80%;
  }
}

@media screen and (min-width: 951px) {
  html[data-useragent*="MSIE 9.0"] .nav-primary {
    width: 70%;
  }
}

.usa-nav-primary {
  /*sub color in responsive navigation*/
}
.usa-nav-primary a {
  color: #ffffff;
}
.usa-nav-primary > li {
  border: 0;
}
@media screen and (min-width: 951px) {
  .usa-nav-primary > li {
    display: inline-block;
    margin-left: -4px;
  }
}
.usa-nav-primary > li > a {
  color: #ffffff;
}
.usa-nav-primary > li > a:hover {
  background-color: #00104c;
}
@media screen and (min-width: 951px) {
  .usa-nav-primary > li > a:hover {
    /*color: $color-gray;*/
  }
}
.usa-nav-primary > li > a.external-link {
  color: #ffffff;
  background: #001647 url("../images/external-link-alt-hover.svg") no-repeat;
  background-size: 20px 20px; /*ie needs fixed width and height*/
  background-position: 90% 10px;
  padding-right: 10px;
}
.usa-nav-primary > li > a.external-link:hover {
  color: #FBA82A;
  border-bottom: 0;
}
@media screen and (min-width: 951px) {
  .usa-nav-primary > li > a.external-link:hover {
    color: #5b616b;
  }
}
@media screen and (min-width: 951px) {
  .usa-nav-primary button {
    text-transform: uppercase; /*buttons*/
    color: #ffffff;
  }
}
.usa-nav-primary button:hover {
  color: #F9C642;
  background-color: #00104c; /*border-bottom:solid 6px $eta-nav-blue;*/
}
.usa-nav-primary button[aria-expanded=false] {
  background-image: url("../images/arrow-right.png");
  background-image: url("../images/arrow-right-white.svg");
  background-position: right 20px center;
}
@media screen and (min-width: 951px) {
  .usa-nav-primary button[aria-expanded=false] {
    background-image: url("../images/arrow-down-white.svg");
    background-position: right 1.5rem top 44%;
    background-size: 1rem 1rem;
  }
}
.usa-nav-primary button[aria-expanded=true] { /* stylelint-disable-line selector-no-qualifying-type */
  background-color: #00104c;
  background-image: url("../images/arrow-down-white.svg");
  background-position: right 20px center;
  background-size: 1rem 1rem;
}
@media screen and (min-width: 951px) {
  .usa-nav-primary button[aria-expanded=true] {
    background-color: #00104c;
    color: #ffffff;
    background-image: url("../images/arrow-down-white.svg");
    background-position: right 1.5rem top 44%;
  }
  .usa-nav-primary button[aria-expanded=true]:hover {
    background-color: #00104c;
  }
  .usa-nav-primary button[aria-expanded=true] span {
    border-bottom: 0;
    padding-bottom: 1rem;
  }
}

.usa-nav-submenu {
  padding-top: 0rem;
  background-color: #00104c;
}
.usa-nav-submenu a {
  text-transform: capitalize;
}
.usa-nav-submenu a:hover {
  background-color: #00104c;
}

/*IE9 and IE10*/
html[data-useragent*="MSIE 10.0"] .usa-nav-primary, [data-useragent*="MSIE 9.0"] .usa-nav-primary {
  display: inline-block;
}

.usa-nav-close {
  margin: 1.2rem 1.5rem 2.4rem auto;
}

.usa-accordion-button {
  color: #ffffff;
} /*overwrites font-color in responsive accordion.scss navigation button*/
.usa-nav-primary a:hover {
  color: #F9C642; /*border-bottom:solid 6px $eta-nav-blue;*/
}

.usa-nav-primary a.active, .usa-nav-primary button.active {
  border-bottom: solid 6px #5BAEFE;
}

.wrapper-content {
  /*background-color:$color-cool-blue-lightest; */
  background-color: #ffffff;
  width: 100%;
}
.wrapper-content .max-content-width { /*background-color:$color-cool-blue-lightest;*/
  display: flex;
  justify-content: space-around;
  align-items: stretch;
}
.wrapper-content .max-content-width .sub-navigation { /*background-color:$color-green-lightest;*/
  width: 25%;
  flex: 0 0 25%;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding: 0.5em 1.5em 1.5em 0;
}
.wrapper-content .max-content-width .content-section {
  /*background-color:$color-green-lightest;*/
  margin-left: auto;
  padding: 0.5em;
  width: 100%;
}
@media screen and (min-width: 951px) {
  .wrapper-content .max-content-width .content-section {
    max-width: 75%;
    flex: 0 0 75%;
  }
}
.wrapper-content .max-content-width .content-section-one-col {
  /*background-color:$color-green-lightest; */
  margin: auto;
  padding: 0.5em;
  width: 100%;
}
@media screen and (min-width: 951px) {
  .wrapper-content .max-content-width .content-section-one-col {
    max-width: 90%;
  }
}
.wrapper-content .max-content-width .content-section-one-col-full-width {
  margin: auto;
  padding: 0.5em 0;
  width: 100%;
  /*@include media($nav-width)
  {
      max-width: $percent10*9.0;


  }*/
}

html[data-useragent*="MSIE 9.0"] .wrapper-content {
  width: 100%;
}
html[data-useragent*="MSIE 9.0"] .wrapper-content .sub-navigation {
  display: inline-block;
  vertical-align: top;
  width: 25%;
}
html[data-useragent*="MSIE 9.0"] .wrapper-content .content-section {
  width: 74%;
  display: inline-block;
  vertical-align: top;
}

html[data-useragent*="MSIE 10.0"].content-section {
  width: 100%;
}
@media screen and (min-width: 951px) {
  html[data-useragent*="MSIE 10.0"].content-section {
    display: inline-block;
    width: 78%;
  }
}

/*.stay-connected-outer-wrapper
	{
		background-color:$darkblue; 
		padding: $em1*.5;
		color:white;
		h2 
		{  
			margin:0; 
			padding:0;
            font-family:$font-sans;
			&.max-content-width
			{
				@include media($nav-width)
				{
					margin: 0 auto;
				}
			}
		}
        h3 {margin:0;}	
}*/
.stay-connected-outer-wrapper-2 {
  background-color: #001647;
  padding: 0.25em;
  color: white;
}

/*
.stay-connected-inner-wrapper
	{
	.max-content-width 
	{
	display:flex;
	-webkit-flex-direction: column;
			flex-direction: column;
			-webkit-flex: 1 0 0;
			flex: 1 0 0; 
	        @include media($medium-screen)
            {
		    -webkit-flex-direction: row;
			flex-direction: row;
	        }
	.responsive-wrapper

		{   display:block; 
			margin:0;
			padding:0;
			padding-left:0;

		@include media($medium-screen){

			display: -webkit-flex;
			display: flex;
			-webkit-flex-direction: column;
			flex-direction: column;
			-webkit-flex: 1 0 0;
			flex: 1 0 0; 
			}

			@include media($nav-width)
				{
                @include apply-to-IE()  {
                   width:$percent10*5;
                     }

				}
			img 
			{
				vertical-align:middle;
				margin-right:$em1*.3;
			}
			h3 
			{
				margin-top:0;
				font-size:1.75rem;
			}
			a 
			{
				color:white;
			}

		.connect, .email, .rss, .facebook
			{	display:block;
				min-height: 4.5em;
				-webkit-flex: 1 0 0;
				flex: 1 0 0;
				margin: $em1*.25 0;
                @include apply-to-IE()  {
                   width:$percent10*4.8;
                     }
                img {
                    width:30px; 
                    height: 30px;}
			@include media($medium-screen){	

			min-height: auto;
			margin: $em1 0 0 0;

			}
				.no-wrap
					{
						white-space:nowrap;
					}

				@include media($nav-width)
				{

					margin:$em1 $em1*1.5 $em1 0;
				}
			}
		.facebook{
			@include media($nav-width)
				{

					margin:$em1 0 $em1;
				}

		}



		.email 
		{
			margin:0;
			@include media($medium-screen){	

			margin: $em1 0 0 0;

			}

			@include media($nav-width)
				{

					margin:$em1 $em1*1.5 $em1 0;
				}
            img {
                width:40px;

            }
		}	
		@include media($nav-width)
		{
			display: -webkit-flex;
			display: flex;
			-webkit-flex-direction: row;
			flex-direction: row;
			}
		}
		}
	}*/
.stay-connected-inner-wrapper-2 .max-content-width {
  display: flex;
}
.stay-connected-inner-wrapper-2 .max-content-width h2 {
  /*margin:0; */
  padding: 0;
  font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 2rem;
}
.stay-connected-inner-wrapper-2 .max-content-width .connect, .stay-connected-inner-wrapper-2 .max-content-width .email, .stay-connected-inner-wrapper-2 .max-content-width .rss, .stay-connected-inner-wrapper-2 .max-content-width .facebook {
  margin: 0 0.25em;
  /* @include apply-to-IE()  {
      width:$percent10*4.8;
        }*/
}
.stay-connected-inner-wrapper-2 .max-content-width .connect h3 span, .stay-connected-inner-wrapper-2 .max-content-width .email h3 span, .stay-connected-inner-wrapper-2 .max-content-width .rss h3 span, .stay-connected-inner-wrapper-2 .max-content-width .facebook h3 span {
  display: none;
}
@media screen and (min-width: 951px) {
  .stay-connected-inner-wrapper-2 .max-content-width .connect h3 span, .stay-connected-inner-wrapper-2 .max-content-width .email h3 span, .stay-connected-inner-wrapper-2 .max-content-width .rss h3 span, .stay-connected-inner-wrapper-2 .max-content-width .facebook h3 span {
    display: inline-block;
    font-weight: normal;
    font-size: 1.7rem;
  }
}
.stay-connected-inner-wrapper-2 .max-content-width .connect a, .stay-connected-inner-wrapper-2 .max-content-width .email a, .stay-connected-inner-wrapper-2 .max-content-width .rss a, .stay-connected-inner-wrapper-2 .max-content-width .facebook a {
  color: #ffffff;
  text-decoration: none;
}
.stay-connected-inner-wrapper-2 .max-content-width .connect img, .stay-connected-inner-wrapper-2 .max-content-width .email img, .stay-connected-inner-wrapper-2 .max-content-width .rss img, .stay-connected-inner-wrapper-2 .max-content-width .facebook img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin: 0 0.2em;
}

/*ie9 styles*/
/*ie10 styles*/ /*
html[data-useragent*='MSIE 10.0'] .responsive-wrapper
{
	width:49%;
	display:inline-block;

}
html[data-useragent*='MSIE 10.0'] .responsive-wrapper .connect,  html[data-useragent*='MSIE 10.0'] .responsive-wrapper  .email,  html[data-useragent*='MSIE 10.0'] .responsive-wrapper  .rss,  
html[data-useragent*='MSIE 10.0'] .responsive-wrapper  .facebook 
{
	width:98%;
	display:block;
	@include media($nav-width)
		{  
			display:inline-block;
			vertical-align:top;
			width:43%;
		}
}*/
/*ie9styles*/
/*

html[data-useragent*='MSIE 9.0'] .stay-connected-inner-wrapper .responsive-wrapper
	{
		display:block;
		vertical-align:top; 
		width: 98%;	

		@media screen and (min-width:$medium-screen)
		{ 
			display:inline-block;
			vertical-align:top; 
			width: 49%;		
		}
	}
@media screen and (min-width: $medium-screen)
		{
html[data-useragent*='MSIE 9.0'].connect,
html[data-useragent*='MSIE 9.0'].email, 
html[data-useragent*='MSIE 9.0'].rss, 
html[data-useragent*='MSIE 9.0'].facebook
			{	
				display:inline-block;
				vertical-align:top; 
				width: 43%; 
			}
		}*/
html[data-useragent*="MSIE 9.0"] .connect,
html[data-useragent*="MSIE 9.0"] .email,
html[data-useragent*="MSIE 9.0"] .rss,
html[data-useragent*="MSIE 9.0"] .facebook {
  display: inline-block;
  width: 15%;
}

html[data-useragent*="MSIE 9.0"] .rss,
html[data-useragent*="MSIE 9.0"] .facebook {
  width: 5%;
}

html[data-useragent*="MSIE 9.0"] h2 {
  display: inline-block;
}

/*end stay-connected-wrapper*/
/*end stay-connected-wrapper*/
/*
footer section*/
footer {
  display: block;
  color: white;
  padding-top: 20px;
  width: 100%;
}
@media screen and (min-width: 951px) {
  footer {
    display: flex;
  }
}
footer a, footer footer a:link, footer a:visited, footer a:hover, footer a:focus {
  color: white;
  text-decoration: none;
}
footer a:hover, footer a:focus {
  text-decoration: underline;
}

footer .footer-address, footer .footer-menu {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 951px) {
  footer .footer-address {
    order: 1; /*flex order*/
    height: 380px;
    width: 50%;
    background-image: url("../images/fmcsa/FMCSA_Footer_Image.png");
    background-position: right bottom;
    background-repeat: no-repeat;
  }
}
footer .footer-address address {
  width: 100%;
  background-image: url("../images/fmcsa/dot_logo.png");
  background-position: 10px 0px;
  padding-left: 4em;
  background-repeat: no-repeat;
  font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  margin: 0;
  letter-spacing: 0.1em;
  vertical-align: top;
}
@media screen and (min-width: 951px) {
  footer .footer-address address {
    background-position: top left;
    padding-left: 3em;
  }
}
footer .footer-address address p.footer-dot-address-p-first-line {
  margin: 0;
  margin-bottom: 0.75em;
  font-size: 1.2em;
}
footer .footer-address address p.footer_administration_label {
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;
  font-size: 0.9em;
  font-style: italic;
  font-weight: bold;
  text-transform: none;
}
footer .footer-address address p.footer-dot-address-p {
  font-size: 0.9em;
}

footer .footer-menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: box;
}
@media screen and (min-width: 951px) {
  footer .footer-menu {
    order: 2; /*flex order*/
    width: 50%;
  }
}
footer .footer-menu ul.menu {
  border-left: 2px solid #a39c99;
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.7em;
  width: 49%;
  font-size: 0.9em;
}
footer .footer-menu ul.menu li {
  padding: 0 0 0 20px;
  background-image: url("../images/fmcsa/list-arrow.png");
  background-repeat: no-repeat;
  background-position: 5px 6px;
}
footer .footer-menu ul:first-child.menu {
  margin-left: 1em;
  border-left: 0;
}
@media screen and (min-width: 951px) {
  footer .footer-menu ul:first-child.menu {
    margin-left: 0;
    border-left: 2px solid #a39c99;
  }
}

/*feedback button*/
.FeedBackFooterBtn {
  background: none repeat scroll 0 0 #001647;
  border: 0;
  color: White;
  padding: 5px 10px;
  text-align: center;
  display: inline-block;
  /*position: absolute;*/
  right: 20px;
  bottom: 50px;
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 8950;
  font-size: 0.75em;
  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
}
@media screen and (min-width: 951px) {
  .FeedBackFooterBtn {
    bottom: 20px;
  }
}

/*.FeedBackFooterBtn img
{  
	padding-left:.5em; 
}*/
html[data-useragent*="MSIE 9.0"] footer .footer-menu {
  float: right;
}
html[data-useragent*="MSIE 9.0"] footer .footer-menu ul.menu {
  width: 46%;
  display: inline-block;
  vertical-align: top;
}

html[data-useragent*="MSIE 9.0"] footer .footer-address {
  float: left;
}

.eta-home-outer-image-partners {
  background: linear-gradient(90deg, rgb(0, 143, 167) 0%, rgb(0, 26, 103) 75%);
}
.eta-home-outer-image-partners .eta-home-inner-image {
  height: auto;
  background: url("../images/fmcsa/eta_BK.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.eta-home-outer-image-partners .eta-home-inner-image .max-content-width {
  display: block;
}
.eta-home-outer-image-partners .eta-home-inner-image .max-content-width h1 {
  font-size: 2em;
}
@media screen and (min-width: 951px) {
  .eta-home-outer-image-partners .eta-home-inner-image .max-content-width {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .eta-home-outer-image-partners .eta-home-inner-image .max-content-width .eta-home-image, .eta-home-outer-image-partners .eta-home-inner-image .max-content-width .eta-home-heading-text {
    margin: 2em;
    flex: 1;
  }
}
.eta-home-outer-image-partners .eta-home-inner-image .eta-home-image {
  text-align: center;
  display: block;
}
.eta-home-outer-image-partners .eta-home-inner-image .eta-home-image img {
  width: 40%;
  height: auto;
}
@media screen and (min-width: 600px) {
  .eta-home-outer-image-partners .eta-home-inner-image .eta-home-image img {
    width: 30%;
    height: auto;
  }
}
@media screen and (min-width: 951px) {
  .eta-home-outer-image-partners .eta-home-inner-image .eta-home-image {
    text-align: left;
  }
  .eta-home-outer-image-partners .eta-home-inner-image .eta-home-image img {
    width: 60%;
    height: auto;
  }
}
@media screen and (min-width: 1201px) {
  .eta-home-outer-image-partners .eta-home-inner-image .eta-home-image {
    text-align: left;
  }
  .eta-home-outer-image-partners .eta-home-inner-image .eta-home-image img {
    width: auto;
  }
}
.eta-home-outer-image-partners .eta-home-heading-text {
  color: white;
  line-height: 1.3;
  width: 100%;
  padding: 0 1em;
}
@media screen and (min-width: 951px) {
  .eta-home-outer-image-partners .eta-home-heading-text {
    padding: 0;
  }
}
.eta-home-outer-image-partners .eta-home-heading-text h1 {
  border-top: 6px solid #F9C642;
}
.eta-home-outer-image-partners .eta-home-heading-text h1 span {
  display: inline-block;
}
@media screen and (min-width: 600px) {
  .eta-home-outer-image-partners .eta-home-heading-text h1 span {
    display: block;
  }
}
.eta-home-outer-image-partners .eta-home-heading-text .eta-home-subheading-text {
  font-size: 20px;
  font-weight: bold;
}

.eta-home-partners {
  background-color: #3591D9;
  display: flex;
  padding: 1.5em;
}
.eta-home-partners .eta-home-partners-text {
  color: white;
  flex: 3;
}
.eta-home-partners .eta-home-partners-text .eta-home-partners-text-head {
  font-weight: bold;
  font-size: 26px;
}
.eta-home-partners .eta-home-partners-text .eta-home-partners-text-subhead {
  font-weight: bold;
  font-size: 18px;
}
.eta-home-partners .eta-home-partners-text-button-right {
  background-color: white;
  flex: 1;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 0.5em;
  white-space: nowrap;
}
.eta-home-partners .eta-home-partners-text-button-right a {
  color: #000000;
}
.eta-home-partners .eta-home-partners-text-button-right a span {
  font-weight: bold;
}
.eta-home-partners .eta-home-partners-text-button-right a img {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

/*middle section homepage styling*/
.eta-home-custom-browse-learn {
  background-color: #e0e6f3;
}
.eta-home-custom-browse-learn h2 {
  font-size: 2.5rem;
  color: #323a45;
}
.eta-home-custom-browse-learn .max-content-width {
  display: block;
}
@media screen and (min-width: 951px) {
  .eta-home-custom-browse-learn .max-content-width {
    display: flex;
    /* padding:.5em;*/
  }
}
.eta-home-custom-browse-learn .max-content-width .eta-home-outer-custom-browse, .eta-home-custom-browse-learn .max-content-width .eta-home-outer-learn {
  flex: 2;
  padding: 0.25em 0;
}
.eta-home-custom-browse-learn .max-content-width .eta-home-outer-custom-browse h2 {
  padding-left: 0.75em;
}
.eta-home-custom-browse-learn .max-content-width .eta-home-outer-learn {
  padding-left: 1em;
}
@media screen and (min-width: 951px) {
  .eta-home-custom-browse-learn .max-content-width .eta-home-outer-learn {
    flex: 1;
    border-left: #d3dbeb 1px solid;
  }
}
.eta-home-custom-browse-learn .max-content-width .eta-home-inner-wrapper {
  display: block;
  /* &.right-side{ }*/
}
@media screen and (max-width: 600px) {
  .eta-home-custom-browse-learn .max-content-width .eta-home-inner-wrapper {
    max-width: 100%;
  }
}
@media screen and (min-width: 951px) {
  .eta-home-custom-browse-learn .max-content-width .eta-home-inner-wrapper {
    display: flex;
    max-width: 100%;
  }
}
.eta-home-custom-browse-learn .max-content-width .eta-home-custom, .eta-home-custom-browse-learn .max-content-width .eta-home-browse, .eta-home-custom-browse-learn .max-content-width .eta-home-learn {
  background-image: url("../images/fmcsa/homepage-customize.svg");
  background-position: 8px 8px;
  background-repeat: no-repeat;
  background-size: 65px 65px;
  margin: 1em;
  padding: 0.5em 0.25em;
  padding-left: 5em;
  background-color: #ffffff;
}
@media screen and (min-width: 951px) {
  .eta-home-custom-browse-learn .max-content-width .eta-home-custom .top, .eta-home-custom-browse-learn .max-content-width .eta-home-browse .top, .eta-home-custom-browse-learn .max-content-width .eta-home-learn .top {
    height: 5.5em;
  }
}
.eta-home-custom-browse-learn .max-content-width .eta-home-custom .bottom button, .eta-home-custom-browse-learn .max-content-width .eta-home-browse .bottom button, .eta-home-custom-browse-learn .max-content-width .eta-home-learn .bottom button {
  margin: 1em 0;
  background: #005ca3 url("../images/fmcsa/right-homepage-arrow-white.svg");
  background-position: 85% center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  border-radius: 0;
  padding: 0.5em 2em 0.5em 1em;
  text-align: left;
}
.eta-home-custom-browse-learn .max-content-width .eta-home-custom .bottom button:hover, .eta-home-custom-browse-learn .max-content-width .eta-home-browse .bottom button:hover, .eta-home-custom-browse-learn .max-content-width .eta-home-learn .bottom button:hover {
  background-color: #112e51;
}
@media screen and (max-width: 481px) {
  .eta-home-custom-browse-learn .max-content-width .eta-home-custom .bottom button, .eta-home-custom-browse-learn .max-content-width .eta-home-browse .bottom button, .eta-home-custom-browse-learn .max-content-width .eta-home-learn .bottom button {
    width: auto;
  }
}
.eta-home-custom-browse-learn .max-content-width .eta-home-custom h3, .eta-home-custom-browse-learn .max-content-width .eta-home-browse h3, .eta-home-custom-browse-learn .max-content-width .eta-home-learn h3 {
  text-transform: uppercase;
  color: #0071BC;
}
.eta-home-custom-browse-learn .max-content-width .eta-home-browse {
  background-image: url("../images/fmcsa/homepage-browse.svg");
}
.eta-home-custom-browse-learn .max-content-width .eta-home-learn {
  background-image: url("../images/fmcsa/homepage-learn.svg");
  margin-left: 0;
}
.eta-home-custom-browse-learn .max-content-width .eta-home-custom, .eta-home-custom-browse-learn .max-content-width .eta-home-browse {
  flex: 1;
}

.eta-home-extra-box {
  background-color: #d3dbeb;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
  padding: 0 1em 1em 1.5rem;
}
@media (951px) {
  .eta-home-extra-box {
    padding: 0 1em 1em 1rem;
  }
}
.eta-home-extra-box .disclaimer-head {
  margin-top: 0;
  padding-left: 0;
  background: url("../images/caret-right-solid.svg") no-repeat;
  background-size: 20px 20px;
  background-position: right 8px;
  width: auto;
  min-width: 130px;
}
.eta-home-extra-box a {
  /*font-weight:$font-bold;*/
}
.eta-home-extra-box .js-expandmore {
  display: inline-block;
}
.eta-home-extra-box .disclaimer-home {
  background-color: #d3dbeb;
  color: #323a45;
}
.eta-home-extra-box .disclaimer-text {
  width: 100%;
  padding-top: 8px;
  color: #323a45;
}

.eta-home-regulations {
  margin: 2em 0;
}
.eta-home-regulations .eta-home-regulations-chapters {
  background-color: #e0e6f3;
}
.eta-home-regulations .eta-home-regulations-chapters h3 {
  padding: 0.3em 0 0 1em;
}
.eta-home-regulations .eta-home-regulations-chapters .flex ul {
  flex: 1;
  list-style: none;
}
.eta-home-regulations .eta-home-regulations-chapters .flex ul li {
  border-bottom: 1px solid #e4e2e0;
}
.eta-home-regulations .eta-home-regulations-chapters .flex ul li:last-child {
  border-bottom: 0;
}
.eta-home-regulations .eta-home-regulations-chapters .flex ul.right {
  text-align: left;
}

html[data-useragent*="MSIE 10.0"] .disclaimer-text {
  width: 50%;
}

.ui-dialog {
  position: absolute;
  /*top: 0;
  left: 0;*/
  padding: 0;
  /*outline: 6px;*/
  background-color: #ffffff;
  z-index: 99999;
  /*left: 50% !important;*/
  top: 20% !important;
  /*margin-left: -175px !important; 
   margin-top: -175px !important; */
  border: 1px solid #001647;
  /*box-shadow: $focus-shadow;*/
  width: 50%;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
  background-color: #001647;
}

.ui-dialog .ui-dialog-title {
  /*float: left;*/
  margin: 0.1em 0;
  /*white-space: nowrap;*/
  width: 90%;
  /*overflow: hidden;
  text-overflow: ellipsis;*/
  color: #ffffff;
  font-weight: bold;
  font-size: 2rem;
}

.ui-dialog .ui-dialog-titlebar-close {
  /*position: absolute;
  right: .3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;*/
  float: right;
  margin: 0.2em;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto;
}

/*.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}*/
.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}

.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}

.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}

.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px;
}

.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}

.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7 !important; /* Make sure to change both of these, as IE only sees the second one */
  filter: Alpha(Opacity=70) !important;
  background-color: #444 !important; /* This will make it darker */
}

.ui-button {
  background: url("../images/close-white.svg") no-repeat;
  background-size: 15px 15px;
  background-position: center center;
  width: 15px;
}
.ui-button:hover {
  background-color: transparent;
}

.toc {
  /*vertically align all elements in middle*/
  /*has to do with top level code */
  /*end heading row*/
}
.toc .toc-button {
  margin: 5px 0;
  padding: 0;
  background-color: transparent;
  color: #323a45;
  text-decoration: underline;
  font-weight: normal;
  font-size: 1.2rem;
}
.toc h2, .toc h2 a, .toc label, .toc h3, .toc h3 a, .toc h4, .toc h4 a, .toc input[type=checkbox], .toc img, .toc li {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
  padding: 0;
}
.toc h2, .toc h3, .toc h4 {
  margin: 0.2em 0;
  font-size: 1.5rem;
  width: auto;
  max-width: 85%;
}
.toc ul {
  margin: 0;
  padding: 0;
}
.toc ul li {
  list-style: none;
  width: 100%;
  margin: 0;
  border-left: 5px solid #0071bc;
}
.toc ul li ul {
  margin-left: 0.5em;
}
.toc ul li ul li {
  border-left: 5px solid #E5F1FA;
}
.toc ul li ul li h4 {
  margin-left: 5.5em;
}
.toc .checkbox-wrapper {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  float: right;
  margin-right: 50px;
}
.toc .checkbox-wrapper label {
  width: 20px;
  height: 20px;
  margin: 0;
  /*margin-right:$em1*2;*/
}
.toc a.hideshow {
  margin: 0;
  text-decoration: none;
  width: 80%;
  display: inline-block;
}
.toc a.hideshow img {
  width: 30px;
  height: 30px;
}
.toc .hide-show-width {
  margin-left: 3em;
}
.toc .heading-row {
  background-color: #e0e6f3;
  margin: 0.3em 0 0;
  text-transform: uppercase;
}
.toc .heading-row a:focus {
  box-shadow: 0px 0px 0px;
  border: 1px solid rgb(91, 174, 254);
}
.toc .heading-row h2 {
  text-transform: uppercase;
}
.toc .heading-row h2 .black-text {
  color: #323a45;
}
.toc .heading-row h2 .blue-text {
  color: #0071bc;
}
.toc .heading-row.expands {
  background-color: #0071bc;
}
.toc .heading-row.expands h2 .blue-text, .toc .heading-row.expands h2 .black-text {
  color: #ffffff;
}
.toc .heading-row.first {
  border-top: 0;
}
.toc .heading-row a.no-expand {
  margin-left: 2em;
}
.toc .heading-row a.no-expand h2 {
  color: #0071bc;
}
.toc .heading-row a.no-expand h2 span {
  color: #323a45;
}
.toc .ExtraLink a {
  margin-left: 1.5em;
}
.toc .toc-subsection {
  /*end sub-heading-row*/
}
.toc .toc-subsection a {
  color: #323a45;
  font-weight: 400;
}
.toc .toc-subsection a:focus {
  box-shadow: 0px 0px 0px;
  border: 0;
  text-decoration: underline;
}
.toc .toc-subsection .sub-heading-row {
  margin-left: 3.2em;
}
.toc .toc-subsection .sub-heading-row a:focus {
  box-shadow: 0px 0px 0px;
  border: 1px solid rgb(91, 174, 254);
}
.toc .toc-subsection .sub-heading-row.expander {
  background-color: #E5F1FA;
  margin: 0.3em 0 0 0.5em;
  text-transform: uppercase;
}
.toc .toc-subsection .sub-heading-row.expander h3 {
  text-decoration: none;
}

/*end .toc*/
.forms { /*.library-disclaimer {background-color: $eta-background-gray; margin: 0 2em; padding: 1em; color: $color-black; display:block; }*/ }
.forms td.center-left {
  /*@include media($nav-width){
  text-align:center;}*/
}
.forms .checkbox-wrapper {
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.forms .checkbox-wrapper label {
  max-width: 100%;
  margin: 0 0 0 3px;
}
@media (951px) {
  .forms {
    width: 100%;
    text-align: center;
    display: block;
    margin: 0;
  }
}

.gl-ac article {
  display: flex;
  border-bottom: 1px solid #e4e2e0;
}
.gl-ac article:last-child {
  border-bottom: 0;
}
.gl-ac article .gl-left, .gl-ac article .gl-right {
  margin: 0.5em;
}
.gl-ac article .gl-left {
  flex: 1;
  margin-left: 0;
  font-weight: 700;
}
.gl-ac article .gl-left:first-letter {
  text-transform: uppercase;
}
.gl-ac article .gl-right {
  flex: 4;
  margin-right: 0;
}

/*My Safety Guide page*/
.sg .bookmarks, .sg .notes, .sg .forms, .sg .highlights, .sg .files, .sg .sg-wrapper { /*background-color:$color-gray-warm-light;*/ }
.sg .bookmarks .no-bookmarks, .sg .notes .no-bookmarks, .sg .forms .no-bookmarks, .sg .highlights .no-bookmarks, .sg .files .no-bookmarks, .sg .sg-wrapper .no-bookmarks {
  margin: 1em;
}
@media screen and (min-width: 951px) {
  .sg .bookmarks, .sg .notes, .sg .forms, .sg .highlights, .sg .files, .sg .sg-wrapper {
    margin: 0.5em;
  }
}
@media screen and (min-width: 951px) {
  .sg .sg-wrapper {
    margin: 0.5em;
    display: flex;
  }
}
.sg .sg-wrapper .sg-wrapper-left, .sg .sg-wrapper .sg-wrapper-all {
  flex: 0.75;
}
.sg .sg-wrapper .sg-wrapper-left label, .sg .sg-wrapper .sg-wrapper-all label {
  margin-top: 0;
}
.sg .sg-wrapper .sg-wrapper-left h1, .sg .sg-wrapper .sg-wrapper-all h1 {
  font-size: 3rem;
}
.sg .sg-wrapper .sg-wrapper-left.planner, .sg .sg-wrapper .sg-wrapper-all.planner {
  margin-bottom: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .sg .sg-wrapper .sg-wrapper-left, .sg .sg-wrapper .sg-wrapper-all {
    width: 100%;
  }
}
@media screen and (-ms-high-contrast: none) and (min-width: 951px), screen and (-ms-high-contrast: active) and (min-width: 951px) {
  .sg .sg-wrapper .sg-wrapper-left, .sg .sg-wrapper .sg-wrapper-all {
    width: 50%;
  }
}
@media screen and (min-width: 0\0 ) {
  .sg .sg-wrapper .sg-wrapper-left, .sg .sg-wrapper .sg-wrapper-all {
    width: 100%;
  }
}
@media screen and (min-width: 0\0 ) and (min-width: 951px) {
  .sg .sg-wrapper .sg-wrapper-left, .sg .sg-wrapper .sg-wrapper-all {
    width: 50%;
  }
}
.sg .sg-wrapper .sg-wrapper-all {
  flex: 1 100%;
}
.sg .sg-wrapper .sg-wrapper-right {
  flex: 1;
  margin: 1em 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .sg .sg-wrapper .sg-wrapper-right {
    width: 100%;
  }
}
@media screen and (-ms-high-contrast: none) and (min-width: 951px), screen and (-ms-high-contrast: active) and (min-width: 951px) {
  .sg .sg-wrapper .sg-wrapper-right {
    width: 50%;
  }
}
@media screen and (min-width: 0\0 ) {
  .sg .sg-wrapper .sg-wrapper-right {
    width: 100%;
  }
}
@media screen and (min-width: 0\0 ) and (min-width: 951px) {
  .sg .sg-wrapper .sg-wrapper-right {
    width: 50%;
  }
}
.sg .sg-wrapper .sg-wrapper-right.planner {
  margin: 0;
  padding: 0;
}
.sg .sg-wrapper .sg-wrapper-right .usa-button {
  background-image: url("../images/fmcsa/eye-white.svg");
  background-repeat: no-repeat;
  background-size: 15%;
  background-position: 0.3em center;
  padding-left: 2.5em;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .sg .sg-wrapper .sg-wrapper-right .usa-button {
    background-size: 20px 20px;
    background-position: 0.5em center;
  }
}
@media screen and (min-width: 0\0 ) {
  .sg .sg-wrapper .sg-wrapper-right .usa-button {
    background-size: 20px 20px;
    background-position: 0.5em center;
  }
}
@media screen and (min-width: 951px) {
  .sg .sg-wrapper .sg-wrapper-right {
    margin: 1em 0.25em;
    margin-top: 1.25em;
  }
}
.sg .sg-header {
  background-color: #e0e6f3;
  padding: 0 1em 0.5em 3.25em;
  background-repeat: no-repeat;
  background-position: 0.3em center;
  background-size: 45px 45px;
}
.sg .sg-header h2, .sg .sg-header a {
  display: inline-block;
  vertical-align: middle;
  color: #323a45;
}
.sg .sg-header h2 {
  width: 80%;
  font-size: 2.5rem;
}
.sg .sg-header a {
  width: 20%;
  text-align: right;
}
.sg .bookmarks .sg-header {
  background-image: url("../images/fmcsa/toolbar-bookmark-new.svg");
}
.sg .notes .sg-header {
  background-image: url("../images/fmcsa/toolbar-notes.svg");
}
.sg .highlights .sg-header {
  background-image: url("../images/fmcsa/toolbar-highlights.svg");
}
.sg .files .sg-header {
  background-image: url("../images/fmcsa/toolbar-file.svg");
}
.sg .forms .sg-header {
  background-image: url("../images/fmcsa/toolbar-form.svg");
}
.sg .sg-left, .sg .sg-right {
  -webkit-flex: 1 0 0;
  flex: 1 0 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .sg .sg-left, .sg .sg-right {
    width: 100%;
  }
}
@media screen and (-ms-high-contrast: none) and (min-width: 951px), screen and (-ms-high-contrast: active) and (min-width: 951px) {
  .sg .sg-left, .sg .sg-right {
    width: 50%;
  }
}
@media screen and (min-width: 0\0 ) {
  .sg .sg-left, .sg .sg-right {
    width: 100%;
  }
}
@media screen and (min-width: 0\0 ) and (min-width: 951px) {
  .sg .sg-left, .sg .sg-right {
    width: 50%;
  }
}
.sg .sg-flex {
  display: block;
}
.sg .sg-flex .bookmarks, .sg .sg-flex .notes, .sg .sg-flex .forms, .sg .sg-flex .highlights, .sg .sg-flex .files {
  margin: 0.5em;
  background-color: #ffffff;
  border: 1px solid #323a45;
}
.sg .sg-flex .bookmarks .no-bookmarks, .sg .sg-flex .bookmarks ul, .sg .sg-flex .notes .no-bookmarks, .sg .sg-flex .notes ul, .sg .sg-flex .forms .no-bookmarks, .sg .sg-flex .forms ul, .sg .sg-flex .highlights .no-bookmarks, .sg .sg-flex .highlights ul, .sg .sg-flex .files .no-bookmarks, .sg .sg-flex .files ul {
  max-height: 250px;
  overflow-y: auto;
}
@media screen and (min-width: 951px) {
  .sg .sg-flex .bookmarks .no-bookmarks, .sg .sg-flex .bookmarks ul, .sg .sg-flex .notes .no-bookmarks, .sg .sg-flex .notes ul, .sg .sg-flex .forms .no-bookmarks, .sg .sg-flex .forms ul, .sg .sg-flex .highlights .no-bookmarks, .sg .sg-flex .highlights ul, .sg .sg-flex .files .no-bookmarks, .sg .sg-flex .files ul {
    height: 250px;
  }
}
@media screen and (min-width: 951px) {
  .sg .sg-flex {
    display: flex;
  }
}

.manage-planner table {
  margin: 2em 0 0.5em 0;
}

/*manage planner delete*/
.popup {
  padding: 0;
  margin: 0;
  margin-bottom: 1em;
  background-color: transparent;
}
.popup.usa-accordion li {
  width: 50%;
  margin: 0 auto;
}
.popup.usa-accordion li .usa-accordion-content[aria-hidden=false] {
  display: block;
  margin: 0 auto;
  border: 3px solid red;
  padding: 0 0.5em;
  text-align: center;
}

.search ul {
  padding: 0;
}
.search ul li {
  list-style: none;
}

.breadcrumbs-downloads {
  color: #001647;
  font-size: 1.4rem;
  display: flex;
  padding: 1em 0;
}
.breadcrumbs-downloads a {
  color: #001647;
}
.breadcrumbs-downloads .breadcrumbs {
  display: none;
}
@media screen and (min-width: 951px) {
  .breadcrumbs-downloads .breadcrumbs {
    display: block;
    margin-left: 0.75em;
    font-weight: bold;
    -webkit-align-self: flex-start;
    align-self: flex-start;
  }
  .breadcrumbs-downloads .breadcrumbs .greater-than {
    padding: 0.5em;
    font-weight: normal;
  }
  .breadcrumbs-downloads .breadcrumbs .greater-than:after {
    content: "»";
  }
  .breadcrumbs-downloads .breadcrumbs a {
    font-weight: normal;
  }
}
.breadcrumbs-downloads .downloads-print-email {
  display: flex;
  margin-left: auto;
  color: #0071BC;
}
.breadcrumbs-downloads .downloads-print-email img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.breadcrumbs-downloads .downloads-print-email div {
  padding: 0 1em;
  cursor: pointer;
}
.breadcrumbs-downloads .downloads-print-email div:last-child {
  padding-right: 0;
}
.breadcrumbs-downloads .downloads-print-email div:first-child {
  padding-left: 0;
}

.todo {
  background-color: rgba(98, 110, 120, 0.8);
  width: 100%;
  padding: 1em;
  position: fixed;
  bottom: 0;
  display: flex;
}
.todo div {
  flex: 1;
}
.todo span, .todo .tool-links {
  display: none;
}
@media screen and (min-width: 951px) {
  .todo {
    position: static;
    background-color: #e0e6f3;
    /*color:white;*/
  }
  .todo span, .todo .tool-links {
    display: inline-block;
  }
}
.todo img {
  width: 35px;
  height: 35px;
  vertical-align: middle;
  margin-right: 2%;
}
.todo div {
  padding: 0.2em;
  border-bottom: 1px solid #494440;
  white-space: nowrap;
}
.todo div div {
  margin: 0.2em;
}
@media screen and (min-width: 951px) {
  .todo div div {
    border: 0;
    margin: auto 0;
  }
}
@media screen and (min-width: 951px) {
  .todo div {
    flex: 1;
    border-left: 1px solid #494440;
    text-align: center;
    /*&.last  {border-right:0;}*/
    padding: 0 0.2em;
    border-bottom: 0;
  }
  .todo div:first-child {
    border-left: 0;
  }
  .todo div:last-child {
    border-left: 0;
    flex: 2;
  }
}
.todo a {
  color: #323a45;
  text-decoration: none;
  white-space: nowrap;
}
.todo a.tool-links {
  background-color: #001647;
  padding: 0.3em 1.5em;
  margin: 0.2em 0.3em;
  color: #ffffff;
  text-transform: uppercase;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .todo a.tool-links {
    padding: 0.3em 0.75em;
    margin-top: 0.4em;
  }
}
@media screen and (min-width: 0\0 ) {
  .todo a.tool-links {
    padding: 0.3em 0.75em;
    margin-top: 0.4em;
  }
}
.todo .tool {
  cursor: pointer;
}
.todo .tool.Selected {
  text-decoration: underline;
}

.email-a-friend-wrapper {
  background-color: #ffffff;
  height: 100%;
}

.email-a-friend {
  width: 100%;
  margin: auto;
}
.email-a-friend fieldset {
  min-width: 300px;
  margin: auto;
}
.email-a-friend label {
  margin-top: 0.5em;
}
.email-a-friend input, .email-a-friend textarea {
  max-width: 100%;
}
.email-a-friend input {
  padding: 0.5rem 0.7em;
  height: 3rem;
}
.email-a-friend textarea {
  height: 6rem;
  resize: vertical;
}
.email-a-friend .larger-font {
  font-size: 2rem;
}
.email-a-friend .ending {
  display: block;
}
@media screen and (min-width: 481px) {
  .email-a-friend .ending {
    display: flex;
    align-items: center;
  }
  .email-a-friend .ending button {
    justify-content: flex-start;
  }
  .email-a-friend .ending a.close {
    margin-left: auto;
  }
}

.help-wrapper {
  display: block;
}
@media screen and (min-width: 951px) {
  .help-wrapper {
    display: flex;
  }
}
.help-wrapper .icon-wrapper {
  text-align: center;
  background-color: #e0e6f3;
  padding: 1em;
  margin: 1em 0;
  width: 50%;
}
.help-wrapper .icon-wrapper .text {
  display: block;
  font-weight: 700;
  font-size: 2rem;
}
.help-wrapper .icon-wrapper.left {
  margin-right: 0.5em;
}
.help-wrapper .icon-wrapper.right {
  margin-left: 0.5em;
}
.help-wrapper .icon-wrapper a.video-link .icon-image {
  width: 60px;
  height: auto;
}
.help-wrapper .icon-wrapper video.video-js {
  width: 100%;
}

/*ie10 issues with video*/
html[data-useragent*="MSIE 10.0"] .width100 {
  width: 85%;
}
html[data-useragent*="MSIE 10.0"] .width100 .help-wrapper {
  display: block;
}
@media screen and (min-width: 951px) {
  html[data-useragent*="MSIE 10.0"] .width100 .help-wrapper {
    display: inline-block;
    width: 95%;
  }
}
html[data-useragent*="MSIE 10.0"] .width100 .help-wrapper .icon-wrapper {
  display: inline-block;
  text-align: center;
  background-color: #e0e6f3;
  padding: 1em;
  margin: 1em 0;
  width: 45%;
}
html[data-useragent*="MSIE 10.0"] .width100 .help-wrapper .icon-wrapper .text {
  font-weight: 700;
  font-size: 2rem;
}
html[data-useragent*="MSIE 10.0"] .width100 .help-wrapper .icon-wrapper.left {
  margin-right: 0.5em;
}
html[data-useragent*="MSIE 10.0"] .width100 .help-wrapper .icon-wrapper.right {
  margin-left: 0.5em;
}
html[data-useragent*="MSIE 10.0"] .width100 .help-wrapper .icon-wrapper a.video-link .icon-image {
  width: 60px;
  height: auto;
}
html[data-useragent*="MSIE 10.0"] .width100 .help-wrapper .icon-wrapper video.video-js {
  width: 350px;
}

.chapters-head, .left-related-forms-head, .guide-head, .disclaimer-head {
  font-size: 2.3rem;
  font-weight: 700;
  padding-left: 0;
}

button.expandmore__button {
  text-align: left;
  width: 100%;
  display: inline-block;
  border-bottom: 3px solid #001647;
}

button.expandmore__button:focus, button.expandmore__button:hover {
  background-color: transparent;
  color: #323a45;
  display: inline-block;
  border-bottom: 3px solid #001647;
}

.expandmore__button {
  padding: 0;
}

.expandmore__button:before {
  content: "Show ";
}

.expandmore__button[aria-expanded=true]:before,
.expandmore__button[data-expanded=true]:before {
  content: " Hide ";
}

.expandmore__button {
  background: url("../images/arrow-up-blue.svg") no-repeat;
  background-size: 15px 15px;
  background-position: 95% center;
  padding-right: 1em;
}

.expandmore__button[aria-expanded=true],
.expandmore__button[data-expanded=true] {
  background: url("../images/arrow-down-blue.svg") no-repeat;
  background-size: 15px 15px;
  background-position: 95% center;
  padding-right: 1em;
}

.left-chapters h2 a {
  color: #001647;
}
.left-chapters button.expandmore__button {
  color: #0071BC;
  text-transform: uppercase;
  border: 0;
}
.left-chapters button.expandmore__button:focus, .left-chapters button.expandmore__button:hover {
  background-color: transparent;
}
.left-chapters .expandmore__button {
  padding: 0 0.75rem 0 1.25rem;
}

.left-chapters ul, .left-related-forms ul, .left-resources ul {
  list-style: none;
}
@media screen and (min-width: 951px) {
  .left-chapters h2, .left-related-forms h2, .left-resources h2 {
    padding-left: 1.25rem;
  }
  .left-chapters .chapters-head, .left-related-forms .chapters-head, .left-resources .chapters-head {
    border-bottom: 4px solid #001647;
  }
  .left-chapters .chapters-head a, .left-related-forms .chapters-head a, .left-resources .chapters-head a {
    padding-left: 1.25rem;
    color: #001647;
  }
  .left-chapters ul, .left-related-forms ul, .left-resources ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0.2em 0;
    display: block;
  }
  .left-chapters ul li, .left-related-forms ul li, .left-resources ul li {
    list-style: none;
    padding: 0.3em 0;
    /*margin-bottom:0;*/
    margin: 0;
    /*&:last-child {border-bottom:0;}*/
  }
  .left-chapters ul li a, .left-related-forms ul li a, .left-resources ul li a {
    display: block;
    line-height: 1.3;
    color: #323a45;
    text-decoration: none;
  }
  .left-chapters ul li a span, .left-related-forms ul li a span, .left-resources ul li a span {
    display: inline-block;
    vertical-align: top;
    /*width: .75em;*/
  }
  .left-chapters ul li a span:hover, .left-chapters ul li a span:focus, .left-related-forms ul li a span:hover, .left-related-forms ul li a span:focus, .left-resources ul li a span:hover, .left-resources ul li a span:focus {
    text-decoration: underline;
  }
  .left-chapters ul li a span.title, .left-related-forms ul li a span.title, .left-resources ul li a span.title {
    width: 90%;
  }
  .left-chapters ul li a span.sec, .left-related-forms ul li a span.sec, .left-resources ul li a span.sec {
    width: 1.5em;
    font-weight: bold;
  }
  .left-chapters ul li a span.sec-title, .left-related-forms ul li a span.sec-title, .left-resources ul li a span.sec-title {
    width: 86%;
  }
  .left-chapters ul li a span.sub, .left-related-forms ul li a span.sub, .left-resources ul li a span.sub {
    width: 2.75em;
  }
  .left-chapters ul li a span.sub-title, .left-related-forms ul li a span.sub-title, .left-resources ul li a span.sub-title {
    width: 75%;
  }
  .left-chapters ul li a span.ch, .left-related-forms ul li a span.ch, .left-resources ul li a span.ch {
    font-weight: bold;
    text-transform: uppercase;
    display: block;
  }
  .left-chapters ul li a span.ch-title, .left-related-forms ul li a span.ch-title, .left-resources ul li a span.ch-title {
    font-size: 1.4rem;
  }
  .left-chapters ul li a.arrow-right, .left-chapters ul li a.arrow-down, .left-chapters ul li a.selected, .left-related-forms ul li a.arrow-right, .left-related-forms ul li a.arrow-down, .left-related-forms ul li a.selected, .left-resources ul li a.arrow-right, .left-resources ul li a.arrow-down, .left-resources ul li a.selected {
    cursor: pointer;
    padding: 0.5em;
  }
  .left-chapters ul li a.arrow-right span.sect-title, .left-chapters ul li a.arrow-down span.sect-title, .left-chapters ul li a.selected span.sect-title, .left-related-forms ul li a.arrow-right span.sect-title, .left-related-forms ul li a.arrow-down span.sect-title, .left-related-forms ul li a.selected span.sect-title, .left-resources ul li a.arrow-right span.sect-title, .left-resources ul li a.arrow-down span.sect-title, .left-resources ul li a.selected span.sect-title {
    width: 80%;
  }
  .left-chapters ul li a.arrow-right, .left-related-forms ul li a.arrow-right, .left-resources ul li a.arrow-right {
    background: #e0e6f3 url("../images/arrow-right-blue.svg") no-repeat;
    background-size: 13px 13px;
    background-position: 95%;
  }
  .left-chapters ul li a.arrow-right.selected, .left-chapters ul li a.arrow-right.active-class, .left-related-forms ul li a.arrow-right.selected, .left-related-forms ul li a.arrow-right.active-class, .left-resources ul li a.arrow-right.selected, .left-resources ul li a.arrow-right.active-class {
    background: #001647 url("../images/arrow-down-white.svg") no-repeat;
    background-size: 13px 13px;
    background-position: 95%;
    color: #ffffff;
  }
  .left-chapters ul li a.arrow-right.selected.selected-hidden, .left-related-forms ul li a.arrow-right.selected.selected-hidden, .left-resources ul li a.arrow-right.selected.selected-hidden {
    background: #001647 url("../images/arrow-right-white.svg") no-repeat;
    background-size: 13px 13px;
    background-position: 95%;
    color: #ffffff;
    border-left: 5px solid #0071BC;
  }
  .left-chapters ul li a.arrow-down, .left-related-forms ul li a.arrow-down, .left-resources ul li a.arrow-down {
    background: #e0e6f3 url("../images/arrow-down-blue.svg") no-repeat;
    background-size: 13px 13px;
    background-position: 95%;
  }
  .left-chapters ul li .ExpanderBody span.ch, .left-related-forms ul li .ExpanderBody span.ch, .left-resources ul li .ExpanderBody span.ch {
    display: inline-block;
    width: 1.5em;
  }
  .left-chapters ul li .ExpanderBody span.ch-title, .left-related-forms ul li .ExpanderBody span.ch-title, .left-resources ul li .ExpanderBody span.ch-title {
    font-size: 1.7rem;
    font-weight: normal;
    width: 86%;
  }
  .left-chapters ul li ul li, .left-related-forms ul li ul li, .left-resources ul li ul li {
    padding-left: 0;
  }
}

.left-chapters ul {
  list-style: none;
}
.left-chapters ul.ExpanderBody li {
  border-bottom: 1px solid #d3dbeb;
  padding: 0;
  margin: 0 0 0 1px;
}
.left-chapters ul.ExpanderBody li a {
  padding: 0.5em 0;
}
.left-chapters ul.ExpanderBody li a.selected {
  background-color: #001647;
  color: #ffffff;
}
.left-chapters ul.ExpanderBody li a.selected:hover {
  background-color: #0071BC;
}

.left-related-forms .left-related-forms-head, .left-resources .left-related-forms-head {
  background-color: #001647;
  color: #ffffff;
}
.left-related-forms .left-related-forms-head a, .left-resources .left-related-forms-head a {
  color: #ffffff;
}
.left-related-forms ul, .left-resources ul {
  padding-bottom: 0.8em;
  list-style: none;
  padding-left: 0;
}
.left-related-forms ul li a, .left-resources ul li a {
  padding-left: 0.25em;
  width: 80%;
  display: inline-block;
  /*@include apply-to-IE() 
  	{
  		@include media($nav-width)
  		{
  			background-position:-80px; 
  		}
  	}*/
}
.left-related-forms ul li:before, .left-resources ul li:before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  background: url("../images/fmcsa/download-dblue.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  margin-right: 0px;
  background-position: center center;
  vertical-align: top;
}

.left-resources ul li:before {
  background: url("../images/external-link-dblue.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
}

.print-disclaimer {
  display: none;
}

.disclaimer {
  background-color: #001647;
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
  padding: 0 1em 1em 1.25rem;
}
.disclaimer.margin-top {
  margin-top: 1em;
}
.disclaimer button.expandmore__button:focus, .disclaimer button.expandmore__button:hover {
  background-color: transparent;
  color: #ffffff;
}
.disclaimer .expandmore__button {
  padding: 0;
  padding-right: 1em;
}
.disclaimer .expandmore__button:before {
  content: "";
}
.disclaimer .expandmore__button[aria-expanded=true]:before,
.disclaimer .expandmore__button[data-expanded=true]:before {
  content: "";
}
.disclaimer .expandmore__button {
  background: url("../images/arrow-up-white.svg") no-repeat;
  background-size: 15px 15px;
  background-position: right center;
}
.disclaimer .expandmore__button[aria-expanded=true],
.disclaimer .expandmore__button[data-expanded=true] {
  background: url("../images/arrow-down-white.svg") no-repeat;
  background-size: 15px 15px;
  background-position: right center;
}
.disclaimer .disclaimer-head {
  margin-top: 0;
  padding-left: 0;
}
.disclaimer a {
  color: #ffffff;
  font-weight: 700;
}
.disclaimer .js-expandmore {
  display: inline-block;
}

.three-column-outer-wrapper {
  display: flex;
}
.three-column-outer-wrapper .three-column-content {
  flex: 2.5;
}
.three-column-outer-wrapper aside.three-column-right-column {
  padding: 1.5em 0 1.5em 1.5em;
  flex: 1;
}

.li_ch.title-expanded {
  border-left: 4px solid #001647;
  padding: 0;
}
.li_ch.title-expanded .ExpanderBody {
  margin: 0;
}
.li_ch.title-expanded .ExpanderBody .Nav_Link, .li_ch.title-expanded .ExpanderBody .ExtraLink {
  padding: 0.5em;
}

ul .li_sec {
  position: relative;
}
ul .li_sec[aria-expanded=true] a {
  color: #ffffff;
  background-color: #0071BC;
}
ul .li_sec .ExpanderHover {
  background-color: #0071BC;
  color: #ffffff;
  position: absolute;
  z-index: 9800;
  top: -40px;
  left: 99%;
  width: 350px;
  box-shadow: 1px 1px 3px rgba(98, 110, 120, 0.4);
  padding: 0.1em;
}
ul .li_sec .ExpanderHover .ExtraLink, ul .li_sec .ExpanderHover .li_sub {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
ul .li_sec .ExpanderHover .ExtraLink .selected, ul .li_sec .ExpanderHover .li_sub .selected { /*color:$eta-font-color;*/ }
ul .li_sec .ExpanderHover .ExtraLink:last-child, ul .li_sec .ExpanderHover .li_sub:last-child {
  border: 0;
}
ul .li_sec .ExpanderHover .ExtraLink a, ul .li_sec .ExpanderHover .li_sub a {
  color: #ffffff;
}
ul .li_sec .ExpanderHover .ExtraLink a:hover, ul .li_sec .ExpanderHover .ExtraLink a:focus, ul .li_sec .ExpanderHover .li_sub a:hover, ul .li_sec .ExpanderHover .li_sub a:focus {
  text-decoration: underline;
}
ul .li_sec .ExpanderHover .ExtraLink a .sub, ul .li_sec .ExpanderHover .li_sub a .sub {
  font-weight: bold;
}
.left-none, .left-forms {
  padding-bottom: 0.8em;
  list-style: none;
  padding-left: 0;
}

.left-none {
  padding: 0.3em 0;
  margin: 0;
  padding-left: 30px;
}

left-forms {
  padding: 0.3em 0;
  margin: 0;
}

.left-forms a {
  color: #0071bc;
}

.left-forms:before {
  background: url("../images/external-link.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 10px;
  vertical-align: top;
}

@media print {
  .left-forms:before {
    -webkit-print-color-adjust: exact !important; /* Chrome, Safari */
    color-adjust: exact !important; /*Firefox*/
    background: url("../images/external-link.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    content: "";
    display: inline-block;
    height: 20px;
    width: 20px;
    margin-right: 10px;
    vertical-align: top;
  }
}
/* left nav */
.guide {
  background-color: rgba(98, 110, 120, 0.8);
  display: flex;
  width: 100%;
  bottom: 0;
  position: fixed;
  z-index: 8940;
  font-weight: 700;
  /*information popup*/
  /*end information popup*/
}
@media screen and (min-width: 951px) {
  .guide {
    background-color: transparent;
    display: block;
    width: auto;
    height: auto;
    position: relative;
    margin-bottom: 2em;
    margin-left: 1.25rem;
  }
}
.guide .guide-head {
  display: none;
}
@media screen and (min-width: 951px) {
  .guide .guide-head {
    display: block;
    padding: 0;
    border-bottom: 5px solid #001647;
    flex: 5;
    /*white-space: nowrap;*/
  }
  .guide .guide-head span {
    font-weight: normal;
  }
}
.guide .guide-head a {
  color: #323a45;
  text-decoration: none;
}
.guide .guide-head a:hover, .guide .guide-head a:focus {
  text-decoration: underline;
}
.guide .guide-subhead {
  display: none;
}
@media screen and (min-width: 951px) {
  .guide .guide-subhead {
    display: block;
    white-space: nowrap;
    padding-left: 0.6em;
  }
  .guide .guide-subhead span {
    font-weight: 700;
  }
}
.guide .action {
  display: flex;
  /*background-color:$color-gray;*/
  width: 100%;
  margin: 0;
  padding: 0.3em;
}
.guide .action img {
  width: 40px;
  height: 40px;
  vertical-align: middle;
}
@media screen and (min-width: 951px) {
  .guide .action img {
    width: 25px;
    height: 25px;
    float: right;
  }
}
@media screen and (min-width: 951px) {
  .guide .action {
    padding: 0;
    display: block;
  }
  .guide .action li {
    border-bottom: 1px solid #e4e2e0;
    padding: 0.25em 0;
  }
  .guide .action li:last-child {
    border-bottom: 0;
  }
}
.guide ul.usa-accordion {
  display: none;
}
@media screen and (min-width: 951px) {
  .guide ul.usa-accordion {
    display: block;
    flex: 1;
  }
}
.guide ul.usa-accordion li {
  margin: 0;
  padding: 0;
  background-color: transparent;
  width: 100%;
  text-align: right;
  padding-right: 0.6em;
}
.guide ul.usa-accordion li:first-child {
  display: none;
}
@media screen and (min-width: 951px) {
  .guide ul.usa-accordion li:first-child {
    display: inline-block;
    width: 85%;
  }
  .guide ul.usa-accordion li:first-child h2 {
    font-size: 1.7rem;
    display: block;
    margin: 0 1em 0.3em;
  }
}
@media screen and (min-width: 951px) {
  .guide ul.usa-accordion li:last-child {
    width: 10%;
    display: inline-block;
  }
  .guide ul.usa-accordion li:last-child button {
    width: auto;
    padding: 0;
    margin: 0;
    background-color: transparent;
  }
  .guide ul.usa-accordion li:last-child .usa-accordion-content {
    position: absolute;
    z-index: 6000;
    top: 10;
    left: 20;
    width: 450px;
    border: 1px solid #e4e2e0;
    text-align: left;
    padding: 1em;
    font-weight: normal;
  }
}

html[data-useragent*="MSIE 9.0"] .guide {
  display: block;
  width: auto;
  height: auto;
  position: static;
}

.action li {
  list-style: none;
  flex-direction: row;
  vertical-align: top;
  flex: 1 0 0;
  text-align: center;
}
@media screen and (min-width: 951px) {
  .action li {
    text-align: left;
  }
}
.action li a {
  color: #000000;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .action li { /*all versions of IE*/
    display: inline-block;
    vertical-align: middle;
    width: 19%;
  }
}
@media screen and (-ms-high-contrast: none) and (min-width: 951px), screen and (-ms-high-contrast: active) and (min-width: 951px) {
  .action li {
    display: block;
    width: 100%;
  }
}
@media screen and (min-width: 0\0 ) {
  .action li { /*all versions of IE*/
    display: inline-block;
    vertical-align: middle;
    width: 19%;
  }
}
@media screen and (min-width: 0\0 ) and (min-width: 951px) {
  .action li {
    display: block;
    width: 100%;
  }
}

.action img {
  vertical-align: middle;
  display: inline-block;
}

.action span {
  display: none;
}
@media screen and (min-width: 951px) {
  .action span {
    display: inline-block;
    margin-left: 0.25em;
  }
}

html[data-useragent*="MSIE 9.0"] .action li {
  display: block;
}
html[data-useragent*="MSIE 9.0"] .action li span {
  display: none;
}
@media screen and (min-width: 951px) {
  html[data-useragent*="MSIE 9.0"] .action li span {
    display: inline-block;
  }
}

todo bar .todo button.usa-nav-close,
.guide button.usa-nav-close {
  display: block;
  width: auto;
  padding: 0;
  margin: 0;
}
todo bar .todo button.usa-nav-close img,
.guide button.usa-nav-close img {
  width: 1em;
}

#highBook {
  position: absolute;
  display: block;
  border: grey solid 1px;
  background: white;
  display: none;
}

#cal1 {
  position: absolute;
  height: 0px;
  width: 0px;
  top: 100px;
  left: 100px;
  z-index: -100;
}

#cal2 {
  position: absolute;
  height: 0px;
  width: 0px;
  top: 0px;
  left: 0px;
  z-index: -100;
}

#highSel {
  position: absolute;
  display: block;
  border: grey solid 1px;
  background: white;
  display: none;
  padding: 5px 10px;
  width: 315px;
  z-index: 9500;
}

#highSel span:first-child {
  margin-right: 5px;
}

#highSpan {
  background-color: dodgerblue;
  color: white;
}

/*
.todo a{
    display:flex; color:#ffffff; min-width:100px; text-decoration:none;
}

.todo a:visited{
   color:#ffffff;  text-decoration:none;
}*/
.hidem {
  display: none;
}
