
.red {
  background-color: #e91939;
  color: white;
}

.red:hover {
  color: white;
}

.blue {
  background-color: #0657a6;
  color: white;
}

.blue:hover {
  color: white;
}

.blue .text-red {
  color: #f7657c;
}

.blue .text-red-hover:hover {
  color: #f7657c;
}

.dark-blue {
  background-color: #02284d;
  color: white;
}

.dark-blue:hover {
  color: white;
}

.white {
  background-color: white;
  color: #0657a6;
}

.white:hover {
  color: #0657a6;
}

.white-opaque {
  background-color: rgba(255, 255, 255, 0.5);
}

.white-opaque-2 {
  background-color: rgba(255, 255, 255, 0.8);
}

.text-red {
  color: #e91939;
}

.text-red-hover:hover {
  color: #e91939;
}

.text-blue {
  color: #0657a6;
}

.text-dark-blue {
  color: #02284d;
}

.text-white {
  color: white;
}

.button-dark-blue-hover:hover {
  background-color: #04407a;
  transition: 0.5s;
  color: white;
}

.button-blue-hover:hover {
  background-color: #0672db;
  transition: 0.5s;
  color: white;
}

.dark-blue-border {
  border-style: dashed;
  border-color: #04407a;
}

/*!
 * sizing classes
 */
/*---------------------------------Whitespace---------------------------------*/
.whitespace-sm {
  padding: 5%;
}

.whitespace-md {
  padding: 10%;
}

.whitespace-lg {
  padding: 15%;
}

@media only screen and (min-width: 992px) {
  .whitespace-sm {
    padding: 2%;
  }
  .whitespace-md {
    padding: 5%;
  }
  .whitespace-lg {
    padding: 10%;
  }
}
/*---------------------------------Features-----------------------------------*/
.stackable-xxs {
  margin-bottom: 1%;
}

.stackable-xs {
  margin-bottom: 2%;
}

.stackable {
  margin-bottom: 5%;
}

.stackable-md {
  margin-bottom: 10%;
}

/*!
 * utilities a la bootstrap 4
 */
/**
 * margin, padding
 */
.m-0 {
  margin: 0 !important;
}

.mt-0, .my-0 {
  margin-top: 0 !important;
}

.mr-0, .mx-0 {
  margin-right: 0 !important;
}

.mb-0, .my-0 {
  margin-bottom: 0 !important;
}

