
/*
 * Fiscal Service Subsite Common Styles
 */

/* Font Families */

@font-face {
  font-family: "Open Sans";
  font-weight: 300;
  font-style: normal;
  src: url("/fonts/OpenSans-Light.woff2") format("woff2"),f
       url("/fonts/OpenSans-Light.woff") format("woff"),
       url("/fonts/OpenSans-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-weight: 300;
  font-style: italic;
  src: url("/fonts/OpenSans-LightItalic.woff2") format("woff2"),
       url("/fonts/OpenSans-LightItalic.woff") format("woff"),
       url("/fonts/OpenSans-LightItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
  src: url("/fonts/OpenSans-Regular.woff2") format("woff2"),
       url("/fonts/OpenSans-Regular.woff") format("woff"),
       url("/fonts/OpenSans-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: italic;
  src: url("/fonts/OpenSans-Italic.woff2") format("woff2"),
       url("/fonts/OpenSans-Italic.woff") format("woff"),
       url("/fonts/OpenSans-Italic.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  font-style: normal;
  src: url("/fonts/OpenSans-SemiBold.woff2") format("woff2"),
       url("/fonts/OpenSans-SemiBold.woff") format("woff"),
       url("/fonts/OpenSans-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  font-style: italic;
  src: url("/fonts/OpenSans-SemiBoldItalic.woff2") format("woff2"),
       url("/fonts/OpenSans-SemiBoldItalic.woff") format("woff"),
       url("/fonts/OpenSans-SemiBoldItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-weight: 700;
  font-style: normal;
  src: url("/fonts/OpenSans-Bold.woff2") format("woff2"),
       url("/fonts/OpenSans-Bold.woff") format("woff"),
       url("/fonts/OpenSans-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-weight: 700;
  font-style: italic;
  src: url("/fonts/OpenSans-BoldItalic.woff2") format("woff2"),
       url("/fonts/OpenSans-BoldItalic.woff") format("woff"),
       url("/fonts/OpenSans-BoldItalic.ttf") format("truetype");
}

/* Reset */

*, *::before, *::after {
  padding: 0;
  margin: 0;
  line-height: inherit;
  text-decoration: inherit;
  letter-spacing: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  color: inherit;
  box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  overflow-y: scroll;
  min-width: 320px;
  height: 100%;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #3a3a3a;
}

/* Hide focus outline for mouse users */

body[data-mouse-active] :focus:not(input):not(textarea):not(select) {
  outline: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
dl,
pre,
img,
main,
form,
input,
label,
audio,
video,
select,
figure,
canvas,
output,
address,
h-scroll,
textarea,
fieldset,
blockquote {
  display: block;
}

img.noblock {display: inline}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
dl,
li,
pre,
hr,
img,
form,
table,
audio,
video,
figure,
canvas,
output,
address,
h-scroll,
fieldset,
blockquote {
  margin-bottom: 16px;
}

@media (min-width: 960px) {

  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  ol,
  ul,
  dl,
  li,
  pre,
  hr,
  img,
  form,
  table,
  audio,
  video,
  figure,
  canvas,
  output,
  address,
  h-scroll,
  fieldset,
  blockquote {
    margin-bottom: 20px;
  }

}

p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
ol:last-child,
ul:last-child,
dl:last-child,
li:last-child,
pre:last-child,
hr:last-child,
img:last-child,
form:last-child,
table:last-child,
label:last-child,
input:last-child,
audio:last-child,
video:last-child,
select:last-child,
figure:last-child,
canvas:last-child,
output:last-child,
address:last-child,
h-scroll:last-child,
fieldset:last-child,
textarea:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

hr {
  width: 100%;
  height: 1px;
  background-color: #9c9ea1;
  border: none;
}

img {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border: none;
}

figure.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figure.cover.compatible {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

video {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #9c9ea1;
  cursor: pointer;
}

button,
input[type="button"],
input[type="submit"] {
  text-align: left;
  background: transparent;
  border: none;
}

button:not([disabled]),
input[type="button"]:not([disabled]),
input[type="submit"]:not([disabled]) {
  cursor: pointer;
}

button:active,
input[type="button"]:active,
input[type="submit"]:active {
  color: inherit;
}

[hidden] {
  display: none;
}

.zebra {
  padding-left: 0;
  list-style: none;
}

.zebra li,
.zebra dd {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  margin: 0;
}

.zebra li:nth-child(odd),
.zebra dd:nth-child(odd) {
  background-color: #f4f4f4;
}

/* Content Lock */

content-lock {
  display: block;
  position: relative;
  max-width: 1400px;
  padding-left: 7%;
  padding-right: 7%;
  margin: 0 auto;
}

section content-lock {
  padding-top: 70px;
  padding-bottom: 54px;
}

section + section:not([class*="background"]) content-lock {
  padding-top: 0;
}

section[class*="background"] + section content-lock {
  padding-top: 70px;
}

@media (min-width: 640px) {

  content-lock {
    padding-left: 12.5%;
    padding-right: 12.5%;
  }

  section content-lock {
    padding-top: 80px;
    padding-bottom: 64px;
  }

  section[class*="background"] + section content-lock {
    padding-top: 80px;
  }

}

@media (min-width: 960px) {

  content-lock {
    padding-left: 8.3%;
    padding-right: 8.3%;
  }

  section content-lock {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  section[class*="background"] + section content-lock {
    padding-top: 100px;
  }

}

@media (min-width: 1400px) {

  content-lock {
    padding-left: 116.6px;
    padding-right: 116.6px;
  }

}

/* Rows */

h-box {
  display: block;
  position: relative;
  font-size: 0;
}

@media (max-width: 639.98px) {

  h-box {
    margin-left: -8px;
    margin-right: -8px;
  }

}

@media (min-width: 640px) and (max-width: 959.98px) {

  h-box {
    margin-left: -10px;
    margin-right: -10px;
  }

}

@media (min-width: 960px) {

  h-box {
    margin-left: -12px;
    margin-right: -12px;
  }

}

h-box[data-table=""] {
  display: table;
  margin-left: 0;
  margin-right: 0;
}

h-box[data-table=""] > v-box {
  display: table-cell;
  padding-left: 0;
  padding-right: 10px;
}

@media (max-width: 639.98px) {

  h-box[data-table~="sm"] {
    display: table;
    margin-left: 0;
    margin-right: 0;
  }

  h-box[data-table~="sm"] > v-box {
    display: table-cell;
    padding-left: 0;
    padding-right: 0;
  }

}

@media (min-width: 640px) and (max-width: 959.98px) {

  h-box[data-table~="md"] {
    display: table;
    margin-left: 0;
    margin-right: 0;
  }

  h-box[data-table~="md"] > v-box {
    display: table-cell;
    padding-left: 0;
    padding-right: 0;
  }

}

@media (min-width: 960px) {

  h-box[data-table~="lg"] {
    display: table;
    margin-left: 0;
    margin-right: 0;
  }

  h-box[data-table~="lg"] > v-box {
    display: table-cell;
    padding-left: 0;
    padding-right: 0;
  }

}

h-box[data-table][data-fixed] {
  table-layout: fixed;
}

/* Columns */

v-box {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

v-box[data-border*="top"]::before,
v-box[data-border*="bottom"]::after {
  display: block;
  position: relative;
  width: 100%;
  content: "";
  border-style: solid;
  border-width: 0;
  border-color: #9c9ea1;
}

@media (max-width: 639.98px) {

  v-box {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
  }

  v-box[data-span*="sm-1"] {
    width: 25%;
  }

  v-box[data-span*="sm-2"] {
    width: 50%;
  }

  v-box[data-span*="sm-3"] {
    width: 75%;
  }

  v-box[data-span*="sm-4"] {
    width: 100%;
  }

  v-box[data-border^="top-small"]::before,
  v-box[data-border*=" top-small "]::before,
  v-box[data-border^=" top-small"]::before,
  v-box[data-border*="sm-top-small"]::before {
    top: -8px;
    border-top-width: 1px;
  }

  v-box[data-border^="top-medium"]::before,
  v-box[data-border*=" top-medium "]::before,
  v-box[data-border^=" top-medium"]::before,
  v-box[data-border*="sm-top-medium"]::before {
    top: -12.5px;
    border-top-width: 1px;
  }

  v-box[data-border^="top-large"]::before,
  v-box[data-border*=" top-large "]::before,
  v-box[data-border^=" top-large"]::before,
  v-box[data-border*="sm-top-large"]::before {
    top: -15px;
    border-top-width: 1px;
  }

  v-box[data-border^="top-x-large"]::before,
  v-box[data-border*=" top-x-large "]::before,
  v-box[data-border^=" top-x-large"]::before,
  v-box[data-border*="sm-top-x-large"]::before {
    top: -35px;
    border-top-width: 1px;
  }

  v-box[data-border^="bottom-small"]::before,
  v-box[data-border*=" bottom-small "]::before,
  v-box[data-border^=" bottom-small"]::before,
  v-box[data-border*="sm-bottom-small"]::before {
    bottom: -8px;
    border-bottom-width: 1px;
  }

  v-box[data-border^="bottom-medium"]::before,
  v-box[data-border*=" bottom-medium "]::before,
  v-box[data-border^=" bottom-medium"]::before,
  v-box[data-border*="sm-bottom-medium"]::before {
    bottom: -12.5px;
    border-bottom-width: 1px;
  }

  v-box[data-border^="bottom-large"]::before,
  v-box[data-border*=" bottom-large "]::before,
  v-box[data-border^=" bottom-large"]::before,
  v-box[data-border*="sm-bottom-large"]::before {
    bottom: -15px;
    border-bottom-width: 1px;
  }

  v-box[data-border^="bottom-x-large"]::before,
  v-box[data-border*=" bottom-x-large "]::before,
  v-box[data-border^=" bottom-x-large"]::before,
  v-box[data-border*="sm-bottom-x-large"]::before {
    bottom: -35px;
    border-bottom-width: 1px;
  }

}

@media (min-width: 640px) and (max-width: 959.98px) {

  v-box {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 16px;
  }

  v-box[data-span*="md-1"] {
    width: 16.6%;
  }

  v-box[data-span*="md-2"] {
    width: 33.3%;
  }

  v-box[data-span*="md-3"] {
    width: 50%;
  }

  v-box[data-span*="md-4"] {
    width: 66.6%;
  }

  v-box[data-span*="md-5"] {
    width: 83.3%;
  }

  v-box[data-span*="md-6"] {
    width: 100%;
  }

  v-box[data-border^="top-small"]::before,
  v-box[data-border*=" top-small "]::before,
  v-box[data-border^=" top-small"]::before,
  v-box[data-border*="md-top-small"]::before {
    top: -8px;
    border-top-width: 1px;
  }

  v-box[data-border^="top-medium"]::before,
  v-box[data-border*=" top-medium "]::before,
  v-box[data-border^=" top-medium"]::before,
  v-box[data-border*="md-top-medium"]::before {
    top: -15px;
    border-top-width: 1px;
  }

  v-box[data-border^="top-large"]::before,
  v-box[data-border*=" top-large "]::before,
  v-box[data-border^=" top-large"]::before,
  v-box[data-border*="md-top-large"]::before {
    top: -20px;
    border-top-width: 1px;
  }

  v-box[data-border^="top-x-large"]::before,
  v-box[data-border*=" top-x-large "]::before,
  v-box[data-border^=" top-x-large"]::before,
  v-box[data-border*="md-top-x-large"]::before {
    top: -40px;
    border-top-width: 1px;
  }

  v-box[data-border^="bottom-small"]::before,
  v-box[data-border*=" bottom-small "]::before,
  v-box[data-border^=" bottom-small"]::before,
  v-box[data-border*="md-bottom-small"]::before {
    bottom: -8px;
    border-bottom-width: 1px;
  }

  v-box[data-border^="bottom-medium"]::before,
  v-box[data-border*=" bottom-medium "]::before,
  v-box[data-border^=" bottom-medium"]::before,
  v-box[data-border*="md-bottom-medium"]::before {
    bottom: -15px;
    border-bottom-width: 1px;
  }

  v-box[data-border^="bottom-large"]::before,
  v-box[data-border*=" bottom-large "]::before,
  v-box[data-border^=" bottom-large"]::before,
  v-box[data-border*="md-bottom-large"]::before {
    bottom: -20px;
    border-bottom-width: 1px;
  }

  v-box[data-border^="bottom-x-large"]::before,
  v-box[data-border*=" bottom-x-large "]::before,
  v-box[data-border^=" bottom-x-large"]::before,
  v-box[data-border*="md-bottom-x-large"]::before {
    bottom: -40px;
    border-bottom-width: 1px;
  }

}

@media (min-width: 960px) {

  v-box {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 20px;
  }

  v-box[data-span*="lg-1"] {
    width: 8.3%;
  }

  v-box[data-span*="lg-2"] {
    width: 16.6%;
  }

  v-box[data-span*="lg-3"] {
    width: 25%;
  }

  v-box[data-span*="lg-4"] {
    width: 33.3%;
  }

  v-box[data-span*="lg-5"] {
    width: 41.6%;
  }

  v-box[data-span*="lg-6"] {
    width: 50%;
  }

  v-box[data-span*="lg-7"] {
    width: 58.3%;
  }

  v-box[data-span*="lg-8"] {
    width: 66.6%;
  }

  v-box[data-span*="lg-9"] {
    width: 75%;
  }

  v-box[data-span*="lg-10"] {
    width: 83.3%;
  }

  v-box[data-span*="lg-11"] {
    width: 91.6%;
  }

  v-box[data-span*="lg-12"] {
    width: 100%;
  }

  v-box[data-border^="top-small"]::before,
  v-box[data-border*=" top-small "]::before,
  v-box[data-border^=" top-small"]::before,
  v-box[data-border*="lg-top-small"]::before {
    top: -10px;
    border-top-width: 1px;
  }

  v-box[data-border^="top-medium"]::before,
  v-box[data-border*=" top-medium "]::before,
  v-box[data-border^=" top-medium"]::before,
  v-box[data-border*="lg-top-medium"]::before {
    top: -17.5px;
    border-top-width: 1px;
  }

  v-box[data-border^="top-large"]::before,
  v-box[data-border*=" top-large "]::before,
  v-box[data-border^=" top-large"]::before,
  v-box[data-border*="lg-top-large"]::before {
    top: -25px;
    border-top-width: 1px;
  }

  v-box[data-border^="top-x-large"]::before,
  v-box[data-border*=" top-x-large "]::before,
  v-box[data-border^=" top-x-large"]::before,
  v-box[data-border*="lg-top-x-large"]::before {
    top: -50px;
    border-top-width: 1px;
  }

  v-box[data-border^="bottom-small"]::before,
  v-box[data-border*=" bottom-small "]::before,
  v-box[data-border^=" bottom-small"]::before,
  v-box[data-border*="lg-bottom-small"]::before {
    bottom: -10px;
    border-bottom-width: 1px;
  }

  v-box[data-border^="bottom-medium"]::before,
  v-box[data-border*=" bottom-medium "]::before,
  v-box[data-border^=" bottom-medium"]::before,
  v-box[data-border*="lg-bottom-medium"]::before {
    bottom: -17.5px;
    border-bottom-width: 1px;
  }

  v-box[data-border^="bottom-large"]::before,
  v-box[data-border*=" bottom-large "]::before,
  v-box[data-border^=" bottom-large"]::before,
  v-box[data-border*="lg-bottom-large"]::before {
    bottom: -25px;
    border-bottom-width: 1px;
  }

  v-box[data-border^="bottom-x-large"]::before,
  v-box[data-border*=" bottom-x-large "]::before,
  v-box[data-border^=" bottom-x-large"]::before,
  v-box[data-border*="lg-bottom-x-large"]::before {
    bottom: -50px;
    border-bottom-width: 1px;
  }

}

/* Horizontal Scroll */

h-scroll {
  overflow-x: scroll;
  overflow-y: hidden;
}

/* Margin */

@media (max-width: 639.98px) {

  [data-margin^="none"],
  [data-margin*=" none "],
  [data-margin$=" none"],
  [data-margin*="sm-none"] {
    margin-top: 0;
    margin-bottom: 0;
  }

  [data-margin^="top-none"],
  [data-margin*=" top-none "],
  [data-margin$=" top-none"],
  [data-margin*="sm-top-none"] {
    margin-top: 0;
  }

  [data-margin^="bottom-none"],
  [data-margin*=" bottom-none "],
  [data-margin$=" bottom-none"],
  [data-margin*="sm-bottom-none"] {
    margin-bottom: 0;
  }

  [data-margin^="top-small"],
  [data-margin*=" top-small "],
  [data-margin$=" top-small"],
  [data-margin*="sm-top-small"] {
    margin-top: 16px;
  }

  [data-margin^="bottom-small"],
  [data-margin*=" bottom-small "],
  [data-margin$=" bottom-small"],
  [data-margin*="sm-bottom-small"] {
    margin-bottom: 16px;
  }

  [data-margin^="top-medium"],
  [data-margin*=" top-medium "],
  [data-margin$=" top-medium"],
  [data-margin*="sm-top-medium"] {
    margin-top: 25px;
  }

  [data-margin^="bottom-medium"],
  [data-margin*=" bottom-medium "],
  [data-margin$=" bottom-medium"],
  [data-margin*="sm-bottom-medium"] {
    margin-bottom: 25px;
  }

  [data-margin^="top-large"],
  [data-margin*=" top-large "],
  [data-margin$=" top-large"],
  [data-margin*="sm-top-large"] {
    margin-top: 30px;
  }

  [data-margin^="bottom-large"],
  [data-margin*=" bottom-large "],
  [data-margin$=" bottom-large"],
  [data-margin*="sm-bottom-large"] {
    margin-bottom: 30px;
  }

  [data-margin^="top-x-large"],
  [data-margin*=" top-x-large "],
  [data-margin$=" top-x-large"],
  [data-margin*="sm-top-x-large"] {
    margin-top: 70px;
  }

  [data-margin^="bottom-x-large"],
  [data-margin*=" bottom-x-large "],
  [data-margin$=" bottom-x-large"],
  [data-margin*="sm-bottom-x-large"] {
    margin-bottom: 70px;
  }

}

@media (min-width: 640px) and (max-width: 959.98px) {

  [data-margin^="none"],
  [data-margin*=" none "],
  [data-margin$=" none"],
  [data-margin*="md-none"] {
    margin-top: 0;
    margin-bottom: 0;
  }

  [data-margin^="top-none"],
  [data-margin*=" top-none "],
  [data-margin$=" top-none"],
  [data-margin*="md-top-none"] {
    margin-top: 0;
  }

  [data-margin^="bottom-none"],
  [data-margin*=" bottom-none "],
  [data-margin$=" bottom-none"],
  [data-margin*="md-bottom-none"] {
    margin-bottom: 0;
  }

  [data-margin^="top-small"],
  [data-margin*=" top-small "],
  [data-margin$=" top-small"],
  [data-margin*="md-top-small"] {
    margin-top: 16px;
  }

  [data-margin^="bottom-small"],
  [data-margin*=" bottom-small "],
  [data-margin$=" bottom-small"],
  [data-margin*="md-bottom-small"] {
    margin-bottom: 16px;
  }

  [data-margin^="top-medium"],
  [data-margin*=" top-medium "],
  [data-margin$=" top-medium"],
  [data-margin*="md-top-medium"] {
    margin-top: 30px;
  }

  [data-margin^="bottom-medium"],
  [data-margin*=" bottom-medium "],
  [data-margin$=" bottom-medium"],
  [data-margin*="md-bottom-medium"] {
    margin-bottom: 30px;
  }

  [data-margin^="top-large"],
  [data-margin*=" top-large "],
  [data-margin$=" top-large"],
  [data-margin*="md-top-large"] {
    margin-top: 40px;
  }

  [data-margin^="bottom-large"],
  [data-margin*=" bottom-large "],
  [data-margin$=" bottom-large"],
  [data-margin*="md-bottom-large"] {
    margin-bottom: 40px;
  }

  [data-margin^="top-x-large"],
  [data-margin*=" top-x-large "],
  [data-margin$=" top-x-large"],
  [data-margin*="md-top-x-large"] {
    margin-top: 80px;
  }

  [data-margin^="bottom-x-large"],
  [data-margin*=" bottom-x-large "],
  [data-margin$=" bottom-x-large"],
  [data-margin*="md-bottom-x-large"] {
    margin-bottom: 80px;
  }

}

@media (min-width: 960px) {

  [data-margin^="none"],
  [data-margin*=" none "],
  [data-margin$=" none"],
  [data-margin*="lg-none"] {
    margin-top: 0;
    margin-bottom: 0;
  }

  [data-margin^="top-none"],
  [data-margin*=" top-none "],
  [data-margin$=" top-none"],
  [data-margin*="lg-top-none"] {
    margin-top: 0;
  }

  [data-margin^="bottom-none"],
  [data-margin*=" bottom-none "],
  [data-margin$=" bottom-none"],
  [data-margin*="lg-bottom-none"] {
    margin-bottom: 0;
  }

  [data-margin^="top-small"],
  [data-margin*=" top-small "],
  [data-margin$=" top-small"],
  [data-margin*="lg-top-small"] {
    margin-top: 20px;
  }

  [data-margin^="bottom-small"],
  [data-margin*=" bottom-small "],
  [data-margin$=" bottom-small"],
  [data-margin*="lg-bottom-small"] {
    margin-bottom: 20px;
  }

  [data-margin^="top-medium"],
  [data-margin*=" top-medium "],
  [data-margin$=" top-medium"],
  [data-margin*="lg-top-medium"] {
    margin-top: 35px;
  }

  [data-margin^="bottom-medium"],
  [data-margin*=" bottom-medium "],
  [data-margin$=" bottom-medium"],
  [data-margin*="lg-bottom-medium"] {
    margin-bottom: 35px;
  }

  [data-margin^="top-large"],
  [data-margin*=" top-large "],
  [data-margin$=" top-large"],
  [data-margin*="lg-top-large"] {
    margin-top: 50px;
  }

  [data-margin^="bottom-large"],
  [data-margin*=" bottom-large "],
  [data-margin$=" bottom-large"],
  [data-margin*="lg-bottom-large"] {
    margin-bottom: 50px;
  }

  [data-margin^="top-x-large"],
  [data-margin*=" top-x-large "],
  [data-margin$=" top-x-large"],
  [data-margin*="lg-top-x-large"] {
    margin-top: 100px;
  }

  [data-margin^="bottom-x-large"],
  [data-margin*=" bottom-x-large "],
  [data-margin$=" bottom-x-large"],
  [data-margin*="lg-bottom-x-large"] {
    margin-bottom: 100px;
  }

}

/* Visibility */

@media (max-width: 639.98px) {

  [data-hidden*="sm"] {
    display: none;
  }

}

@media (min-width: 640px) and (max-width: 959.98px) {

  [data-hidden*="md"] {
    display: none;
  }

}

@media (min-width: 960px) {

  [data-hidden*="lg"] {
    display: none;
  }

}

/* Alignment */

[data-align^="top"],
[data-align*=" top "],
[data-align$=" top"] {
  vertical-align: top;
}

[data-align^="middle"],
[data-align*=" middle "],
[data-align$=" middle"] {
  vertical-align: middle;
}

[data-align^="bottom"],
[data-align*=" bottom "],
[data-align$=" bottom"] {
  vertical-align: bottom;
}

[data-align^="left"],
[data-align*=" left "],
[data-align$=" left"] {
  text-align: left;
}

[data-align^="center"],
[data-align*=" center "],
[data-align$=" center"] {
  text-align: center;
}

[data-align^="right"],
[data-align*=" right "],
[data-align$=" right"] {
  text-align: right;
}

@media (max-width: 639.98px) {

  [data-align*="sm-top"] {
    vertical-align: top;
  }

  [data-align*="sm-middle"] {
    vertical-align: middle;
  }

  [data-align*="sm-bottom"] {
    vertical-align: bottom;
  }

  [data-align*="sm-left"] {
    text-align: left;
  }

  [data-align*="sm-center"] {
    text-align: center;
  }

  [data-align*="sm-right"] {
    text-align: right;
  }

}

@media (min-width: 640px) and (max-width: 959.98px) {

  [data-align*="md-top"] {
    vertical-align: top;
  }

  [data-align*="md-middle"] {
    vertical-align: middle;
  }

  [data-align*="md-bottom"] {
    vertical-align: bottom;
  }

  [data-align*="md-left"] {
    text-align: left;
  }

  *[data-align*="md-center"] {
    text-align: center;
  }

  [data-align*="md-right"] {
    text-align: right;
  }

}

@media (min-width: 960px) {

  [data-align*="lg-top"] {
    vertical-align: top;
  }

  [data-align*="lg-middle"] {
    vertical-align: middle;
  }

  [data-align*="lg-bottom"] {
    vertical-align: bottom;
  }

  [data-align*="lg-left"] {
    text-align: left;
  }

  [data-align*="lg-center"] {
    text-align: center;
  }

  [data-align*="lg-right"] {
    text-align: right;
  }

}

/* Sizing */

[data-width^="25"],
[data-width*=" 25 "],
[data-width$=" 25"] {
  width: 25%;
}

[data-width^="33"],
[data-width*=" 33 "],
[data-width$=" 33"] {
  width: 33.33%;
}

[data-width^="50"],
[data-width*=" 50 "],
[data-width$=" 50"] {
  width: 50%;
}

[data-width^="67"],
[data-width*=" 67 "],
[data-width$=" 67"] {
  width: 66.67%;
}

[data-width^="75"],
[data-width*=" 75 "],
[data-width$=" 75"] {
  width: 75%;
}

[data-width^="100"],
[data-width*=" 100 "],
[data-width$=" 100"] {
  width: 100%;
}

[data-width^="auto"],
[data-width*=" auto "],
[data-width$=" auto"] {
  width: auto;
}

@media (max-width: 639.98px) {

  [data-width*="sm-25"] {
    width: 25%;
  }

  [data-width*="sm-33"] {
    width: 33.33%;
  }

  [data-width*="sm-50"] {
    width: 50%;
  }

  [data-width*="sm-67"] {
    width: 66.67%;
  }

  [data-width*="sm-75"] {
    width: 75%;
  }

  [data-width*="sm-100"] {
    width: 100%;
  }

  [data-width*="sm-auto"] {
    width: auto;
  }

}

@media (min-width: 640px) and (max-width: 959.98px) {

  [data-width*="md-25"] {
    width: 25%;
  }

  [data-width*="md-33"] {
    width: 33.33%;
  }

  [data-width*="md-50"] {
    width: 50%;
  }

  [data-width*="md-67"] {
    width: 66.67%;
  }

  [data-width*="md-75"] {
    width: 75%;
  }

  [data-width*="md-100"] {
    width: 100%;
  }

  [data-width*="md-auto"] {
    width: auto;
  }

}

@media (min-width: 960px) {

  [data-width*="lg-25"] {
    width: 25%;
  }

  [data-width*="lg-33"] {
    width: 33.33%;
  }

  [data-width*="lg-50"] {
    width: 50%;
  }

  [data-width*="lg-67"] {
    width: 66.67%;
  }

  [data-width*="lg-75"] {
    width: 75%;
  }

  [data-width*="lg-100"] {
    width: 100%;
  }

  [data-width*="lg-auto"] {
    width: auto;
  }

}

/* Indents */

[data-indent=""] {
  padding-left: 1.5em;
}

@media (max-width: 639.98px) {

  [data-indent^="x-small"],
  [data-indent*=" x-small "],
  [data-indent$=" x-small"],
  [data-indent*="sm-x-small"] {
    padding-left: 22.5px;
  }

  [data-indent^="small"],
  [data-indent*=" small "],
  [data-indent$=" small"],
  [data-indent*="sm-small"] {
    padding-left: 22.5px;
  }

  [data-indent^="medium"],
  [data-indent*=" medium "],
  [data-indent$=" medium"],
  [data-indent*="sm-medium"] {
    padding-left: 25px;
  }

  [data-indent^="large"],
  [data-indent*=" large "],
  [data-indent$=" large"],
  [data-indent*="sm-large"] {
    padding-left: 33px;
  }

  [data-indent^="x-large"],
  [data-indent*=" x-large "],
  [data-indent$=" x-large"],
  [data-indent*="sm-x-large"] {
    padding-left: 39px;
  }

  [data-indent^="xx-large"],
  [data-indent*=" xx-large "],
  [data-indent$=" xx-large"],
  [data-indent*="sm-xx-large"] {
    padding-left: 45px;
  }

}

@media (min-width: 640px) and (max-width: 959.98px) {

  [data-indent^="x-small"],
  [data-indent*=" x-small "],
  [data-indent$=" x-small"],
  [data-indent*="md-x-small"] {
    padding-left: 22.5px;
  }

  [data-indent^="small"],
  [data-indent*=" small "],
  [data-indent$=" small"],
  [data-indent*="md-small"] {
    padding-left: 24px;
  }

  [data-indent^="medium"],
  [data-indent*=" medium "],
  [data-indent$=" medium"],
  [data-indent*="md-medium"] {
    padding-left: 27px;
  }

  [data-indent^="large"],
  [data-indent*=" large "],
  [data-indent$=" large"],
  [data-indent*="md-large"] {
    padding-left: 36px;
  }

  [data-indent^="x-large"],
  [data-indent*=" x-large "],
  [data-indent$=" x-large"],
  [data-indent*="md-x-large"] {
    padding-left: 48px;
  }

  [data-indent^="xx-large"],
  [data-indent*=" xx-large "],
  [data-indent$=" xx-large"],
  [data-indent*="md-xx-large"] {
    padding-left: 67.5px;
  }

}

@media (min-width: 960px) {

  [data-indent^="x-small"],
  [data-indent*=" x-small "],
  [data-indent$=" x-small"],
  [data-indent*="lg-x-small"] {
    padding-left: 22.5px;
  }

  [data-indent^="small"],
  [data-indent*=" small "],
  [data-indent$=" small"],
  [data-indent*="lg-small"] {
    padding-left: 27px;
  }

  [data-indent^="medium"],
  [data-indent*=" medium "],
  [data-indent$=" medium"],
  [data-indent*="lg-medium"] {
    padding-left: 33px;
  }

  [data-indent^="large"],
  [data-indent*=" large "],
  [data-indent$=" large"],
  [data-indent*="lg-large"] {
    padding-left: 42px;
  }

  [data-indent^="x-large"],
  [data-indent*=" x-large "],
  [data-indent$=" x-large"],
  [data-indent*="lg-x-large"] {
    padding-left: 54px;
  }

  [data-indent^="xx-large"],
  [data-indent*=" xx-large "],
  [data-indent$=" xx-large"],
  [data-indent*="lg-xx-large"] {
    padding-left: 90px;
  }

}

/* Anchors */

a {
  color: #0379ca;
  text-decoration: underline;
}

/* Intrinsic anchor icons */
/* To avoid overriding the icon classes, these must be declared first. */

a.no-icon:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack) {
  padding-left: 0;
}

a.no-icon:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::before,
a.no-icon:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::after {
  display: none;
}

[href^="http"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack),
[href^="tel"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack),
[href^="mailto"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack),
[href$=".pps"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack),
[href$=".ppt"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack),
[href$=".pps"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack),
[href$=".pptx"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack),
[href$=".xls"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack),
[href$=".xlsx"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack),
[href$=".xlsm"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack),
[href$=".doc"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack),
[href$=".dot"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack),
[href$=".docx"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack),
[href$=".pdf"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack),
[href$=".rtf"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack),
[href$=".odt"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack) {
  padding-left: 1.5em;
}

[href^="http"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::before,
[href^="tel"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::before,
[href^="mailto"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::before,
[href$=".pps"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::before,
[href$=".ppt"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::before,
[href$=".pps"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::before,
[href$=".pptx"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::before,
[href$=".xls"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::before,
[href$=".xlsx"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::before,
[href$=".xlsm"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::before,
[href$=".doc"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::before,
[href$=".dot"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::before,
[href$=".docx"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::before,
[href$=".pdf"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::before,
[href$=".rtf"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::before,
[href$=".odt"]:not(.cta):not(.cta-large):not(.cta-trim):not(.cta-trim2):not(.cta-image):not(.cta-stack)::before {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.075em;
  width: 1em;
  height: 1em;
  margin-left: -1.5em;
  margin-right: 0.5em;
  content: '';
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

[href^="http"]::before,
[href^="http"]::after {
  background-image: url(/images/icons/external-yellow-icon.svg);
}

[href^="tel"]::before {
  background-image: url(/images/icons/phone-yellow-icon.svg);
}

[href^="mailto"]::before {
  background-image: url(/images/icons/email-yellow-icon.svg);
}

[href$=".pps"]::before,
[href$=".ppt"]::before,
[href$=".pps"]::before,
[href$=".pptx"]::before  {
  background-image: url(/images/icons/powerpoint-file-icon.svg);
}

[href$=".xls"]::before,
[href$=".xls"]::after {
  background-image: url(/images/icons/excel-file-icon.svg);
}

[href$=".xlsx"]::before,
[href$=".xlsx"]::after {
  background-image: url(/images/icons/excel-file-icon.svg);
}

[href$=".xlsm"]::before,
[href$=".xlsm"]::after {
  background-image: url(/images/icons/excel-file-icon.svg);
}

[href$=".doc"]::before,
[href$=".dot"]::before,
[href$=".docx"]::before {
  background-image: url(/images/icons/word-file-icon.svg);
}

[href$=".rtf"]::before,
[href$=".odt"]::before {
  background-image: url(/images/icons/text-file-icon.svg);
}

[href$=".pdf"]::before,
[href$=".pdf"]::after {
  background-image: url(/images/icons/pdf-file-icon.svg);
}
/* commented out to show pdf icon when a is inside p
p a {
  padding-left: 0 !important;
}

p a::before,
p a::before {
  display: none !important;
}

p [href^="http"]::after {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  margin-left: 0.3em;
  content: '';
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
} */

/* custom style*/
div.left {
	float: left; 
	padding-right: 15px; 
	padding-bottom: 10px; 
	width: 30%;
}

div.imgleft {
	float: left; 
	padding-right: 15px; 
	padding-bottom: 10px;
}

/* Calls to Action */

.cta {
  display: inline-block;
  vertical-align: middle;
  padding: 12.5px 16px;
  text-align: left;
  text-decoration: none;
  line-height: 15px;
  font-style: italic;
  font-size: 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.cta:hover,
.cta:focus {
  opacity: 0.9;
}

.cta[class*="border"] {
  padding-top: 10.5px;
  padding-bottom: 10.5px;
}

.cta[class*="icon"] {
  padding-left: 39px;
}

.cta[class*="icon"]::before {
  margin-left: -27px;
  margin-right: 12px;
}

@media (min-width: 640px) {

  .cta {
    padding: 16px 20px;
    line-height: 18px;
    font-size: 16px;
  }

  .cta[class*="border"] {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .cta[class*="icon"] {
    padding-left: 56px;
  }

  .cta[class*="icon"]::before {
    margin-left: -36px;
    margin-right: 20px;
  }

}

@media (min-width: 960px) {

  .cta {
    padding: 20px 24px;
    line-height: 20px;
    font-size: 18px;
  }

  .cta[class*="border"] {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .cta[class*="icon"] {
    padding-left: 66px;
  }

  .cta[class*="icon"]::before {
    margin-left: -42px;
    margin-right: 24px;
  }

}

.cta[class*="icon"],
.cta[class*="border"],
.cta[class*="background"] {
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
}

.cta[class*="background"] {
  color: #fff;
}

.cta,
.cta.dark-border,
.cta.lighter-background,
.cta.lightest-background,
.cta.yellow-background {
  color: #3a3a3a;
}

.cta.black-border {
  color: #3a3a3a;
}

.government .cta.dark-border {
  color: #0e3253;
}

.government .cta.main-border {
  color: #016699;
}

.government .cta.lighter-border {
  color: #cee3e7;
}

.government .cta.lightest-border {
  color: #ecf7f7;
}

.business .cta.dark-border {
  color: #250d36;
}

.business .cta.main-border {
  color: #4c315e;
}

.business .cta.lighter-border {
  color: #dcdee8;
}

.business .cta.lightest-border {
  color: #f2f1f6;
}

.public .cta.dark-border {
  color: #08281c;
}

.public .cta.main-border {
  color: #126b37;
}

.public .cta.lighter-border {
  color: #cde5c0;
}

.public .cta.lightest-border {
  color: #f2f8ed;
}

.subsites .cta.dark-border {
  color: #0e3253;
}

.subsites .cta.main-border {
  color: #016699;
}

.subsites .cta.lighter-border {
  color: #cee3e7;
}

.subsites .cta.lightest-border {
  color: #ecf7f7;
}

/* Calls to Action (Special) */

.cta-stack,
.cta-image,
.cta-trim,
.cta-trim2,
.cta-large {
  overflow: hidden;
  color: #3a3a3a;
  text-decoration: none;
}

.cta-stack:hover,
.cta-stack:focus,
.cta-image:hover,
.cta-image:focus,
.cta-trim:hover,
.cta-trim:focus,
.cta-trim2:hover,
.cta-trim2:focus,
.cta-large:hover,
.cta-large:focus {
  text-decoration: underline;
}

.cta-stack {
  display: block;
}

.cta-stack figure {
  position: relative;
  overflow: hidden;
  height: 160px;
}

.cta-stack figure.cover img {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.3s;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cta-stack:hover figure.cover img,
.cta-stack:focus figure.cover img {
  -ms-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

.cta-image {
  display: table;
  width: 100%;
  height: 100px;
}

@media (min-width: 640px) {
  .cta-image {
    height: 120px;
  }
}

@media (min-width: 960px) {
  .cta-image {
    height: 160px;
  }
}

.cta-image > figure {
  display: none;
}

@media (min-width: 640px) {

  .cta-image > figure {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    width: 120px;
    height: 120px;
  }

}

@media (min-width: 960px) {

  .cta-image > figure {
    width: 160px;
  }

}

.cta-image figure.cover img {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.3s;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cta-image:hover figure.cover img,
.cta-iamge:focus figure.cover img {
  -ms-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

.cta-image > div {
  display: table-cell;
  vertical-align: middle;
  padding: 20px;
}

.cta-trim {
  display: block;
  position: relative;
  height: 160px;
  padding: 20px 20px 20px 40px;
}

.cta-trim2 {
  display: block;
  position: relative;
  height: 240px;
  padding: 20px 20px 20px 40px;
}

.cta-trim::before {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: #ecf7f7;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

.cta-trim2::before {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: #ecf7f7;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

.cta-trim:hover::before,
.cta-trim:focus::before {
  opacity: 1;
}

.cta-trim2:hover::before,
.cta-trim2:focus::before {
  opacity: 1;
}

.cta-trim::after {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  content: '';
  background: #006699;
  background: -moz-linear-gradient(to bottom, #006699 0%, #0e3253 100%);
  background: -webkit-linear-gradient(to bottom, #006699 0%, #0e3253 100%);
  background: linear-gradient(to bottom,#006699 0%,#0e3253 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006699', endColorstr='#0e3253', GradientType=0 );
  transition: background 0.3s;
}

.cta-trim2::after {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  content: '';
  background: #006699;
  background: -moz-linear-gradient(to bottom, #006699 0%, #0e3253 100%);
  background: -webkit-linear-gradient(to bottom, #006699 0%, #0e3253 100%);
  background: linear-gradient(to bottom,#006699 0%,#0e3253 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006699', endColorstr='#0e3253', GradientType=0 );
  transition: background 0.3s;
}

.cta-trim:hover::after,
.cta-trim:focus::after {
  background: #0379ca;
  background: -moz-linear-gradient(to bottom, #0379ca 0%, #006699 100%);
  background: -webkit-linear-gradient(to bottom, #0379ca 0%, #006699 100%);
  background: linear-gradient(to bottom,#0379ca 0%,#006699 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0379ca', endColorstr='#006699', GradientType=0 );
}

.cta-trim2:hover::after,
.cta-trim2:focus::after {
  background: #0379ca;
  background: -moz-linear-gradient(to bottom, #0379ca 0%, #006699 100%);
  background: -webkit-linear-gradient(to bottom, #0379ca 0%, #006699 100%);
  background: linear-gradient(to bottom,#0379ca 0%,#006699 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0379ca', endColorstr='#006699', GradientType=0 );
}

.cta-trim > * {
  position: relative;
  z-index: 1;
}

.cta-trim2 > * {
  position: relative;
  z-index: 1;
}

.cta-large {
  display: table;
  width: 100%;
  height: 160px;
}

.cta-large > div {
  display: table-cell;
  vertical-align: middle;
  padding: 20px;
  text-align: center;
}

/* Audience Chooser Page Specific */

chooser-image,
chooser-text {
  display: inline-block;
}

chooser-image {
  width: 125px;
  height: 125px;
}

chooser-text {
  width: calc(100% - 125px);
}

@media(min-width: 640px) {

  chooser-image {
    width: 180px;
    height: 180px;
  }

  chooser-text {
    width: calc(100% - 180px);
  }

}

@media(min-width: 960px) {

  chooser-image,
  chooser-text {
    display: block;
    width: 100%;
  }

  chooser-image {
    height: auto;
  }

  .audience-chooser content-lock {
    width: 960px;
    margin: 0 auto;
    padding-right: 12px;
    padding-left: 12px;
    padding-top: 70px;
    padding-bottom: 54px;
  }

  .audience-chooser .choice {
    width: 320px;
  }

}

.audience-chooser .cta-stack {
  background-color: #ffffff;
}

.audience-chooser .cta-stack figure {
  height: 160px;
}

@media(min-width: 640px) {

  .audience-chooser .cta-stack figure {
    height: 180px;
  }

}

@media(min-width: 960px) {

  .audience-chooser .cta-stack figure {
    height: 296px;
  }

}

@media(min-width: 1400px) {

  .audience-chooser content-lock {
    width: 1200px;
  }

  .audience-chooser .choice {
    width: 400px;
  }

  .audience-chooser .cta-stack figure {
    height: 400px;
  }

}

.audience-chooser h2::after {
  content: "";
  display: inline-block;
  background-image: url(/images/icons/chevron-right-yellow-icon.svg);
  background-repeat: no-repeat;
  height: 1em;
  width: 1em;
  padding-right: 2em;
  margin-right: -1em;
  -ms-transform: translate(10px, 4px);
  transform: translate(10px, 4px);
}

@media(max-width: 640px) {

  .audience-chooser h2 {
    line-height: 28px;
    font-size: 22px;
  }

}

@media(min-width: 960px) {

  .audience-chooser h2 {
    line-height: 36px;
    font-size: 28px;
  }

}

/* Icons */
/* To avoid being overridden by the intrinsic anchor icons, these must be */
/* declared second. */

[class*="icon"] {
  position: relative;
  padding-left: 1.5em;
}

[class*="icon"]:before {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.075em;
  width: 1em;
  height: 1em;
  margin-left: -1.5em;
  margin-right: 0.5em;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.pdf-file-icon:before, .pdf-file-icon:after {
  background-image: url(/images/icons/pdf-file-icon.svg);
}

.excel-file-icon:before, .excel-file-icon:after {
  background-image: url(/images/icons/excel-file-icon.svg);
}

.word-file-icon:before, .word-file-icon:after {
  background-image: url(/images/icons/word-file-icon.svg);
}

.text-file-icon:before, .text-file-icon:after {
  background-image: url(/images/icons/text-file-icon.svg);
}

.excel-file-icon:before, .excel-file-icon:after {
  background-image: url(/images/icons/excel-file-icon.svg);
}

.money-yellow-icon:before, .money-yellow-icon:after {
  background-image: url(/images/icons/money-yellow-icon.svg);
}

.money-green-icon:before, .money-green-icon:after {
  background-image: url(/images/icons/money-green-icon.svg);
}

.chevron-down-dark-blue-icon:before, .chevron-down-dark-blue-icon:after {
  background-image: url(/images/icons/chevron-down-dark-blue-icon.svg);
}

.chevron-left-dark-blue-icon:before, .chevron-left-dark-blue-icon:after {
  background-image: url(/images/icons/chevron-left-dark-blue-icon.svg);
}

.chevron-down-yellow-icon:before, .chevron-down-yellow-icon:after {
  background-image: url(/images/icons/chevron-down-yellow-icon.svg);
}

.chevron-left-yellow-icon:before, .chevron-left-yellow-icon:after {
  background-image: url(/images/icons/chevron-left-yellow-icon.svg);
}

.phone-gray-icon:before, .phone-gray-icon:after {
  background-image: url(/images/icons/phone-gray-icon.svg);
}

.check-green-icon:before, .check-green-icon:after {
  background-image: url(/images/icons/check-green-icon.svg);
}

.pin-yellow-icon:before, .pin-yellow-icon:after {
  background-image: url(/images/icons/pin-yellow-icon.svg);
}

.download-yellow-icon:before, .download-yellow-icon:after {
  background-image: url(/images/icons/download-yellow-icon.svg);
}

.red-alert-icon:before, .red-alert-icon:after {
  background-image: url(/images/icons/alert-red-icon.svg);
}

.arrow-left-yellow-icon:before, .arrow-left-yellow-icon:after {
  background-image: url(/images/icons/arrow-left-yellow-icon.svg);
}

.arrow-right-yellow-icon:before, .arrow-right-yellow-icon:after {
  background-image: url(/images/icons/arrow-right-yellow-icon.svg);
}

.arrow-left-dark-blue-icon:before, .arrow-left-dark-blue-icon:after {
  background-image: url(/images/icons/arrow-left-dark-blue-icon.svg);
}

.arrow-right-dark-blue-icon:before, .arrow-right-dark-blue-icon:after {
  background-image: url(/images/icons/arrow-right-dark-blue-icon.svg);
}

.az-yellow-icon:before, .az-yellow-icon:after {
  background-image: url(/images/icons/az-yellow-icon.svg);
}

.az-dark-blue-icon:before, .az-dark-blue-icon:after {
  background-image: url(/images/icons/az-dark-blue-icon.svg);
}

.az-yellow-icon::before,
.az-dark-blue-icon::before {
  width: 1.6em;
}

.caret-down-dark-blue-icon:before, .caret-down-dark-blue-icon:after {
  background-image: url(/images/icons/caret-down-dark-blue-icon.svg);
}

.caret-up-dark-blue-icon:before, .caret-up-dark-blue-icon:after {
  background-image: url(/images/icons/caret-up-dark-blue-icon.svg);
}

.caret-left-dark-blue-icon:before, .caret-left-dark-blue-icon:after {
  background-image: url(/images/icons/caret-left-dark-blue-icon.svg);
}

.caret-right-dark-blue-icon:before, .caret-right-dark-blue-icon:after {
  background-image: url(/images/icons/caret-right-dark-blue-icon.svg);
}

.chevron-up-dark-blue-icon:before, .chevron-up-dark-blue-icon:after {
  background-image: url(/images/icons/chevron-up-dark-blue-icon.svg);
}

.chevron-right-dark-blue-icon:before, .chevron-right-dark-blue-icon:after {
  background-image: url(/images/icons/chevron-right-dark-blue-icon.svg);
}

.chevron-up-yellow-icon:before, .chevron-up-yellow-icon:after {
  background-image: url(/images/icons/chevron-up-yellow-icon.svg);
}

.chevron-right-yellow-icon:before, .chevron-right-yellow-icon:after {
  background-image: url(/images/icons/chevron-right-yellow-icon.svg);
}

.close-black-icon:before, .close-black-icon:after {
  background-image: url(/images/icons/close-black-icon.svg);
}

.close-dark-blue-icon:before, .close-dark-blue-icon:after {
  background-image: url(/images/icons/close-dark-blue-icon.svg);
}

.close-yellow-icon:before, .close-yellow-icon:after {
  background-image: url(/images/icons/close-yellow-icon.svg);
}

.close-red-icon:before, .close-red-icon:after{
  background-image: url(/images/icons/close-red-icon.svg);
}

.document-dark-blue-icon:before, .document-dark-blue-icon:after {
  background-image: url(/images/icons/document-dark-blue-icon.svg);
}

.document-gray-icon:before, .document-gray-icon:after {
  background-image: url(/images/icons/document-gray-icon.svg);
}

.download-yellow-icon:before, .download-yellow-icon:after {
  background-image: url(/images/icons/download-yellow-icon.svg);
}

.email-gray-icon:before, .email-gray-icon:after {
  background-image: url(/images/icons/email-gray-icon.svg);
}

.email-yellow-icon:before, .email-yellow-icon:after {
  background-image: url(/images/icons/email-yellow-icon.svg);
}

.external-gray-icon:before, .external-gray-icon:after {
  background-image: url(/images/icons/external-gray-icon.svg);
}

.external-yellow-icon:before, .external-yellow-icon:after {
  background-image: url(/images/icons/external-yellow-icon.svg);
}

.facebook-white-icon:before, .facebook-white-icon:after {
  background-image: url(/images/icons/facebook-white-icon.svg);
}

.grid-black-icon:before, .grid-black-icon:after {
  background-image: url(/images/icons/grid-black-icon.svg);
}

.grid-dark-blue-icon:before, .grid-dark-blue-icon:after {
  background-image: url(/images/icons/grid-dark-blue-icon.svg);
}

.grid-gray-icon:before, .grid-gray-icon:after {
  background-image: url(/images/icons/grid-gray-icon.svg);
}

.information-yellow-icon:before, .information-yellow-icon:after {
  background-image: url(/images/icons/information-yellow-icon.svg);
}

.lightbulb-yellow-icon:before, .lightbulb-yellow-icon:after {
  background-image: url(/images/icons/lightbulb-yellow-icon.svg);
}

.linkedin-white-icon:before, .linkedin-white-icon:after {
  background-image: url(/images/icons/linkedin-white-icon.svg);
}

.lock-gray-icon:before, .lock-gray-icon:after {
  background-image: url(/images/icons/lock-gray-icon.svg);
}

.menu-dark-blue-icon:before, .menu-dark-blue-icon:after {
  background-image: url(/images/icons/menu-dark-blue-icon.svg);
}

.menu-yellow-icon:before, .menu-yellow-icon:after {
  background-image: url(/images/icons/menu-yellow-icon.svg);
}

.minus-circle-yellow-icon:before, .minus-circle-yellow-icon:after {
  background-image: url(/images/icons/minus-circle-yellow-icon.svg);
}

.minus-dark-blue-icon:before, .minus-dark-blue-icon:after {
  background-image: url(/images/icons/minus-dark-blue-icon.svg);
}

.minus-yellow-icon:before, .minus-yellow-icon:after {
  background-image: url(/images/icons/minus-yellow-icon.svg);
}

.phone-yellow-icon:before, .phone-yellow-icon:after {
  background-image: url(/images/icons/phone-yellow-icon.svg);
}

.pin-yellow-icon:before, .pin-yellow-icon:after {
  background-image: url(/images/icons/pin-yellow-icon.svg);
}

.plus-circle-yellow-icon:before, .plus-circle-yellow-icon:after {
  background-image: url(/images/icons/plus-circle-yellow-icon.svg);
}

.plus-dark-blue-icon:before, .plus-dark-blue-icon:after {
  background-image: url(/images/icons/plus-dark-blue-icon.svg);
}

.plus-yellow-icon:before, .plus-yellow-icon:after {
  background-image: url(/images/icons/plus-yellow-icon.svg);
}

.rss-white-icon:before, .rss-white-icon:after {
  background-image: url(/images/icons/rss-white-icon.svg);
}

.search-dark-blue-icon:before, .search-dark-blue-icon:after {
  background-image: url(/images/icons/search-dark-blue-icon.svg);
}

.search-yellow-icon:before, .search-yellow-icon:after {
  background-image: url(/images/icons/search-yellow-icon.svg);
}

.presenter-yellow-icon:before, .presenter-yellow-icon:after {
  background-image: url(/images/icons/presenter-yellow-icon.svg);
}

.easal-yellow-icon:before, .easal-yellow-icon:after {
  background-image: url(/images/icons/easal-yellow-icon.svg);
}

.podium-yellow-icon:before, .podium-yellow-icon:after {
  background-image: url(/images/icons/podium-yellow-icon.svg);
}

.megaphone-yellow-icon:before, .megaphone-yellow-icon:after {
  background-image: url(/images/icons/megaphone-yellow-icon.svg);
}
.time-yellow-icon:before, .time-yellow-icon:after {
  background-image: url(/images/icons/time-yellow-icon.svg);
}

.time-dark-blue-icon:before, .time-dark-blue-icon:after {
  background-image: url(/images/icons/time-dark-blue-icon.svg);
}

.twitter-white-icon:before, .twitter-white-icon:after {
  background-image: url(/images/icons/twitter-white-icon.svg);
}

.youtube-white-icon:before, .youtube-white-icon:after {
  background-image: url(/images/icons/youtube-white-icon.svg);
}

/* Illustrative Icon Links */

.illustrated-link {
  display: inline-block;
  text-decoration: none;
}

.illustrated-link img {
  display: inline-block;
  width: 30px;
  height: 30px;
  max-width: none;
  margin-right: 35px;
  margin-bottom: 0;
  vertical-align: middle;
}

@media (min-width: 640px) {
  .illustrated-link img {
    width: 35px;
    height: 35px;
    margin-right: 20px;
  }
}

@media (min-width: 960px) {
  .illustrated-link.stacking img {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 0.5em;
  }
}

.illustrated-link span {
  vertical-align: middle;
}

/* Social Links */

.social-links {
  font-size: 0;
}

.social-links a {
  display: inline-block;
  width: 45px;
  height: 45px;
  margin-right: 15px;
  margin-bottom: 15px;
  text-decoration: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.social-links .facebook {
  background-image: url(/images/icons/facebook-white-icon.svg);
}

.social-links .twitter {
  background-image: url(/images/icons/twitter-white-icon.svg);
}

.social-links .youtube {
  background-image: url(/images/icons/youtube-white-icon.svg);
}

.social-links .linkedin {
  background-image: url(/images/icons/linkedin-white-icon.svg);
}

.social-links .rss {
  background-image: url(/images/icons/rss-white-icon.svg);
}

/* Rounded */

.rounded {
  border-radius: 5px;
}

/* Super\Subscript */

sup,
sub {
  position: relative;
  vertical-align: baseline;
  line-height: 0;
  font-size: 83.33%;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

a sup {
  text-decoration: none;
  display: inline-block;
}
/* Lists */

ul, ol {
  padding-left: 16px;
}

@media (min-width: 640px) {

  ul, ol {
    padding-left: 20px;
  }

}

@media (min-width: 960px) {

  ul, ol {
    padding-left: 24px;
  }

}

ul.flush, ol.flush {
  padding-left: 0;
}

ul.no-marker, ol.no-marker {
  list-style: none;
}

ul.check {
  list-style: none;
}

ul.check li {
  padding-left: 10px;
}

ul.check li::before {
  display: inline-block;
  position: relative;
  top: 2px;
  content: '';
  margin-left: -26px;
  margin-right: 10px;
  width: 16px;
  height: 16px;
  background-image: url( /images/icons/check-green-icon.svg );
}

@media (min-width: 640px) {
  ul.check li::before {
    margin-left: -30px;
    margin-right: 14px;
  }
}

@media (min-width: 960px) {
  ul.check li::before {
    margin-left: -34px;
    margin-right: 18px;
  }
}

dt {
  margin-top: 16px;
}

@media (min-width: 960px) {

  dt {
    margin-top: 20px;
  }

}

dt::first-child {
  margin-top: 0;
}

/* Blockquotes */

blockquote {
  padding: 20px;
  background-color: #f4f4f4;
}

/* FPO */

.fpo-text {
  background: #f00;
}

.fpo-border {
  border: 3px solid #f00;
}

/* Accessibility */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* No Wrapping */

.no-wrap {
  white-space: nowrap;
}

/* Forced Wrapping */

.force-wrap {
  overflow-wrap: break-word;
  white-space: normal;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  /*word-break: break-word;*/
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/* Font Weights */

b, strong, .bold {
  font-weight: 700;
}

.semibold {
  font-weight: 600;
}

.regular {
  font-weight: 400;
}

.light {
  font-weight: 300;
}

/* Font Styles */

em, .italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

u, .underline {
  text-decoration: underline;
}

/* Font Sizes */

.xxx-large {
  letter-spacing: -0.02em;
  line-height: 37px;
  font-size: 35px;
}

.xx-large {
  letter-spacing: -0.02em;
  line-height: 35px;
  font-size: 30px;
}

.x-large {
  letter-spacing: normal;
  line-height: 32px;
  font-size: 26px;
}

.large {
  letter-spacing: normal;
  line-height: 32px;
  font-size: 22px;
}

.medium {
  letter-spacing: normal;
  line-height: 24px;
  font-size: 17px;
}

body, v-box, .small, .x-small {
  letter-spacing: normal;
  line-height: 22px;
  font-size: 15px;
}

@media (min-width: 640px) {

  .xxx-large {
    line-height: 50px;
    font-size: 50px;
  }

  .xx-large {
    line-height: 50px;
    font-size: 45px;
  }

  .x-large {
    line-height: 40px;
    font-size: 32px;
  }

  .large {
    line-height: 33px;
    font-size: 24px;
  }

  .medium {
    line-height: 26px;
    font-size: 18px;
  }

  body, v-box, .small {
    line-height: 24px;
    font-size: 16px;
  }

}

@media (min-width: 960px) {

  .xxx-large {
    line-height: 80px;
    font-size: 80px;
  }

  .xx-large {
    line-height: 65px;
    font-size: 60px;
  }

  .x-large {
    line-height: 44px;
    font-size: 36px;
  }

  .large {
    line-height: 36px;
    font-size: 28px;
  }

  .medium {
    line-height: 32px;
    font-size: 22px;
  }

  body, v-box, .small {
    line-height: 26px;
    font-size: 18px;
  }

}

/* Font Colors */

.subsites .x-large {
  color: #0e3253;
}

.government .x-large {
  color: #0e3253;
}

.business .x-large {
  color: #250d36;
}

.public .x-large {
  color: #08281c;
}

/* Bar Accent */

.bar {
  position: relative;
}

.bar::before {
  display: block;
  position: absolute;
  width: 5px;
  height: 100%;
  margin-left: -14px;
  margin-right: 18px;
  content: "";
  background-color: #e8e8e8;
}

@media (min-width: 640px) {

  .bar::before {
    width: 6px;
    margin-left: -32px;
    margin-right: 25px;
  }

}

@media (min-width: 960px) {

  .bar::before {
    width: 7px;
    margin-left: -43px;
    margin-right: 35px;
  }

}

/* foregrounds */

.government .dark-foreground {
  color: #0e3253;
}

.government .main-foreground {
  color: #016699;
}

.government .lighter-foreground {
  color: #cee3e7;
}

.government .lightest-foreground {
  color: #ecf7f7;
}

.business .dark-foreground {
  color: #250d36;
}

.business .main-foreground {
  color: #4c315e;
}

.business .lighter-foreground {
  color: #dcdee8;
}

.business .lightest-foreground {
  color: #f2f1f6;
}

.public .dark-foreground {
  color: #08281c;
}

.public .main-foreground {
  color: #126b37;
}

.public .lighter-foreground {
  color: #cde5c0;
}

.public .lightest-foreground {
  color: #f2f8ed;
}

.dark-foreground {
  color: #0e3253;
}

.main-foreground {
  color: #016699;
}

.lighter-foreground {
  color: #cee3e7;
}

.lightest-foreground {
  color: #ecf7f7;
}

.yellow-foreground,
.yellow-foreground a {
  color: #febf24;
}

.blue-foreground {
  color: #0379ca;
}

.light-gray-foreground {
  color: #f4f4f4;
}

hr.light-gray-foreground {
  background-color: #f4f4f4;
}

.gray-foreground {
  color: #9c9ea1;
}

.red-foreground {
  color: #e54424;
}

.no-foreground {
  color: transparent;
}

.white-foreground {
  color: #fff;
}

.body-foreground,
.body-foreground a {
  color: #3a3a3a;
}

/* Backgrounds */

.government .dark-background {
  background-color: #0e3253;
}

.government .main-background {
  background-color: #016699;
}

.government .lighter-background {
  background-color: #cee3e7;
}

.government .lightest-background {
  background-color: #ecf7f7;
}

.business .dark-background {
  background-color: #250d36;
}

.business .main-background {
  background-color: #4c315e;
}

.business .lighter-background {
  background-color: #dcdee8;
}

.business .lightest-background {
  background-color: #f2f1f6;
}

.public .dark-background {
  background-color: #08281c;
}

.public .main-background {
  background-color: #126b37;
}

.public .lighter-background {
  background-color: #cde5c0;
}

.public .lightest-background {
  background-color: #f2f8ed;
}

.dark-background {
  background-color: #0e3253;
}

.main-background {
  background-color: #016699;
}

.lighter-background {
  background-color: #cee3e7;
}

.lightest-background {
  background-color: #ecf7f7;
}

.yellow-background {
  background-color: #febf24;
}

.blue-background {
  background-color: #0379ca;
}

.lighter-gray-background {
  background-color: #e8e8e8;
}

.lightest-gray-background {
  background-color: #f4f4f4;
}

.gray-background {
  background-color: #9c9ea1;
}

.red-background {
  background-color: #e54424;
}

.no-background {
  background-color: transparent;
}

.white-background {
  background-color: #fff;
}

/* Borders */

[class*="border"] {
  border-width: 2px;
  border-style: solid;
}

.government .dark-border {
  border-color: #0e3253;
}

.government .main-border {
  border-color: #016699;
}

.government .lighter-border {
  border-color: #cee3e7;
}

.government .lightest-border {
  border-color: #ecf7f7;
}

.business .dark-border {
  border-color: #250d36;
}

.business .main-border {
  border-color: #4c315e;
}

.business .lighter-border {
  border-color: #dcdee8;
}

.business .lightest-border {
  border-color: #f2f1f6;
}

.public .dark-border {
  border-color: #08281c;
}

.public .main-border {
  border-color: #126b37;
}

.public .lighter-border {
  border-color: #cde5c0;
}

.public .lightest-border {
  border-color: #f2f8ed;
}

.dark-border {
  border-color: #0e3253;
}

.main-border {
  border-color: #016699;
}

.lighter-border {
  border-color: #cee3e7;
}

.lightest-border {
  border-color: #ecf7f7;
}

.black-border {
  border-color: #3a3a3a;
}

.yellow-border {
  border-color: #febf24;
}

.blue-border {
  border-color: #0379ca;
}

.gray-border {
  border-color: #9c9ea1;
}

.red-border {
  border-color: #e54424;
}

/* Table */
.table-disclaimer {
  font-size: 12px;
}

table {
  min-width: 100%;
	border-collapse: collapse;
}

table .no-zebra {
  min-width: 50%;
	border-collapse: collapse;
}

thead {
  color: #fff;
  background: #2a2a2a;
}

tbody tr:nth-child(even) {
  background-color: #eaeaea;
}

table.no-zebra tbody tr:nth-child(even),
table.no-zebra tbody tr.even {
  background: #cee3e7;
}

td, th {
  padding: 10px 20px;
  text-align: center;
}

td.right {
  padding: 10px 20px;
  text-align: right;
}

td.left {
  padding: 10px 20px;
  text-align: left;
}

th.left {
  padding: 10px 20px;
  text-align: left;
}
th.training{
    width:13%;
}

tbody td:not(:last-child) {
  border-right: 1px solid #aaa;
}


/*------------------------------------------
|                                          |
| Financial Report - 
Data Table Style Definitions
|                                          |
------------------------------------------*/
table.data, td.data {
    border: 1px solid #2e2e2e;
    text-align: left;
    vertical-align: text-top;
    padding: 5px;
    background-clip: padding-box;
}

th.fr{
    border: 1px solid #2e2e2e;
    text-align: center;
    vertical-align: text-top;
    padding: 5px;
    background-clip: padding-box;
}

td.fr2{
    border: 1px solid #2e2e2e;
    text-align: center;
    vertical-align: text-top;
    padding: 5px;
    background-clip: padding-box;
}
.rowheader {
    background-color: #FBE7AB;
	color:#000;
	font-weight: bold;
}

table.data {background-color:#fff; width:100%;}
table.data thead {display: table-header-group; border-collapse:collapse;}
table.data thead th.single { border-bottom: solid  1px #000000;color:#000000; }
table.data thead td {text-align:left; padding:5px; border:none; color:#000;}
table.data tbody th.fr{text-align: left; padding:5px; border:none;}
table.data td {text-align: right; vertical-align: bottom; border:none; color:#333;}
table.data td.left {text-align: left; vertical-align: bottom; border:none; color:#333;}
table.data td.center {text-align: center; vertical-align: bottom; color:#333;}
table.data td.single {border-bottom: solid  1px #000000; }
table.data td.double {border-bottom: double 3px #000000; }
table.data td.border-right {border-right: solid 1px #000000;}
.rowcolor {background-color: #F7F7F7;}

/* Alert Banner */

alert-banner {
  display: block;
  border-bottom: 1px solid #f0b422;
}

/* reduced from 30px top and bottom margin to 0 for the alert banner during govt shutdown */

alert-banner content-lock {
  padding-top: 0px;
  padding-bottom: 0px;
}

alert-banner content-lock h-box v-box {
  margin-bottom: 0;
}

/* Stage */

stage-banner {
  display: block;
  overflow: hidden;
  position: relative;
}

stage-banner.primary .bar::before {
  background: #9c9ea1;
}

@media (min-width: 640px) {
  stage-banner.primary .title {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 300px;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
  }

  stage-banner.primary .title h-box {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media (min-width: 960px) {
  stage-banner.primary .title {
    height: 450px;
  }
}

stage-banner figure {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  z-index: 1;
}

stage-banner.primary figure {
  height: 200px;
}

stage-banner.secondary figure {
  height: 100px;
}

stage-banner.tertiary figure {
  height: 100px;
}

stage-banner figure img {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  max-width: none;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 639.98px) {
  stage-banner.primary figure img {
    left: auto;
    right: 0;
    -ms-transform: none;
    transform: none;
  }
}

@media (min-width: 640px) {

  stage-banner.primary figure {
    height: 300px;
  }

  stage-banner.secondary figure {
    height: 175px;
  }

  stage-banner.tertiary figure {
    height: 150px;
  }

}

@media (min-width: 960px) {

  stage-banner.primary figure {
    height: 450px;
  }

  stage-banner.secondary figure {
    height: 275px;
  }

  stage-banner.tertiary figure {
    height: 200px;
  }

}

stage-banner.primary nav {
  position: relative;
  overflow: hidden;
  margin-top: -20px;
  background: #fff;
  z-index: 2;
}

stage-banner.primary nav a {
  display: block;
  float: left;
  width: 50%;
  padding-top: 15px;
  padding-left: 15px;
  color: #414147;
  white-space: nowrap;
  text-decoration: none;
}

@media (min-width: 640px) {
  stage-banner.primary nav {
    margin-top: -30px;
  }

  stage-banner.primary nav a {
    width: 33%;
    padding-top: 20px;
    padding-left: 20px;
  }
}

@media (min-width: 960px) {
  stage-banner.primary nav {
    margin-top: -40px;
  }

  stage-banner.primary nav a {
    width: 25%;
    padding-top: 20px;
    padding-left: 25px;
  }
}

stage-banner.primary nav img {
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  margin-right: 5px;
}

/* Breadcrumbs */

nav.breadcrumbs {
  display: block;
}

nav.breadcrumbs * {
  display: inline;
  padding: 0;
  margin: 0;
  list-style: none;
}

nav.breadcrumbs li:not(:last-child)::after {
  content: " > ";
}

/* Button Strip (like A-Z Index) */

.jump-links a,
.jump-links span,
.button-strip button {
  line-height: 2em;
  color: #0379ca;
}

.jump-links a,
.jump-links span,
.button-strip button {
  margin-right: 15px;
}

@media (min-width: 960px) {
  .jump-links a,
  .jump-links span,
  .button-strip button {
    margin-right: 10px;
  }
}

.jump-links span,
.button-strip button[disabled] {
  color: #9c9ea1;
}

/* Expandable */

[data-expandable-region] {
  overflow: hidden;
  opacity: 1;
  transition: height 0.25s ease, opacity 0.25s ease, visibility 0.25s;
}

[data-expandable-region][hidden] {
  display: block;
  visibility: hidden;
  height: 0;
  opacity: 0;
}

[data-expandable-region] .wrapper {
  display: inline-block;
  width: 100%;
}

/* Event */

event-header {
  display: block;
  margin-bottom: 17px;
}

event-header month-name,
event-header year-number {
  display: block;
  text-transform: uppercase;
}

event-header month-name {
  line-height: 30px;
  font-weight: 600;
  font-size: 24px;
}

event-header year-number {
  line-height: 35px;
  font-size: 28px;
}

event-header line-segment {
  display: none;
}

@media (min-width: 640px) {

  event-header {
    text-align: center;
  }

  event-header month-name {
    line-height: 45px;
    font-size: 27px;
  }

  event-header year-number {
    line-height: 45px;
    font-size: 36px;
  }

  event-header line-segment {
    display: inline;
  }

  event-header line-segment::before {
    position: absolute;
    top: 100px;
    bottom: 15px;
    width: 2px;
    content: "";
    background: #ccc;
  }

  event-header line-segment::after {
    position: absolute;
    bottom: 15px;
    width: 15px;
    height: 15px;
    margin-left: -6px;
    content: "";
    background: #ccc;
    border-radius: 50%;
  }

}

@media (min-width: 640px) {

  event-header month-name {
    line-height: 50px;
    font-size: 30px;
  }

  event-header year-number {
    margin-top: -12px;
    line-height: 55px;
    font-size: 40px;
  }

  event-header line-segment::before {
    bottom: 18px;
  }

  event-header line-segment::after {
    bottom: 18px;
  }

}

/* Tool Tips */

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip button {
  position: relative;
}

.tooltip button::after {
  display: block;
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 3px;
  content: '';
}

.tooltip div {
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: 200px;
  padding: 20px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.tooltip div::before {
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 0;
  content: '';
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top-width: 10px;
  border-top-style: solid;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.government .tooltip div,
.government .tooltip button::after {
  background-color: #016699;
}

.government .tooltip div::before {
  border-top-color: #016699;
}

.business .tooltip div,
.business .tooltip button::after {
  background-color: #4c315e;
}

.business .tooltip div::before {
  border-top-color: #4c315e;
}

.public .tooltip div,
.public .tooltip button::after {
  background-color: #126b37;
}

.public .tooltip div::before {
  border-top-color: #126b37;
}

.subsites .tooltip div,
.subsites .tooltip button::after {
  background-color: #016699;
}

.subsites .tooltip div::before {
  border-top-color: #016699;
}

/* Form */

form [class*="success"] {
  color: #126b37;
}

form label {
  margin-bottom: 10px;
}

form input[type="radio"],
form input[type="radio"] + label {
  display: inline-block;
  margin-right: 0.2em;
}

form input[type="radio"] + label {
  padding-left: 5px;
  padding-right: 20px;
}

form select,
form textarea,
form input:not([type="radio"]):not([type="checkbox"]):not([type="reset"]) {
  width: 100%;
}
form input[type="checkbox"],
form input[type="checkbox"] + label {
  display: inline-block;
  margin-right: 0.2em;
} 

form select,
form textarea,
form input {
  background-color: #fff;
  border: 1px solid #5e6672;
  border-radius: 6px;  
  padding: 9px 15px;
}

form input[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

form select {
  border: 1px solid #5e6672;
  border-radius: 6px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0 40px 0 20px;
  vertical-align: top;
  background-image: url(../images/icons/caret-down-dark-blue-icon.svg);
  background-repeat: no-repeat;
  background-size: 2em 2em;
  background-position: calc(100% - 10px) calc(100% * 0.5);
}

form select::-ms-expand {
    display: none;
}

@media (min-width:640px){

  form input,
  form textarea {
    padding: 11px 15px;
  }

  form select {
    height: 48px;
    line-height: 48px;
  }

}

@media (min-width:960px){

  form input,
  form textarea {
    padding: 13px 15px;
  }

  form select {
    height: 54px;
    line-height: 54px;
  }

}

form .error input,
form .error select,
form .error textarea {
  border-color: #e54424;
}

form .error input,
form .error select {
  margin-bottom: 10px;
}

form .error ul {
  padding-left: 0;
}

form .error li {
  margin-bottom: 5px;
  margin-left: 0;
  padding-left: 1.5em;
  list-style: none;
  color: #e54424;
}

form .error li::before {
  background-image: url(/images/icons/alert-red-icon.svg);
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.2em;
  width: 1em;
  height: 1em;
  margin-left: -1.5em;
  margin-right: 0.5em;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

form label.required::after {
  margin-left: 2px;
  color: #e54424;
  content: '*';
}

form legend.required::after {
  margin-left: 2px;
  color: #e54424;
  content: '*';
}

/* Site Header */

#header-site.internal {
  background-color: #fff;
}

#header-site.government {
  background-color: #0e3253;
}

#header-site.business {
  background-color: #250d36;
}

#header-site.public {
  background-color: #08281c;
}

#header-site.subsites {
  background-color: #0e3253;
}

/* Hidden Links (e.g. Skip Navigation) */

#header-site .hidden-link {
  position: absolute;
  z-index: 2;
  padding: 0.5em 1em;
  font-weight: 700;
  background-color: #f4f4f4;
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: transform 0.25s ease;
}

#header-site .hidden-link:focus {
  -ms-transform: none;
  transform: none;
}

/* Official Website Bar */

#header-site .official-bar {
  line-height: 18px;
  color: #fff;
  background-color: #00539f;
}

#header-site .official-bar > content-lock {
  padding: 5px 14px;
}

@media (min-width: 960px) {
  #header-site .official-bar > content-lock {
    padding-left: 18px;
    padding-right: 18px;
  }
}

#header-site .official-bar v-box {
  font-size: 12px;
  line-height: inherit;
}

#header-site .official-bar #official-website {
  display: inline-block;
  font-style: italic;
}

#header-site .official-bar #official-website::before {
  content: "";
  height: 1em;
  margin-right: 0.5em;
  padding-left: 1.6em;
  background-image: url(/images/icons/us-flag.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

#header-site .official-bar #treasury-link {
  padding-left: 0;
  font-family: Times, serif;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

#header-site .official-bar #treasury-link::before {
  content: none;
}

#header-site .official-bar #vaccine {
  padding-left: 0;
  font-family: Times, serif;
  letter-spacing: 0.06em;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  text-transform: none;
 
}

#header-site .official-bar #vaccine::before {
  content: none;
  font-color: #fff;
  font-size: 14px;
}

/* Borders */

#header-site.internal [data-hairline] {
  border-color: #9c9ea1;
}

#header-site.government [data-hairline] {
  border-color: #016699;
}

#header-site.business [data-hairline] {
  border-color: #4c315e;
}

#header-site.public [data-hairline] {
  border-color: #126b37;
}

#header-site.subsites [data-hairline] {
  border-color: #016699;
}

#header-site [data-hairline~="top"] {
  border-top: 1px solid;
}

#header-site [data-hairline~="right"] {
  border-top: 1px solid;
}

#header-site [data-hairline~="bottom"] {
  border-bottom: 1px solid;
}

#header-site [data-hairline~="left"] {
  border-left: 1px solid;
}

@media (max-width: 639.98px) {
  #header-site [data-hairline~="sm-top"] {
    border-top: 1px solid;
  }

  #header-site [data-hairline~="sm-right"] {
    border-top: 1px solid;
  }

  #header-site [data-hairline~="sm-bottom"] {
    border-bottom: 1px solid;
  }

  #header-site [data-hairline~="sm-left"] {
    border-left: 1px solid;
  }
}

@media (min-width: 640px) and (max-width: 959.98px) {
  #header-site [data-hairline~="md-top"] {
    border-top: 1px solid;
  }

  #header-site [data-hairline~="md-right"] {
    border-top: 1px solid;
  }

  #header-site [data-hairline~="md-bottom"] {
    border-bottom: 1px solid;
  }

  #header-site [data-hairline~="md-left"] {
    border-left: 1px solid;
  }
}

@media (min-width: 960px) {
  #header-site [data-hairline~="lg-top"] {
    border-top: 1px solid;
  }

  #header-site [data-hairline~="lg-right"] {
    border-top: 1px solid;
  }

  #header-site [data-hairline~="lg-bottom"] {
    border-bottom: 1px solid;
  }

  #header-site [data-hairline~="lg-left"] {
    border-left: 1px solid;
  }
}

/* Controls Area */

#header-site .controls content-lock {
  padding: 0;
}

#header-site .controls h-box {
  margin: 0;
}

#header-site .controls v-box {
  padding: 0;
}

#header-site .header-control {
  display: inline-block;
  margin: 0;
  padding: 0 14px;
  white-space: nowrap;
  text-decoration: none;
}

#header-site.internal .header-control {
  color: #3a3a3a;
}

#header-site.government .header-control,
#header-site.business .header-control,
#header-site.public .header-control,
#header-site.subsites .header-control {
  color: #fff;
}

#header-site .header-control.short {
  height: 44px;
}

#header-site .header-control.tall {
  height: 55px;
}

@media (min-width: 640px) {
  #header-site .header-control.short,
  #header-site .header-control.tall {
    height: 65px;
  }
}

@media (min-width: 960px) {
  #header-site .header-control {
    padding: 0 18px;
  }
}

#header-site.internal .header-control[aria-expanded="true"] {
  color: #fff;
  background-color: #0e3253;
}

#header-site.government .header-control[aria-expanded="true"],
#header-site.business .header-control[aria-expanded="true"],
#header-site.public .header-control[aria-expanded="true"],
#header-site.subsites .header-control[aria-expanded="true"] {
  color: #3a3a3a;
  background-color: #f4f4f4;
}

#header-site .controls [class*="icon"]::before {
  top: 0;
  margin-left: 0;
}

@media (min-width: 640px) {
  #header-site .header-control[class*="icon"]::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1em;
    margin: -0.75em 0 0;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

#header-site .header-control::after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

#header-site .header-control > .content {
  display: inline-block;
  vertical-align: middle;
}

@media (min-width: 640px) {
  #header-site .header-control[class*="icon"] > .content {
    margin-top: 1.5em;
  }
}

#header-site #fiscal-link {
  width: 60px;
  background-color: #fff;
}

@media (min-width: 640px) {
  #header-site #fiscal-link {
    width: 70px;
  }
}

@media (min-width: 960px) {
  #header-site #fiscal-link {
    width: 203px;
  }
}

#header-site #fiscal-link figure {
  position: relative;
  width: 100%;
  height: 100%;
}

#header-site #fiscal-link img {
  position: absolute;
  top: 50%;
  display: block;
  width: 98px;
  height: 26px;
  max-width: none;
  clip: rect(0, 30px, 26px, 0);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (min-width: 640px) {
  #header-site #fiscal-link img {
    width: 136px;
    height: 36px;
    clip: rect(0, 42px, 36px, 0);
  }
}

@media (min-width: 960px) {
  #header-site #fiscal-link img {
    width: 167px;
    height: 44px;
    clip: auto;
  }
}

#header-site #site-home-link {
  max-width: 100%;
}

#header-site .controls .fade-right {
  overflow: hidden;
  position: relative;
  max-width: 100%;
  padding-right: 20px;
  white-space: nowrap;
}

#header-site .controls .fade-right::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
}

#header-site.internal .controls .fade-right::after {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

#header-site.government .controls .fade-right::after {
  background-image: linear-gradient(to right, rgba(14, 50, 83, 0), rgba(14, 50, 83, 1));
}

#header-site.business .controls .fade-right::after {
  background-image: linear-gradient(to right, rgba(37, 13, 54, 0), rgba(37, 13, 54, 1));
}

#header-site.public .controls .fade-right::after {
  background-image: linear-gradient(to right, rgba(8, 40, 28, 0), rgba(8, 40, 28, 1));
}

#header-site.subsites .controls .fade-right::after {
  background-image: linear-gradient(to right, rgba(14, 50, 83, 0), rgba(14, 50, 83, 1));
}

/* Header & Footer Menu Area */

@media (max-width: 959.98px) {
  #header-menu .square-crop,
  #footer-menu .square-crop {
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
  }

  #header-menu .square-crop > img,
  #footer-menu .square-crop > img {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    height: 100%;
    max-width: none;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

#header-menu .inset-v,
#footer-menu .inset-v {
  padding-top: 30px;
  padding-bottom: 30px;
}

#header-menu .inset-h,
#footer-menu .inset-h {
  padding-left: 30px;
  padding-right: 30px;
}

#header-menu nav ul,
#footer-menu nav ul {
  list-style: none;
  padding: 0;
}

#header-menu li > a,
#header-menu li > button,
#footer-menu li > a,
#footer-menu li > button {
  margin-left: -1.5em;
  color: #3a3a3a;
}

#header-menu li > a,
#footer-menu li > a {
  display: inline;
  padding-left: 1.5em;
  text-decoration: none;
}

