@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800);
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus, .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQgAAABYCAQAAACjBqE3AAAB6klEQVR4Ae3bsWpUQRTG8YkkanwCa7GzVotsI/gEgk9h4Vu4ySLYmMYgbJrc3lrwZbJwC0FMt4j7F6Y4oIZrsXtgxvx/1c0ufEX4cnbmLCmSJEmSJEmSJEmSJP3XCBPvbJU+8doWmDFwyZpLBmYlNJebz0KwzykwsuSYJSNwykEJreV2BaBMaLIQZ2xYcFgqDlmw4ayE/FwL0dDk4Qh4W37DAjgqIT+3HRbigjH+iikVdxgZStgyN0Su2sXIeTwTT+esdpcbIlfNAuZ/TxresG4zV8kYWSZNiKUTokMMSWeIwTNEn4fK2TW3gRNgVkJLuVksROA9G+bEvoATNlBCa7nZXEwdxEZxzpKRKFh+bsv8LmPFmhX1OwfIz81jIRJQ5eeqG9B+riRJkiRJkiRJkiRJkiRJkiRJUkvA/8RQoEpKlJWINFkJ62AlrEP/mNBibnv2yz/A3t7Uq3LcpoxP8COjC1T5vxoAD5VdoEqdDrd5QuW1swtUSaueh3zkiuBiqgtA2OlkeMcP/uDqugsJdbjHF65VdPMKwS0+WQc/MgKvrIOHysB9vgPwk8+85hmPbnQdvHZyDMAFD7L3EOpgMcVdvnHFS0/vlatrXvCVx0U9gt3fxvnA0/hB4nmRJEmSJEmSJEmSJGmHfgFLaDPoMu5xWwAAAABJRU5ErkJggg==) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjY0IiBoZWlnaHQ9Ijg4IiB2aWV3Qm94PSIwIDAgMjY0IDg4IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjx0aXRsZT5kZWZhdWx0LXNraW4gMjwvdGl0bGU+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Zz48cGF0aCBkPSJNNjcuMDAyIDU5LjV2My43NjhjLTYuMzA3Ljg0LTkuMTg0IDUuNzUtMTAuMDAyIDkuNzMyIDIuMjItMi44MyA1LjU2NC01LjA5OCAxMC4wMDItNS4wOThWNzEuNUw3MyA2NS41ODUgNjcuMDAyIDU5LjV6IiBpZD0iU2hhcGUiIGZpbGw9IiNmZmYiLz48ZyBmaWxsPSIjZmZmIj48cGF0aCBkPSJNMTMgMjl2LTVoMnYzaDN2MmgtNXpNMTMgMTVoNXYyaC0zdjNoLTJ2LTV6TTMxIDE1djVoLTJ2LTNoLTN2LTJoNXpNMzEgMjloLTV2LTJoM3YtM2gydjV6IiBpZD0iU2hhcGUiLz48L2c+PGcgZmlsbD0iI2ZmZiI+PHBhdGggZD0iTTYyIDI0djVoLTJ2LTNoLTN2LTJoNXpNNjIgMjBoLTV2LTJoM3YtM2gydjV6TTcwIDIwdi01aDJ2M2gzdjJoLTV6TTcwIDI0aDV2MmgtM3YzaC0ydi01eiIvPjwvZz48cGF0aCBkPSJNMjAuNTg2IDY2bC01LjY1Ni01LjY1NiAxLjQxNC0xLjQxNEwyMiA2NC41ODZsNS42NTYtNS42NTYgMS40MTQgMS40MTRMMjMuNDE0IDY2bDUuNjU2IDUuNjU2LTEuNDE0IDEuNDE0TDIyIDY3LjQxNGwtNS42NTYgNS42NTYtMS40MTQtMS40MTRMMjAuNTg2IDY2eiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0xMTEuNzg1IDY1LjAzTDExMCA2My41bDMtMy41aC0xMHYtMmgxMGwtMy0zLjUgMS43ODUtMS40NjhMMTE3IDU5bC01LjIxNSA2LjAzeiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0xNTIuMjE1IDY1LjAzTDE1NCA2My41bC0zLTMuNWgxMHYtMmgtMTBsMy0zLjUtMS43ODUtMS40NjhMMTQ3IDU5bDUuMjE1IDYuMDN6IiBmaWxsPSIjZmZmIi8+PGc+PHBhdGggaWQ9IlJlY3RhbmdsZS0xMSIgZmlsbD0iI2ZmZiIgZD0iTTE2MC45NTcgMjguNTQzbC0zLjI1LTMuMjUtMS40MTMgMS40MTQgMy4yNSAzLjI1eiIvPjxwYXRoIGQ9Ik0xNTIuNSAyN2MzLjAzOCAwIDUuNS0yLjQ2MiA1LjUtNS41cy0yLjQ2Mi01LjUtNS41LTUuNS01LjUgMi40NjItNS41IDUuNSAyLjQ2MiA1LjUgNS41IDUuNXoiIGlkPSJPdmFsLTEiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxLjUiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTUwIDIxaDV2MWgtNXoiLz48L2c+PGc+PHBhdGggZD0iTTExNi45NTcgMjguNTQzbC0xLjQxNCAxLjQxNC0zLjI1LTMuMjUgMS40MTQtMS40MTQgMy4yNSAzLjI1eiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0xMDguNSAyN2MzLjAzOCAwIDUuNS0yLjQ2MiA1LjUtNS41cy0yLjQ2Mi01LjUtNS41LTUuNS01LjUgMi40NjItNS41IDUuNSAyLjQ2MiA1LjUgNS41IDUuNXoiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxLjUiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTA2IDIxaDV2MWgtNXoiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTA5LjA0MyAxOS4wMDhsLS4wODUgNS0xLS4wMTcuMDg1LTV6Ii8+PC9nPjwvZz48L2c+PC9zdmc+); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(data:image/gif;base64,R0lGODlhFAAUAPMIAIeHhz8/P1dXVycnJ8/Pz7e3t5+fn29vb////wAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQFBwAIACwAAAAAFAAUAEAEUxDJSatFxtwaggWAdIyHJAhXoRYSQUhDPGx0TbmujahbXGWZWqdDAYEsp5NupLPkdDwE7oXwWVasimzWrAE1tKFHErQRK8eL8mMUlRBJVI307uoiACH5BAUHAAgALAEAAQASABIAAAROEMkpS6E4W5upMdUmEQT2feFIltMJYivbvhnZ3R0A4NMwIDodz+cL7nDEn5CH8DGZh8MtEMBEoxkqlXKVIgQCibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkpjaE4W5spANUmFQX2feFIltMJYivbvhnZ3d1x4BNBIDodz+cL7nDEn5CH8DGZAsFtMMBEoxkqlXKVIgIBibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkpAaA4W5vpOdUmGQb2feFIltMJYivbvhnZ3Z0g4FNRIDodz+cL7nDEn5CH8DGZgcCNQMBEoxkqlXKVIgYDibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkpz6E4W5upENUmAQD2feFIltMJYivbvhnZ3V0Q4JNhIDodz+cL7nDEn5CH8DGZg8GtUMBEoxkqlXKVIggEibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkphaA4W5tpCNUmHQf2feFIltMJYivbvhnZ3d0w4BMAIDodz+cL7nDEn5CH8DGZBMLNYMBEoxkqlXKVIgoFibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkpQ6A4W5vpGNUmCQL2feFIltMJYivbvhnZ3R1B4NNxIDodz+cL7nDEn5CH8DGZhcINAMBEoxkqlXKVIgwGibbK9YLBYvLtHH5K0J0IACH5BAUHAAcALAEAAQASABIAAANCeLo6wzA6FxkhbaoQ4L3ZxnXLh0EjWZ4RV71VUcCLIByyTNt2PsO8m452sBGJBsNxkUwuD03lAQBASqnUJ7aq5UYSADs=) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }

*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(17,17,17,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:Open Sans,sans-serif;font-size:.875rem;font-weight:400;line-height:1.7;color:#111;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:0}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#3eb489;background-color:transparent}a,a:hover{text-decoration:none}a:hover{color:#2a7b5e}a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.container,.sticky-footer-container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container,.sticky-footer-container{max-width:708px}}@media (min-width:992px){.container,.sticky-footer-container{max-width:992px}}@media (min-width:1350px){.container,.sticky-footer-container{max-width:1320px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row,.sticky-footer-collapse,.sticky-footer-preview,.sticky-footer-subscriptions,body:not(.wp-admin) .item-list,body:not(.wp-admin) .section-block-container,body:not(.wp-admin) .sidebar-block-wrapper,body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free .sidebar-block-free-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters,body:not(.wp-admin) .sidebar-block-wrapper .grid-block-inner,body:not(.wp-admin) .sidebar-block-wrapper .section-block-container{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-],body:not(.wp-admin) .sidebar-block-wrapper .grid-block-inner>.col,body:not(.wp-admin) .sidebar-block-wrapper .grid-block-inner>[class*=col-],body:not(.wp-admin) .sidebar-block-wrapper .section-block-container>.col,body:not(.wp-admin) .sidebar-block-wrapper .section-block-container>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto,.col-lg,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-auto,.col-md,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-auto,.col-sm,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-auto,.col-wp-md,.col-wp-md-1,.col-wp-md-2,.col-wp-md-3,.col-wp-md-4,.col-wp-md-5,.col-wp-md-6,.col-wp-md-7,.col-wp-md-8,.col-wp-md-9,.col-wp-md-10,.col-wp-md-11,.col-wp-md-12,.col-wp-md-auto,.col-wp-sm,.col-wp-sm-1,.col-wp-sm-2,.col-wp-sm-3,.col-wp-sm-4,.col-wp-sm-5,.col-wp-sm-6,.col-wp-sm-7,.col-wp-sm-8,.col-wp-sm-9,.col-wp-sm-10,.col-wp-sm-11,.col-wp-sm-12,.col-wp-sm-auto,.col-xl,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-auto,.sticky-footer-collapse-wrapper .sticky-footer-subscriptions-wrapper,.sticky-footer-image,.sticky-footer-preview .sticky-footer-subscriptions-wrapper,.sticky-footer-subscriptions-col,.sticky-footer-text,.tin-call-to-action-block-wrapper .image,.tin-call-to-action-block-wrapper .info,.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .content-wrapper,.tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .image,.tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .info,.tin-newsletter-segment,body:not(.wp-admin) .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .dip-article-block.is-style-normal,body:not(.wp-admin) .dip-article-block.is-style-simple,body:not(.wp-admin) .dip-article-block.is-style-text-highlight,body:not(.wp-admin) .dip-article-block.is-style-text-highlight .article-block-content,body:not(.wp-admin) .dip-article-block.is-style-text-highlight .article-block-media,body:not(.wp-admin) .dip-article-block.is-style-two-columns,body:not(.wp-admin) .dip-article-block.is-style-two-columns-full,body:not(.wp-admin) .item-list .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .item-list .dip-article-block.is-style-image-highlight,body:not(.wp-admin) .item-list .dip-article-block.is-style-image-highlight-content-below,body:not(.wp-admin) .item-list .dip-article-block.is-style-normal,body:not(.wp-admin) .item-list .dip-article-block.is-style-simple,body:not(.wp-admin) .item-list .dip-article-block.is-style-text-highlight,body:not(.wp-admin) .item-list .dip-article-block.is-style-two-columns,body:not(.wp-admin) .item-list .dip-article-block.is-style-two-columns-full,body:not(.wp-admin) .item-list .dip-article-block.is-style-vertical-image,body:not(.wp-admin) .item-list .dip-article-block.is-style-vertical-image-content-below,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-image-highlight,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-image-highlight-content-below,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-normal,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-simple,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-text-highlight,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-two-columns,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-two-columns-full,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-vertical-image,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-vertical-image-content-below,body:not(.wp-admin) .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight,body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-image-highlight,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-image-highlight,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-image-highlight-content-below,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-normal,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-simple,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-text-highlight,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-two-columns,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-two-columns-full,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image-content-below,body:not(.wp-admin) .section-block-container>h2,body:not(.wp-admin) .sidebar-block-wrapper .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight,body:not(.wp-admin) .sidebar-block-wrapper .partnership-block-wrapper .partnership-block-inner.section-block-container div.dip-article-block.is-style-image-highlight,body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free,body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free .sidebar-block-free-inner>.wp-block-dip-gutenberg-media-blocks-grid-block.grid,body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-ssr,body:not(.wp-admin) .sidebar-block-wrapper .tin-call-to-action-block-wrapper,body:not(.wp-admin) .sidebar-block-wrapper .tin-newsletter-segment,body:not(.wp-admin) .sidebar-block-wrapper .tin-social-share-block-wrapper,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-author-highlight,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-image-highlight,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-image-highlight-content-below,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-normal,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-simple,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-text-highlight,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-two-columns,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-two-columns-full,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-vertical-image,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-vertical-image-content-below,body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1,.col-auto{-webkit-box-flex:0}.col-1{-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-2{-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-2,.col-3{-webkit-box-flex:0}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-4,.col-5{-webkit-box-flex:0}.col-5{-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-6,.col-7{-webkit-box-flex:0}.col-7{-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-8{-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-8,.col-9{-webkit-box-flex:0}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10,.sticky-footer-preview .sticky-footer-subscriptions-wrapper{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-12,.sticky-footer-collapse-wrapper .sticky-footer-subscriptions-wrapper,.sticky-footer-image,.sticky-footer-subscriptions-col,.sticky-footer-text,.tin-call-to-action-block-wrapper .image,.tin-call-to-action-block-wrapper .info,.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .content-wrapper,.tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .image,.tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .info,.tin-newsletter-segment,body:not(.wp-admin) .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .dip-article-block.is-style-normal,body:not(.wp-admin) .dip-article-block.is-style-simple,body:not(.wp-admin) .dip-article-block.is-style-text-highlight,body:not(.wp-admin) .dip-article-block.is-style-two-columns,body:not(.wp-admin) .dip-article-block.is-style-two-columns-full,body:not(.wp-admin) .item-list .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .item-list .dip-article-block.is-style-image-highlight,body:not(.wp-admin) .item-list .dip-article-block.is-style-image-highlight-content-below,body:not(.wp-admin) .item-list .dip-article-block.is-style-normal,body:not(.wp-admin) .item-list .dip-article-block.is-style-simple,body:not(.wp-admin) .item-list .dip-article-block.is-style-text-highlight,body:not(.wp-admin) .item-list .dip-article-block.is-style-two-columns,body:not(.wp-admin) .item-list .dip-article-block.is-style-two-columns-full,body:not(.wp-admin) .item-list .dip-article-block.is-style-vertical-image,body:not(.wp-admin) .item-list .dip-article-block.is-style-vertical-image-content-below,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-image-highlight,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-image-highlight-content-below,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-normal,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-simple,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-text-highlight,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-two-columns,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-two-columns-full,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-vertical-image,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-vertical-image-content-below,body:not(.wp-admin) .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight,body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-image-highlight,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-image-highlight,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-image-highlight-content-below,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-normal,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-simple,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-text-highlight,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-two-columns,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-two-columns-full,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image-content-below,body:not(.wp-admin) .section-block-container>h2,body:not(.wp-admin) .sidebar-block-wrapper .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight,body:not(.wp-admin) .sidebar-block-wrapper .partnership-block-wrapper .partnership-block-inner.section-block-container div.dip-article-block.is-style-image-highlight,body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free,body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free .sidebar-block-free-inner>.wp-block-dip-gutenberg-media-blocks-grid-block.grid,body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-ssr,body:not(.wp-admin) .sidebar-block-wrapper .tin-call-to-action-block-wrapper,body:not(.wp-admin) .sidebar-block-wrapper .tin-newsletter-segment,body:not(.wp-admin) .sidebar-block-wrapper .tin-social-share-block-wrapper,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-author-highlight,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-image-highlight,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-image-highlight-content-below,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-normal,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-simple,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-text-highlight,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-two-columns,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-two-columns-full,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-vertical-image,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-vertical-image-content-below,body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-1,.sticky-footer-preview .sticky-footer-subscriptions-wrapper{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}@media (min-width:320px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333%}.offset-sm-2{margin-left:16.66667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333%}.offset-sm-5{margin-left:41.66667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333%}.offset-sm-8{margin-left:66.66667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333%}.offset-sm-11{margin-left:91.66667%}}@media (min-width:601px){.col-wp-sm{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-wp-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-wp-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-wp-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-wp-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-wp-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-wp-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-wp-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-wp-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-wp-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-wp-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-wp-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-wp-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-wp-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-wp-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-wp-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-wp-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-wp-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-wp-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-wp-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-wp-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-wp-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-wp-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-wp-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-wp-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-wp-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-wp-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-wp-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-wp-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-wp-sm-0{margin-left:0}.offset-wp-sm-1{margin-left:8.33333%}.offset-wp-sm-2{margin-left:16.66667%}.offset-wp-sm-3{margin-left:25%}.offset-wp-sm-4{margin-left:33.33333%}.offset-wp-sm-5{margin-left:41.66667%}.offset-wp-sm-6{margin-left:50%}.offset-wp-sm-7{margin-left:58.33333%}.offset-wp-sm-8{margin-left:66.66667%}.offset-wp-sm-9{margin-left:75%}.offset-wp-sm-10{margin-left:83.33333%}.offset-wp-sm-11{margin-left:91.66667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-md-3,.sticky-footer-text,body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4,.sticky-footer-image,.tin-call-to-action-block-wrapper .info,body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free .sidebar-block-free-inner>.wp-block-dip-gutenberg-media-blocks-grid-block.grid,body:not(.wp-admin) .sidebar-block-wrapper .tin-newsletter-segment{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-md-5,.tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .image{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-md-6,.sticky-footer-preview .sticky-footer-subscriptions-wrapper,.tin-newsletter-segment,body:not(.wp-admin) .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .dip-article-block.is-style-normal,body:not(.wp-admin) .dip-article-block.is-style-simple,body:not(.wp-admin) .dip-article-block.is-style-two-columns,body:not(.wp-admin) .item-list .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .item-list .dip-article-block.is-style-image-highlight,body:not(.wp-admin) .item-list .dip-article-block.is-style-image-highlight-content-below,body:not(.wp-admin) .item-list .dip-article-block.is-style-normal,body:not(.wp-admin) .item-list .dip-article-block.is-style-simple,body:not(.wp-admin) .item-list .dip-article-block.is-style-two-columns,body:not(.wp-admin) .item-list .dip-article-block.is-style-vertical-image,body:not(.wp-admin) .item-list .dip-article-block.is-style-vertical-image-content-below,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-normal,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-simple,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-vertical-image,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-vertical-image-content-below,body:not(.wp-admin) .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-normal,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-simple,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image-content-below,body:not(.wp-admin) .sidebar-block-wrapper .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight,body:not(.wp-admin) .sidebar-block-wrapper .partnership-block-wrapper .partnership-block-inner.section-block-container div.dip-article-block.is-style-image-highlight,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-author-highlight,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-image-highlight,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-image-highlight-content-below,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-normal,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-simple,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-two-columns,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-vertical-image,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-vertical-image-content-below{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7,.tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .info{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-md-8,.sticky-footer-collapse-wrapper .sticky-footer-subscriptions-wrapper,.tin-call-to-action-block-wrapper .image,.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .content-wrapper{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-md-0,.sticky-footer-preview .sticky-footer-subscriptions-wrapper{margin-left:0}.offset-md-1{margin-left:8.33333%}.offset-md-2{margin-left:16.66667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333%}.offset-md-5{margin-left:41.66667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333%}.offset-md-8{margin-left:66.66667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333%}.offset-md-11{margin-left:91.66667%}}@media (min-width:783px){.col-wp-md{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-wp-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-wp-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-wp-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-wp-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-wp-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-wp-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-wp-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-wp-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-wp-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-wp-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-wp-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-wp-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-wp-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-wp-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-wp-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-wp-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-wp-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-wp-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-wp-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-wp-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-wp-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-wp-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-wp-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-wp-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-wp-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-wp-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-wp-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-wp-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-wp-md-0{margin-left:0}.offset-wp-md-1{margin-left:8.33333%}.offset-wp-md-2{margin-left:16.66667%}.offset-wp-md-3{margin-left:25%}.offset-wp-md-4{margin-left:33.33333%}.offset-wp-md-5{margin-left:41.66667%}.offset-wp-md-6{margin-left:50%}.offset-wp-md-7{margin-left:58.33333%}.offset-wp-md-8{margin-left:66.66667%}.offset-wp-md-9{margin-left:75%}.offset-wp-md-10{margin-left:83.33333%}.offset-wp-md-11{margin-left:91.66667%}}@media (min-width:992px){.col-lg,.sticky-footer-subscriptions-col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-lg-3,.sticky-footer-image,.tin-newsletter-segment{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4,body:not(.wp-admin) .dip-article-block.is-style-text-highlight .article-block-content,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-normal,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-simple,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-vertical-image,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-vertical-image-content-below,body:not(.wp-admin) .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-normal,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-simple,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image-content-below,body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-ssr,body:not(.wp-admin) .sidebar-block-wrapper .tin-newsletter-segment{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-lg-5,.tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .image{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-lg-6,.sticky-footer-collapse-wrapper .sticky-footer-subscriptions-wrapper,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-image-highlight,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-image-highlight-content-below,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-two-columns,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-image-highlight,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-image-highlight-content-below,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-two-columns{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7,.tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .info{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-lg-8,body:not(.wp-admin) .dip-article-block.is-style-text-highlight .article-block-media,body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10,.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .content-wrapper{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333%}.offset-lg-2{margin-left:16.66667%}.offset-lg-3,.sticky-footer-collapse-wrapper .sticky-footer-subscriptions-wrapper{margin-left:25%}.offset-lg-4{margin-left:33.33333%}.offset-lg-5{margin-left:41.66667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333%}.offset-lg-8{margin-left:66.66667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333%}.offset-lg-11{margin-left:91.66667%}}@media (min-width:1350px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-xl-3,body:not(.wp-admin) .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .dip-article-block.is-style-normal,body:not(.wp-admin) .dip-article-block.is-style-simple,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-normal,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-simple,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-vertical-image,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-vertical-image-content-below,body:not(.wp-admin) .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-normal,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-simple,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image-content-below,body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-ssr{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4,body:not(.wp-admin) .item-list .dip-article-block.is-style-author-highlight,body:not(.wp-admin) .item-list .dip-article-block.is-style-normal,body:not(.wp-admin) .item-list .dip-article-block.is-style-simple,body:not(.wp-admin) .item-list .dip-article-block.is-style-vertical-image,body:not(.wp-admin) .item-list .dip-article-block.is-style-vertical-image-content-below,body:not(.wp-admin) .sidebar-block-wrapper .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-author-highlight,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-normal,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-simple,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-vertical-image,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-vertical-image-content-below{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-xl-6,body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-image-highlight{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-xl-8,.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .content-wrapper,body:not(.wp-admin) .item-list .dip-article-block.is-style-image-highlight,body:not(.wp-admin) .item-list .dip-article-block.is-style-image-highlight-content-below,body:not(.wp-admin) .sidebar-block-wrapper .partnership-block-wrapper .partnership-block-inner.section-block-container div.dip-article-block.is-style-image-highlight,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-image-highlight,body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-image-highlight-content-below{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-xl-9,body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-text-highlight,body:not(.wp-admin) .section-block-container .dip-article-block.is-style-text-highlight,body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333%}.offset-xl-2{margin-left:16.66667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333%}.offset-xl-5{margin-left:41.66667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333%}.offset-xl-8{margin-left:66.66667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333%}.offset-xl-11{margin-left:91.66667%}}.form-control,.search-form .search-field{display:block;width:100%;height:calc(1.7em + .75rem + 2px);padding:.375rem .75rem;font-size:.875rem;font-weight:400;line-height:1.7;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control,.search-form .search-field{-webkit-transition:none;-o-transition:none;transition:none}}.form-control::-ms-expand,.search-form .search-field::-ms-expand{background-color:transparent;border:0}.form-control:focus,.search-form .search-field:focus{color:#495057;background-color:#fff;border-color:#96dbc2;outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(62,180,137,.25);box-shadow:0 0 0 .2rem rgba(62,180,137,.25)}.form-control::-webkit-input-placeholder,.search-form .search-field::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder,.search-form .search-field::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder,.search-form .search-field::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly],.search-form .search-field:disabled,.search-form .search-field[readonly]{background-color:#e9ecef;opacity:1}.search-form select.search-field:focus::-ms-value,select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.7}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.09375rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.76562rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.7;color:#111;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.76562rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.09375rem;line-height:1.5;border-radius:.3rem}.search-form select.search-field[multiple],.search-form select.search-field[size],.search-form textarea.search-field,select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group,.search-form label{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.76562rem;line-height:1.7;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.form-control.is-valid,.search-form .is-valid.search-field,.search-form .was-validated .search-field:valid,.was-validated .form-control:valid,.was-validated .search-form .search-field:valid{border-color:#28a745;padding-right:calc(1.7em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:100% calc(.425em + .1875rem);background-size:calc(.85em + .375rem) calc(.85em + .375rem)}.form-control.is-valid:focus,.search-form .is-valid.search-field:focus,.search-form .was-validated .search-field:valid:focus,.was-validated .form-control:valid:focus,.was-validated .search-form .search-field:valid:focus{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.search-form .is-valid.search-field~.valid-feedback,.search-form .is-valid.search-field~.valid-tooltip,.search-form .was-validated .search-field:valid~.valid-feedback,.search-form .was-validated .search-field:valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip,.was-validated .search-form .search-field:valid~.valid-feedback,.was-validated .search-form .search-field:valid~.valid-tooltip{display:block}.search-form .was-validated textarea.search-field:valid,.search-form textarea.is-valid.search-field,.was-validated .search-form textarea.search-field:valid,.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.7em + .75rem);background-position:top calc(.425em + .1875rem) right calc(.425em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc((3em + 2.25rem)/4 + 1.75rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") #fff no-repeat center right 1.75rem/calc(.85em + .375rem) calc(.85em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#28a745}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#ea1b1b}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.76562rem;line-height:1.7;color:#fff;background-color:rgba(234,27,27,.9);border-radius:.25rem}.form-control.is-invalid,.search-form .is-invalid.search-field,.search-form .was-validated .search-field:invalid,.was-validated .form-control:invalid,.was-validated .search-form .search-field:invalid{border-color:#ea1b1b;padding-right:calc(1.7em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ea1b1b' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23ea1b1b' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:100% calc(.425em + .1875rem);background-size:calc(.85em + .375rem) calc(.85em + .375rem)}.form-control.is-invalid:focus,.search-form .is-invalid.search-field:focus,.search-form .was-validated .search-field:invalid:focus,.was-validated .form-control:invalid:focus,.was-validated .search-form .search-field:invalid:focus{border-color:#ea1b1b;-webkit-box-shadow:0 0 0 .2rem rgba(234,27,27,.25);box-shadow:0 0 0 .2rem rgba(234,27,27,.25)}.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.search-form .is-invalid.search-field~.invalid-feedback,.search-form .is-invalid.search-field~.invalid-tooltip,.search-form .was-validated .search-field:invalid~.invalid-feedback,.search-form .was-validated .search-field:invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip,.was-validated .search-form .search-field:invalid~.invalid-feedback,.was-validated .search-form .search-field:invalid~.invalid-tooltip{display:block}.search-form .was-validated textarea.search-field:invalid,.search-form textarea.is-invalid.search-field,.was-validated .search-form textarea.search-field:invalid,.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.7em + .75rem);background-position:top calc(.425em + .1875rem) right calc(.425em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#ea1b1b;padding-right:calc((3em + 2.25rem)/4 + 1.75rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ea1b1b' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23ea1b1b' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E") #fff no-repeat center right 1.75rem/calc(.85em + .375rem) calc(.85em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#ea1b1b;-webkit-box-shadow:0 0 0 .2rem rgba(234,27,27,.25);box-shadow:0 0 0 .2rem rgba(234,27,27,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#ea1b1b}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#ea1b1b}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#ea1b1b}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{border-color:#ee4a4a;background-color:#ee4a4a}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{-webkit-box-shadow:0 0 0 .2rem rgba(234,27,27,.25);box-shadow:0 0 0 .2rem rgba(234,27,27,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#ea1b1b}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#ea1b1b;-webkit-box-shadow:0 0 0 .2rem rgba(234,27,27,.25);box-shadow:0 0 0 .2rem rgba(234,27,27,.25)}.form-inline,.search-form{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.form-inline .form-check,.search-form .form-check{width:100%}@media (min-width:320px){.form-inline label,.search-form label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group,.form-inline .search-form label,.search-form .form-group,.search-form .form-inline label,.search-form label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control,.search-form .form-control,.search-form .search-field{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext,.search-form .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group,.search-form .custom-select,.search-form .input-group{width:auto}.form-inline .form-check,.search-form .form-check{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input,.search-form .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control,.search-form .custom-control{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label,.search-form .custom-control-label{margin-bottom:0}}.fade{-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{-webkit-transition:none;-o-transition:none;transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{-webkit-transition:none;-o-transition:none;transition:none}}.custom-control{position:relative;display:block;min-height:1.4875rem;padding-left:1.5rem}.custom-control-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label:before{color:#fff;border-color:#3eb489;background-color:#3eb489}.custom-control-input:focus~.custom-control-label:before{-webkit-box-shadow:0 0 0 .2rem rgba(62,180,137,.25);box-shadow:0 0 0 .2rem rgba(62,180,137,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#96dbc2}.custom-control-input:not(:disabled):active~.custom-control-label:before{color:#fff;background-color:#bce8d8;border-color:#bce8d8}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label:before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label:before{pointer-events:none;background-color:#fff;border:1px solid #adb5bd}.custom-control-label:after,.custom-control-label:before{position:absolute;top:.24375rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:""}.custom-control-label:after{background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label:before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{border-color:#3eb489;background-color:#3eb489}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(62,180,137,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(62,180,137,.5)}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(62,180,137,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label:before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label:after{top:calc(.24375rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-transform .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-transform .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-o-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out,-o-transform .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label:after{-webkit-transition:none;-o-transition:none;transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#fff;-webkit-transform:translateX(.75rem);-o-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(62,180,137,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.7em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:.875rem;font-weight:400;line-height:1.7;color:#495057;vertical-align:middle;background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#96dbc2;outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(62,180,137,.25);box-shadow:0 0 0 .2rem rgba(62,180,137,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.76562rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.09375rem}.custom-file{display:inline-block;margin-bottom:0}.custom-file,.custom-file-input{position:relative;width:100%;height:calc(1.7em + .75rem + 2px)}.custom-file-input{z-index:2;margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#96dbc2;-webkit-box-shadow:0 0 0 .2rem rgba(62,180,137,.25);box-shadow:0 0 0 .2rem rgba(62,180,137,.25)}.custom-file-input:disabled~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}.custom-file-label{left:0;z-index:1;height:calc(1.7em + .75rem + 2px);font-weight:400;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label,.custom-file-label:after{position:absolute;top:0;right:0;padding:.375rem .75rem;line-height:1.7;color:#495057}.custom-file-label:after{bottom:0;z-index:3;display:block;height:calc(1.7em + .75rem);content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:none}.custom-range:focus::-webkit-slider-thumb{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(62,180,137,.25);box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(62,180,137,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(62,180,137,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(62,180,137,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#3eb489;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;-o-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#bce8d8}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#3eb489;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-webkit-transition:none;-o-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#bce8d8}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#3eb489;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-webkit-transition:none;-o-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#bce8d8}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower,.custom-range::-ms-fill-upper{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label:before,.custom-file-label,.custom-select{-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label:before,.custom-file-label,.custom-select{-webkit-transition:none;-o-transition:none;transition:none}}.nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link,.site-header .nav a{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover,.site-header .nav a:focus,.site-header .nav a:hover{text-decoration:none}.nav-link.disabled,.site-header .nav a.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item,.nav-tabs .site-header .nav li,.site-header .nav .nav-tabs li{margin-bottom:-1px}.nav-tabs .nav-link,.nav-tabs .site-header .nav a,.site-header .nav .nav-tabs a{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover,.nav-tabs .site-header .nav a:focus,.nav-tabs .site-header .nav a:hover,.site-header .nav .nav-tabs a:focus,.site-header .nav .nav-tabs a:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled,.nav-tabs .site-header .nav a.disabled,.site-header .nav .nav-tabs a.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-item.show .site-header .nav a,.nav-tabs .nav-link.active,.nav-tabs .site-header .nav a.active,.nav-tabs .site-header .nav li.show .nav-link,.nav-tabs .site-header .nav li.show a,.site-header .nav .nav-tabs .nav-item.show a,.site-header .nav .nav-tabs a.active,.site-header .nav .nav-tabs li.show .nav-link,.site-header .nav .nav-tabs li.show a{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link,.nav-pills .site-header .nav a,.site-header .nav .nav-pills a{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link,.nav-pills .site-header .nav .show>a,.nav-pills .site-header .nav a.active,.site-header .nav .nav-pills .show>a,.site-header .nav .nav-pills a.active{color:#fff;background-color:#3eb489}.nav-fill .nav-item,.nav-fill .site-header .nav li,.site-header .nav .nav-fill li{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified .site-header .nav li,.site-header .nav .nav-justified li{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;padding:.5rem 1rem}.navbar,.navbar>.container,.navbar>.container-fluid,.navbar>.sticky-footer-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.31406rem;padding-bottom:.31406rem;margin-right:1rem;font-size:1.09375rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link,.navbar-nav .site-header .nav a,.site-header .nav .navbar-nav a{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.09375rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:22.5rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat 50%;background-size:100% 100%}@media (max-width:319.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.sticky-footer-container{padding-right:0;padding-left:0}}@media (min-width:320px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm,.navbar-expand-sm .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link,.navbar-expand-sm .navbar-nav .site-header .nav a,.site-header .nav .navbar-expand-sm .navbar-nav a{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.sticky-footer-container{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:600.98px){.navbar-expand-wp-sm>.container,.navbar-expand-wp-sm>.container-fluid,.navbar-expand-wp-sm>.sticky-footer-container{padding-right:0;padding-left:0}}@media (min-width:601px){.navbar-expand-wp-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-wp-sm,.navbar-expand-wp-sm .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal}.navbar-expand-wp-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-wp-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-wp-sm .navbar-nav .nav-link,.navbar-expand-wp-sm .navbar-nav .site-header .nav a,.site-header .nav .navbar-expand-wp-sm .navbar-nav a{padding-right:.5rem;padding-left:.5rem}.navbar-expand-wp-sm>.container,.navbar-expand-wp-sm>.container-fluid,.navbar-expand-wp-sm>.sticky-footer-container{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-wp-sm .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-wp-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.sticky-footer-container{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md,.navbar-expand-md .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link,.navbar-expand-md .navbar-nav .site-header .nav a,.site-header .nav .navbar-expand-md .navbar-nav a{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.sticky-footer-container{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:782.98px){.navbar-expand-wp-md>.container,.navbar-expand-wp-md>.container-fluid,.navbar-expand-wp-md>.sticky-footer-container{padding-right:0;padding-left:0}}@media (min-width:783px){.navbar-expand-wp-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-wp-md,.navbar-expand-wp-md .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal}.navbar-expand-wp-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-wp-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-wp-md .navbar-nav .nav-link,.navbar-expand-wp-md .navbar-nav .site-header .nav a,.site-header .nav .navbar-expand-wp-md .navbar-nav a{padding-right:.5rem;padding-left:.5rem}.navbar-expand-wp-md>.container,.navbar-expand-wp-md>.container-fluid,.navbar-expand-wp-md>.sticky-footer-container{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-wp-md .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-wp-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.sticky-footer-container{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg,.navbar-expand-lg .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link,.navbar-expand-lg .navbar-nav .site-header .nav a,.site-header .nav .navbar-expand-lg .navbar-nav a{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.sticky-footer-container{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1349.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.sticky-footer-container{padding-right:0;padding-left:0}}@media (min-width:1350px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl,.navbar-expand-xl .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link,.navbar-expand-xl .navbar-nav .site-header .nav a,.site-header .nav .navbar-expand-xl .navbar-nav a{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.sticky-footer-container{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.sticky-footer-container{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link,.navbar-expand .navbar-nav .site-header .nav a,.site-header .nav .navbar-expand .navbar-nav a{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.sticky-footer-container{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(17,17,17,.9)}.navbar-light .navbar-nav .nav-link,.navbar-light .navbar-nav .site-header .nav a,.site-header .nav .navbar-light .navbar-nav a{color:rgba(17,17,17,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .site-header .nav a:focus,.navbar-light .navbar-nav .site-header .nav a:hover,.site-header .nav .navbar-light .navbar-nav a:focus,.site-header .nav .navbar-light .navbar-nav a:hover{color:rgba(17,17,17,.7)}.navbar-light .navbar-nav .nav-link.disabled,.navbar-light .navbar-nav .site-header .nav a.disabled,.site-header .nav .navbar-light .navbar-nav a.disabled{color:rgba(17,17,17,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .site-header .nav .active>a,.navbar-light .navbar-nav .site-header .nav .show>a,.navbar-light .navbar-nav .site-header .nav a.active,.navbar-light .navbar-nav .site-header .nav a.show,.site-header .nav .navbar-light .navbar-nav .active>a,.site-header .nav .navbar-light .navbar-nav .show>a,.site-header .nav .navbar-light .navbar-nav a.active,.site-header .nav .navbar-light .navbar-nav a.show{color:rgba(17,17,17,.9)}.navbar-light .navbar-toggler{color:rgba(17,17,17,.5);border-color:rgba(17,17,17,.1)}.navbar-light .navbar-toggler-icon{background-image:none}.navbar-light .navbar-text{color:rgba(17,17,17,.5)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(17,17,17,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link,.navbar-dark .navbar-nav .site-header .nav a,.site-header .nav .navbar-dark .navbar-nav a{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .site-header .nav a:focus,.navbar-dark .navbar-nav .site-header .nav a:hover,.site-header .nav .navbar-dark .navbar-nav a:focus,.site-header .nav .navbar-dark .navbar-nav a:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled,.navbar-dark .navbar-nav .site-header .nav a.disabled,.site-header .nav .navbar-dark .navbar-nav a.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .site-header .nav .active>a,.navbar-dark .navbar-nav .site-header .nav .show>a,.navbar-dark .navbar-nav .site-header .nav a.active,.navbar-dark .navbar-nav .site-header .nav a.show,.site-header .nav .navbar-dark .navbar-nav .active>a,.site-header .nav .navbar-dark .navbar-nav .show>a,.site-header .nav .navbar-dark .navbar-nav a.active,.site-header .nav .navbar-dark .navbar-nav a.show{color:#fff}.navbar-dark .navbar-toggler{color:hsla(0,0%,100%,.5);border-color:hsla(0,0%,100%,.1)}.navbar-dark .navbar-toggler-icon{background-image:none}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(17,17,17,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(17,17,17,.03);border-bottom:1px solid rgba(17,17,17,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(17,17,17,.03);border-top:1px solid rgba(17,17,17,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-bottom:-.75rem;border-bottom:0}.card-header-pills,.card-header-tabs{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:320px){.card-deck{-webkit-box-orient:horizontal;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck,.card-deck .card{-webkit-box-direction:normal}.card-deck .card{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:320px){.card-group{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:320px){.card-columns{-webkit-column-count:3;column-count:3;-webkit-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.accordion>.card .card-header{margin-bottom:-1px}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-o-keyframes spinner-border{to{-o-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spinner-border{to{-webkit-transform:rotate(1turn);-o-transform:rotate(1turn);transform:rotate(1turn)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid;border-right:.25em solid transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;-o-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}@-o-keyframes spinner-grow{0%{-o-transform:scale(0);transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);-o-transform:scale(0);transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;-o-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#3eb489!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#318e6c!important}.bg-secondary{background-color:#893eb4!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#6c318e!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#fe1!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#ddcd00!important}.bg-danger{background-color:#ea1b1b!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#c01212!important}.bg-light{background-color:#f4f4f4!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dbdbdb!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#3eb489!important}.border-secondary{border-color:#893eb4!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#fe1!important}.border-danger{border-color:#ea1b1b!important}.border-light{border-color:#f4f4f4!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after,.entry-content:after{display:block;clear:both;content:""}.d-none,.site-header .navbar .navbar-menu .header-links-menu,.sticky-footer-desktop-only,.sticky-footer .sticky-footer-subscriptions .sticky-footer-subscriptions-col:not(:first-child){display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:320px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:601px){.d-wp-sm-none{display:none!important}.d-wp-sm-inline{display:inline!important}.d-wp-sm-inline-block{display:inline-block!important}.d-wp-sm-block{display:block!important}.d-wp-sm-table{display:table!important}.d-wp-sm-table-row{display:table-row!important}.d-wp-sm-table-cell{display:table-cell!important}.d-wp-sm-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-wp-sm-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:783px){.d-wp-md-none{display:none!important}.d-wp-md-inline{display:inline!important}.d-wp-md-inline-block{display:inline-block!important}.d-wp-md-block{display:block!important}.d-wp-md-table{display:table!important}.d-wp-md-table-row{display:table-row!important}.d-wp-md-table-cell{display:table-cell!important}.d-wp-md-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-wp-md-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none,.sticky-footer-mobile-only{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block,.sticky-footer-desktop-only{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex,.sticky-footer .sticky-footer-subscriptions .sticky-footer-subscriptions-col:not(:first-child),body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-ssr{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1350px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex,.site-header .navbar .navbar-menu .header-links-menu{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive:before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9:before{padding-top:42.85714%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-column,.flex-row{-webkit-box-direction:normal!important}.flex-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-webkit-box-orient:horizontal!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse,.flex-row-reverse{-webkit-box-direction:reverse!important}.flex-column-reverse{-webkit-box-orient:vertical!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:320px){.flex-sm-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column,.flex-sm-row{-webkit-box-direction:normal!important}.flex-sm-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:601px){.flex-wp-sm-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-wp-sm-column,.flex-wp-sm-row{-webkit-box-direction:normal!important}.flex-wp-sm-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-wp-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-wp-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wp-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-wp-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wp-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-wp-sm-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-wp-sm-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-wp-sm-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-wp-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-wp-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-wp-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-wp-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-wp-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-wp-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-wp-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-wp-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-wp-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-wp-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-wp-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-wp-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-wp-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-wp-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-wp-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-wp-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-wp-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-wp-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-wp-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-wp-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-wp-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-wp-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-wp-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-wp-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column,.flex-md-row{-webkit-box-direction:normal!important}.flex-md-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:783px){.flex-wp-md-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-wp-md-column,.flex-wp-md-row{-webkit-box-direction:normal!important}.flex-wp-md-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-wp-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-wp-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wp-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-wp-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wp-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-wp-md-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-wp-md-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-wp-md-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-wp-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-wp-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-wp-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-wp-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-wp-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-wp-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-wp-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-wp-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-wp-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-wp-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-wp-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-wp-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-wp-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-wp-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-wp-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-wp-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-wp-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-wp-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-wp-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-wp-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-wp-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-wp-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-wp-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-wp-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column,.flex-lg-row{-webkit-box-direction:normal!important}.flex-lg-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1350px){.flex-xl-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column,.flex-xl-row{-webkit-box-direction:normal!important}.flex-xl-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:320px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:601px){.float-wp-sm-left{float:left!important}.float-wp-sm-right{float:right!important}.float-wp-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:783px){.float-wp-md-left{float:left!important}.float-wp-md-right{float:right!important}.float-wp-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1350px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky,.sticky-top{position:-webkit-sticky!important;position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}.fixed-bottom{bottom:0}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.screen-reader-text,.sr-only{white-space:nowrap}.screen-reader-text:active,.screen-reader-text:focus,.sr-only-focusable:active,.sr-only-focusable:focus{white-space:normal}.shadow-sm{-webkit-box-shadow:0 .125rem .25rem rgba(17,17,17,.075)!important;box-shadow:0 .125rem .25rem rgba(17,17,17,.075)!important}.shadow{-webkit-box-shadow:0 .5rem 1rem rgba(17,17,17,.15)!important;box-shadow:0 .5rem 1rem rgba(17,17,17,.15)!important}.shadow-lg{-webkit-box-shadow:0 1rem 3rem rgba(17,17,17,.175)!important;box-shadow:0 1rem 3rem rgba(17,17,17,.175)!important}.shadow-none{-webkit-box-shadow:none!important;box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.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}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.expansible-menu-bar .expansible-menu .menu-item,.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.expansible-menu-bar .expansible-menu .menu-item,.ml-2,.mx-2{margin-left:.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,.sticky-footer .sticky-footer-collapse-wrapper .sticky-footer-collapse .sticky-footer-subscriptions-col{margin-bottom:1rem!important}.ml-3,.mx-3{margin-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-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}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0,.tin-call-to-action-block-wrapper .info{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0,.tin-call-to-action-block-wrapper .info{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!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}.p-4,.tin-call-to-action-block-wrapper .content-wrapper{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}.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-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!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}.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}.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}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:320px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:601px){.m-wp-sm-0{margin:0!important}.mt-wp-sm-0,.my-wp-sm-0{margin-top:0!important}.mr-wp-sm-0,.mx-wp-sm-0{margin-right:0!important}.mb-wp-sm-0,.my-wp-sm-0{margin-bottom:0!important}.ml-wp-sm-0,.mx-wp-sm-0{margin-left:0!important}.m-wp-sm-1{margin:.25rem!important}.mt-wp-sm-1,.my-wp-sm-1{margin-top:.25rem!important}.mr-wp-sm-1,.mx-wp-sm-1{margin-right:.25rem!important}.mb-wp-sm-1,.my-wp-sm-1{margin-bottom:.25rem!important}.ml-wp-sm-1,.mx-wp-sm-1{margin-left:.25rem!important}.m-wp-sm-2{margin:.5rem!important}.mt-wp-sm-2,.my-wp-sm-2{margin-top:.5rem!important}.mr-wp-sm-2,.mx-wp-sm-2{margin-right:.5rem!important}.mb-wp-sm-2,.my-wp-sm-2{margin-bottom:.5rem!important}.ml-wp-sm-2,.mx-wp-sm-2{margin-left:.5rem!important}.m-wp-sm-3{margin:1rem!important}.mt-wp-sm-3,.my-wp-sm-3{margin-top:1rem!important}.mr-wp-sm-3,.mx-wp-sm-3{margin-right:1rem!important}.mb-wp-sm-3,.my-wp-sm-3{margin-bottom:1rem!important}.ml-wp-sm-3,.mx-wp-sm-3{margin-left:1rem!important}.m-wp-sm-4{margin:1.5rem!important}.mt-wp-sm-4,.my-wp-sm-4{margin-top:1.5rem!important}.mr-wp-sm-4,.mx-wp-sm-4{margin-right:1.5rem!important}.mb-wp-sm-4,.my-wp-sm-4{margin-bottom:1.5rem!important}.ml-wp-sm-4,.mx-wp-sm-4{margin-left:1.5rem!important}.m-wp-sm-5{margin:3rem!important}.mt-wp-sm-5,.my-wp-sm-5{margin-top:3rem!important}.mr-wp-sm-5,.mx-wp-sm-5{margin-right:3rem!important}.mb-wp-sm-5,.my-wp-sm-5{margin-bottom:3rem!important}.ml-wp-sm-5,.mx-wp-sm-5{margin-left:3rem!important}.p-wp-sm-0{padding:0!important}.pt-wp-sm-0,.py-wp-sm-0{padding-top:0!important}.pr-wp-sm-0,.px-wp-sm-0{padding-right:0!important}.pb-wp-sm-0,.py-wp-sm-0{padding-bottom:0!important}.pl-wp-sm-0,.px-wp-sm-0{padding-left:0!important}.p-wp-sm-1{padding:.25rem!important}.pt-wp-sm-1,.py-wp-sm-1{padding-top:.25rem!important}.pr-wp-sm-1,.px-wp-sm-1{padding-right:.25rem!important}.pb-wp-sm-1,.py-wp-sm-1{padding-bottom:.25rem!important}.pl-wp-sm-1,.px-wp-sm-1{padding-left:.25rem!important}.p-wp-sm-2{padding:.5rem!important}.pt-wp-sm-2,.py-wp-sm-2{padding-top:.5rem!important}.pr-wp-sm-2,.px-wp-sm-2{padding-right:.5rem!important}.pb-wp-sm-2,.py-wp-sm-2{padding-bottom:.5rem!important}.pl-wp-sm-2,.px-wp-sm-2{padding-left:.5rem!important}.p-wp-sm-3{padding:1rem!important}.pt-wp-sm-3,.py-wp-sm-3{padding-top:1rem!important}.pr-wp-sm-3,.px-wp-sm-3{padding-right:1rem!important}.pb-wp-sm-3,.py-wp-sm-3{padding-bottom:1rem!important}.pl-wp-sm-3,.px-wp-sm-3{padding-left:1rem!important}.p-wp-sm-4{padding:1.5rem!important}.pt-wp-sm-4,.py-wp-sm-4{padding-top:1.5rem!important}.pr-wp-sm-4,.px-wp-sm-4{padding-right:1.5rem!important}.pb-wp-sm-4,.py-wp-sm-4{padding-bottom:1.5rem!important}.pl-wp-sm-4,.px-wp-sm-4{padding-left:1.5rem!important}.p-wp-sm-5{padding:3rem!important}.pt-wp-sm-5,.py-wp-sm-5{padding-top:3rem!important}.pr-wp-sm-5,.px-wp-sm-5{padding-right:3rem!important}.pb-wp-sm-5,.py-wp-sm-5{padding-bottom:3rem!important}.pl-wp-sm-5,.px-wp-sm-5{padding-left:3rem!important}.m-wp-sm-n1{margin:-.25rem!important}.mt-wp-sm-n1,.my-wp-sm-n1{margin-top:-.25rem!important}.mr-wp-sm-n1,.mx-wp-sm-n1{margin-right:-.25rem!important}.mb-wp-sm-n1,.my-wp-sm-n1{margin-bottom:-.25rem!important}.ml-wp-sm-n1,.mx-wp-sm-n1{margin-left:-.25rem!important}.m-wp-sm-n2{margin:-.5rem!important}.mt-wp-sm-n2,.my-wp-sm-n2{margin-top:-.5rem!important}.mr-wp-sm-n2,.mx-wp-sm-n2{margin-right:-.5rem!important}.mb-wp-sm-n2,.my-wp-sm-n2{margin-bottom:-.5rem!important}.ml-wp-sm-n2,.mx-wp-sm-n2{margin-left:-.5rem!important}.m-wp-sm-n3{margin:-1rem!important}.mt-wp-sm-n3,.my-wp-sm-n3{margin-top:-1rem!important}.mr-wp-sm-n3,.mx-wp-sm-n3{margin-right:-1rem!important}.mb-wp-sm-n3,.my-wp-sm-n3{margin-bottom:-1rem!important}.ml-wp-sm-n3,.mx-wp-sm-n3{margin-left:-1rem!important}.m-wp-sm-n4{margin:-1.5rem!important}.mt-wp-sm-n4,.my-wp-sm-n4{margin-top:-1.5rem!important}.mr-wp-sm-n4,.mx-wp-sm-n4{margin-right:-1.5rem!important}.mb-wp-sm-n4,.my-wp-sm-n4{margin-bottom:-1.5rem!important}.ml-wp-sm-n4,.mx-wp-sm-n4{margin-left:-1.5rem!important}.m-wp-sm-n5{margin:-3rem!important}.mt-wp-sm-n5,.my-wp-sm-n5{margin-top:-3rem!important}.mr-wp-sm-n5,.mx-wp-sm-n5{margin-right:-3rem!important}.mb-wp-sm-n5,.my-wp-sm-n5{margin-bottom:-3rem!important}.ml-wp-sm-n5,.mx-wp-sm-n5{margin-left:-3rem!important}.m-wp-sm-auto{margin:auto!important}.mt-wp-sm-auto,.my-wp-sm-auto{margin-top:auto!important}.mr-wp-sm-auto,.mx-wp-sm-auto{margin-right:auto!important}.mb-wp-sm-auto,.my-wp-sm-auto{margin-bottom:auto!important}.ml-wp-sm-auto,.mx-wp-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.expansible-menu-bar .expansible-menu .menu-item,.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.expansible-menu-bar .expansible-menu .menu-item,.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:783px){.m-wp-md-0{margin:0!important}.mt-wp-md-0,.my-wp-md-0{margin-top:0!important}.mr-wp-md-0,.mx-wp-md-0{margin-right:0!important}.mb-wp-md-0,.my-wp-md-0{margin-bottom:0!important}.ml-wp-md-0,.mx-wp-md-0{margin-left:0!important}.m-wp-md-1{margin:.25rem!important}.mt-wp-md-1,.my-wp-md-1{margin-top:.25rem!important}.mr-wp-md-1,.mx-wp-md-1{margin-right:.25rem!important}.mb-wp-md-1,.my-wp-md-1{margin-bottom:.25rem!important}.ml-wp-md-1,.mx-wp-md-1{margin-left:.25rem!important}.m-wp-md-2{margin:.5rem!important}.mt-wp-md-2,.my-wp-md-2{margin-top:.5rem!important}.mr-wp-md-2,.mx-wp-md-2{margin-right:.5rem!important}.mb-wp-md-2,.my-wp-md-2{margin-bottom:.5rem!important}.ml-wp-md-2,.mx-wp-md-2{margin-left:.5rem!important}.m-wp-md-3{margin:1rem!important}.mt-wp-md-3,.my-wp-md-3{margin-top:1rem!important}.mr-wp-md-3,.mx-wp-md-3{margin-right:1rem!important}.mb-wp-md-3,.my-wp-md-3{margin-bottom:1rem!important}.ml-wp-md-3,.mx-wp-md-3{margin-left:1rem!important}.m-wp-md-4{margin:1.5rem!important}.mt-wp-md-4,.my-wp-md-4{margin-top:1.5rem!important}.mr-wp-md-4,.mx-wp-md-4{margin-right:1.5rem!important}.mb-wp-md-4,.my-wp-md-4{margin-bottom:1.5rem!important}.ml-wp-md-4,.mx-wp-md-4{margin-left:1.5rem!important}.m-wp-md-5{margin:3rem!important}.mt-wp-md-5,.my-wp-md-5{margin-top:3rem!important}.mr-wp-md-5,.mx-wp-md-5{margin-right:3rem!important}.mb-wp-md-5,.my-wp-md-5{margin-bottom:3rem!important}.ml-wp-md-5,.mx-wp-md-5{margin-left:3rem!important}.p-wp-md-0{padding:0!important}.pt-wp-md-0,.py-wp-md-0{padding-top:0!important}.pr-wp-md-0,.px-wp-md-0{padding-right:0!important}.pb-wp-md-0,.py-wp-md-0{padding-bottom:0!important}.pl-wp-md-0,.px-wp-md-0{padding-left:0!important}.p-wp-md-1{padding:.25rem!important}.pt-wp-md-1,.py-wp-md-1{padding-top:.25rem!important}.pr-wp-md-1,.px-wp-md-1{padding-right:.25rem!important}.pb-wp-md-1,.py-wp-md-1{padding-bottom:.25rem!important}.pl-wp-md-1,.px-wp-md-1{padding-left:.25rem!important}.p-wp-md-2{padding:.5rem!important}.pt-wp-md-2,.py-wp-md-2{padding-top:.5rem!important}.pr-wp-md-2,.px-wp-md-2{padding-right:.5rem!important}.pb-wp-md-2,.py-wp-md-2{padding-bottom:.5rem!important}.pl-wp-md-2,.px-wp-md-2{padding-left:.5rem!important}.p-wp-md-3{padding:1rem!important}.pt-wp-md-3,.py-wp-md-3{padding-top:1rem!important}.pr-wp-md-3,.px-wp-md-3{padding-right:1rem!important}.pb-wp-md-3,.py-wp-md-3{padding-bottom:1rem!important}.pl-wp-md-3,.px-wp-md-3{padding-left:1rem!important}.p-wp-md-4{padding:1.5rem!important}.pt-wp-md-4,.py-wp-md-4{padding-top:1.5rem!important}.pr-wp-md-4,.px-wp-md-4{padding-right:1.5rem!important}.pb-wp-md-4,.py-wp-md-4{padding-bottom:1.5rem!important}.pl-wp-md-4,.px-wp-md-4{padding-left:1.5rem!important}.p-wp-md-5{padding:3rem!important}.pt-wp-md-5,.py-wp-md-5{padding-top:3rem!important}.pr-wp-md-5,.px-wp-md-5{padding-right:3rem!important}.pb-wp-md-5,.py-wp-md-5{padding-bottom:3rem!important}.pl-wp-md-5,.px-wp-md-5{padding-left:3rem!important}.m-wp-md-n1{margin:-.25rem!important}.mt-wp-md-n1,.my-wp-md-n1{margin-top:-.25rem!important}.mr-wp-md-n1,.mx-wp-md-n1{margin-right:-.25rem!important}.mb-wp-md-n1,.my-wp-md-n1{margin-bottom:-.25rem!important}.ml-wp-md-n1,.mx-wp-md-n1{margin-left:-.25rem!important}.m-wp-md-n2{margin:-.5rem!important}.mt-wp-md-n2,.my-wp-md-n2{margin-top:-.5rem!important}.mr-wp-md-n2,.mx-wp-md-n2{margin-right:-.5rem!important}.mb-wp-md-n2,.my-wp-md-n2{margin-bottom:-.5rem!important}.ml-wp-md-n2,.mx-wp-md-n2{margin-left:-.5rem!important}.m-wp-md-n3{margin:-1rem!important}.mt-wp-md-n3,.my-wp-md-n3{margin-top:-1rem!important}.mr-wp-md-n3,.mx-wp-md-n3{margin-right:-1rem!important}.mb-wp-md-n3,.my-wp-md-n3{margin-bottom:-1rem!important}.ml-wp-md-n3,.mx-wp-md-n3{margin-left:-1rem!important}.m-wp-md-n4{margin:-1.5rem!important}.mt-wp-md-n4,.my-wp-md-n4{margin-top:-1.5rem!important}.mr-wp-md-n4,.mx-wp-md-n4{margin-right:-1.5rem!important}.mb-wp-md-n4,.my-wp-md-n4{margin-bottom:-1.5rem!important}.ml-wp-md-n4,.mx-wp-md-n4{margin-left:-1.5rem!important}.m-wp-md-n5{margin:-3rem!important}.mt-wp-md-n5,.my-wp-md-n5{margin-top:-3rem!important}.mr-wp-md-n5,.mx-wp-md-n5{margin-right:-3rem!important}.mb-wp-md-n5,.my-wp-md-n5{margin-bottom:-3rem!important}.ml-wp-md-n5,.mx-wp-md-n5{margin-left:-3rem!important}.m-wp-md-auto{margin:auto!important}.mt-wp-md-auto,.my-wp-md-auto{margin-top:auto!important}.mr-wp-md-auto,.mx-wp-md-auto{margin-right:auto!important}.mb-wp-md-auto,.my-wp-md-auto{margin-bottom:auto!important}.ml-wp-md-auto,.mx-wp-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0,.sticky-footer .sticky-footer-collapse-wrapper .sticky-footer-collapse .sticky-footer-subscriptions-col{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.expansible-menu-bar .expansible-menu .menu-item,.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.expansible-menu-bar .expansible-menu .menu-item,.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1350px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:320px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:601px){.text-wp-sm-left{text-align:left!important}.text-wp-sm-right{text-align:right!important}.text-wp-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:783px){.text-wp-md-left{text-align:left!important}.text-wp-md-right{text-align:right!important}.text-wp-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1350px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#3eb489!important}a.text-primary:focus,a.text-primary:hover{color:#2a7b5e!important}.text-secondary{color:#893eb4!important}a.text-secondary:focus,a.text-secondary:hover{color:#5e2a7b!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#fe1!important}a.text-warning:focus,a.text-warning:hover{color:#c4b600!important}.text-danger{color:#ea1b1b!important}a.text-danger:focus,a.text-danger:hover{color:#a91010!important}.text-light{color:#f4f4f4!important}a.text-light:focus,a.text-light:hover{color:#cecece!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#111!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(17,17,17,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,:after,:before{text-shadow:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}a:not(.btn):not(.sticky-footer-btn){text-decoration:underline}abbr[title]:after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}.container,.sticky-footer-container,body{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #111}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:Open Sans,sans-serif;font-style:normal;font-weight:400;line-height:1.7;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.76562rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{top:0;border-width:.4rem .4rem 0;border-top-color:#111}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#111}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#111}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#111}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#111;border-radius:.25rem}.popover{top:0;left:0;z-index:1060;max-width:276px;font-family:Open Sans,sans-serif;font-style:normal;font-weight:400;line-height:1.7;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.76562rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(17,17,17,.2);border-radius:.3rem}.popover,.popover .arrow{position:absolute;display:block}.popover .arrow{width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow:after,.popover .arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem + -1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(17,17,17,.25)}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem + -1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(17,17,17,.25)}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem + -1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{top:0;border-width:0 .5rem .5rem;border-bottom-color:rgba(17,17,17,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem + -1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(17,17,17,.25)}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:.875rem;color:#283a3f;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#111}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .3s ease-out;-webkit-transform:translateY(-50px);-o-transform:translateY(-50px);transform:translateY(-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{-webkit-transition:none;-o-transition:none;transition:none}}.modal.show .modal-dialog{-webkit-transform:none;-o-transform:none;transform:none}.modal-dialog-scrollable{display:-webkit-box;display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(17,17,17,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#111}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.7}.modal-body{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #dee2e6;border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:320px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1350px){.modal-xl{max-width:1140px}}.img-fluid,.img-thumbnail,.wp-caption img{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem}.figure,.wp-caption{display:inline-block}.figure-img,.wp-caption img{margin-bottom:.5rem;line-height:1}.figure-caption,.wp-caption-text{font-size:90%;color:#6c757d}:root{--blue:#159ab3;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#ea1b1b;--orange:#fd7e14;--yellow:#fe1;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#3eb489;--secondary:#893eb4;--success:#28a745;--info:#17a2b8;--warning:#fe1;--danger:#ea1b1b;--light:#f4f4f4;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:320px;--breakpoint-wp-sm:601px;--breakpoint-md:768px;--breakpoint-wp-md:783px;--breakpoint-lg:992px;--breakpoint-xl:1350px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:800;line-height:1.5;color:#283a3f}.h1,h1{font-size:2.625rem}.h2,h2{font-size:2.125rem}.h3,h3{font-size:1.875rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.375rem}.h6,h6{font-size:1.25rem}.lead{font-size:1.09375rem;font-weight:300}.display-1{font-size:6rem}.display-1,.display-2{font-weight:300;line-height:1.5}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-3,.display-4{font-weight:300;line-height:1.5}.display-4{font-size:3.5rem}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(17,17,17,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.09375rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer:before{content:"\2014\00A0"}.btn,.search-form .search-submit,.sticky-footer-btn{display:inline-block;color:#111;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.5rem 1.125rem;line-height:1.2;border-radius:22.5rem;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn,.search-form .search-submit,.sticky-footer-btn{-webkit-transition:none;-o-transition:none;transition:none}}.btn:hover,.search-form .search-submit:hover,.sticky-footer-btn:hover{color:#111;text-decoration:none}.btn.focus,.btn:focus,.focus.sticky-footer-btn,.search-form .focus.search-submit,.search-form .search-submit:focus,.sticky-footer-btn:focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(62,180,137,.25);box-shadow:0 0 0 .2rem rgba(62,180,137,.25)}.btn.disabled,.btn:disabled,.disabled.sticky-footer-btn,.search-form .disabled.search-submit,.search-form .search-submit:disabled,.sticky-footer-btn:disabled{opacity:.65}.search-form a.disabled.search-submit,.search-form fieldset:disabled a.search-submit,a.btn.disabled,a.disabled.sticky-footer-btn,fieldset:disabled .search-form a.search-submit,fieldset:disabled a.btn,fieldset:disabled a.sticky-footer-btn{pointer-events:none}.btn-primary{color:#fff;background-color:#3eb489;border-color:#3eb489}.btn-primary:hover{color:#fff;background-color:#349873;border-color:#318e6c}.btn-primary.focus,.btn-primary:focus{-webkit-box-shadow:0 0 0 .2rem rgba(91,191,155,.5);box-shadow:0 0 0 .2rem rgba(91,191,155,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#3eb489;border-color:#3eb489}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#318e6c;border-color:#2e8565}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(91,191,155,.5);box-shadow:0 0 0 .2rem rgba(91,191,155,.5)}.btn-secondary,.search-form .search-submit{color:#fff;background-color:#893eb4;border-color:#893eb4}.btn-secondary:hover,.search-form .search-submit:hover{color:#fff;background-color:#733498;border-color:#6c318e}.btn-secondary.focus,.btn-secondary:focus,.search-form .focus.search-submit,.search-form .search-submit:focus{-webkit-box-shadow:0 0 0 .2rem rgba(155,91,191,.5);box-shadow:0 0 0 .2rem rgba(155,91,191,.5)}.btn-secondary.disabled,.btn-secondary:disabled,.search-form .disabled.search-submit,.search-form .search-submit:disabled{color:#fff;background-color:#893eb4;border-color:#893eb4}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.search-form .search-submit:not(:disabled):not(.disabled).active,.search-form .search-submit:not(:disabled):not(.disabled):active,.search-form .show>.dropdown-toggle.search-submit,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#6c318e;border-color:#652e85}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.search-form .search-submit:not(:disabled):not(.disabled).active:focus,.search-form .search-submit:not(:disabled):not(.disabled):active:focus,.search-form .show>.dropdown-toggle.search-submit:focus,.show>.btn-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(155,91,191,.5);box-shadow:0 0 0 .2rem rgba(155,91,191,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{-webkit-box-shadow:0 0 0 .2rem rgba(72,180,97,.5);box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(72,180,97,.5);box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{-webkit-box-shadow:0 0 0 .2rem rgba(58,176,195,.5);box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(58,176,195,.5);box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#fe1;border-color:#fe1}.btn-warning:hover{color:#212529;background-color:#ead900;border-color:#ddcd00}.btn-warning.focus,.btn-warning:focus{-webkit-box-shadow:0 0 0 .2rem rgba(222,208,21,.5);box-shadow:0 0 0 .2rem rgba(222,208,21,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#fe1;border-color:#fe1}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#ddcd00;border-color:#d0c100}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(222,208,21,.5);box-shadow:0 0 0 .2rem rgba(222,208,21,.5)}.btn-danger{color:#fff;background-color:#ea1b1b;border-color:#ea1b1b}.btn-danger:hover{color:#fff;background-color:#cc1313;border-color:#c01212}.btn-danger.focus,.btn-danger:focus{-webkit-box-shadow:0 0 0 .2rem rgba(237,61,61,.5);box-shadow:0 0 0 .2rem rgba(237,61,61,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#ea1b1b;border-color:#ea1b1b}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#c01212;border-color:#b51111}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(237,61,61,.5);box-shadow:0 0 0 .2rem rgba(237,61,61,.5)}.btn-light{color:#212529;background-color:#f4f4f4;border-color:#f4f4f4}.btn-light:hover{color:#212529;background-color:#e1e1e1;border-color:#dbdbdb}.btn-light.focus,.btn-light:focus{-webkit-box-shadow:0 0 0 .2rem rgba(212,213,214,.5);box-shadow:0 0 0 .2rem rgba(212,213,214,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f4f4f4;border-color:#f4f4f4}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dbdbdb;border-color:#d4d4d4}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(212,213,214,.5);box-shadow:0 0 0 .2rem rgba(212,213,214,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{-webkit-box-shadow:0 0 0 .2rem rgba(82,88,93,.5);box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(82,88,93,.5);box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#3eb489;border-color:#3eb489}.btn-outline-primary:hover{color:#fff;background-color:#3eb489;border-color:#3eb489}.btn-outline-primary.focus,.btn-outline-primary:focus{-webkit-box-shadow:0 0 0 .2rem rgba(62,180,137,.5);box-shadow:0 0 0 .2rem rgba(62,180,137,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#3eb489;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#3eb489;border-color:#3eb489}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(62,180,137,.5);box-shadow:0 0 0 .2rem rgba(62,180,137,.5)}.btn-outline-secondary{color:#893eb4;border-color:#893eb4}.btn-outline-secondary:hover{color:#fff;background-color:#893eb4;border-color:#893eb4}.btn-outline-secondary.focus,.btn-outline-secondary:focus{-webkit-box-shadow:0 0 0 .2rem rgba(137,62,180,.5);box-shadow:0 0 0 .2rem rgba(137,62,180,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#893eb4;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#893eb4;border-color:#893eb4}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(137,62,180,.5);box-shadow:0 0 0 .2rem rgba(137,62,180,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.5);box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.5);box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{-webkit-box-shadow:0 0 0 .2rem rgba(23,162,184,.5);box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(23,162,184,.5);box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#fe1;border-color:#fe1}.btn-outline-warning:hover{color:#212529;background-color:#fe1;border-color:#fe1}.btn-outline-warning.focus,.btn-outline-warning:focus{-webkit-box-shadow:0 0 0 .2rem rgba(255,238,17,.5);box-shadow:0 0 0 .2rem rgba(255,238,17,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#fe1;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#fe1;border-color:#fe1}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(255,238,17,.5);box-shadow:0 0 0 .2rem rgba(255,238,17,.5)}.btn-outline-danger{color:#ea1b1b;border-color:#ea1b1b}.btn-outline-danger:hover{color:#fff;background-color:#ea1b1b;border-color:#ea1b1b}.btn-outline-danger.focus,.btn-outline-danger:focus{-webkit-box-shadow:0 0 0 .2rem rgba(234,27,27,.5);box-shadow:0 0 0 .2rem rgba(234,27,27,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#ea1b1b;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#ea1b1b;border-color:#ea1b1b}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(234,27,27,.5);box-shadow:0 0 0 .2rem rgba(234,27,27,.5)}.btn-outline-light{color:#f4f4f4;border-color:#f4f4f4}.btn-outline-light:hover{color:#212529;background-color:#f4f4f4;border-color:#f4f4f4}.btn-outline-light.focus,.btn-outline-light:focus{-webkit-box-shadow:0 0 0 .2rem hsla(0,0%,95.7%,.5);box-shadow:0 0 0 .2rem hsla(0,0%,95.7%,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f4f4f4;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f4f4f4;border-color:#f4f4f4}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem hsla(0,0%,95.7%,.5);box-shadow:0 0 0 .2rem hsla(0,0%,95.7%,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{-webkit-box-shadow:0 0 0 .2rem rgba(52,58,64,.5);box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(52,58,64,.5);box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#3eb489;text-decoration:none}.btn-link:hover{color:#2a7b5e;text-decoration:none}.btn-link.focus,.btn-link:focus{text-decoration:none;-webkit-box-shadow:none;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-lg{padding:.5rem 1rem;font-size:1.09375rem;line-height:1.5;border-radius:.3rem}.btn-sm{padding:.25rem .5rem;font-size:.76562rem;line-height:1.5;border-radius:.2rem}.btn-block,.sticky-footer-btn{display:block;width:100%}.btn-block+.btn-block,.btn-block+.sticky-footer-btn,.sticky-footer-btn+.btn-block,.sticky-footer-btn+.sticky-footer-btn{margin-top:.5rem}input.sticky-footer-btn[type=button],input.sticky-footer-btn[type=reset],input.sticky-footer-btn[type=submit],input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}@font-face{font-family:FontAwesome;src:url(/content/themes/tin-generic-theme/dist/vendor/fontawesome-webfont_674f50d2.eot);src:url(/content/themes/tin-generic-theme/dist/vendor/fontawesome-webfont_674f50d2.eot?#iefix&v=4.7.0) format("embedded-opentype"),url(/content/themes/tin-generic-theme/dist/vendor/fontawesome-webfont_af7ae505.woff2) format("woff2"),url(/content/themes/tin-generic-theme/dist/vendor/fontawesome-webfont_fee66e71.woff) format("woff"),url(/content/themes/tin-generic-theme/dist/vendor/fontawesome-webfont_b06871f2.ttf) format("truetype"),url(/content/themes/tin-generic-theme/dist/vendor/fontawesome-webfont_912ec66d.svg#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.expansible-menu-bar .showMoreButton,.fa,.showMoreButton{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa-pull-left.showMoreButton,.fa.fa-pull-left{margin-right:.3em}.fa-pull-right.showMoreButton,.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left,.pull-left.showMoreButton{margin-right:.3em}.fa.pull-right,.pull-right.showMoreButton{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;-o-animation:fa-spin 2s infinite linear;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;-o-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-o-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);-o-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);-o-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);-o-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);-o-transform:scaleY(-1);transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.expansible-menu-bar:not(.expanded) .showMoreButton:before,.fa-plus:before{content:""}.expansible-menu-bar.expanded .showMoreButton:before,.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-sign-language:before,.fa-signing:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-address-card:before,.fa-vcard:before{content:""}.fa-address-card-o:before,.fa-vcard-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.screen-reader-text,.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.screen-reader-text:active,.screen-reader-text:focus,.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.fa-stack-1x{font-size:.9375rem}.text-bold{font-weight:700}.text-extrabold{font-weight:800}p.spaced{margin-bottom:.875rem}a{cursor:pointer;-webkit-transition:color .15s ease-in-out;-o-transition:color .15s ease-in-out;transition:color .15s ease-in-out}body main .entry-content{color:#283a3f;font-size:1.0625rem}body main .entry-content a{color:#283a3f}body main .entry-content a:active,body main .entry-content a:focus,body main .entry-content a:hover{color:rgba(40,58,63,.8)}body main .entry-content a{border-bottom:2px solid #3eb489;font-weight:600}body main .entry-content p{margin-bottom:1.875rem;overflow-wrap:break-word}.h7,.h8,.h9{font-weight:800}.h7{font-size:1.125rem}.h8{font-size:1rem}.h9{font-size:.875rem}.text-primary{color:#3eb489}.text-secondary{color:#893eb4}.text-light-gray{color:#f4f4f4}.text-gray{color:#cccfd2}.text-dark-gray{color:#8894a6}.text-black{color:#111}.text-dark-cyan{color:#283a3f}.text-blue{color:#159ab3}.text-red{color:#ea1b1b}.text-white{color:#fff}.bg-primary{background-color:#3eb489}.bg-secondary{background-color:#893eb4}.bg-light-gray{background-color:#f4f4f4}.bg-gray{background-color:#cccfd2}.bg-dark-gray{background-color:#8894a6}.bg-black{background-color:#111}.bg-dark-cyan{background-color:#283a3f}.bg-blue{background-color:#159ab3}.bg-red{background-color:#ea1b1b}.bg-white{background-color:#fff}.no-scroll{overflow:hidden}.dip-article-block.is-style-image-highlight,.dip-article-block.is-style-image-highlight-content-below .article-block-media,.dip-article-block.is-style-normal .article-block-media,.dip-article-block.is-style-simple .article-block-media,.dip-article-block.is-style-text-highlight .article-block-media,.dip-article-block.is-style-two-columns-full .article-block-media,.dip-article-block.is-style-two-columns .article-block-media,.dip-article-block.is-style-vertical-image,.dip-article-block.is-style-vertical-image-content-below .article-block-media,.tin-widget-articles.tin-highlights-widget .tin-widget-articles-item .tin-widget-articles-item-img{overflow:hidden;position:relative}.dip-article-block.is-style-image-highlight-content-below .article-block-media img,.dip-article-block.is-style-image-highlight img,.dip-article-block.is-style-normal .article-block-media img,.dip-article-block.is-style-simple .article-block-media img,.dip-article-block.is-style-text-highlight .article-block-media img,.dip-article-block.is-style-two-columns-full .article-block-media img,.dip-article-block.is-style-two-columns .article-block-media img,.dip-article-block.is-style-vertical-image-content-below .article-block-media img,.dip-article-block.is-style-vertical-image img,.tin-widget-articles.tin-highlights-widget .tin-widget-articles-item .tin-widget-articles-item-img img{-webkit-transition:all .35s ease-in-out;-o-transition:all .35s ease-in-out;transition:all .35s ease-in-out}.dip-article-block.is-style-image-highlight-content-below .article-block-media:hover img,.dip-article-block.is-style-image-highlight:hover img,.dip-article-block.is-style-normal .article-block-media:hover img,.dip-article-block.is-style-simple .article-block-media:hover img,.dip-article-block.is-style-text-highlight .article-block-media:hover img,.dip-article-block.is-style-two-columns-full .article-block-media:hover img,.dip-article-block.is-style-two-columns .article-block-media:hover img,.dip-article-block.is-style-vertical-image-content-below .article-block-media:hover img,.dip-article-block.is-style-vertical-image:hover img,.tin-widget-articles.tin-highlights-widget .tin-widget-articles-item .tin-widget-articles-item-img:hover img{-webkit-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2)}.bullet-list,.dip-article-block .article-block-related,.widget ul{list-style-type:none;padding-left:0}.bullet-list li,.dip-article-block .article-block-related li,.widget ul li{display:-webkit-box;display:-ms-flexbox;display:flex}.bullet-list li:before,.dip-article-block .article-block-related li:before,.widget ul li:before{color:#893eb4;content:"\25cf";font-size:1rem;font-weight:700;line-height:.625rem;margin-right:.625rem;text-align:center}.thick-border{border:6px solid #111}.contain-img img{-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;font-family:"object-fit: cover; object-position: center";display:block;height:100%;width:100%}.back-to-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fff;border-radius:50%;border-width:0;bottom:0;-webkit-box-shadow:0 0 5px rgba(17,17,17,.2);box-shadow:0 0 5px rgba(17,17,17,.2);display:-webkit-box;display:-ms-flexbox;display:flex;height:44px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:3.125rem;position:fixed;right:1.25rem;width:44px;z-index:900}.back-to-top a{color:#893eb4}.back-to-top a:active,.back-to-top a:focus,.back-to-top a:hover{color:rgba(137,62,180,.8)}.btn,.search-form .search-submit,.sticky-footer-btn{font-family:Open Sans,sans-serif;font-size:1rem;font-weight:700;letter-spacing:.0625rem;text-transform:uppercase}.btn-wide.sticky-footer-btn,.btn.btn-wide,.search-form .btn-wide.search-submit{width:100%;max-width:304px}.btn:focus,.search-form .search-submit:focus,.sticky-footer-btn:focus{outline:0}#cookie-law-info-bar.cookies-bar{background-color:hsla(0,0%,100%,.8);bottom:.625rem!important;-webkit-box-shadow:0 .0625rem .125rem rgba(17,17,17,.3);box-shadow:0 .0625rem .125rem rgba(17,17,17,.3);color:#111!important;font-family:Open Sans,sans-serif;font-weight:400;left:50%;min-height:3.75rem;position:fixed!important;-webkit-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%);width:94vw}#cookie-law-info-bar.cookies-bar p{font-size:.75rem;margin-bottom:0}#cookie-law-info-bar.cookies-bar .cli-plugin-button{margin-top:0}#cookie-law-info-bar.cookies-bar .cli-plugin-main-link{color:#159ab3!important;font-weight:400;text-decoration:none}#cookie-law-info-bar.cookies-bar .cli-plugin-main-link:hover{text-decoration:underline}#cookie-law-info-bar.cookies-bar .cookie_action_close_header{background-color:transparent!important;color:#159ab3!important;font-size:1rem;font-weight:600;text-transform:uppercase}#cookie-law-info-bar.cookies-bar .cookie_action_close_header:hover{text-decoration:underline}#cookie-law-info-bar.cookies-bar .cookie_action_close_header_reject{background-color:transparent!important;color:#cccfd2!important}#cookie-law-info-bar.cookies-bar .cookie_action_close_header_reject:hover{color:#8894a6!important}@media (min-width:768px){#cookie-law-info-bar.cookies-bar{height:3.75rem;max-width:53.875rem;padding:0}}.search-form label{font-weight:400}.pswp,.pswp .pswp__container,.pswp .pswp__zoom-wrap{-ms-touch-action:pan-y!important;touch-action:pan-y!important;position:absolute}.pswp--zoom-allowed .pswp__img{cursor:default!important}.gallery-wrapper{position:relative;width:100%;padding-top:80%;display:block;-webkit-transition:color .15s ease-in-out;-o-transition:color .15s ease-in-out;transition:color .15s ease-in-out}.gallery-wrapper .gallery-ad,.gallery-wrapper .gallery-data{display:none}.gallery-wrapper .gallery-ad{-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;width:100%;background-color:#000;z-index:1;position:absolute}.gallery-wrapper .pswp{z-index:499;overflow:visible}.gallery-wrapper .pswp .pswp__counter{opacity:1;position:relative;float:left}.gallery-wrapper .pswp .pswp-sidebar{display:none;background:#222}.gallery-wrapper .pswp .pswp__caption,.gallery-wrapper .pswp .pswp__top-bar{position:relative}.gallery-wrapper .pswp .pswp__caption.pswp__caption--fake,.gallery-wrapper .pswp .pswp__top-bar.pswp__caption--fake{position:absolute}.gallery-wrapper .pswp .pswp__button--arrow--left{left:5%}.gallery-wrapper .pswp .pswp__button--arrow--right{right:5%}.gallery-wrapper .pswp .pswp__button--arrow--left,.gallery-wrapper .pswp .pswp__button--arrow--right{z-index:2;zoom:1.2}.gallery-wrapper .pswp .pswp__button--arrow--left:before,.gallery-wrapper .pswp .pswp__button--arrow--right:before{border-radius:50%}.gallery-wrapper .pswp.pswp--touch .pswp__button--arrow--left,.gallery-wrapper .pswp.pswp--touch .pswp__button--arrow--right{visibility:visible}.gallery-wrapper .pswp .pswp__ui{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.gallery-wrapper .pswp .pswp__ui.pswp__ui--hidden .pswp__caption{opacity:1}.gallery-wrapper .pswp .pswp__caption__center{max-width:100%}.gallery-wrapper .pswp .pswp__caption__center .thumbnail-image-caption{color:#fff;font-size:.8125rem;line-height:1.125rem}.gallery-wrapper .pswp .fa,.gallery-wrapper .pswp .showMoreButton{background:none;color:#fff}.gallery-wrapper .pswp .custom-controls-bar{left:0;position:absolute;text-align:right;top:0}.gallery-wrapper.open-fs{position:fixed;top:0;left:0;width:100%;height:100%;z-index:2000000001;padding-top:0}.gallery-wrapper.open-fs .pswp__button--custom-fs{background-position:-44px 0}.gallery-wrapper.open-fs .pswp__ui.pswp__ui--hidden .pswp__caption{opacity:0}.article-top-content .gallery-wrapper{padding-top:100%}.article-top-content .gallery-wrapper.open-fs{padding-top:0}.pswp__button:active,.pswp__button:focus,.pswp__button:hover{border:none}.pswp.sfx .pswp__bg{-webkit-transition:background-color .5s ease-in-out;-o-transition:background-color .5s ease-in-out;transition:background-color .5s ease-in-out}.pswp.sfx .pswp__counter{-webkit-transition:color .2s ease-in-out;-o-transition:color .2s ease-in-out;transition:color .2s ease-in-out}.pswp.sfx .gallery-ad,.pswp.sfx .pswp-sidebar,.pswp.sfx .pswp__img--placeholder--blank{-webkit-transition:background-color .2s ease-in-out;-o-transition:background-color .2s ease-in-out;transition:background-color .2s ease-in-out}.pswp.sfx .pswp__button.fa,.pswp.sfx .pswp__button.showMoreButton{-webkit-transition:color .2s ease-in-out;-o-transition:color .2s ease-in-out;transition:color .2s ease-in-out}.pswp.sfx .pswp__button.pswp__button--arrow--left:before,.pswp.sfx .pswp__button.pswp__button--arrow--right:before{-webkit-transition:background-color .2s ease-in-out;-o-transition:background-color .2s ease-in-out;transition:background-color .2s ease-in-out}@media (max-width:782.98px){.pswp__ui--idle .pswp__button--arrow--left,.pswp__ui--idle .pswp__button--arrow--right{opacity:1}}@media (min-width:768px){.article-top-content .gallery-wrapper{padding-top:55.4%}}@media (min-width:992px){.gallery-wrapper.open-fs .pswp.pswp--open{width:auto;right:340px}.gallery-wrapper.open-fs .pswp.pswp--open .pswp-sidebar{position:fixed;top:0;right:0;width:340px;height:100%;padding:15px;margin:0;overflow-x:hidden;overflow-y:auto;z-index:2000000001;display:block}.pswp__caption,.pswp__top-bar{padding:0 5%}}.simple-message{background-color:#fe1;margin-bottom:30px;min-height:80px}.simple-message,.simple-message i{display:-webkit-box;display:-ms-flexbox;display:flex}.simple-message i{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#111;color:#fff;-webkit-box-flex:0;-ms-flex:0 0 80px;flex:0 0 80px;font-size:1.5rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center}.simple-message .info{-ms-flex-item-align:center;align-self:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-bottom:15px;padding-top:15px}.simple-message .info span{font-size:.875rem;margin-left:30px;margin-right:30px}.simple-message .info span:first-child{font-weight:700}[data-sticky-footer]{bottom:0;position:fixed;width:100%;z-index:901}.sticky-footer{background-color:#8894a6;color:#fff;min-height:50px;padding-bottom:16px;padding-top:16px}.sticky-footer .sticky-footer-btn,.sticky-footer h3{color:inherit}.sticky-footer.bright{background-color:#000}.sticky-footer .sticky-footer-close{color:#6a6a6d;font-size:1.25rem;height:20px;line-height:1.25rem;margin-top:-10px;padding:0;position:absolute;right:5px;top:20px;width:20px;z-index:1}.sticky-footer .sticky-footer-subscriptions{-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%}.sticky-footer .sticky-footer-toggler{background-color:#8894a6;color:#fff;font-size:26px;height:40px;left:50%;margin-left:-20px;padding:0;position:absolute;top:-20px;width:40px}.sticky-footer .sticky-footer-toggler .fa-angle-down{-webkit-transition:-webkit-transform .35s ease-in-out;transition:-webkit-transform .35s ease-in-out;-o-transition:-o-transform .35s ease-in-out;transition:transform .35s ease-in-out;transition:transform .35s ease-in-out,-webkit-transform .35s ease-in-out,-o-transform .35s ease-in-out}.sticky-footer .sticky-footer-toggler:focus{border:0;-webkit-box-shadow:unset;box-shadow:unset;outline:0}.sticky-footer .sticky-footer-toggler.collapsed .fa-angle-down{-webkit-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}.sticky-footer .sticky-footer-toggler.collapsed+.sticky-footer-close{top:50%}.sticky-footer .sticky-footer-btn{font-size:.8125rem;line-height:1.3125rem;padding-bottom:3.5px;padding-top:3.5px}.sticky-footer .sticky-footer-image img{border:1px solid #159ab3;max-height:19vh;padding:10px;width:auto}.sticky-footer .sticky-footer-preview .sticky-footer-text{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.sticky-footer .sticky-footer-preview .sticky-footer-image img{display:none}.sticky-footer .sticky-footer-collapse-wrapper .sticky-footer-collapse{padding-bottom:15px;padding-top:15px;text-align:center}@media (max-width:782.98px){.sticky-footer .sticky-footer-collapse-wrapper .sticky-footer-btn{margin-bottom:15px}}@media (min-width:992px){.sticky-footer .sticky-footer-collapse-wrapper .sticky-footer-collapse{padding-top:0}.sticky-footer .sticky-footer-collapse-wrapper .sticky-footer-image img{display:none}.sticky-footer .sticky-footer-preview .sticky-footer-image{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.sticky-footer .sticky-footer-preview .sticky-footer-image img{bottom:0;display:block;position:absolute}}.taboola-bellow-article{background-color:#f7f7f7;padding-top:.625rem}.taboola-bellow-article .trc_rbox_header_span{font-size:1.125rem;line-height:1.5rem;margin-bottom:1.25rem;display:block;text-transform:uppercase}.taboola-bellow-article .trc_rbox_header_span:after{border-bottom:4px solid;border-color:#3eb489;content:"";display:block;padding-top:.3125rem;width:4.125rem}.taboola-bellow-article .thumbnails-a .videoCube:hover .video-label-box .video-description,.taboola-bellow-article .thumbnails-a .videoCube:hover .video-label-box .video-title{text-decoration:none}.taboola-bellow-article .syndicatedItem:hover .video-label{color:rgba(40,58,63,.8);-webkit-transition:color .15s ease-in-out;-o-transition:color .15s ease-in-out;transition:color .15s ease-in-out}.qc-cmp-persistent-link{display:none!important}.alignnone{margin-left:0;margin-right:0;max-width:100%;height:auto}.aligncenter{display:block;margin:.5rem auto;height:auto}.alignleft,.alignright{margin-bottom:.5rem;height:auto}.entry-content{margin-bottom:2.5rem}@media (min-width:320px){.alignleft{float:left;margin-right:.5rem}.alignright{float:right;margin-left:.5rem}}@media (max-width:782.98px){.entry-content .alignwide{max-width:100%;width:100%}.entry-content .alignfull{max-width:100vw;width:100vw}}@media (min-width:1350px){.entry-content .alignwide{margin-left:-105px;margin-right:-105px;max-width:calc(100% + 210px)}.alignfull{max-width:100vw}}@media (min-width:992px){body:not(.template-full-data) .entry-content .alignfull{margin-left:calc(-1*((100vw - 992px)/2 + 15px));width:calc((100vw - 992px)/2 + 646.33333px)}}@media (min-width:1350px){body:not(.template-full-data) .entry-content .alignfull{margin-left:calc(-1*((100vw - 1320px)/2 + 120px));width:calc((100vw - 1320px)/2 + 975px)}}body.admin-bar{height:100vh}body main{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}body footer,body header{-ms-flex-negative:0;flex-shrink:0}.page-header{margin-top:1.875rem}.page-header .article-category{display:inline-block;font-weight:700;margin:0;text-transform:uppercase}.page-header .publish-date,.page-header .separator{color:#8894a6;font-size:.875rem;font-weight:700;margin-left:.625rem;vertical-align:text-bottom}.page-header .entry-title{margin-bottom:1.5625rem;font-size:2rem}.page-header .entry-excerpt{color:#283a3f;font-size:1.125rem;font-weight:600;margin-bottom:1.5625rem}.next-page{text-align:center;margin-bottom:9.375rem}.next-page .view-more{text-transform:uppercase}.jscroll-loading{text-align:center;margin-bottom:9.375rem}.jscroll-loading i{font-size:20px;padding-top:10px;padding-bottom:10px}@media (min-width:783px){body.admin-bar{height:calc(100vh - 32px)}}@media (min-width:768px){body:not(.template-full-data) .after-entry-content,body:not(.template-full-data) .entry-content{margin-left:auto;margin-right:auto;max-width:750px}.page-header{margin-top:3.75rem}.page-header .entry-title{font-size:2.625rem}}.footer-bottom-wrapper{background-color:#f4f4f4;padding-top:3.6875rem;text-align:center}.footer-bottom-wrapper .brand{height:60px;line-height:60px}.footer-bottom-wrapper .brand img{height:2.75rem;margin-bottom:3.75rem;width:2.75rem}.footer-bottom-wrapper .copyright{color:#8894a6;font-size:.625rem;margin-bottom:3.125rem}.footer-bottom-wrapper .social-links{font-size:1rem;margin-bottom:1.75rem}.footer-bottom-wrapper .social-links a{color:#283a3f;-ms-flex-preferred-size:8.125rem;flex-basis:8.125rem}.footer-bottom-wrapper .social-links a:hover{color:#159ab3}.footer-bottom-wrapper #useful-links-container{text-align:center}.footer-bottom-wrapper #useful-links-container li{margin-bottom:0}.footer-bottom-wrapper #useful-links-container li a{color:#283a3f;font-size:.75rem;font-weight:700;padding-bottom:1.875rem;text-transform:uppercase}.footer-bottom-wrapper #useful-links-container li a:hover{color:#159ab3}@media (min-width:992px){.footer-bottom-wrapper{text-align:left;padding-top:0}.footer-bottom-wrapper .bottom-row{padding-left:1.5625rem;padding-right:1.5625rem}.footer-bottom-wrapper .brand img,.footer-bottom-wrapper .social-links{margin-bottom:0}.footer-bottom-wrapper .social-links a{-ms-flex-preferred-size:3.75rem;flex-basis:3.75rem}.footer-bottom-wrapper #useful-links-container ul{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.footer-bottom-wrapper #useful-links-container ul li{padding:0 1rem}.footer-bottom-wrapper #useful-links-container ul li a{padding:0}.footer-bottom-wrapper .copyright{margin-bottom:0;margin-left:.9375rem}}.footer-wrapper{background-color:#283a3f;color:#fff;padding-bottom:1.5625rem;padding-top:3.375rem}.footer-wrapper h6{color:#fff;margin-bottom:2.5rem}.footer-wrapper a{color:#fff;text-decoration:none}.footer-wrapper a:hover{color:#159ab3}.footer-wrapper .nav-footer ul{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.footer-wrapper .nav-footer ul li{-ms-flex-preferred-size:50%;flex-basis:50%;font-weight:600;margin-bottom:1.4375rem}@media (min-width:768px){.footer-wrapper{padding-top:1.4375rem;padding-bottom:.875rem}.footer-wrapper h6{margin-bottom:.625rem}.footer-wrapper .nav-footer{max-width:50rem;margin:0 auto}.footer-wrapper .nav-footer ul li{-ms-flex-preferred-size:33.33%;flex-basis:33.33%;margin-bottom:0}.footer-wrapper .nav-footer ul li a{padding:.3125rem 0}}@media (min-width:992px){.footer-wrapper .nav-footer ul li{-ms-flex-preferred-size:25%;flex-basis:25%}}.site-header .navbar .social-menu-container{position:absolute;left:62px}.site-header .navbar-collapse .social-menu{margin:0 45px;padding-bottom:20px;border-bottom:1px solid #8894a6}.site-header .navbar-collapse .social-menu a{margin:0 15px}.site-header .navbar .social-menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.site-header .navbar .social-menu a{-webkit-transition:opacity .1s ease-in-out;-o-transition:opacity .1s ease-in-out;transition:opacity .1s ease-in-out}.site-header .navbar .social-menu a:hover{opacity:.8}.site-header .navbar .social-menu a{color:#343a40;background-color:#fff;font-size:1rem;border-radius:50%;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:35px;width:35px;margin:0 5px}.site-header .navbar .navbar-menu .header-links-menu,.site-header .navbar .social-menu a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.site-header .navbar .navbar-menu .header-links-menu{position:absolute;right:55px;margin-bottom:0;text-transform:uppercase}.site-header .navbar .navbar-menu .header-links-menu a{color:#000;font-weight:700;padding:0}.site-header .navbar .navbar-menu .header-links-menu .menu-item{list-style:none;padding:0 1.25rem}.site-header .navbar .navbar-collapse .header-links-menu{margin:0 45px;padding:10px 0;border-bottom:1px solid #8894a6}.site-header .navbar .navbar-collapse .header-links-menu a{padding-left:0;padding-right:0}.expansible-menu-bar{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap;overflow:hidden;max-height:35px;-webkit-transition:max-height .2s ease-in-out;-o-transition:max-height .2s ease-in-out;transition:max-height .2s ease-in-out}.expansible-menu-bar,.expansible-menu-bar .showMoreButton{display:-webkit-box;display:-ms-flexbox;display:flex;height:35px}.expansible-menu-bar .showMoreButton{visibility:hidden;width:38px}.expansible-menu-bar:not(.expanded){max-height:35px}.expansible-menu-bar.expanded{max-height:500px;height:auto}.expansible-menu-bar.expanded .showMoreButton,.expansible-menu-bar[overflown=true] .showMoreButton{visibility:visible}.expansible-menu-bar.hidden .showMoreButton{visibility:hidden}.expansible-menu-bar .expansible-menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap;height:100%;margin:0 38px;padding-left:0;padding-right:0}.expansible-menu-bar .expansible-menu .menu-item{list-style:none;margin-top:0;margin-bottom:0;text-transform:uppercase;font-size:1rem;height:35px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:700}.expansible-menu-bar .expansible-menu .menu-item,.expansible-menu-bar .expansible-menu .menu-item a{display:-webkit-box;display:-ms-flexbox;display:flex}.expansible-menu-bar .expansible-menu .menu-item.highlight a{color:#fe1}.expansible-menu-bar .expansible-menu .menu-item.current-menu-item:not(.anchor) a,.expansible-menu-bar .expansible-menu .menu-item.current-menu-parent:not(.anchor) a,.expansible-menu-bar .expansible-menu .menu-item.current-post-ancestor:not(.anchor) a,.expansible-menu-bar .expansible-menu .menu-item.current-post-parent:not(.anchor) a{font-weight:700;opacity:.7}.showMoreButton{width:38px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;visibility:hidden;position:absolute;right:0;display:-webkit-box;display:-ms-flexbox;display:flex}#bsu-placeholder{height:3.75rem;position:relative}#bsu-placeholder,.sticky-part{z-index:1000}.icon-bar{background-color:#fff;display:block;height:.125rem;margin:.25rem 0;-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s;width:22px}.navbar-toggler{background:transparent;padding:.3125rem .625rem}.navbar-toggler:focus{outline:0}.navbar-toggler:not(.collapsed) .icon-bar{background-color:#893eb4}.navbar-toggler .top-bar{-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:10% 10%;-o-transform-origin:10% 10%;transform-origin:10% 10%}.navbar-toggler .middle-bar{opacity:0}.navbar-toggler .bottom-bar{-webkit-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:10% 90%;-o-transform-origin:10% 90%;transform-origin:10% 90%}.navbar-toggler.collapsed .top-bar{-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}.navbar-toggler.collapsed .middle-bar{opacity:1}.navbar-toggler.collapsed .bottom-bar{-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}.site-header{color:#fff;max-height:100vh;width:100%}.site-header .nav{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.site-header .brand img{height:2.8125rem;-webkit-transition:height .35s ease-in-out;-o-transition:height .35s ease-in-out;transition:height .35s ease-in-out;padding-bottom:5px;padding-top:5px}.site-header .navbar{-webkit-box-shadow:0 4px 8px 0 rgba(0,0,0,.15);box-shadow:0 4px 8px 0 rgba(0,0,0,.15);padding:0;position:relative}.site-header .navbar .navbar-menu{background-color:#111;width:100%}.site-header .navbar-toggler,.site-header .search-collapse-toggler{-ms-flex-preferred-size:45px;flex-basis:45px}.site-header .navbar-toggler{color:#fff;margin-left:-10px;z-index:999}.site-header .navbar-toggler:not(.collapsed){z-index:1100}.site-header .navbar-collapse{background-color:transparent;height:100vh!important;position:absolute;top:100%;-webkit-transition:background-color .35s ease-in-out;-o-transition:background-color .35s ease-in-out;transition:background-color .35s ease-in-out;width:100%;z-index:1050}.site-header .navbar-collapse .header-sidebar{background-color:#fff;height:calc(100vh - 45px);margin-left:-20rem;overflow:hidden;padding-bottom:.9375rem;padding-top:.9375rem;-webkit-transition:height 0s,margin-left .32s ease;-o-transition:height 0s,margin-left .32s ease;transition:height 0s,margin-left .32s ease;width:20rem}.site-header .navbar-collapse .header-sidebar .header-sidebar-content{overflow-y:auto;height:calc(100% - 60px)}.site-header .navbar-collapse .header-sidebar .header-sidebar-menu{padding:0 1.875rem}.site-header .navbar-collapse .header-sidebar .header-sidebar-menu>.menu-item>.dropdown-toggle{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.site-header .navbar-collapse .header-sidebar .header-sidebar-menu>.menu-item>.dropdown-toggle:after{border-bottom:0;border-left:.3125rem solid transparent;border-right:.3125rem solid transparent;border-top:.3125rem solid;content:"";display:inline-block}.site-header .navbar-collapse .header-sidebar .header-sidebar-menu>.menu-item>.dropdown-menu{padding-left:1.25rem}.site-header .navbar-collapse .header-sidebar a{color:#8894a6;font-weight:700}.site-header .navbar-collapse .header-sidebar a:focus,.site-header .navbar-collapse .header-sidebar a:hover{color:#893eb4}.site-header .navbar-collapse.show{background-color:rgba(17,17,17,.3)}.site-header .navbar-collapse.show .header-sidebar{margin-left:0}.site-header .sticky-part{width:100%}.site-header .sticky-part .sticky-bar-extra{width:100%;z-index:999}.site-header.is-sticky .brand img{height:2.10938rem}.site-header.is-sticky .sticky-part{position:fixed;top:0}.site-header.is-sticky .navbar-collapse .header-sidebar{height:calc(100vh - 45px)}.site-header .navbar-menu-search-form{padding:0 45px}.site-header .navbar-menu-search-form form{margin-bottom:1.25rem;position:relative}.site-header .navbar-menu-search-form .search-field,.site-header .navbar-menu-search-form .search-submit{border:0;border-bottom:1px solid #8894a6;font-size:.875rem;line-height:1.125rem;padding:.6875rem 0 .625rem}.site-header .navbar-menu-search-form .search-field{padding-right:1.25rem;width:100%}.site-header .navbar-menu-search-form .search-submit{background-color:transparent;border-bottom-color:transparent;color:#893eb4;padding-left:.3125rem;padding-right:.3125rem;position:absolute;right:0;top:0}.site-header .search-collapse-toggler{background-color:transparent;border:0;color:#fff;font-size:1.125rem;margin-right:-10px;padding:0;text-align:center;width:1.25rem}.site-header .search-collapse-toggler:active,.site-header .search-collapse-toggler:focus,.site-header .search-collapse-toggler:hover{color:#fff}.site-header .search-collapse-toggler:not(.collapsed){color:#893eb4}.site-header .search-collapse-toggler:not(.collapsed) .fa-search:before{content:"\f107"}.site-header .search-collapse{background-color:#f4f4f4;text-align:center;width:100%}.site-header .search-collapse .search-collapse-inner{padding-bottom:1.4375rem;padding-top:1.25rem;text-align:left}.site-header .search-collapse .search-field,.site-header .search-collapse .search-submit{border:.0625rem solid #3eb489;font-size:1rem;line-height:1.125rem}.site-header .search-collapse .search-field{border-radius:1.375rem;margin-right:.9375rem;padding:.625rem 1.25rem;width:100%}.site-header .search-collapse .search-field:focus{outline:0}.site-header .search-collapse .search-submit{background-color:#3eb489;border-radius:50%;font-weight:700;padding:.75rem .875rem;width:2.75rem}.site-header .search-collapse .search-submit:focus{outline:0}.site-header .search-collapse .search-result-count{color:#283a3f;font-size:.875rem;line-height:1.0625rem;padding-left:1.25rem;padding-right:1.25rem}.site-header .search-collapse form{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:1rem}.admin-bar.site-header:not(.is-sticky) .header-sidebar{height:calc(100vh - 45px)}.sapo-bar .site-header:not(.is-sticky) .navbar-collapse .header-sidebar{height:calc(100vh - 105px)}.sapo-bar.tin-submenu .site-header:not(.is-sticky) .navbar-collapse .header-sidebar{height:calc(100vh - 140px)}.admin-bar.sapo-bar.tin-submenu .site-header .navbar-collapse .header-sidebar,.sapo-bar.tin-submenu .site-header.is-sticky .navbar-collapse .header-sidebar{height:calc(100vh - 68.75px)}.admin-bar.sapo-bar .site-header:not(.is-sticky) .navbar-collapse .header-sidebar{height:calc(100vh - 105px)}.admin-bar.sapo-bar.tin-submenu .site-header:not(.is-sticky) .navbar-collapse .header-sidebar{height:calc(100vh - 140px)}.headline-wrapper:not(.edit-mode).headline-full .dip-article-block:first-child{height:calc(100vh - 45px)}.headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2){height:calc((100vh - 45px)/2 - 3.5px)}.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:first-child{height:calc(100vh - 105px)}.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2){height:calc((100vh - 105px)/2 - 3.5px)}.admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:first-child{height:calc(100vh - 45px)}.admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2){height:calc((100vh - 45px)/2 - 3.5px)}.admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:first-child{height:calc(100vh - 105px)}.admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2){height:calc((100vh - 105px)/2 - 3.5px)}@media (min-width:601px){.admin-bar .site-header.is-sticky .sticky-part{top:0}}@media (min-width:768px){.site-header .brand img{height:4.0625rem}.site-header .navbar .navbar-collapse{height:100vh!important;position:fixed;top:0;left:0}.site-header .navbar .navbar-collapse .header-sidebar{padding-top:7.8125rem}.site-header.is-sticky .brand img{height:3.04688rem}.site-header.is-sticky .navbar .navbar-collapse .header-sidebar{padding-top:3.04688rem}.site-header .search-collapse .search-collapse-inner{margin:0 auto;max-width:48rem;padding-top:4.125rem}.site-header .search-collapse .search-field{margin-right:1.875rem}.site-header .search-collapse .search-submit{border-radius:1.375rem;padding-left:2.5rem;padding-right:2.5rem;width:auto}.site-header .search-collapse form{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:1.125rem}.admin-bar.sapo-bar.tin-submenu header.site-header .navbar .navbar-collapse div.header-sidebar,.admin-bar.sapo-bar header.site-header .navbar .navbar-collapse div.header-sidebar,.admin-bar header.site-header .navbar .navbar-collapse div.header-sidebar,.sapo-bar.tin-submenu header.site-header .navbar .navbar-collapse div.header-sidebar,.sapo-bar header.site-header .navbar .navbar-collapse div.header-sidebar,header.site-header .navbar .navbar-collapse div.header-sidebar{height:100%}.admin-bar .site-header .navbar-collapse{height:calc(100vh - 32px);top:0}.headline-wrapper:not(.edit-mode).headline-full .dip-article-block:first-child{height:calc(100vh - 65px)}.headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2){height:calc((100vh - 65px)/2 - 3.5px)}.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:first-child{height:calc(100vh - 125px)}.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2){height:calc((100vh - 125px)/2 - 3.5px)}.admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:first-child{height:calc(100vh - 65px)}.admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2){height:calc((100vh - 65px)/2 - 3.5px)}.admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:first-child{height:calc(100vh - 125px)}.admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2){height:calc((100vh - 125px)/2 - 3.5px)}.primary-menu-horizontal-bar{border-bottom:.0625rem solid #f4f4f4;border-top:.0625rem solid #f4f4f4;margin-top:.625rem}.primary-menu-horizontal-bar .menu-item a{font-size:1.125rem;font-weight:900}}@media (min-width:783px){.admin-bar .site-header.is-sticky .sticky-part,.admin-bar .site-header .navbar .navbar-collapse{top:32px}.headline-wrapper:not(.edit-mode).headline-full .dip-article-block:first-child{height:calc(100vh - 65px)}.headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2){height:calc((100vh - 65px)/2 - 3.5px)}.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:first-child{height:calc(100vh - 125px)}.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2){height:calc((100vh - 125px)/2 - 3.5px)}.admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:first-child{height:calc(100vh - 97px)}.admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2){height:calc((100vh - 97px)/2 - 3.5px)}.admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:first-child{height:calc(100vh - 157px)}.admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2){height:calc((100vh - 157px)/2 - 3.5px)}}@media (min-width:992px){.site-header .brand img{height:7.5rem}.site-header .navbar .navbar-collapse .header-sidebar{padding-top:11.25rem}.site-header.is-sticky .brand img{height:4.5rem}.site-header.is-sticky .navbar .navbar-collapse .header-sidebar{padding-top:4.5rem}.admin-bar.sapo-bar.tin-submenu header.site-header .navbar .navbar-collapse div.header-sidebar,.admin-bar.sapo-bar header.site-header .navbar .navbar-collapse div.header-sidebar,.admin-bar header.site-header .navbar .navbar-collapse div.header-sidebar{height:calc(100% - 32px)}.headline-wrapper:not(.edit-mode).headline-full .dip-article-block:first-child{height:calc(100vh - 120px)}.headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2){height:calc((100vh - 120px)/2 - 3.5px)}.headline-wrapper:not(.edit-mode).headline-full.blocks-2 .dip-article-block:nth-child(2){height:calc(100vh - 120px)}.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:first-child{height:calc(100vh - 180px)}.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2){height:calc((100vh - 180px)/2 - 3.5px)}.sapo-bar .headline-wrapper:not(.edit-mode).headline-full.blocks-2 .dip-article-block:nth-child(2){height:calc(100vh - 180px)}.admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:first-child{height:calc(100vh - 152px)}.admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2){height:calc((100vh - 152px)/2 - 3.5px)}.admin-bar .headline-wrapper:not(.edit-mode).headline-full.blocks-2 .dip-article-block:nth-child(2){height:calc(100vh - 152px)}.admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:first-child{height:calc(100vh - 212px)}.admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2){height:calc((100vh - 212px)/2 - 3.5px)}.admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full.blocks-2 .dip-article-block:nth-child(2){height:calc(100vh - 212px)}}@media only screen and (min-width:1840px){.site-header .navbar .header-sidebar{margin-left:calc(((100vw - 1320px)/2 + 60px)*-1);width:calc((100vw - 1320px)/2 + 60px)}}body:not(.wp-admin) .item-list .dip-article-block.is-style-two-columns{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}iframe{max-width:100%}.last-hour-highlight{padding-bottom:10px;padding-top:10px}.last-hour-highlight .last-hour-highlight-inner{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-transition:-webkit-filter .35s ease-in-out;transition:-webkit-filter .35s ease-in-out;-o-transition:filter .35s ease-in-out;transition:filter .35s ease-in-out;transition:filter .35s ease-in-out,-webkit-filter .35s ease-in-out}.last-hour-highlight i{color:#3eb489;margin-left:20px}.archive .page-header .entry-title,.single-tin_author .page-header .entry-title,.template-newsletters-subscription .page-header .entry-title{line-height:1.5rem;margin-bottom:1.25rem;font-size:1.125rem;font-weight:700;text-align:center;text-transform:uppercase}.archive .page-header .entry-title:after,.single-tin_author .page-header .entry-title:after,.template-newsletters-subscription .page-header .entry-title:after{border-bottom:4px solid;border-color:#3eb489;content:"";display:block;padding-top:.3125rem;width:4.125rem;margin:0 auto}.template-newsletters-subscription .newsletters-subscription-excerpt{font-size:22px}.template-newsletters-subscription .newsletters-subscription-content{font-size:14px}.single-tin_author .author-full-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:1.875rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center}.single-tin_author .author-full-info .author-photo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;pointer-events:none}.single-tin_author .author-full-info .author-photo img{background-image:-webkit-radial-gradient(transparent 40%,grey);background-image:-o-radial-gradient(transparent 40%,grey);background-image:radial-gradient(transparent 40%,grey);background-color:#fff;border:2px solid #cccfd2;border-radius:50%;height:126px;width:126px;-webkit-transition:border-width .3s,-webkit-transform .3s ease-out;transition:border-width .3s,-webkit-transform .3s ease-out;-o-transition:border-width .3s,-o-transform .3s ease-out;transition:border-width .3s,transform .3s ease-out;transition:border-width .3s,transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .3s ease-out}.single-tin_author .author-full-info .author-photo img:hover{border-width:3px;-webkit-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2)}.single-tin_author .author-full-info .branded-author-photo{max-width:170px}.single-tin_author .author-full-info .author-photo,.single-tin_author .author-full-info .branded-author-photo{margin-bottom:30px}.single-tin_author .author-full-info .author-meta{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%}.single-tin_author .author-full-info .name,.single-tin_author .author-full-info .profession{font-family:Open Sans;text-transform:uppercase}.single-tin_author .author-full-info .name{margin:0;font-weight:500;font-size:1.625rem}.single-tin_author .author-full-info .profession{color:#8894a6}.single-tin_author .author-full-info .content,.single-tin_author .author-full-info .email{margin:10px 0}.single-tin_author .author-full-info .email{font-style:italic}@media (min-width:768px){.single-tin_author .author-full-info{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;text-align:left}.single-tin_author .author-full-info .author-photo,.single-tin_author .author-full-info .branded-author-photo{margin-right:30px}}.item-list .dip-article-block{height:auto}.item-list .dip-article-block img{height:45vw}.article-top-content{margin-bottom:50px}@media (min-width:768px){.item-list .dip-article-block img{height:12.5rem}}.page-not-found{height:100vh;width:100vw}.sidebar-wrapper{height:100%;padding-bottom:1.875rem;position:relative}.sidebar-wrapper>:last-child{margin-bottom:0}.pub{margin:0 auto;position:relative}.pub [data-pub-rendered=yes]{padding-bottom:30px;position:relative}.pub [data-pub-rendered=yes]:after{bottom:8px;color:#8894a6;content:"PUB";font-size:9px;position:absolute;right:0;text-align:right;z-index:1}.pub [data-pub-formatid]{margin:0 auto;max-width:300px}.pub [data-pub-formatid] iframe{max-width:100%}.pub [data-pub-formatid=Billboard],.pub [data-pub-formatid=Richmedia]{max-width:970px}.pub [data-pub-formatid=InContent],.pub [data-pub-formatid=Leaderboard]{max-width:728px}.pub [data-pub-formatid=InContent]>:first-child,.pub [data-pub-formatid=Leaderboard]>:first-child{display:inline!important}.pub [data-pub-formatid=Floorad]{max-width:100%}.pub.auto-pub [data-pub-rendered=yes]{padding-bottom:30px}.is-block.show-all{max-width:100%;width:100%}.sticky-top{top:104px;z-index:499}body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-ssr>div{max-width:100%}@media screen and (max-width:782px){#wpadminbar{display:none}.admin-bar{margin-top:-46px}}article.type-post header{margin-bottom:3.125rem}article.type-post .article-authors{margin-bottom:1.875rem}article.type-post .article-authors img{border:3px solid #cccfd2;border-radius:50%;margin-right:1.25rem;height:5rem;width:5rem}article.type-post .article-authors span{color:#000;font-size:1.125rem;font-weight:700}article.type-post .article-authors .sponsor-name{font-weight:400}.article-content-box,.taboola-bellow-article,article.type-post .after-entry-content{margin-bottom:2.5rem}.article-content-box h3,.taboola-bellow-article h3{font-size:1.125rem;line-height:1.5rem;margin-bottom:1.25rem;text-transform:uppercase}.article-content-box h3:after,.taboola-bellow-article h3:after{border-bottom:4px solid;border-color:#3eb489;content:"";display:block;padding-top:.3125rem;width:4.125rem}.keywords .keyword-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.keywords a{background-color:#f4f4f4;border-radius:1.5625rem;color:#283a3f;font-weight:600;font-size:.875rem;margin:0 .625rem .625rem 0;opacity:1;padding:.25rem 1.5625rem;-webkit-transition:opacity .5s ease;-o-transition:opacity .5s ease;transition:opacity .5s ease}.keywords a:hover{opacity:.5}@media (min-width:601px){article.type-post .article-authors{margin-bottom:0}}@media (min-width:768px){body main .entry-content{font-size:.875rem}}.search .content{padding-top:1.875rem}@media (min-width:768px){.search .sidebar .sticky-top{top:240px}.search.admin-bar .sidebar .sticky-top{top:272px}}@media (max-width:991.98px){.content>.sidebar-block-ssr .sidebar-wrapper,.content>.sidebar-block-ssr .sticky-top,.content>aside .sidebar-wrapper,.content>aside .sticky-top,.sidebar-block-wrapper>.sidebar-block-ssr .sidebar-wrapper,.sidebar-block-wrapper>.sidebar-block-ssr .sticky-top,.sidebar-block-wrapper>aside .sidebar-wrapper,.sidebar-block-wrapper>aside .sticky-top{margin-bottom:0!important;position:relative!important;top:0!important;z-index:inherit!important}.content>.sidebar-block-ssr .sidebar-wrapper>.sapo-pub-widget:not(:first-child),.content>.sidebar-block-ssr .sidebar-wrapper>:not(.sapo-pub-widget),.content>.sidebar-block-ssr .sticky-top>.sapo-pub-widget:not(:first-child),.content>.sidebar-block-ssr .sticky-top>:not(.sapo-pub-widget),.content>aside .sidebar-wrapper>.sapo-pub-widget:not(:first-child),.content>aside .sidebar-wrapper>:not(.sapo-pub-widget),.content>aside .sticky-top>.sapo-pub-widget:not(:first-child),.content>aside .sticky-top>:not(.sapo-pub-widget),.sidebar-block-wrapper>.sidebar-block-ssr .sidebar-wrapper>.sapo-pub-widget:not(:first-child),.sidebar-block-wrapper>.sidebar-block-ssr .sidebar-wrapper>:not(.sapo-pub-widget),.sidebar-block-wrapper>.sidebar-block-ssr .sticky-top>.sapo-pub-widget:not(:first-child),.sidebar-block-wrapper>.sidebar-block-ssr .sticky-top>:not(.sapo-pub-widget),.sidebar-block-wrapper>aside .sidebar-wrapper>.sapo-pub-widget:not(:first-child),.sidebar-block-wrapper>aside .sidebar-wrapper>:not(.sapo-pub-widget),.sidebar-block-wrapper>aside .sticky-top>.sapo-pub-widget:not(:first-child),.sidebar-block-wrapper>aside .sticky-top>:not(.sapo-pub-widget){display:none}.content,.sidebar-block-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.content>.sidebar-block-free,.content>section,.sidebar-block-wrapper>.sidebar-block-free,.sidebar-block-wrapper>section{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.content>.sidebar-block-ssr,.content>aside,.sidebar-block-wrapper>.sidebar-block-ssr,.sidebar-block-wrapper>aside{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%}}body#tinymce{margin:12px!important}body.mce-content-body,html{height:inherit!important}.is-style-image-highlight a,.is-style-vertical-image a{color:#fff}.is-style-image-highlight a:active,.is-style-image-highlight a:focus,.is-style-image-highlight a:hover,.is-style-vertical-image a:active,.is-style-vertical-image a:focus,.is-style-vertical-image a:hover{color:hsla(0,0%,100%,.8)}.is-style-image-highlight-content-below a,.is-style-normal a,.is-style-simple a,.is-style-text-highlight a,.is-style-two-columns-full a,.is-style-two-columns a,.is-style-vertical-image-content-below a{color:#343a40}.is-style-image-highlight-content-below a:active,.is-style-image-highlight-content-below a:focus,.is-style-image-highlight-content-below a:hover,.is-style-normal a:active,.is-style-normal a:focus,.is-style-normal a:hover,.is-style-simple a:active,.is-style-simple a:focus,.is-style-simple a:hover,.is-style-text-highlight a:active,.is-style-text-highlight a:focus,.is-style-text-highlight a:hover,.is-style-two-columns-full a:active,.is-style-two-columns-full a:focus,.is-style-two-columns-full a:hover,.is-style-two-columns a:active,.is-style-two-columns a:focus,.is-style-two-columns a:hover,.is-style-vertical-image-content-below a:active,.is-style-vertical-image-content-below a:focus,.is-style-vertical-image-content-below a:hover{color:rgba(52,58,64,.8)}.dip-article-block{height:auto;margin-bottom:1.875rem}.dip-article-block.sponsored{background-clip:content-box;background-color:#f7f7f7}.dip-article-block .article-block-section{font-size:.875rem;font-weight:700}.dip-article-block .article-block-section a{color:#8894a6}.dip-article-block .article-block-section a:active,.dip-article-block .article-block-section a:focus,.dip-article-block .article-block-section a:hover{color:rgba(136,148,166,.8)}.dip-article-block h4{color:inherit;font-size:1rem;line-height:1.25rem;margin-bottom:.3125rem}.dip-article-block .article-block-excerpt{font-size:.75rem;line-height:1.0625rem;max-height:2.125rem}.dip-article-block .article-block-related{padding-left:0}.dip-article-block .article-block-related a{color:#283a3f;font-size:.75rem;font-weight:700;line-height:.875rem}.dip-article-block .article-block-related a:focus,.dip-article-block .article-block-related a:hover{color:#46656e}.dip-article-block .article-block-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.dip-article-block .article-block-content.article-block-content-shadow{background:-webkit-gradient(linear,left bottom,left top,from(#000),color-stop(72%,rgba(39,39,39,.35)),color-stop(85%,rgba(39,39,39,.15)),to(hsla(0,0%,100%,0)));background:-webkit-linear-gradient(bottom,#000,rgba(39,39,39,.35) 72%,rgba(39,39,39,.15) 85%,hsla(0,0%,100%,0));background:-o-linear-gradient(bottom,#000 0,rgba(39,39,39,.35) 72%,rgba(39,39,39,.15) 85%,hsla(0,0%,100%,0) 100%);background:linear-gradient(0deg,#000,rgba(39,39,39,.35) 72%,rgba(39,39,39,.15) 85%,hsla(0,0%,100%,0))}.dip-article-block.is-style-normal{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.dip-article-block.is-style-image-highlight{height:420px}.dip-article-block.is-style-image-highlight h4{font-size:1.375rem;line-height:1.625rem;text-transform:uppercase}.dip-article-block.is-style-image-highlight-content-below h4{font-size:1.375rem;line-height:1.625rem}.dip-article-block .article-block-title.has-background h4{line-height:43px;margin-bottom:0}.dip-article-block .article-block-media{overflow:hidden;position:relative}.dip-article-block.is-style-image-highlight .article-block-related a,.dip-article-block.is-style-vertical-image .article-block-related a{color:#fff}.dip-article-block.is-style-image-highlight .article-block-related a:active,.dip-article-block.is-style-image-highlight .article-block-related a:focus,.dip-article-block.is-style-image-highlight .article-block-related a:hover,.dip-article-block.is-style-vertical-image .article-block-related a:active,.dip-article-block.is-style-vertical-image .article-block-related a:focus,.dip-article-block.is-style-vertical-image .article-block-related a:hover{color:hsla(0,0%,100%,.8)}.dip-article-block.is-style-image-highlight .article-block-content,.dip-article-block.is-style-vertical-image .article-block-content{padding-right:3.125rem}.dip-article-block.is-style-image-highlight .article-block-section a,.dip-article-block.is-style-vertical-image .article-block-section a{color:#fff}.dip-article-block.is-style-image-highlight .article-block-section a:active,.dip-article-block.is-style-image-highlight .article-block-section a:focus,.dip-article-block.is-style-image-highlight .article-block-section a:hover,.dip-article-block.is-style-vertical-image .article-block-section a:active,.dip-article-block.is-style-vertical-image .article-block-section a:focus,.dip-article-block.is-style-vertical-image .article-block-section a:hover{color:hsla(0,0%,100%,.8)}.dip-article-block.is-style-image-highlight-content-below .article-block-excerpt,.dip-article-block.is-style-normal .article-block-excerpt,.dip-article-block.is-style-simple .article-block-excerpt,.dip-article-block.is-style-text-highlight .article-block-excerpt,.dip-article-block.is-style-two-columns-full .article-block-excerpt,.dip-article-block.is-style-two-columns .article-block-excerpt,.dip-article-block.is-style-vertical-image-content-below .article-block-excerpt{color:#8894a6}.dip-article-block.is-style-image-highlight-content-below .article-block-section,.dip-article-block.is-style-normal .article-block-section,.dip-article-block.is-style-simple .article-block-section,.dip-article-block.is-style-text-highlight .article-block-section,.dip-article-block.is-style-two-columns-full .article-block-section,.dip-article-block.is-style-two-columns .article-block-section,.dip-article-block.is-style-vertical-image-content-below .article-block-section{color:#893eb4}.dip-article-block.is-style-author-highlight .article-block-author span{font-style:italic;font-size:.75rem}.dip-article-block hr{border-top-color:#f4f4f4;border-top-width:1px;margin:0 auto;padding-bottom:.625rem;width:70%}.dip-article-block .article-block-status{background-color:#3eb489;color:#111;font-size:10px;height:24px;line-height:12px;text-transform:uppercase;z-index:1}.dip-article-block .article-block-status:before{content:"\f111";font-family:FontAwesome;font-size:10px;height:8px;line-height:12px;margin-right:10px;width:8px}.dip-article-block .article-block-partnership{-ms-flex-item-align:center;align-self:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin:auto 0;padding:.9375rem;text-align:center}.article-block-post-format{bottom:1.25rem;right:1.25rem}body.wp-admin .dip-article-block.is-style-normal .article-block-media{-ms-flex-preferred-size:12.5rem;flex-basis:12.5rem;-ms-flex-negative:0;flex-shrink:0}body:not(.wp-admin) .dip-article-block.is-style-text-highlight .article-block-media{position:relative;width:100%;padding-right:0;padding-left:0;-ms-flex-preferred-size:calc((100% - 15px)/3*2);flex-basis:calc((100% - 15px)/3*2)}body:not(.wp-admin) .dip-article-block.is-style-text-highlight .article-block-content{max-width:100%}@media (min-width:768px){.dip-article-block{height:420px}.dip-article-block.is-style-simple .article-block-content{padding:0}.dip-article-block.dip-article-block-fixed-height.is-style-image-highlight-content-below img,.dip-article-block.dip-article-block-fixed-height.is-style-two-columns-full{height:210px}}@media (min-width:992px){.dip-article-block.is-style-two-columns{height:210px}}.background-section-wrapper .section-title:not(.has-text-align-center):before{content:"";width:80px;display:block;border-top:4px solid #fff}.background-section-wrapper .section-title.has-text-align-right:before{margin-left:calc(100% - 80px)}.background-section-wrapper .section-title a{color:inherit}.background-section-wrapper .dip-article-block:not(.dip-article-block-bg) .article-block-content:not(.article-block-content-shadow){padding:15px 0}.wp-block-pullquote{border-width:1px;border-color:#cccfd2;padding:0}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:none;text-align:right}.wp-block-pullquote blockquote{font-size:1.25rem;font-style:italic;font-weight:700;margin:1em}.wp-block-pullquote blockquote p:before{content:"\f10d";display:inline-block;font-family:FontAwesome;font-size:1.5625rem;font-weight:400;margin-right:.3125rem;vertical-align:super}body:not(.wp-admin) .section-block-container .is-style-image-highlight .article-block-content,body:not(.wp-admin) .section-block-container .is-style-vertical-image .article-block-content,body:not(.wp-admin) .sidebar-block-wrapper .is-style-image-highlight .article-block-content,body:not(.wp-admin) .sidebar-block-wrapper .is-style-vertical-image .article-block-content{width:calc(100% - 30px)}.wp-block-image figcaption{color:#8894a6;font-style:italic;text-align:left}.wp-block-image figcaption:first-line{color:#111;font-style:normal;font-weight:700}body:not(.wp-admin) .branded-section-wrapper .branded-section-block-title a{text-decoration:none;border:none}.tin-call-to-action-block-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:1.25rem;padding:0 15px}.tin-call-to-action-block-wrapper:not(.alignfull){width:100%}.tin-call-to-action-block-wrapper .pre-title{font-size:.875rem;line-height:1.3125rem;margin-bottom:.625rem;text-transform:uppercase}.tin-call-to-action-block-wrapper .title{font-size:1.125rem;font-weight:800;text-transform:uppercase;letter-spacing:.0625rem}.tin-call-to-action-block-wrapper .image{position:relative;width:100%;padding-right:0;padding-left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-item-align:center;align-self:center}.tin-call-to-action-block-wrapper .image img{display:block;margin-left:auto;margin-right:auto;height:auto;width:auto}.tin-call-to-action-block-wrapper .tin-call-to-action-block{width:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .info{position:relative;width:100%;padding-right:0;padding-left:0}.tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .image img{height:auto;margin:0 auto;max-width:100%;width:auto}.tin-call-to-action-block-wrapper .tin-call-to-action-block.boxed{padding:0 1.875rem}.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .content-wrapper{position:relative;width:100%;padding-right:0;padding-left:0;min-height:auto;text-align:center}.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .title{font-family:Open Sans;font-size:1.75rem;font-weight:700;margin-bottom:.625rem}.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .description,.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .extra{font-family:Open Sans;font-size:1rem;margin-bottom:.5rem}.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .button-action{margin-bottom:1.25rem}.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .excerpt{color:#8894a6;font-size:.875rem}@media (min-width:768px){.tin-call-to-action-block-wrapper{padding:0}.tin-call-to-action-block-wrapper .tin-call-to-action-block{width:100%;max-width:992px}.tin-call-to-action-block-wrapper .tin-call-to-action-block .image img{max-height:380px}.tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .image{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}@media (min-width:1350px){.tin-call-to-action-block-wrapper .tin-call-to-action-block.boxed{padding:0 6.25rem}.tin-call-to-action-block-wrapper .tin-call-to-action-block.boxed .content-wrapper{padding-top:3.75rem;padding-bottom:3.75rem}}body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid .dip-block-container.grid-block-inner{margin:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid .dip-block-container.grid-block-inner .dip-article-block{-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%}@media (min-width:1350px){body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid .dip-block-container.grid-block-inner .dip-article-block{border-right:0}}.headline-wrapper .dip-article-block h4,.wp-admin .headline-wrapper [data-article-style] .dip-article-block h4{font-size:2.125rem;line-height:2.375rem}.headline-wrapper.blocks-3 .dip-article-block:nth-of-type(3) h4,.headline-wrapper .dip-article-block:nth-of-type(2) h4,.wp-admin .headline-wrapper.blocks-3 [data-article-style]:nth-of-type(3) .dip-article-block h4,.wp-admin .headline-wrapper [data-article-style]:nth-of-type(2) .dip-article-block h4{font-size:1.25rem;line-height:1.5rem}.headline-wrapper.blocks-3 .dip-article-block:nth-of-type(3) .article-block-title.has-background h4,.headline-wrapper .dip-article-block:nth-of-type(2) .article-block-title.has-background h4,.wp-admin .headline-wrapper.blocks-3 [data-article-style]:nth-of-type(3) .dip-article-block .article-block-title.has-background h4,.wp-admin .headline-wrapper [data-article-style]:nth-of-type(2) .dip-article-block .article-block-title.has-background h4{line-height:1.875rem}.headline-wrapper .dip-article-block:nth-of-type(3) h4,.headline-wrapper .dip-article-block:nth-of-type(4) h4,.wp-admin .headline-wrapper [data-article-style]:nth-of-type(3) .dip-article-block h4,.wp-admin .headline-wrapper [data-article-style]:nth-of-type(4) .dip-article-block h4{font-size:.875rem;line-height:1rem}.headline-wrapper .dip-article-block:nth-of-type(3) .article-block-title.has-background h4,.headline-wrapper .dip-article-block:nth-of-type(4) .article-block-title.has-background h4,.wp-admin .headline-wrapper [data-article-style]:nth-of-type(3) .dip-article-block .article-block-title.has-background h4,.wp-admin .headline-wrapper [data-article-style]:nth-of-type(4) .dip-article-block .article-block-title.has-background h4{line-height:1.3125rem}.headline-wrapper .dip-article-block .article-block-status{bottom:0;top:auto}.headline-wrapper .dip-article-block .article-block-section{font-size:1rem}.headline-wrapper.blocks-4 .dip-article-block:nth-of-type(3) .article-block-section,.headline-wrapper.blocks-4 .dip-article-block:nth-of-type(4) .article-block-section,.wp-admin .headline-wrapper.blocks-4 [data-article-style]:nth-of-type(3) .article-block-section,.wp-admin .headline-wrapper.blocks-4 [data-article-style]:nth-of-type(4) .article-block-section{font-size:.875rem}body.wp-admin .dip-article-block .article-block-title.has-background h4{line-height:43px}@media (min-width:992px){.headline-wrapper:not(.edit-mode).blocks-1 .dip-article-block{height:auto;max-height:600px}}div.tin-highlight-box p{font-weight:800;line-height:1.4;margin:0;padding:30px}@media (max-width:782.98px){div.tin-highlight-box{margin-left:0}div.tin-highlight-box p{height:auto!important;width:100%!important}}body:not(.wp-admin) .dip-block-container.grid-block-inner{height:auto}body:not(.wp-admin) .dip-block-container.grid-block-inner .dip-article-block{margin-bottom:0}@media (min-width:768px){body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;height:666px}body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block{-webkit-box-flex:1;-ms-flex:1 1 25%;flex:1 1 25%;width:50%;margin-bottom:0;max-width:50%}body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:not(:first-child){-ms-flex-preferred-size:20%;flex-basis:20%}body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:first-child{-ms-flex-preferred-size:80%;flex-basis:80%;margin-top:0}}@media (min-width:1350px){body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:510px}body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block{-webkit-box-flex:1;-ms-flex:1 1 30%;flex:1 1 30%;width:33%;max-width:33%}body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:not(:first-child){-ms-flex-preferred-size:calc(33% - 15px);flex-basis:calc(33% - 15px)}body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:nth-child(2),body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:nth-child(3),body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:nth-child(4){border-right:1px solid #8894a6}body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:first-child{-ms-flex-preferred-size:100%;flex-basis:100%}}body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block.is-style-two-columns{border-right:none}body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block.is-style-two-columns:before{content:none}body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block.is-style-two-columns .article-block-content{padding-right:0}body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block.is-style-two-columns .article-block-content h4{margin-bottom:0}@media (min-width:768px){body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner .dip-article-block.is-style-two-columns .article-block-media{margin-right:0;-ms-flex-preferred-size:calc(40% - 15px);flex-basis:calc(40% - 15px)}}@media (min-width:1350px){body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner .dip-article-block.is-style-two-columns:not(:first-child){-ms-flex-preferred-size:33.3%;flex-basis:33.3%;max-height:33.3%}body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner .dip-article-block.is-style-two-columns .article-block-media{margin-right:0;-ms-flex-preferred-size:calc(50% - 15px);flex-basis:calc(50% - 15px)}}.multimedia-block-wrapper{background-color:#3eb489;background-image:-webkit-linear-gradient(60deg,#111 35%,#3eb489);background-image:-o-linear-gradient(60deg,#111 35%,#3eb489);background-image:linear-gradient(30deg,#111 35%,#3eb489);color:#fff}.multimedia-block-wrapper h2{color:#fff;font-size:1.875rem;line-height:2.5625rem}.multimedia-block-wrapper .dip-article-block{height:auto}.multimedia-block-wrapper .dip-article-block h4{color:inherit;font-size:.875rem;line-height:1rem;margin-bottom:0}.multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-post-format{border-radius:2rem;height:4rem;left:50%;margin-left:-2rem;margin-top:-2rem;top:50%;width:4rem}.multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-post-format:before{font-size:1.5625rem;line-height:4rem}.multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-section{margin-bottom:1.25rem}.multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-section a{color:#fff}.multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-section a:active,.multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-section a:focus,.multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-section a:hover{color:hsla(0,0%,100%,.8)}.multimedia-block-wrapper .dip-article-block.is-style-text-highlight h4{font-size:1.375rem;line-height:1.875rem;margin-bottom:5px}.multimedia-block-wrapper .dip-article-block a{color:#fff}.multimedia-block-wrapper .dip-article-block a:active,.multimedia-block-wrapper .dip-article-block a:focus,.multimedia-block-wrapper .dip-article-block a:hover{color:hsla(0,0%,100%,.8)}.multimedia-block-wrapper .dip-article-block .article-block-excerpt{color:#fff}body:not(.wp-admin) .multimedia-block-wrapper{padding:1.25rem .9375rem 3.125rem}body:not(.wp-admin) .multimedia-block-wrapper .multimedia-block-inner .dip-article-block.is-style-text-highlight{margin-bottom:1.875rem;padding-bottom:1.875rem}body:not(.wp-admin) .multimedia-block-wrapper .multimedia-block-inner .dip-article-block.is-style-text-highlight:after{color:#fff}body:not(.wp-admin) .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight .article-block-content{width:calc(100% - 30px)}@media (max-width:782.98px){body:not(.wp-admin) :not(.sidebar-block-free-inner)>.multimedia-block-wrapper{left:50%;margin-left:-50vw;margin-right:-50vw;padding:15px;position:relative;right:50%;width:100vw}}@media (min-width:768px){.multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-media{-ms-flex-preferred-size:calc(66.7% - 15px);flex-basis:calc(66.7% - 15px);margin-left:.9375rem;margin-right:0;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-content{-ms-flex-preferred-size:calc(33.3% - 15px);flex-basis:calc(33.3% - 15px);margin-left:0;margin-right:.9375rem;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.multimedia-block-wrapper .dip-article-block.is-style-image-highlight .article-block-content{padding-bottom:10px}}.newsletter-block,.newsletter-block.newsletter-block-small{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:30px;padding:20px;text-transform:uppercase;min-height:220px;background-color:#f4f4f4;-ms-flex-line-pack:start;align-content:flex-start}.newsletter-block.newsletter-block-small h2,.newsletter-block h2{-ms-flex-preferred-size:100%;flex-basis:100%}.newsletter-block.newsletter-block-small form,.newsletter-block form{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.newsletter-block.newsletter-block-small form .help-anchor,.newsletter-block form .help-anchor{font-size:2rem;line-height:2rem;margin:auto 10px auto 0;width:30px}.newsletter-block.newsletter-block-small form .info,.newsletter-block form .info{width:100%;font-size:.75rem;font-weight:400;margin:auto 0;-ms-flex-item-align:center;align-self:center}.newsletter-block.newsletter-block-small form .help-anchor~.info,.newsletter-block form .help-anchor~.info{width:calc(100% - 40px)}.newsletter-block.newsletter-block-small form .input-field,.newsletter-block form .input-field{-ms-flex-preferred-size:100%;flex-basis:100%;margin:15px 0}.newsletter-block.newsletter-block-small form input,.newsletter-block form input{text-transform:uppercase;border-radius:22.5rem}.newsletter-block.newsletter-block-small form button[type=submit],.newsletter-block form button[type=submit]{white-space:nowrap;-ms-flex-preferred-size:100%;flex-basis:100%;font-family:inherit}.newsletter-block.newsletter-block-small form button[type=submit]>.spinner,.newsletter-block form button[type=submit]>.spinner{display:none}.newsletter-block.newsletter-block-small form button[type=submit].loading>.spinner,.newsletter-block form button[type=submit].loading>.spinner{display:inline-block;vertical-align:middle;border-width:.15em}.newsletter-block.newsletter-block-small form .invalid-feedback,.newsletter-block form .invalid-feedback{padding-left:.85rem}.newsletter-block.newsletter-block-small form .valid-feedback,.newsletter-block form .valid-feedback{display:none;font-size:.85rem}.newsletter-block.newsletter-block-small form.showSuccess .input-field,.newsletter-block.newsletter-block-small form.showSuccess button[type=submit],.newsletter-block form.showSuccess .input-field,.newsletter-block form.showSuccess button[type=submit]{display:none}.newsletter-block.newsletter-block-small form.showSuccess .valid-feedback,.newsletter-block form.showSuccess .valid-feedback{display:block}@media (min-width:768px){.newsletter-block:not(.newsletter-block-small){-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-line-pack:center;align-content:center}.newsletter-block:not(.newsletter-block-small) h2{text-align:center}.newsletter-block:not(.newsletter-block-small) form{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.newsletter-block:not(.newsletter-block-small) form .info{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;-ms-flex-preferred-size:100%;flex-basis:100%;text-align:center;margin:0 0 20px}.newsletter-block:not(.newsletter-block-small) form .help-anchor{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;-ms-flex-preferred-size:0;flex-basis:0;text-align:center}.newsletter-block:not(.newsletter-block-small) form .input-field{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;-ms-flex-preferred-size:40%;flex-basis:40%;margin:0 30px}.newsletter-block:not(.newsletter-block-small) form button[type=submit]{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4;-ms-flex-preferred-size:20%;flex-basis:20%}.newsletter-block:not(.newsletter-block-small) form .valid-feedback{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5;-ms-flex-preferred-size:100%;flex-basis:100%;text-align:center}.newsletter-block:not(.newsletter-block-small) form .invalid-feedback{position:absolute}.newsletter-block:not(.newsletter-block-small) form.showSuccess .help-anchor{display:none}}body.wp-admin .dip-block-container.section-block-container .editor-block-list__layout [data-type="tin-publishing-sites/newsletter-segment"],body.wp-admin .editor-block-list__layout [data-type="tin-publishing-sites/newsletter-segment"]{-ms-flex-preferred-size:25%;flex-basis:25%}body.wp-admin .dip-block-container.sidebar-block-wrapper .dip-block-container.section-block-container .editor-block-list__layout [data-type="tin-publishing-sites/newsletter-segment"],body.wp-admin .dip-block-container.sidebar-block-wrapper .editor-block-list__layout [data-type="tin-publishing-sites/newsletter-segment"]{-ms-flex-preferred-size:33.33333%;flex-basis:33.33333%}.partnership-text{color:#8894a6;font-size:.625rem;line-height:.625rem;margin:0 0 .625rem;text-transform:uppercase}.partnership-logo img{height:2.1875rem;width:auto}.partnership-block{background:#f7f7f7;margin-bottom:1.5625rem}.partnership-block-wrapper{margin:0 -1.5625rem}.partnership-block-wrapper .partnership-block-title{width:100%}.partnership-block-wrapper .partnership-block-title .partnership-text{vertical-align:bottom}.partnership-block-wrapper .partnership-block-title .right-side{text-align:center}.partnership-block-wrapper .partnership-block-inner.section-block-container{margin-bottom:0}body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;height:auto}body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block{-ms-flex-preferred-size:100%;flex-basis:100%;margin-bottom:0}@media (min-width:768px){body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-two-columns,body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-two-columns-full{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-preferred-size:50%;flex-basis:50%}body:not(.wp-admin) .partnership-block-wrapper .partnership-block-title .partnership-text{margin:0 0 .625rem}}@media (min-width:992px){body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block{-ms-flex-preferred-size:100%;flex-basis:100%}body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-two-columns,body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-two-columns-full{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-image-highlight{-ms-flex-preferred-size:100%;flex-basis:100%}body:not(.wp-admin) .partnership-block-wrapper .partnership-block-title .partnership-text{margin:0 0 .625rem}}@media (min-width:1350px){body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:450px}body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-two-columns,body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-two-columns-full{-ms-flex-preferred-size:50%;flex-basis:50%}}body .tin-related-articles-block{margin-left:auto;max-width:620px;width:100%}body .tin-related-articles-block h4{font-weight:800}body .tin-related-articles-block ul{padding-left:0}body .tin-related-articles-block li{border-top:1px solid #cccfd2;list-style-position:inside;margin-left:0;padding:.625rem 0}body .tin-related-articles-block li a{color:#000;font-weight:800;text-transform:uppercase;font-size:.875rem}@media (min-width:992px){body .tin-related-articles-block{max-width:80%}}body:not(.wp-admin) .section-block-container>h2 a{color:#283a3f}body:not(.wp-admin) .section-block-container>h2 a:active,body:not(.wp-admin) .section-block-container>h2 a:focus,body:not(.wp-admin) .section-block-container>h2 a:hover{color:rgba(40,58,63,.8)}body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-ssr>div{-ms-flex-preferred-size:100%;flex-basis:100%}body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free .sidebar-block-free-inner{-ms-flex-line-pack:start;align-content:flex-start;-ms-flex-preferred-size:calc(100% + 30px);flex-basis:calc(100% + 30px)}body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free .sidebar-block-free-inner>div{-ms-flex-preferred-size:100%;flex-basis:100%}body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-two-columns{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}@media (min-width:783px){body:not(.wp-admin) .sidebar-block-wrapper .multimedia-block-wrapper{margin-left:.9375rem;margin-right:.9375rem}}body:not(.wp-admin) .sidebar-block-wrapper .partnership-block-wrapper{margin:0;padding:0}body:not(.wp-admin) .sidebar-block-wrapper .partnership-block-wrapper .partnership-block-title{padding:.9375rem .9375rem 0}body:not(.wp-admin) .sidebar-block-wrapper .partnership-block-wrapper .partnership-block-inner.section-block-container div.dip-article-block.is-style-image-highlight{-ms-flex-preferred-size:100%;flex-basis:100%}@media (max-width:1349.98px){.tin-social-share-block .social-share-block-title{-ms-flex-preferred-size:25%;flex-basis:25%;font-size:25px}.tin-social-share-block .social-share-block-networks{-ms-flex-preferred-size:50%;flex-basis:50%}.tin-social-share-block .social-share-block-logo{-ms-flex-preferred-size:20%;flex-basis:20%;margin-left:auto}}@media (max-width:782.98px){.tin-social-share-block .social-share-block-title{-ms-flex-preferred-size:calc(100% - 100px);flex-basis:calc(100% - 100px);font-size:21px}.tin-social-share-block .social-share-block-networks{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;padding-top:1.5625rem}.tin-social-share-block .social-share-block-logo{-ms-flex-preferred-size:100px;flex-basis:100px;margin-left:auto}}.tin-widget-articles.tin-highlights-widget{padding:.9375rem .4375rem 1.25rem}.tin-widget-articles.tin-highlights-widget .tin-widget-articles-item{margin-bottom:1.25rem}.tin-widget-articles.tin-highlights-widget .tin-widget-articles-item:not(:last-child){border-bottom:1px solid #f4f4f4}.tin-widget-articles.tin-highlights-widget .tin-widget-articles-item .tin-widget-articles-item-img{padding:0}.tin-widget-articles.tin-highlights-widget .tin-widget-articles-item .tin-widget-articles-item-title{padding:.9375rem 1.25rem}.tin-widget-articles.tin-highlights-widget .tin-widget-articles-item .tin-widget-articles-item-title h4{font-size:1.125rem;line-height:1.25rem}.tin-publications-widget .tin-widget-publication a{color:#111}.tin-publications-widget .tin-widget-publication a:active,.tin-publications-widget .tin-widget-publication a:focus,.tin-publications-widget .tin-widget-publication a:hover{color:rgba(17,17,17,.8)}.tin-publications-widget .tin-widget-publication:not(:last-child){margin-bottom:1.25rem}.tin-publications-widget .tin-widget-publication .info{padding:2.1875rem}.tin-publications-widget .tin-widget-publication .title,.tin-publications-widget .tin-widget-publication h4{font-size:1.125rem;font-weight:800;letter-spacing:.0625rem;line-height:1.2;text-align:center;text-transform:uppercase}.sidebar{width:300px}.tin-widget-articles.tin-tops-widget .tin-widget-articles-item{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.tin-widget-articles.tin-tops-widget .tin-widget-articles-item .tin-widget-articles-item-img{-webkit-box-flex:0;-ms-flex:0 0 45%;flex:0 0 45%;padding-bottom:0;padding-right:.3125rem}.tin-widget-articles.tin-tops-widget .tin-widget-articles-item .tin-widget-articles-item-title{-ms-flex-item-align:center;align-self:center;-webkit-box-flex:0;-ms-flex:0 0 55%;flex:0 0 55%;padding-left:.3125rem;padding-top:0}.tin-widget-articles.tin-tops-widget .tin-widget-articles-item h4{margin:0}.tin-widget-articles .tin-widget-articles-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:1.25rem}.tin-widget-articles .tin-widget-articles-item>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.tin-widget-articles .tin-widget-articles-item>* img{-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;font-family:"object-fit: cover; object-position: center";display:block;height:5.29375rem;width:100%}.tin-widget-articles .tin-widget-articles-item:last-of-type{margin-bottom:0}.tin-widget-articles .tin-widget-articles-item-img{padding-bottom:.3125rem}.tin-widget-articles .tin-widget-articles-item-title{padding-top:.3125rem}.tin-widget-articles a{color:#283a3f}.tin-widget-articles a:active,.tin-widget-articles a:focus,.tin-widget-articles a:hover{color:rgba(40,58,63,.8)}.tin-widget-articles .article-block-post-format{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fff;bottom:10px;color:#111;display:-webkit-box;display:-ms-flexbox;display:flex;height:30px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;right:10px;text-align:center;text-decoration:none;width:30px;z-index:1}@media (min-width:992px){.tin-widget-articles .tin-widget-articles-item>* img{height:auto}}.widget{margin-bottom:50px}.widget ul li{font-size:.875rem;font-weight:800;line-height:1rem;margin-bottom:1.875rem!important}.widget ul li a{color:#283a3f}.widget ul li a:active,.widget ul li a:focus,.widget ul li a:hover{color:rgba(40,58,63,.8)}.widget ul li:last-of-type{margin-bottom:0!important}.widget h3{font-size:1.125rem;line-height:1.5rem;margin-bottom:1.25rem;text-transform:uppercase}.widget h3:after{border-bottom:4px solid;border-color:#3eb489;content:"";display:block;padding-top:.3125rem;width:4.125rem}.widget h4{color:inherit;font-size:.875rem;line-height:1rem}.widget.widget_custom_html,.widget h4{margin-bottom:0}.widget.widget_custom_html .pub [data-pub]>:first-child{display:inline-block!important;margin-bottom:20px}.widget.widget_custom_html .pub [data-pub]>:first-child:after{bottom:58px}.wp-admin .widget{margin-bottom:50px}