.ml-0, .mx-0 {
  margin-left: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0, .py-0 {
  padding-top: 0 !important;
}

.pr-0, .px-0 {
  padding-right: 0 !important;
}

.pb-0, .py-0 {
  padding-bottom: 0 !important;
}

.pl-0, .px-0 {
  padding-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1, .my-1 {
  margin-top: 0.25rem !important;
}

.mr-1, .mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1, .my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1, .mx-1 {
  margin-left: 0.25rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1, .my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1, .mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1, .my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1, .mx-n1 {
  margin-left: -0.25rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1, .py-1 {
  padding-top: 0.25rem !important;
}

.pr-1, .px-1 {
  padding-right: 0.25rem !important;
}

.pb-1, .py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1, .px-1 {
  padding-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2, .my-2 {
  margin-top: 0.5rem !important;
}

.mr-2, .mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2, .my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2, .mx-2 {
  margin-left: 0.5rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2, .my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2, .mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2, .my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2, .mx-n2 {
  margin-left: -0.5rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2, .py-2 {
  padding-top: 0.5rem !important;
}

.pr-2, .px-2 {
  padding-right: 0.5rem !important;
}

.pb-2, .py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2, .px-2 {
  padding-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3, .my-3 {
  margin-top: 1rem !important;
}

.mr-3, .mx-3 {
  margin-right: 1rem !important;
}

.mb-3, .my-3 {
  margin-bottom: 1rem !important;
}

.ml-3, .mx-3 {
  margin-left: 1rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3, .my-n3 {
  margin-top: -1rem !important;
}

.mr-n3, .mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3, .my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3, .mx-n3 {
  margin-left: -1rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3, .py-3 {
  padding-top: 1rem !important;
}

.pr-3, .px-3 {
  padding-right: 1rem !important;
}

.pb-3, .py-3 {
  padding-bottom: 1rem !important;
}

.pl-3, .px-3 {
  padding-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4, .my-4 {
  margin-top: 1.5rem !important;
}

.mr-4, .mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4, .my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4, .mx-4 {
  margin-left: 1.5rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4, .my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4, .mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4, .my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4, .mx-n4 {
  margin-left: -1.5rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4, .py-4 {
  padding-top: 1.5rem !important;
}

.pr-4, .px-4 {
  padding-right: 1.5rem !important;
}

.pb-4, .py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4, .px-4 {
  padding-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5, .my-5 {
  margin-top: 3rem !important;
}

.mr-5, .mx-5 {
  margin-right: 3rem !important;
}

.mb-5, .my-5 {
  margin-bottom: 3rem !important;
}

.ml-5, .mx-5 {
  margin-left: 3rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5, .my-n5 {
  margin-top: -3rem !important;
}

.mr-n5, .mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5, .my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5, .mx-n5 {
  margin-left: -3rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5, .py-5 {
  padding-top: 3rem !important;
}

.pr-5, .px-5 {
  padding-right: 3rem !important;
}

.pb-5, .py-5 {
  padding-bottom: 3rem !important;
}

.pl-5, .px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

/**
 * .w-25, .w-50, etc. classes are generated here.
 */
.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-80 {
  width: 80% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.disclaimer {
  font-size: 14px;
}

.section {
  margin-top: 0;
  margin-bottom: 4rem;
}

/**
 * responsive dropdown-menu-{left,right}-classes a la bootstrap 4
 *
 * styles created for about dropdown menu in top nav
 */
@media (min-width: 992px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
.navlink {
  text-decoration: none;
  color: white;
}

.nav-sleek {
  border-style: solid;
  border-radius: 25px;
  border-color: white;
  color: white;
}

@media only screen and (max-width: 767px) {
  .programNav {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
body > header.site-header {
  background-color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 20;
}
body > header.site-header + .heroImg,
body > header.site-header + * > .heroImg:first-child {
  margin-top: -50px;
  padding-top: 50px;
}

.navbar#nav {
  margin-bottom: 0;
  border-width: 0;
  border-radius: 0;
}
.navbar#nav a.navbar-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
.navbar#nav a {
  color: #02284d;
}
.navbar#nav a:hover, .navbar#nav a:focus {
  color: #02284d;
  opacity: 0.75;
}

html, body {
  overflow-x: hidden;
}

a.h1, a.h2, a.h3, a.h4, a.h5, a.h6 {
  color: #0657a6;
  text-decoration: none;
}
a.h1:hover, a.h1:focus, a.h2:hover, a.h2:focus, a.h3:hover, a.h3:focus, a.h4:hover, a.h4:focus, a.h5:hover, a.h5:focus, a.h6:hover, a.h6:focus {
  color: #03305c;
  text-decoration: underline;
}
a.h1:focus, a.h2:focus, a.h3:focus, a.h4:focus, a.h5:focus, a.h6:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

a:hover img {
  opacity: 0.85;
}

/*----------------------------------Site Specific-----------------------------*/
blockquote {
  margin: 0;
  background: #eeeeee;
}

blockquote p {
  padding: 15px;
}

blockquote p::before {
  content: "â€œ";
}

blockquote p::after {
  content: "â€";
}

#hpAbout {
  width: 70%;
  margin-left: 15%;
}
@media only screen and (max-width: 767px) {
  #hpAbout {
    width: 100%;
    margin-left: 0;
  }
}

#logo {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  #logo {
    width: 100%;
  }
}

#action {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #action {
    position: static;
  }
}

#programHeader {
  margin-top: 0;
  padding-top: 10%;
  padding-bottom: 5%;
}
@media only screen and (max-width: 767px) {
  #programHeader {
    padding-top: 15%;
    padding-bottom: 10%;
  }
}

#docSearch, #docCategory {
  width: 80%;
  margin-left: 10%;
  margin-bottom: 1%;
}

#docs {
  width: 80%;
  margin-left: 10%;
}

#info-banner {
  position: fixed;
  background-color: #02284d;
  padding: 0 10px 0 10px;
  color: white;
  font-family: sans-serif;
  width: 100%;
  bottom: 0;
  border-color: white;
  border-style: dashed;
}

#info-banner span {
  float: right;
}

#info-banner input[type=text] {
  border-style: none none solid none;
  background-color: #02284d;
  width: 100%;
  text-align: center;
}

#banner-close {
  cursor: pointer;
}

#applications {
  max-height: 1500px;
  overflow-y: auto;
}

#requestLinkUrl {
  border-style: none;
  width: 100%;
  max-width: 100%;
  resize: vertical;
  display: block;
  text-align: center;
  background-color: white;
  min-height: 4rem;
}

#appComments {
  resize: horizontal;
}