#header-menu li > [href^="http"]:not(.cta)::before,
#footer-menu li > [href^="http"]:not(.cta)::before {
  display: none;
}

#header-menu li > [href^="http"]:not(.cta)::after,
#footer-menu li > [href^="http"]:not(.cta)::after {
  content: "";
  margin-left: 10px;
  padding-right: 1em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#header-menu li > [href$="pdf"]:not(.cta)::before,
#footer-menu li > [href$="pdf"]:not(.cta)::before {
  display: none;
}

#header-menu li > [href$="pdf"]:not(.cta)::after,
#footer-menu li > [href$="pdf"]:not(.cta)::after {
  content: "";
  margin-left: 10px;
  padding-right: 1em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#header-menu li > [href$="xlsx"]:not(.cta)::before,
#footer-menu li > [href$="xlsx"]:not(.cta)::before {
  display: none;
}

#header-menu li > [href$="xlsx"]:not(.cta)::after,
#footer-menu li > [href$="xlsx"]:not(.cta)::after {
  content: "";
  margin-left: 10px;
  padding-right: 1em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* Header & Footer Search Area */

#header-search .input-wrapper,
#footer-search .input-wrapper {
  position: relative;
}

#header-search input[type="search"],
#footer-search input[type="search"] {
  /* 1px smaller than the width of the button to work around Safari's rounding */
  /* of calc() to whole pixels. */
  width: calc(100% - 41px);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  color: #3a3a3a;
}

