@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700");
body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  background-color: #ffffff;
}

* {
  box-sizing: border-box;
}

.content-container-inner h1 {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 52px;
  line-height: 52px;
  color: #2C80EB;
}

.content-container-inner h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 40px;
  line-height: 40px;
  color: #2C80EB;
}

.content-container-inner h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  line-height: 24px;
  color: #2C80EB;
}

.content-container-inner h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  line-height: 24px;
  color: #2C80EB;
}

.content-container-inner ol, .content-container-inner ul, .content-container-inner p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 32px;
  color: #8694a3;
}

.hamburger {
  display: inline-block;
  padding: 25px 0;
  cursor: pointer;
  float: right;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
@media (min-width: 790px) {
  .hamburger {
    display: none;
  }
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #2C80EB;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.header-container-home {
  background-color: #ffffff;
  display: block;
  height: 100px;
  position: relative;
  width: 100%;
}
.header-container-home .header-logo {
  display: inline-block;
  float: left;
  margin: 34px 0 0 40px;
}
.header-container-home .header-text {
  color: #2C80EB;
  display: inline-block;
  float: right;
  font-size: 32px;
  font-family: "Open Sans", sans-serif;
  margin: 28px 40px 0 0;
}

.header-container {
  background-color: #ffffff;
  display: block;
  height: auto;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.header-content-filler {
  display: block;
  position: relative;
  width: 100%;
}

.header-top-outer-container {
  border-bottom: 2px dashed #E6EEF8;
  font-family: "Open Sans";
  height: 46px;
  overflow: visible;
  width: 100%;
  z-index: 1000;
}
.header-top-outer-container .header-top-inner-container {
  background-color: #ffffff;
  display: block;
  height: 44px;
  max-width: 1030px;
  margin: 0 auto;
  overflow: visible;
  padding: 0 15px;
  position: relative;
  width: 100%;
  z-index: 1001;
}
.header-top-outer-container .header-top-inner-container .header-language-container {
  background-color: white;
  cursor: pointer;
  display: inline-block;
  float: right;
  height: 44px;
  width: 77px;
}
.header-top-outer-container .header-top-inner-container .header-language-container:hover {
  background-color: #2871D1;
}
.header-top-outer-container .header-top-inner-container .header-language-container:hover .header-language-options {
  position: absolute;
}
.header-top-outer-container .header-top-inner-container .header-language-container:hover .header-language-options .header-language-option:not(:first-of-type) {
  display: block;
}
.header-top-outer-container .header-top-inner-container .header-language-container:hover .header-language-option {
  color: #ffffff;
}
.header-top-outer-container .header-top-inner-container .header-language-container .header-language-options .header-language-option:not(:first-of-type) {
  display: none;
}
.header-top-outer-container .header-top-inner-container .header-language-container .header-language-option {
  color: #2871D1;
  font-size: 12px;
  height: 44px;
  padding: 14px;
  width: 77px;
}
.header-top-outer-container .header-top-inner-container .header-language-container .header-language-option .language-flag {
  height: 15px;
  margin: 0 8px 0 0;
  vertical-align: middle;
  width: 22px;
}
.header-top-outer-container .header-top-inner-container .header-language-container .header-language-option .language-chevron {
  vertical-align: middle;
}
.header-top-outer-container .header-top-inner-container .header-language-container .header-language-option:nth-child(2) {
  background-color: #2871D1;
}
.header-top-outer-container .header-top-inner-container .header-language-container .header-language-option:nth-child(2):hover {
  background-color: #2363B8;
}
.header-top-outer-container .header-top-inner-container .header-link {
  color: #2C80EB;
  float: right;
  font-size: 14px;
  line-height: 44px;
  margin: 0 20px;
  text-decoration: none;
}
.header-top-outer-container .header-top-inner-container .header-link:hover {
  text-decoration: underline;
}
.header-top-outer-container .header-top-inner-container .header-media-icon {
  background-color: #2C80EB;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  float: right;
  font-size: 12px;
  height: 24px;
  margin: 10px 8px 10px 8px;
  padding-top: 6px;
  text-align: center;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  transition: all linear 0.3s;
  width: 24px;
}
.header-top-outer-container .header-top-inner-container .header-media-icon:hover {
  background-color: #2871D1;
}

.header-bottom-container {
  background-color: #ffffff;
  display: block;
  height: 75px;
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
.header-bottom-container .header-logo {
  cursor: pointer;
  margin: 12px 0 0 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.header-bottom-container .header-bottom-title {
  color: #2C80EB;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  display: block;
  margin: 45px 0 0 -1px;
  position: absolute;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 25;
}

.navigation-outer-container {
  background-color: #ffffff;
  color: #2C80EB;
  cursor: pointer;
  display: inline-block;
  float: right;
  height: auto;
  padding-left: 20px;
  position: relative;
}
.navigation-outer-container .navigation-top-level-container-outer {
  display: inline-block;
  float: left;
  height: 75px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: auto;
}
.navigation-outer-container .navigation-top-level-container-outer a {
  color: #2C80EB;
}
.navigation-outer-container .navigation-top-level-container-outer .navigation-top-level-container-inner {
  background-color: #ffffff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  display: inline-block;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  padding: 5px 5px;
  margin: 22px 0 0 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.navigation-outer-container .navigation-top-level-container-outer .navigation-top-level-container-inner:hover {
  background-color: #2C80EB;
  color: #ffffff;
}
.navigation-outer-container .navigation-top-level-container-outer-active .navigation-top-level-container-inner {
  background-color: #2C80EB;
  color: #ffffff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  display: inline-block;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  padding: 5px 5px;
  margin: 22px 0 0 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.navigation-outer-container .navigation-top-level-container-outer-active .triangle {
  margin-left: calc(50% - 10px);
  margin-top: 14px;
  border-right: 10px transparent solid;
  border-left: 10px transparent solid;
  border-bottom: 10px #2C80EB solid;
  height: 0;
  width: 0;
}
@media (max-width: 789px) {
  .navigation-outer-container {
    display: none;
  }
}

.table-cell-center, .navigation-top-level-dropdown-container-outer .navigation-top-level-dropdown-container-inner .options-paragraph .options-paragraph-inner, .navigation-top-level-dropdown-container-outer .navigation-top-level-dropdown-container-inner .options-chapter .options-chapter-inner {
  display: table-cell;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

.navigation-top-level-dropdown-container-outer {
  background-color: #2C80EB;
  height: 391px;
  display: none;
  margin: 121px 0 0 0;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.navigation-top-level-dropdown-container-outer .navigation-top-level-dropdown-container-inner {
  display: block;
  font-family: "Open Sans";
  height: 100%;
  padding: 50px 0;
  margin: 0 auto;
  max-width: 1030px;
}
.navigation-top-level-dropdown-container-outer .navigation-top-level-dropdown-container-inner .options-chapter {
  background-color: #2363B8;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  display: inline-table;
  float: left;
  font-size: 20px;
  margin: 0 15px;
  height: 100%;
  width: calc(25% - 30px);
}
.navigation-top-level-dropdown-container-outer .navigation-top-level-dropdown-container-inner .options-paragraph {
  background-color: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  color: #2C80EB;
  cursor: pointer;
  display: inline-table;
  float: left;
  font-size: 15px;
  margin: 0 15px 30px 15px;
  width: calc(25% - 30px);
}
.navigation-top-level-dropdown-container-outer .navigation-top-level-dropdown-container-inner .options-paragraph .options-paragraph-inner {
  padding: 0 15px;
}
.navigation-top-level-dropdown-container-outer .navigation-top-level-dropdown-container-inner .options-paragraph-full {
  height: 100%;
}
.navigation-top-level-dropdown-container-outer .navigation-top-level-dropdown-container-inner .options-paragraph-half {
  height: calc(50% - 15px);
}
.navigation-top-level-dropdown-container-outer .navigation-top-level-dropdown-container-inner .options-paragraph-third {
  height: calc(33% - 10px);
}

.level-1-toggle-template, .navigation-hamburger-container-outer .navigation-hamburger-level-1-container .level-1-toggle {
  color: #ffffff;
  display: block;
  font-family: "Open Sans";
  font-size: 18px;
  padding: 20px 15px;
  position: relative;
  width: 100%;
}

.link-chevron {
  float: right;
  margin-top: 3px;
  vertical-align: middle;
}

.navigation-hamburger-container-outer {
  background-color: #2C80EB;
  display: none;
  height: calc(100% - 75px);
  margin-top: 75px;
  overflow-y: scroll;
  padding-bottom: 15px;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.navigation-hamburger-container-outer > a {
  text-decoration: none;
}
.navigation-hamburger-container-outer > a .other-link {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  color: #ffffff;
  font-family: "Open Sans";
  font-size: 16px;
  padding: 15px;
  text-decoration: none;
  width: 100%;
}
.navigation-hamburger-container-outer .navigation-hamburger-level-1-container {
  height: auto;
  width: 100%;
}
.navigation-hamburger-container-outer .navigation-hamburger-level-1-container .level-1-toggle .toggle-chevron {
  -webkit-transition: all linear 0.075s;
  -moz-transition: all linear 0.075s;
  -ms-transition: all linear 0.075s;
  transition: all linear 0.075s;
  float: right;
}
.navigation-hamburger-container-outer .navigation-hamburger-level-1-container .level-1-toggle-active .toggle-chevron {
  float: right;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.navigation-hamburger-container-outer .level-1-expand {
  display: none;
  height: auto;
  padding: 0 15px;
  width: 100%;
}
.navigation-hamburger-container-outer .level-1-expand a {
  text-decoration: none;
}
.navigation-hamburger-container-outer .level-1-expand a .level-1-link {
  background-color: #2363B8;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  color: #ffffff;
  font-family: "Open Sans";
  font-size: 14px;
  padding: 15px;
  text-decoration: none;
  width: 100%;
}
.navigation-hamburger-container-outer .level-1-expand a .level-2-link {
  background-color: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  color: #2C80EB;
  font-family: "Open Sans";
  font-size: 14px;
  margin-top: 15px;
  padding: 15px;
  text-decoration: none;
  width: 100%;
}
.navigation-hamburger-container-outer .hamburger-social-media-container {
  margin-top: 100px;
  text-align: center;
  width: 100%;
}
.navigation-hamburger-container-outer .hamburger-social-media-container a {
  border: 1px solid #eeeeee;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  height: 42px;
  font-size: 28px;
  margin: 0 5px;
  padding: 5px;
  text-decoration: none;
  width: 42px;
}
.navigation-hamburger-container-outer .hamburger-language-options-container {
  margin-top: 30px;
  text-align: center;
  width: 100%;
}
.navigation-hamburger-container-outer .hamburger-language-options-container a .language-option {
  border: 1px solid #eeeeee;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  height: 45px;
  font-size: 28px;
  margin: 0 20px;
  text-decoration: none;
  width: 45px;
}
.navigation-hamburger-container-outer .hamburger-language-options-container a .language-option-dutch {
  background-image: url("../img/nl.png");
}
.navigation-hamburger-container-outer .hamburger-language-options-container a .language-option-english {
  background-image: url("../img/en.png");
}

@media (max-width: 320px) {
  .header-content-filler {
    height: 75px;
  }
  .header-top-outer-container {
    display: none;
  }
}
@media (min-width: 321px) {
  .header-content-filler {
    height: 75px;
  }
  .header-top-outer-container {
    display: none;
  }
}
@media (min-width: 769px) {
  .header-content-filler {
    height: 121px;
  }
  .header-top-outer-container {
    display: block;
  }
}
@media (min-width: 1025px) {
  .header-content-filler {
    height: 121px;
  }
  .header-top-outer-container {
    display: block;
  }
}
.footer-container {
  background-color: #2363B8;
  height: 300px;
  position: relative;
  width: 100%;
}

.content-container-home-outer {
  position: relative;
  background-color: #3885e5;
}
.content-container-home-outer .content-container-home-inner .content-home-image {
  display: inline-block;
  max-width: 70%;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

.homepage-link-block-wrapper-outer {
  background-color: #3885e5;
  display: block;
  height: auto;
  overflow-y: auto;
  width: 100%;
}

.homepage-link-block-wrapper-inner {
  background-color: #3885e5;
  display: block;
  height: auto;
  margin: 0 auto;
}

.homepage-link-block-link-container {
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  height: auto;
  overflow-y: auto;
}

.homepage-link-block-link-container-standard {
  background-color: #ffffff;
}
.homepage-link-block-link-container-standard .homepage-link-image-container {
  background-position: center center;
  background-repeat: none;
  background-size: cover;
}
.homepage-link-block-link-container-standard .homepage-link-text-container {
  color: #3885e5;
}

.homepage-link-block-link-container-blue {
  background-color: #2363B8;
}
.homepage-link-block-link-container-blue .homepage-link-image-container img {
  display: block;
  margin: 15% auto;
  max-height: 70%;
  max-width: 80%;
}
.homepage-link-block-link-container-blue .homepage-link-text-container {
  color: #ffffff;
}

.homepage-link-block-link-container-orange {
  background-color: #F29718;
}
.homepage-link-block-link-container-orange .homepage-link-image-container img {
  display: block;
  margin: 15% auto;
  max-height: 70%;
  max-width: 80%;
}
.homepage-link-block-link-container-orange .homepage-link-text-container {
  color: #ffffff;
}

@media (max-width: 320px) {
  .homepage-link-block-wrapper-inner {
    width: 100%;
  }
  .homepage-link-block-link-container {
    display: block;
    margin: 10px auto;
    width: 90%;
  }
  .homepage-link-block-link-container .homepage-link-image-container {
    display: inline-block;
    float: left;
    position: relative;
    height: 75px;
    width: 75px;
  }
  .homepage-link-block-link-container .homepage-link-text-container {
    display: inline-block;
    float: left;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    padding: 12px 20px 0;
    position: relative;
    height: 75px;
    width: calc(100% - 75px);
    overflow: hidden;
  }
}
@media (min-width: 321px) {
  .homepage-link-block-wrapper-inner {
    width: 100%;
  }
  .homepage-link-block-link-container {
    display: block;
    margin: 10px auto;
    width: 90%;
  }
  .homepage-link-block-link-container .homepage-link-image-container {
    display: inline-block;
    float: left;
    position: relative;
    height: 75px;
    width: 75px;
  }
  .homepage-link-block-link-container .homepage-link-text-container {
    display: inline-block;
    float: left;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 75px;
    padding: 0 20px;
    position: relative;
    height: 75px;
    width: calc(100% - 75px);
  }
}
@media (min-width: 769px) {
  .homepage-link-block-wrapper-inner {
    max-width: 990px;
    width: 100%;
  }
  .homepage-link-block-link-container {
    display: block;
    margin: 10px auto;
    width: 90%;
  }
  .homepage-link-block-link-container .homepage-link-image-container {
    display: inline-block;
    float: left;
    position: relative;
    height: 75px;
    width: 75px;
  }
  .homepage-link-block-link-container .homepage-link-text-container {
    display: inline-block;
    float: left;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 75px;
    padding: 0 20px;
    position: relative;
    height: 75px;
    width: calc(100% - 75px);
  }
}
@media (min-width: 1025px) {
  .homepage-link-block-wrapper-inner {
    width: 990px;
  }
  .homepage-link-block-link-container {
    display: inline-block;
    height: 227.5px;
    margin: 20px 2.5%;
    -webkit-transition: all ease 0.15s;
    -moz-transition: all ease 0.15s;
    -ms-transition: all ease 0.15s;
    transition: all ease 0.15s;
    vertical-align: middle;
    width: 20%;
  }
  .homepage-link-block-link-container:hover {
    height: 237.5px;
    margin: 5px 1.5%;
    width: 22%;
  }
  .homepage-link-block-link-container:hover .homepage-link-text-container {
    font-size: 22px;
  }
  .homepage-link-block-link-container .homepage-link-image-container {
    display: block;
    position: relative;
    height: 45%;
    width: 100%;
  }
  .homepage-link-block-link-container .homepage-link-text-container {
    display: block;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: normal;
    -webkit-transition: all ease 0.15s;
    -moz-transition: all ease 0.15s;
    -ms-transition: all ease 0.15s;
    transition: all ease 0.15s;
    padding: 24px;
    text-align: center;
    position: relative;
    line-height: normal;
    height: 55%;
    width: 100%;
  }
}
.content-container-outer {
  display: block;
  position: relative;
  width: 100%;
}

.content-container-inner {
  background-color: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  display: block;
  height: auto;
  margin: -100px auto 0 auto;
  max-width: 890px;
  padding: 15px;
  position: relative;
  width: 100%;
}

.content-top-image {
  display: block;
  margin: 0 auto;
  max-width: 1440px;
  position: relative;
  width: 100%;
}

@media (max-width: 320px) {
  .content-container-outer {
    min-height: calc(100% - 50px);
  }
  .content-container-inner {
    margin: 0 auto 0 auto;
  }
}
@media (min-width: 321px) {
  .content-container-outer {
    min-height: calc(100% - 60px);
  }
  .content-container-inner {
    margin: 0 auto 0 auto;
  }
}
@media (min-width: 769px) {
  .content-container-outer {
    min-height: calc(100% - 121px);
  }
  .content-container-inner {
    margin: -100px auto 0 auto;
  }
}
@media (min-width: 1025px) {
  .content-container-outer {
    min-height: calc(100% - 121px);
  }
  .content-container-inner {
    margin: -100px auto 0 auto;
  }
}
.content-container-inner h1 {
  margin-top: 0;
  text-align: center;
}
.content-container-inner h3 {
  text-align: center;
}
.content-container-inner h4 {
  text-align: center;
}
.content-container-inner h5 {
  text-align: center;
}
.content-container-inner p.introduction-paragraph {
  color: #2C80EB;
}
.content-container-inner a {
  color: #2C80EB;
  text-decoration: none;
}
.content-container-inner a:hover {
  color: #2363B8;
  text-decoration: underline;
}
.content-container-inner img {
  display: block;
  margin: 0 auto;
  max-width: 80%;
  height: auto;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.content-container-inner .subparagraph-title {
  border-top: 1px solid #eeeeee;
  font-size: 42px;
  margin-top: 50px;
  padding-top: 25px;
}
.content-container-inner .subsubparagraph-title {
  border-top: 1px solid #eeeeee;
  font-size: 36px;
  margin-top: 50px;
  padding-top: 25px;
}
.content-container-inner .highlightblock {
  background-color: #2C80EB;
  padding: 15px 30px;
}
.content-container-inner .highlightblock p, .content-container-inner .highlightblock ul, .content-container-inner .highlightblock ol, .content-container-inner .highlightblock h2, .content-container-inner .highlightblock h3, .content-container-inner .highlightblock h4, .content-container-inner .highlightblock h5 {
  color: #fff;
}

.numberHighlights {
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
  padding: 25px 0;
  max-width: 640px;
  margin: 25px auto;
}
.numberHighlights > div {
  float: left;
  width: 50%;
}
@media (max-width: 767px) {
  .numberHighlights > div .description p {
    margin-top: 0;
  }
}
@media (max-width: 605px) {
  .numberHighlights > div {
    width: 100%;
  }
}
.numberHighlights p {
  color: black;
}

.numberHighlight {
  height: 110px;
  width: 270px;
  margin-bottom: 60px;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: contain;
  /*  margin-right: 30px;*/
  /*width:50%;
  float:left;
  display:inline-block;*/
}

/*.numbericon{
  float:left;
  padding-top:15px;
  padding-right:15px;
  height:100px;
}*/
.numberline {
  text-align: right;
  margin-left: 30px;
  text-align: right;
  white-space: nowrap;
}
.numberline .number {
  font-size: 40pt;
  line-height: 36pt;
  color: #4A79BC;
  text-align: right;
  font-weight: bold;
}
.numberline .description {
  font-size: 14pt;
  line-height: 14pt;
  text-align: right;
}

.accordion {
  padding-left: 0 !important;
  list-style: none;
  border-top: 1px solid #9c9d9f;
}
.accordion > li {
  border-bottom: 1px solid #9c9d9f;
  line-height: 1.3;
}
.accordion > li > a {
  position: relative;
  display: block;
  padding: 10px 10px 10px 35px;
  font-size: 18px;
  color: #9c9e9f; /* !important;*/
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.accordion > li > a:before {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  left: 0;
  top: 9px;
  background: url(../img/collapse-icon.png) 0px 0px no-repeat;
}
.accordion > li > a:hover {
  color: #2c80eb;
  text-decoration: none;
}
.accordion > li > a.active {
  color: #2c80eb;
}
.accordion > li > a.active:before {
  background-position: 0 -24px;
}
.accordion > li > div {
  display: none;
  margin: 10px 0 0 0;
}

p.caption {
  font-style: italic;
  color: #2C80EB;
}

table.standard thead tr td, table.standard thead tr th, table.standard tbody tr td, table.standard tbody tr th {
  padding: 2px;
}
table.standard thead tr td p, table.standard thead tr th p, table.standard tbody tr td p, table.standard tbody tr th p {
  margin: 0;
}
table.standard thead tr td.highlight, table.standard thead tr th.highlight, table.standard tbody tr td.highlight, table.standard tbody tr th.highlight {
  background-color: #e8f1fd;
}
table.standard thead tr td.highlight p, table.standard thead tr th.highlight p, table.standard tbody tr td.highlight p, table.standard tbody tr th.highlight p {
  color: #2C80EB;
}
table.standard thead tr td.notes p, table.standard thead tr th.notes p, table.standard tbody tr td.notes p, table.standard tbody tr th.notes p {
  color: #2C80EB;
}
table.standard thead tr td.single, table.standard tbody tr td.single {
  border-bottom: 1px solid #2C80EB;
}
table.standard thead tr td.double, table.standard tbody tr td.double {
  border-bottom: 3px double #2C80EB;
}
table.standard thead tr td.dashed, table.standard tbody tr td.dashed {
  border-bottom: 1px dashed #2C80EB;
}
table.standard thead tr th, table.standard tbody tr th {
  border-bottom: 2px solid #2C80EB;
}
table.standard thead tr th p, table.standard tbody tr th p {
  font-family: "Open Sans";
}
table.standard thead tr.total td, table.standard tbody tr.total td {
  border-top: 3px solid #2C80EB;
}
table.standard thead tr.total td p, table.standard tbody tr.total td p {
  font-family: "Open Sans";
}
table.standard thead tr.emphasized td, table.standard tbody tr.emphasized td {
  background-color: #2C80EB;
}
table.standard thead tr.emphasized td p, table.standard tbody tr.emphasized td p {
  color: #ffffff;
  font-family: "Open Sans";
}
table.standard thead tr.emphasized td.highlight, table.standard tbody tr.emphasized td.highlight {
  background-color: #2363B8;
}
/*# sourceMappingURL=all.css.map */
ndard tbody tr td.single {
  border-bottom: 1px solid #2C80EB;
}
table.standard thead tr td.double, table.standard tbody tr td.double {
  border-bottom: 3px double #2C80EB;
}
table.standard thead tr td.dashed, table.standard tbody tr td.dashed {
  border-bottom: 1px dashed #2C80EB;
}
table.standard thead tr th, table.standard tbody tr th {
  border-bottom: 2px solid #2C80EB;
}
table.standard thead tr th p, table.standard tbody tr th p {
  font-family: "Open Sans";
}
table.standard thead tr.total td, table.standard tbody tr.total td {
  border-top: 3px solid #2C80EB;
}
table.standard thead tr.total td p, table.standard tbody tr.total td p {
  font-family: "Open Sans";
}
table.standard thead tr.emphasized td, table.standard tbody tr.emphasized td {
  background-color: #2C80EB;
}
table.standard thead tr.emphasized td p, table.standard tbody tr.emphasized td p {
  color: #ffffff;
  font-family: "Open Sans";
}
table.standard thead tr.emphasized td.highlight, table.standard tbody tr.emphasized td.highlight {
  background-color: #2363B8;
}
/*# sourceMappingURL=all.css.map */