/*---------------------------------Shapes-------------------------------------*/
.circle {
  height: 200px;
  width: 200px;
  border-radius: 50%;
}
@media only screen and (max-width: 992px) {
  .circle {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    font-size: 0.1em;
  }
}

.left {
  float: left;
}

.right {
  float: right;
}

.five-columns {
  width: 20%;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 7%;
}

.borderless {
  border-style: none;
}

.depth {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.navlink {
  text-decoration: none;
  color: white;
}

.siteLink {
  color: red;
}

.eventSect {
  background: url("/img/white-2484120_640.png");
  border-style: solid;
  border-color: #0657A6;
}

.nav-sleek {
  border-style: solid;
  border-radius: 25px;
  border-color: white;
  color: white;
}

.button-sleek {
  padding: 1%;
  border-style: solid;
  border-radius: 10px;
  background-color: transparent;
}

.heroImg {
  background-image: url("/img/countryside.jpg");
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
}

.heroImg--B {
  min-height: 4in;
}

.heroImg--two-thirds {
  min-height: 66vh;
}

.heroImg--two-fifths {
  min-height: 40vh;
}

html:not(.html--with-2022-style-updates) .row {
  margin: 0;
}

.sticky {
  position: sticky;
}

.container-main {
  width: 80%;
  margin-left: 10%;
}

.heading {
  font-size: 3em;
  color: black;
}

.about-img {
  width: 50%;
  margin-left: 25%;
}

.hoverItem {
  transition: 0.5s;
}

.hoverItem:hover {
  border-style: solid;
  border-width: thin;
  border-radius: 5px;
  background-color: rgba(6, 87, 166, 0.1);
  padding: 1%;
  box-shadow: 5px 5px;
}

.blueShadow {
  box-shadow: 3px 3px #02284d;
}

.darkBlueShadow {
  box-shadow: 3px 3px black;
}

.textContainer {
  width: 90%;
  margin-left: 5%;
  padding: 3%;
}
@media only screen and (max-width: 767px) {
  .textContainer {
    width: 100%;
    margin-left: 0;
  }
}

.hide-overflow {
  overflow: hidden;
}

.hidden-alt {
  display: none;
}

.center {
  margin: auto;
  display: block;
}

.quiz-radio {
  display: block;
}

.question-div {
  transition: 5s;
  height: 0;
  overflow: hidden;
}

.question-div.question-div-visible {
  height: auto;
}

.toBottom {
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .toBottom {
    position: static;
  }
}

.tbl-action {
  border-radius: 5px;
  cursor: pointer;
  padding: 2px;
  /* display: block; */
  /* text-align: center; */
  max-width: 200px;
}

.tbl-action-req {
  background-color: #36a936;
  color: white;
}

.tbl-action-del-type {
  background-color: #f7657c;
  color: white;
}

.tbl-action-complete {
  background-color: #337ab7;
  color: white;
}

.tbl-action-incomplete {
  background-color: #a94442;
  color: white;
}

.ajs-message.ajs-visible {
  background-color: #9ecfff;
}

.tbl-link-wrap {
  line-height: 1.5em;
  margin: 0.25em 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.is-loading-display {
  position: relative;
}

.is-loading-display::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.25);
  display: block;
}