#footer-search input[type="search"] {
  border-color: #fff;
}

@media (min-width: 640px) {
  #header-search input[type="search"],
  #footer-search input[type="search"] {
    width: calc(100% - 53px);
  }
}

#header-search button[type="submit"],
#footer-search button[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 100%;
  border-radius: 0 6px 6px 0;
  background-size: 17px;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (min-width: 640px) {
  #header-search button[type="submit"],
  #footer-search button[type="submit"] {
    width: 54px;
    background-size: 22px;
  }
}

#header-search button[type="submit"] {
  background-color: #5e6672;
  background-image: url(/images/icons/search-white-icon.svg);
}

#footer-search button[type="submit"] {
  background-color: #febf24;
  background-image: url(/images/icons/search-dark-blue-icon.svg);
}

/* Site Footer */

#footer-site section content-lock {
  padding-top: 35px;
  padding-bottom: 19px;
}

@media (min-width: 960px) {
  #footer-site section content-lock {
    padding-top: 45px;
    padding-bottom: 25px;
  }
}

#footer-menu {
  border-top: 10px solid #016699;
}

#footer-site .dark-blue-background {
  color: #fff;
  background-image: url(/images/footer-bg.jpg);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

#footer-site .dark-gray-background {
  color: #fff;
  background-color: #020e1a;
}

