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

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

@font-face {
  font-family: "font-awesome";
  font-style: normal;
  font-weight: normal;
  src: url("../../fonts/fontawesome-webfont.woff") format("woff");
}

@font-face {
  font-family: "poppins";
  font-style: normal;
  font-weight: 300;
  src: url("../../fonts/poppins-light.woff") format("woff");
}

@font-face {
  font-family: "poppins";
  font-style: normal;
  font-weight: normal;
  src: url("../../fonts/poppins-regular.woff") format("woff");
}

@font-face {
  font-family: "poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/poppins-medium.woff") format("woff");
}

@font-face {
  font-family: "poppins";
  font-style: normal;
  font-weight: 600;
  src: url("../../fonts/poppins-semibold.woff") format("woff");
}

input[type="submit"],
.btn-blue, .btn-green, .btn-outline {
  appearance: none;
  display: inline-block;
  font: 17px/0.6 "poppins", sans-serif;
  font-weight: bold;
  text-decoration: none;
  text-transform: capitalize;
  margin: 5px;
  padding: 15.3px 30.6px;
  color: #FFF;
  background-color: #007bb3;
  border: 0;
  border-radius: 6px;
  -webkit-font-smoothing: antialiased;
  transition: background-color 150ms ease;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

input[type="submit"]:hover,
.btn-blue:hover, .btn-green:hover, .btn-outline:hover, input[type="submit"]:focus,
.btn-blue:focus, .btn-green:focus, .btn-outline:focus {
  color: #FFF;
  background-color: #075384;
  text-decoration: none;
}

input[type="submit"]:disabled,
.btn-blue:disabled, .btn-green:disabled, .btn-outline:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

input[type="submit"] a,
.btn-blue a, .btn-green a, .btn-outline a,
div input[type="submit"],
div
.btn-blue,
div .btn-green,
div .btn-outline {
  color: #fff;
  text-decoration: none;
}

input[type="submit"]::after,
.btn-blue::after {
  content: '\00a0›';
}

input[type="submit"].variant,
.btn-blue.variant {
  background-color: #007bb3;
}

input[type="submit"].variant:hover, input[type="submit"].variant:focus,
.btn-blue.variant:hover,
.btn-blue.variant:focus {
  background-color: #075384;
}

.btn-green {
  background-color: #92c83e;
}

.btn-green::after {
  content: '\00a0›';
}

.btn-green:hover, .btn-green:focus {
  background-color: #519535;
}

div .btn-green {
  color: #fff;
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: 7.65px;
  padding: 0;
}

label {
  display: block;
  font-weight: 300;
  margin-bottom: 7.65px;
  line-height: 16px;
  color: #444446;
}

input,
select {
  display: block;
  font-family: "poppins", sans-serif;
  font-size: 17px;
}

input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea,
select[multiple] {
  background-color: #fff;
  border: 1px solid #E6E7E9;
  border-radius: 2px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
  font-size: 17px;
  margin-bottom: 15.3px;
  padding: 7.65px;
  transition: border-color 150ms ease;
  width: 100%;
  min-width: 125px;
}

input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, input:not([type]):hover, textarea:hover,
select[multiple]:hover {
  border-color: #b8b9ba;
}

input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input:not([type]):focus, textarea:focus,
select[multiple]:focus {
  border-color: #2da3cf;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(40, 147, 186, 0.7);
  outline: none;
}

input[type="color"]:disabled, input[type="date"]:disabled, input[type="datetime"]:disabled, input[type="datetime-local"]:disabled, input[type="email"]:disabled, input[type="month"]:disabled, input[type="number"]:disabled, input[type="password"]:disabled, input[type="search"]:disabled, input[type="tel"]:disabled, input[type="text"]:disabled, input[type="time"]:disabled, input[type="url"]:disabled, input[type="week"]:disabled, input:not([type]):disabled, textarea:disabled,
select[multiple]:disabled {
  background-color: #f2f2f2;
  cursor: not-allowed;
}

input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, input:not([type]):hover, textarea:hover,
select[multiple]:hover {
  border: 1px solid #E6E7E9;
}

input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea {
  max-width: 768px;
}

textarea {
  resize: vertical;
}

[type="search"] {
  appearance: none;
}

[type="checkbox"],
[type="radio"] {
  display: inline;
  margin-right: 7.65px;
}

.facet-item [type="checkbox"], .facet-item
[type="radio"] {
  float: left;
}

[type="file"] {
  margin-bottom: 15.3px;
  width: 100%;
}

select {
  max-width: 100%;
  width: auto;
  padding: 7.65px 30.6px 7.65px 7.65px;
  margin-bottom: 30.6px;
  border-radius: 2px;
  outline: none;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #E6E7E9;
  text-overflow: '';
}

select::-ms-expand {
  display: none;
}

select:hover {
  border-color: #b8b9ba;
}

select:focus {
  border-color: #2da3cf;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(40, 147, 186, 0.7);
  outline: none;
}

select:not([multiple]) {
  background-image: url(../../images/optimized/sprite.svg);
  background-repeat: no-repeat;
  background-position: right 4.4%;
}

#content-area .form-item {
  margin-bottom: 25px;
}

label.form-required::after {
  content: "*";
  color: #444446;
  margin-left: 5px;
}

.form-notes {
  color: #707070;
  font-size: 14px;
  width: 100%;
  text-align: right;
}

.captcha {
  margin-bottom: 35px;
}