.is-loading-display::after {
  content: "";
  display: inline-block;
  width: 5em;
  height: 5em;
  border: 0.25em solid black;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
  animation: spinner-border 0.75s linear infinite;
  position: absolute;
  top: calc(50% - 2.5em);
  left: calc(50% - 2.5em);
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid black;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
  animation: spinner-border 0.75s linear infinite;
}

.app-detail-text {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: white;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 4px;
  border-style: none none solid none;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

/*---------------------------------Element Styles-----------------------------*/
img {
  max-width: 100%;
}

html:not(.html--with-2022-style-updates) p, html:not(.html--with-2022-style-updates) h1, html:not(.html--with-2022-style-updates) h2, html:not(.html--with-2022-style-updates) h3, html:not(.html--with-2022-style-updates) h4, html:not(.html--with-2022-style-updates) h5, html:not(.html--with-2022-style-updates) h6 {
  margin: 0;
}
html:not(.html--with-2022-style-updates) p, html:not(.html--with-2022-style-updates) h1, html:not(.html--with-2022-style-updates) h2, html:not(.html--with-2022-style-updates) h3, html:not(.html--with-2022-style-updates) h4, html:not(.html--with-2022-style-updates) h5, html:not(.html--with-2022-style-updates) h6 {
  font-family: sans-serif;
}
html:not(.html--with-2022-style-updates) body, html:not(.html--with-2022-style-updates) html {
  height: 100%;
}

footer.site-footer {
  padding: 2rem 0;
  margin: 0;
  width: 100%;
}
footer.site-footer a {
  color: #fbaeba;
}
footer.site-footer a:hover, footer.site-footer a:focus {
  color: #f7657c;
}

/*--------------------------------Mobile--------------------------------------*/
@media only screen and (max-width: 991px) {
  /* Force table to not be like tables anymore */
  table, thead, tbody, th, td, tr {
    display: block;
  }
  /* Hide table headers (but not display: none;, for accessibility) */
  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  tr {
    border: 1px solid #cccccc;
  }
  td {
    /* Behave like a "row" */
    border: none;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    padding-left: 50%;
  }
  td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 768px) {
  .five-columns {
    width: 100%;
  }
  #hpAbout {
    width: 100%;
    margin-left: 0;
  }
  #logo {
    width: 100%;
  }
  #action {
    position: static;
  }
  .textContainer {
    width: 100%;
    margin-left: 0;
  }
  .programNav {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .toBottom {
    position: static;
  }
  #programHeader {
    padding-top: 15%;
    padding-bottom: 10%;
  }
}
@media only screen and (max-width: 992px) {
  .circle {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    font-size: 0.1em;
  }
  .actionButtonText {
    font-size: 10em;
  }
}
@media only screen and (max-height: 560px) {
  #callToAction {
    display: none;
  }
}
.footer-social-icon {
  display: inline-block;
  vertical-align: middle;
  width: 45px;
  margin: 0 6px;
}

.clear:after {
  content: "";
  clear: both;
  display: block;
}

.response {
  background: rgba(143, 211, 143, 0.7);
  padding: 15px;
  font-size: 2rem;
  border-radius: 15px;
  margin: 10px;
}

.response p {
  color: #222222;
}/*# sourceMappingURL=main.css.map */

footer {
   padding: 1%;
   padding-top: 2%;
   margin: 0;
   width: 100%;
 }