#footer-logo {
  display: inline-block;
  margin: 0;
}

#footer-site .dark-blue-background a,
#footer-site .dark-blue-background button,
#footer-site .dark-gray-background a,
#footer-site .dark-gray-background button {
  color: #fff;
}

#footer-site .social-links a {
  text-decoration: none;
}

#footer-site .gray-background a {
  color: #9c9ea1;
}
.imgLeft{
	margin-left: 0px;
}

.second-col {
	padding-left: 50px;
	padding-right: 50px;
}

@media (max-width: 640px) {
  .second-col {
	padding-left: 5px;
	padding-right: 5px;
  }
}

/* About page */
.about-green {color:#41AD49; 
	font-weight:bold;
}

.circle1 {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 8px;

    background: #0c3455;
    border: 2px solid #0c3455;
    color: #fff;
    text-align: center;

    font: 1em Arial, sans-serif;
}

.circle2 {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 8px;

    background: #258fa4;
    border: 2px solid #258fa4;
    color: #fff;
    text-align: center;

    font: 1em Arial, sans-serif;
}

.circle3 {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 8px;

    background: #da521f;
    border: 2px solid #da521f;
    color: #fff;
    text-align: center;

    font: 1em Arial, sans-serif;
}

.circle4 {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 8px;

    background: #711f7e;
    border: 2px solid #711f7e;
    color: #fff;
    text-align: center;

    font: 1em Arial, sans-serif;
}

.circle5 {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 8px;

    background: #f89d1d;
    border: 2px solid #f89d1d;
    color: #fff;
    text-align: center;

    font: 1em Arial, sans-serif;
}