.user-login-form input[type="text"],
.user-login-form input[type="password"] {
  margin-bottom: 7.65px;
}

.user-login-form .description {
  color: #707070;
  font-size: 14px;
  max-width: 625px;
  line-height: 1.5;
}

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

@media screen and (min-width: 28.23529em) {
  .left {
    float: left;
  }
  .right {
    float: right;
  }
  .padding-right {
    display: block;
    margin: 0 15.3px 15.3px 0;
  }
  .padding-left {
    display: block;
    margin: 0 0 15.3px 15.3px;
  }
}

.underline-on-hover {
  text-decoration: none;
}

.underline-on-hover:hover {
  text-decoration: underline;
}

.underline {
  text-decoration: underline;
}

.underline:hover {
  text-decoration: none;
}

.hide-text {
  font-size: 0;
  line-height: 0;
}

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

ul,
ol {
  margin: 0;
  padding: 0 0 0 30px;
}

dl {
  margin-bottom: 15.3px;
}

dl dt {
  font-weight: 600;
  margin-top: 15.3px;
}

dl dd {
  margin: 0;
}

picture,
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

article picture, article
img {
  display: block;
}

iframe,
object,
embed {
  max-width: 100%;
}

/* Table styles. */
table {
  border-collapse: collapse;
  margin: 15.3px 0;
  table-layout: fixed;
  width: 100%;
}

th {
  border-bottom: 1px solid #adadaf;
  font-weight: 600;
  padding: 15.3px 0;
  text-align: left;
}

td {
  border-bottom: 1px solid #E6E7E9;
  padding: 15.3px 0;
}

tr,
td,
th {
  vertical-align: middle;
}

.tablesort {
  margin-left: 6px;
}

body {
  color: #444446;
  font-family: "poppins", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 30.6px;
  overflow-x: hidden;
}

h1 {
  font: 35.989px/54.34339px "poppins", sans-serif;
  font-weight: 300;
  margin: 29.51098px 0;
  color: #075384;
}

@media screen and (min-width: 45.17647em) {
  h1 {
    margin: 44.26647px 0;
  }
}

h2 {
  font: 25.993px/39.24943px "poppins", sans-serif;
  font-weight: 300;
  margin: 21.31426px 0;
  color: #519535;
}

@media screen and (min-width: 45.17647em) {
  h2 {
    line-height: 46.00761px;
    margin: 31.97139px 0;
  }
}

h3 {
  font: 21.998px/33.21698px "poppins", sans-serif;
  font-weight: 300;
  margin: 18.03836px 0;
  color: #007bb3;
}

@media screen and (min-width: 45.17647em) {
  h3 {
    line-height: 33.21698px;
    margin: 27.05754px 0;
  }
}

h4 {
  font: 17.986px/27.15886px "poppins", sans-serif;
  font-weight: 300;
  margin: 14.74852px 0;
  color: #007bb3;
}

@media screen and (min-width: 45.17647em) {
  h4 {
    line-height: 31.83522px;
    margin: 22.12278px 0;
  }
}

h5 {
  font: 15.98px/24.1298px "poppins", sans-serif;
  font-weight: 300;
  margin: 13.1036px 0;
  color: #007bb3;
}

@media screen and (min-width: 45.17647em) {
  h5 {
    line-height: 28.2846px;
    line-height-margin: 19.6554px 0;
  }
}

h6 {
  font: 13.991px/24.76407px "poppins", sans-serif;
  font-weight: 300;
  margin: 17.20893px 0;
  color: #007bb3;
}

p {
  margin: 0 0 15.3px;
}

a {
  color: #2da3cf;
  transition: color 150ms ease;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active, a:focus, a:hover {
  color: #227a9b;
}

a.content-link,
.content-link a {
  font-size: 16px;
  line-height: 26px;
  font-weight: normal;
  color: #519535;
}

a.content-link::after,
.content-link a::after {
  content: "\00a0›";
}

a.node-preview-backlink {
  clear: both;
  display: block;
  margin-bottom: 10px;
}

hr {
  border-bottom: 1px solid #E6E7E9;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: 30.6px 0;
}

blockquote {
  border-left: 4px solid #007bb3;
  font: 20px/34px "poppins", sans-serif;
  font-weight: 300;
  color: #007bb3;
  padding: 0 0 0 30.6px;
  overflow: hidden;
}

.base-font {
  font-family: "poppins", sans-serif;
}

.light {
  font-weight: 300;
}

.medium {
  font-weight: 500;
}

.third-font {
  font-weight: bold;
}

pre, code, tt {
  font: 1em "andale mono", "lucida console", monospace;
  line-height: 1.5;
}

pre {
  background-color: #efefef;
  display: block;
  padding: 5px;
  margin: 5px 0;
  border: 1px solid #aaaaaa;
}

abbr {
  border-bottom: 1px dotted #666666;
  cursor: help;
  white-space: nowrap;
}

.ck-content b,
.ck-content strong {
  font-weight: bold;
}

.field.field--label-inline .field__label {
  float: left;
  margin-right: 5px;
}

.field.field--label-inline .field__label::after {
  content: ":";
}

.field.field--type-text-with-summary img {
  margin: 1em 0;
}

.field.field--type-text-with-summary img.align-left {
  margin-right: 1em;
}

.field.field--type-text-with-summary img.align-right {
  margin-left: 1em;
}

.field.field--type-text-with-summary img.align-center {
  margin: 1em auto;
}

/*# sourceMappingURL=base.css.map */