/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

.advanced-filters .advanced-filter-row {
  position: relative;
  font-family: inherit;
  width: 100%;
  background: #F7F7F7;
  border-radius: 4px;
  color: #999999;
  line-height: 18px;
  font-size: 14px;
  padding: 4px 15px;
  box-sizing: border-box;
  margin-bottom: 10px;
  min-height: 40px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper {
  position: relative;
  margin-right: 5px;
  margin-left: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  top: 20px;
  height: 35px;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper.filter-operator {
  width: 82px;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper.filter-type {
  width: 160px;
  margin-right: 5px;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper .filter-select {
  cursor: pointer;
  width: 100%;
  transform: translateY(-17px);
  position: absolute;
  padding: 7px 21px;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  outline: none;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper .filter-select.alter:not(.open) {
  border: 1px solid #001E73;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper .filter-select.alter:not(.open) .filter-select--option.selected .option-label {
  color: #001E73;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper .filter-select.alter:not(.open) .filter-select--option.selected .caret-icon svg {
  stroke: #001E73;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper .filter-select.open {
  z-index: 1;
  transform: translateY(-28px);
}
.advanced-filters .advanced-filter-row .filter-select--wrapper .filter-select.open .filter-select--option .option-label {
  transition: 0.4s;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper .filter-select.open .filter-select--option:not(.selected):hover .option-label {
  margin-left: 10px;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper .filter-select.open .filter-select--option:not(.selected):hover .option-label:after {
  width: 100%;
  opacity: 1;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper .filter-select .filter-select--option {
  display: none;
  white-space: nowrap;
  color: black;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper .filter-select .filter-select--option .option-label {
  display: inline-block;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper .filter-select .filter-select--option .option-label:after {
  display: block;
  width: 0%;
  opacity: 0;
  border-bottom: 1px solid black;
  content: ' ';
  margin: auto;
  transition: 0.4s;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper .filter-select .filter-select--option .caret-icon {
  float: right;
  display: none;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper .filter-select .filter-select--option .caret-icon svg {
  stroke: #999999;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper .filter-select .filter-select--option.selected {
  color: #999999;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper .filter-select .filter-select--option.selected .caret-icon {
  display: inline;
}
.advanced-filters .advanced-filter-row .filter-select--wrapper .filter-select.open .filter-select--option,
.advanced-filters .advanced-filter-row .filter-select--wrapper .filter-select .filter-select--option.selected {
  display: block;
}
.advanced-filters .advanced-filter-row .search-btn,
.advanced-filters .advanced-filter-row .remove-btn {
  cursor: pointer;
  display: flex;
  position: absolute;
  right: 20px;
  top: 20px;
}
.advanced-filters .advanced-filter-row .search-btn.disabled,
.advanced-filters .advanced-filter-row .remove-btn.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown,
.advanced-filters .advanced-filter-row .filter-input-text {
  flex: 1;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  background: transparent;
  border: none;
  outline: none;
  margin-left: 5px;
  color: initial;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown::placeholder,
.advanced-filters .advanced-filter-row .filter-input-text::placeholder {
  color: #999999;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown.open .dropdown-options--wrapper {
  display: block;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-value {
  display: inline-block;
  padding: 5px 10px;
  background: #002B7F;
  border-radius: 4px;
  color: #FFFFFF;
  margin-left: 10px;
  margin-right: 10px;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-value .remove-icon {
  cursor: pointer;
  margin-left: 15px;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-value .remove-icon svg {
  stroke: #FFFFFF;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-handle {
  line-height: 28px;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  color: #999999;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-handle .blue-stroke {
  margin-left: 10px;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-options--wrapper {
  position: absolute;
  top: 32px;
  left: 22px;
  display: none;
  min-width: 200px;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-options--wrapper:after,
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-options--wrapper:before {
  content: ' ';
  position: absolute;
  display: inline-block;
  top: 0px;
  width: 20px;
  height: 10px;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-options--wrapper:before {
  left: -20px;
  border-top-right-radius: 10px;
  box-shadow: 10px 0px 0 #F7F7F7;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-options--wrapper:after {
  right: -20px;
  border-top-left-radius: 10px;
  box-shadow: -10px 0px 0 #F7F7F7;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-options {
  max-height: 200px;
  position: relative;
  z-index: 1;
  background: #F7F7F7;
  box-shadow: 0px 2px 2px rgba(0, 30, 115, 0.16);
  border-radius: 0px;
  padding: 0px;
  list-style: none;
  padding: 10px;
  box-sizing: border-box;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #2F2F2F;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-options ul {
  position: relative;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-options .empty {
  color: #999999;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-options .option-item {
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-left: 20px;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-options .option-item:before,
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-options .option-item:after {
  content: '';
  display: inline-block;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  vertical-align: text-bottom;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-options .option-item:before {
  margin-right: 5px;
  border: 1px solid #001E73;
  background: #FFFFFF;
  position: absolute;
  left: 0px;
}
.advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-options .option-item.active:after {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 8px;
  height: 8px;
  background: #001E73;
}
.advanced-filters .advanced-filter-row.add-filter {
  background: #eaeaea;
  cursor: pointer;
}
.advanced-filters .advanced-filter-row.add-filter .input-placeholder {
  margin-left: 5px;
}
.advanced-filters .search-btn {
  cursor: pointer;
}
.advanced-filters .search-btn svg {
  vertical-align: text-top;
}
.advanced-filters .btn {
  background: #001E73;
  border-radius: 5px;
  padding: 7px 19px;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 18px;
  box-shadow: none;
  border: none;
  outline: none;
  margin: -33px 5px 0px 0px;
  float: right;
}
.advanced-filters .btn:hover {
  background: #001E73;
  color: #FFFFFF;
}
.advanced-filters .advanced-form-control {
  align-items: center;
  justify-content: space-between;
}
.advanced-filters .advanced-form-control .enable-advanced-search {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  color: #999999;
}
.advanced-filters .advanced-form-control .enable-advanced-search input[type=checkbox] {
  display: none;
}
.advanced-filters .advanced-form-control .enable-advanced-search label {
  position: relative;
}
.advanced-filters .advanced-form-control .enable-advanced-search label:before {
  content: ' ';
  border: 1px solid #001E73;
  border-radius: 4px;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  display: inline-block;
  margin-bottom: -2px;
  margin-right: 7px;
}
.advanced-filters .advanced-form-control .enable-advanced-search input:checked + label:after {
  left: 3px;
  top: -2px;
  position: absolute;
}
.advanced-filters .blue-stroke svg {
  stroke: #001E73;
}
@media (min-width: 768px) {
  .advanced-filters .advanced-filter-row {
    flex-direction: row;
    align-items: center;
  }
  .advanced-filters .advanced-filter-row .search-btn,
  .advanced-filters .advanced-filter-row .remove-btn {
    position: static;
  }
  .advanced-filters .advanced-filter-row .filter-select--wrapper {
    margin-top: 0px;
    margin-bottom: 0px;
    height: 0px;
    top: 0px;
  }
  .advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-handle {
    line-height: 18px;
  }
  .advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-options--wrapper {
    top: 40px;
    left: 24px;
  }
  .unstyled-button {
    border: none;
    background: none;
  }
}
@media screen and (max-width: 768px) {
  .advanced-filters .advanced-filter-row .search-btn {
    top: 10px;
  }
  .unstyled-button {
    border: none;
    background: none;
  }
}
.hdn {
  visibility: hidden;
}
.info-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0px 4px;
  vertical-align: top;
}
.data-quality-tooltip .info-tooltip {
  width: 160px !important;
  left: -99px !important;
}


/*
*   MA5 jquery mobile menu
*   v 1.0
*   Copyright (c) 2015 Tomasz Kalinowski
*   http://mobile-menu.ma5.pl
*   GitHub: https://github.com/ma-5/ma5-mobile-menu
*/
@-webkit-keyframes ma5-panelIn { 0% { -webkit-transform: translate3d(280px, 0, 0); transform: translate3d(280px, 0, 0); }
  100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } }

@-moz-keyframes ma5-panelIn { 0% { -webkit-transform: translate3d(280px, 0, 0); transform: translate3d(280px, 0, 0); }
  100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } }

@-ms-keyframes ma5-panelIn { 0% { -webkit-transform: translate3d(280px, 0, 0); transform: translate3d(280px, 0, 0); }
  100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } }

@keyframes ma5-panelIn { 0% { -webkit-transform: translate3d(280px, 0, 0); transform: translate3d(280px, 0, 0); }
  100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } }

@-webkit-keyframes ma5-panelOut { 0% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  100% { -webkit-transform: translate3d(280px, 0, 0); transform: translate3d(280px, 0, 0); } }

@-moz-keyframes ma5-panelOut { 0% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  100% { -webkit-transform: translate3d(280px, 0, 0); transform: translate3d(280px, 0, 0); } }

@-ms-keyframes ma5-panelOut { 0% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  100% { -webkit-transform: translate3d(280px, 0, 0); transform: translate3d(280px, 0, 0); } }

@keyframes ma5-panelOut { 0% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  100% { -webkit-transform: translate3d(280px, 0, 0); transform: translate3d(280px, 0, 0); } }

.ma5-menu-mobile { display: none; }
.menu-mobi-toggle { cursor: pointer; }
.ma5-mobile-menu-container { -webkit-transform: translate3d(280px, 0, 0); transform: translate3d(280px, 0, 0); -webkit-transition: -webkit-transform 0.3s ease-out 0s; transition: transform 0.3s ease-out 0s; position: fixed; background-color: #fefefe; width: 280px; height: 100%; top: 0; right: 0; z-index: 200; }
.ma5-page { -webkit-transition: -webkit-transform 0.3s ease-out 0s; transition: transform 0.3s ease-out 0s; }
.ma5-menu-active { overflow: hidden; }
.ma5-menu-active body { overflow: hidden; }
.ma5-menu-active .ma5-mobile-menu-container { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); -webkit-transition: -webkit-transform 0.3s ease-in 0s; transition: transform 0.3s ease-in 0s; }
.ma5-menu-active .ma5-page { -webkit-transform: translate3d(-280px, 0, 0); transform: translate3d(-280px, 0, 0); -webkit-transition: -webkit-transform 0.3s ease-in 0s; transition: transform 0.3s ease-in 0s; }
.ma5-menu-panel { width: 280px; height: 100%; position: absolute; overflow: hidden; overflow-y: auto; top: 0; right: 0; margin: 0; padding: 0; list-style-type: none; z-index: 100; background-color: #fefefe; -webkit-box-shadow: -8px 0 8px rgba(0, 0, 0, 0.05) inset; box-shadow: -8px 0 8px rgba(0, 0, 0, 0.05) inset; }
.ma5-menu-panel:after { content: ""; display: block; position: absolute; width: 1px; height: 100%; right: 0; top: 0; background-color: rgba(166, 202, 237, 0.2); }
.ma5-menu-panel li { position: relative; padding-right: 50px; font-size: 0; }
.ma5-menu-panel li:after { content: ""; display: block; position: absolute; width: 100%; height: 1px; right: 0; bottom: 0; background-color: rgba(166, 202, 237, 0.2); }
.ma5-menu-panel a { display: inline-block; padding: 15px; text-decoration: none !important; color: black; width: 100%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: 16px; outline: none !important; }
.ma5-menu-panel .ma5-btn-enter, .ma5-menu-panel .ma5-btn-leave { font-size: 16px; cursor: pointer; display: inline-block; position: absolute; padding: 15px 15px 14px 15px; width: 50px; height: 49px; overflow: hidden; right: 0; top: 0; text-align: center; background-color: #a6caed; color: white; }
.ma5-menu-panel .ma5-btn-enter .glyphicon, .ma5-menu-panel .ma5-btn-leave .glyphicon { top: 2px; }
.ma5-menu-panel .ma5-btn-enter { z-index: 0; left: auto; right: 0; }
.ma5-menu-panel .ma5-leave-bar { font-size: 16px; cursor: pointer; display: block; position: relative; padding: 15px 20px 15px 60px; margin-right: -50px; text-align: center; color: #668aad; text-transform: uppercase; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.ma5-menu-panel .ma5-leave-bar:after { content: ""; display: block; position: absolute; width: 100%; height: 1px; right: 0; bottom: 0; background-color: rgba(166, 202, 237, 0.2); }
.ma5-menu-panel:first-of-type { z-index: 160; }
.ma5-menu-panel.ma5-active-ul { z-index: 170; }
.ma5-menu-panel .ma5-active-li a, .ma5-menu-panel .ma5-path-to-active { color: #668aad; }
.ma5-menu-panel.ma5-parent-leave, .ma5-menu-panel.ma5-parent-enter { z-index: 180; }
.ma5-menu-panel.ma5-active-leave, .ma5-menu-panel.ma5-active-enter { z-index: 190; }
.ma5-menu-panel.ma5-active-enter { -webkit-animation-timing-function: ease-out; -webkit-animation-duration: 0.4s; -webkit-animation-delay: 0; -webkit-animation-fill-mode: both; -webkit-animation-name: ma5-panelIn; animation-timing-function: ease-out; animation-duration: 0.4s; animation-delay: 0; animation-fill-mode: both; animation-name: ma5-panelIn; }
.ma5-menu-panel.ma5-active-leave { -webkit-animation-timing-function: ease-out; -webkit-animation-duration: 0.4s; -webkit-animation-delay: 0; -webkit-animation-fill-mode: both; -webkit-animation-name: ma5-panelOut; animation-timing-function: ease-out; animation-duration: 0.4s; animation-delay: 0; animation-fill-mode: both; animation-name: ma5-panelOut; }

/* Syntax highlighting for JSON objects */
.json-body {
  margin: 10px 20px;
}

ul.json-dict, ol.json-array {
  font-family: 'Calibri';
  font-size: 14px;
  line-height: 18px;
  list-style-type: none;
  border-left: 1px solid #bcdfe5;
  padding-left: 15px;
  margin-left: 3px;
}
ul.json-dict li, ol.json-array li {
  position: relative;
}

ul.json-dict li:after, ol.json-array li:after {
  content: '';
  display: block;
  position: absolute;
  top: 9px;
  left: -15px;
  height: 1px;
  width: 12px;
  border-bottom: 1px solid #bcdfe5;
  border-left: 1px solid #bcdfe5;
}
.json-string {
  color: #036295;
  font-weight: bold;
}
.json-literal {
  color: #036295;
  font-weight: bold;
}

/* Toggle button */
a.json-toggle {
  position: relative;
  color: inherit;
  text-decoration: none;
}
a.json-toggle:focus {
  outline: none;
}
a.json-toggle:before {
  content: '-';
  color: #2a2c2d;
  position: absolute;
  display: inline-block;
  font-size: 18px;
  left: -28px;
}
a.json-toggle.collapsed:before {
  content: '+';
  left: -30px;
}
a.json-toggle:hover:after {
  content: 'Collapse';
  color: #fff;
  background: #2a2c2d;
  position: absolute;
  display: inline-block;
  font-size: 12px;
  left: -48px;
  top: -20px;
  padding: 0 4px;
  border-radius: 2px;
}
a.json-toggle.collapsed:hover:after {
  content: 'Expand';
  left: -46px;
}

/* Collapsable placeholder links */
a.json-placeholder {
  font-size: 12px;
  color: #727474;
  padding: 0 2px;
  text-decoration: none;
}
a.json-placeholder:hover {
  text-decoration: underline;
}

@media(max-width: 768px) {
  ul.json-dict li, ol.json-array li {
    word-break: break-word;
    line-height: 15px;
    margin: 6px 0;
  }
}

:root{--bs-body-font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;--spc-color-account-masthead: var(--bs-light);--spc-color-header-link: var(--bs-light);--spc-bg-account-masthead: #0072af;--spc-color-header-link: var(--bs-light);--spc-color-header-link: var(--bs-light);--spc-color-header-link: var(--bs-light)}.wrapper{background:rgba(0,0,0,0);box-shadow:none;border:none}.wrapper.wrapper--dataset-type--dataset{flex-direction:column}.wrapper .primary{border:none}.wrapper .primary .page-header{margin-left:0}.wrapper .primary .media-grid{background:#eaeaea;margin:0;border-radius:4px;border:1px solid #c3c3c3}.wrapper .primary .module-content{padding:0}.wrapper .primary .module-content.page-header{padding:15px 20px 0px;margin-bottom:2rem}.wrapper .secondary{z-index:0}.wrapper .secondary .organization-info .heading{margin-bottom:0}.wrapper .secondary .organization-info .read-more{overflow:hidden}.main .secondary{padding:15px}.toolbar-wrapper{background:#e9ecef}.toolbar{padding:0;margin-bottom:0}.pagination-wrapper{padding:20px 20px 25px;border:none;text-align:right}.pagination-wrapper .pagination{padding:0px;margin:0px;justify-content:right !important}.pagination-wrapper .pagination li a{border:none;color:#707070;border-radius:4px}.pagination-wrapper .pagination li.active a{background-color:#003977;color:#fff}.pagination-wrapper .pagination li.disabled{padding:6px 12px;cursor:not-allowed}.pagination-wrapper .pagination li.disabled a{pointer-events:none}.activity{background:rgba(0,0,0,0) url("/data/dotted.png") 21px 0 repeat-y}.activity .item{padding-left:44px}.activity .item .fa-stack{position:absolute;left:7px;font-size:15px}.activity .item .date{margin-left:35px}.leaflet-right.leaflet-top{top:auto;bottom:30px;right:23px}#dataset-map:not(.control-group) .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border-color:#fff}.leaflet-draw-section .leaflet-draw-toolbar-notop a:first-child{border-top-right-radius:4px}.leaflet-draw-section .leaflet-draw-toolbar-nobottom a:last-child{border-bottom-right-radius:4px}.control-group .dataset-map #dataset-map-container{border-radius:unset}#dataset-map-attribution{display:none}.leaflet-control-container .leaflet-draw-toolbar a.leaflet-draw-draw-rectangle{width:30px;height:30px;background:#fff url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADEAAAAxCAYAAABznEEcAAADR0lEQVRoQ9XaP2gTURzA8e/vKt1KRRA6mDSKg4tUBBenuvln0KLSDlpbrINisW0igoMUxMXmahFRQag6OCgVQycR1KroJsRNJ9MLOKeuNvfkekmTpmnurk0uL29s3939Pnm/3/td7iLoPGLXD2Db14AFLPP5RqGKtgYX8BHYXogxjWEMk5lKV8asJ2I9oBh3DsUwWTNVDtEPsTGgFLdSw2SnnxX/oB8iEk8j9HimeRlEH0Tsehe2PYRhvMW2F4BOD0gOwzji1IgeCBfwBdiLUg9A3iO88VwNyGCZu5uPKAcUo16B8B2Rp54QRV9zEdUAgSEy3jxELYB/yBJGPtYcRNfoTtrbv63UgNfYOLWWMIze5hS2C/gM7POK3/2/msGaHicyMVRWI6sAZ0a4KxEUIPKIxeQVIvHbCNtQ6hfIGG35U2RmMuE3u6AAJ42y06N0x++guOkGLP1YyVfNuXcKClhdgcQUohJuVjFL1rxYLQUbn04NBjS+JkIANBYREqBxiBABjUHUAwAvsMxz/vpIvfvErvEdGMZX342suONEynahgID6roQLcL4H7Pf1CbqAESIT9xG5Wjgm0ArUt9k1EVCflWgyYOsIDQBbQ2gC2DxCI8DmEJoBgiOCAtw9/3zFNjqHZZ71tQ37nOT/LnbPjU6Wl53HKv76wAqgY5Do38cglwrx1B3gfyVWAP8+gBz0+eGEBvCH0BzgjWgBQG1EiwA2RrQQoDqixQDrEcEBc1gd/WFso7V2xbV9ojvxEKUu+9xGX2KZA0TjT4AR9xh5jZU84/P4uk0rIaKJScR+h5IZ4JDHFeawrAGi3bOgBgtz57HMk3WLLMCJSojuxAJK9SDqhAdEK8DamojGVQGfqwHRDlBCxBK92Mp5Z1wcRcgUcLh036NPCpVnm5tO0cQYqHsVaZjDlqMYahr4o1MNVJZLATGRAqlWlO6K5NVPRO4i4j7QFVIsmn0Baq+hUwuIeK7GK9fyFXFSax6r4zRMLjc0sgAnF2JjMey23x7H5DDUMfLGcbLJWwHOH8pUqXiNtP6iih8IaRSpyt9UhBKhj4sI0bjzG4kLq3NFPqFwekaatvwCmRkn1bQegtOpIYdBmkzSeQzZcuM/sq/Yw1D571gAAAAASUVORK5CYII=") 50% no-repeat;background-size:25px}.control-group .leaflet-left.leaflet-top{top:0;left:0}.control-group .leaflet-right.leaflet-top{top:0;right:0}.control-group .leaflet-right.leaflet-top{right:10px}.control-group .leaflet-control-container .leaflet-draw-toolbar a.leaflet-draw-draw-rectangle{width:26px;height:26px}.control-group .leaflet-draw.leaflet-control{margin-right:0}.leaflet-draw .leaflet-draw-draw-circlemarker{display:none}#dataset-map .module-heading{margin:12px 16px 0 14px}#dataset-map .module-heading .heading-icon{background-size:11px;margin:4px 7px 4px 3px}.dataset-map .module-narrow #dataset-map-container{height:328px;border-radius:4px}.module-narrow #dataset-map-container{border-radius:4px}.control-group .dataset-map .module-content #dataset-map-container{height:250px}#dataset-map-attribution{font-size:11px;line-height:1.5}.module-heading .action{float:right;color:#888;font-size:12px;line-height:20px;text-decoration:underline}.module-narrow #dataset-map-attribution{margin:5px 8px;color:#666}.leaflet-draw-label-single{display:none}.leaflet-draw-label-subtext{display:none}#field-location{width:190px}.select2-results .select2-no-results{padding:3px 6px}#dataset-map-edit{margin:5px 8px}#dataset-map-edit-buttons{display:none}.leaflet-draw-toolbar a.leaflet-draw-draw-rectangle{background-repeat:no-repeat;background-position:50% 50%;background-size:12px 12px;border-radius:4px}.leaflet-draw-actions li{display:none}.control-group .leaflet-draw-toolbar a.leaflet-draw-draw-rectangle{background:#fff url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAMAAABhq6zVAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEJQTFRFODg4aWlp/Pz8x8fHcnJyZGRkQUFBU1NTc3NzmJiYhISEOTk5mZmZ+fn5v7+/g4ODbGxsZWVla2tr+Pj4MzMz////6aHwswAAABZ0Uk5T////////////////////////////AAHSwOQAAABVSURBVHjaNMxXEsAgCEVRNL3Y4LH/rcaA8nUPw0Dqk+4iSgMnwOKQKxNQDMIHdxmEWwPn9T+zBl7tD0ZX6RDeZitx2GcrIS4PalIHYvC9Ye5VPwEGABMKCgtNpfUFAAAAAElFTkSuQmCC");background-repeat:no-repeat;background-position:50% 50%;background-size:12px 12px}.leaflet-draw-toolbar a{background-image:url("base/images/spritesheet-2x.png");background-image:linear-gradient(transparent, transparent),url("base/images/spritesheet.svg");background-repeat:no-repeat;background-size:270px 30px}.leaflet-retina .leaflet-draw-toolbar a{background-image:url("base/images/spritesheet-2x.png");background-image:linear-gradient(transparent, transparent),url("base/images/spritesheet.svg")}.spc-icon-external-link{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAYCAYAAADtaU2/AAABuElEQVRIS+2W3VnCMBSG34QBZAFrR2AD2UCYQDawWu7Fa0HLBLKBbCBuwAaWsgDcQ+MTCoX0KaSlcue5TXLe5Mv5E/y1OV2PqB/Y3ArbhtLrjq+AEXL9SBgsjp2/FFjzpsh1mzAI8+CXBGveAinahP1JFp6Ar/0WgnfAtUg7JBp46R7Xc4lrd0AHaJw46xENhofrArfbJFZfFuASpTzmb6PNvgT4vAUWDQPj3wU33QlK3Z44PUPKFuHrNFHnqYMQH0VpmX3pvwuSKNzZDETyqp3JVZBGp+PrtfszoXuGXDdMsBDfzPrNXMdOtwdKy1vFUvWKgZPg+6xCRD9KrFo79exg16sT136AegWwmQ2AHXxc4iWoCcgpkn2emhliZsPBzQuAfV32rtIzWrI4HqWplZVhH6xmNmT2nQabf3v09oZPDc78Z94XnQbvZC7gKHXu+IFR3TZ5L+vZjmUBb/IWooEuieVNXwIeQLwQ9XuHDuxSzwfj8kQwK2JZ8FnE7SGjIv6DswVEN25F0oWqmuCg5udJbW+LVa8AijaZIC06CJwPP9LxktFHTyGKnmUgKAufAWPkupc3bf4CCwf0uUNg0nsAAAAASUVORK5CYII=")}.spc-icon-external-link-2{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAeCAYAAABE4bxTAAACWUlEQVRYR+1Xy3XTUBC988QeNxBFqYCkAkwFMRUgKkAHmzVmjZU4FSQdgCtArgBTAbLcgLOPNZzRs/WzJT1byoJzMlvNzLtz56MZwnOLM+oDtEb4fWHyFJkonaxz9tkF0X1qzwhAvABoAbWZI5yGZd/PC0jYiflXTUBrMBYgDqCsmbBYBOR4DmLrGuDeSawoNUc4CQq29vABwAcjf0pdZYA0vbcATgOTvEjfEE3Ghccdr4fYktS8bgSVAirnGliCaC+/jQ7j+AGrG2GkKGfDAQg/Gu0jnwg6gr8JM4w/sJRr2hGND+wUdCn8rmWfaI7lpE/Is6PUVedg7NEY4E8GpXCHyPcI2uArgEdEfov6KfGlO0xa3jFikvEeK/9nBmhLmZFxnZIuAWkO9yhfanMhc6lbQPbI27JdwTTPoKwx4lhGQ77r0ux0A8j5colNfAtCv4KVJRS56YzSwIVFLbnstAdUdr6H6MBsEp3zUQDmt1tE6fzqAFDFJJao6ck99L9KQAircSyjAMh1d3tA+5P4EQxXOqaxqKUTN9zL67YHJK9mk/gOajNGOF03gqlQ6AZQkgKv1wZIWt/pYOxqDpUjF6BP9AaveFlZTzmb7hiqytHuT2AY8AugpmJ/Yeg/ZggIEfkXTREc/X235B/RZdmfd7uTHP1onYE9lN38HOAZoptBk2/ZqWXflZ1aRA64d11M3MRb/gRi/njwACgh1GeQPZwCkL1XRB9vbYWS1VWvr3I8rPxLE5fZXVYEZWJrpqPXkIEp66XLNVnMByAyiqYWEXMI5sAkTXk//wAZ50S4TtMO8AAAAABJRU5ErkJggg==")}.spc-icon-chevron-down{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAA9UlEQVQ4T42S7VECURRDTyrQEuhA7AArQCpQKlAqUCuQDsQO6EDtACrAErCCOGHu7izLh+bXzpv7zk3yVgC2LyVt8/0fdedl+xl4Aq4lrf4C5DKwAZbALIA58AB8F+SsE9tZcgV8SRqpIjSHS0mTUy46y36AQWI3gAEQyAUwlbToQ2zfA2913sbdAcpFM5AIN90+bA+BDyD5Z5ISe6cWUJBsvis3gWyrtFwO5F1SFrXqA7Lhs0paSJraTttjYA2M+s+9BygX2RRI+sjlWyClDSXlpfZ0ACjII/DamZxICuxARwEFaay/SMrPdlTnAOkjthPnpH4B38VoGjCUhGEAAAAASUVORK5CYII=")}.spc-icon-marker{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAbCAYAAAB4Kn/lAAACK0lEQVRIS5WV4VUUQRCEqyJQIxAjECIQItCLQIhAMxAjECIQIwAjECIQIlAywAja963T+3r3ZvfO+XPv3ex+21NV3WOtrIh4J+mtJH6fl0d/S7qR9M32fQ/h3p8N+EXSQdl/lATwUNKz8v+tpDPb7I1rCxwRF5I+tCfuJF3YprpxRQQfPJZ0LumlpKcGH5+bgCPiStJ7SX84vm2qWV0RAfxTe2iTRYzgiDiV9LVBj5e0W5Au36XyI2QZwBGBMb+aQWx0DdlhdFZ+a/skwfknLvP1yYqIj00ijEOezz2ZIgID0fwowVT4WtKrubszDdE+E3Eyh7cCSNOlm8PI8GCbiubVRtP9kI8WL+5sk4x5WmDdA2bzRwv7RIayN4FEBB+T7V5c/+2Vl9ENrXsV4zYyPZXnl06IB2/2AWfDAMeLPP6Y2Zkcg18VvKVZvtAx8HTejeVZpHjMVFANbr/guEt5Je879hlW14NfrUGylbs672rrUu2gr6RNghkqxGQ0aV9YgWa6BlPrrEiTbmxv/gfcRsLPNmaHxqlg5gUtidZdx1e0z6K+20Znzcdmij9OqV2Vt0sBw2j3gzR3bdCTR461lhJGAF3LaSezY+lqyqF0ZfusV3XTFSjwrTQtgavel7YZm3XYsJ/Q7qjtglu2c/ZiJpclWR9WucIeaPGeXIvgAidGrAG+D3QrFQta5n3GNp1FI0wS0HtvteJy9AoHuvOy3QvcZAFOzs/3uWz/AksqPmwZtrMeAAAAAElFTkSuQmCC")}.spc-icon-pencil{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADEAAAAxCAYAAABznEEcAAADR0lEQVRoQ9XaP2gTURzA8e/vKt1KRRA6mDSKg4tUBBenuvln0KLSDlpbrINisW0igoMUxMXmahFRQag6OCgVQycR1KroJsRNJ9MLOKeuNvfkekmTpmnurk0uL29s3939Pnm/3/td7iLoPGLXD2Db14AFLPP5RqGKtgYX8BHYXogxjWEMk5lKV8asJ2I9oBh3DsUwWTNVDtEPsTGgFLdSw2SnnxX/oB8iEk8j9HimeRlEH0Tsehe2PYRhvMW2F4BOD0gOwzji1IgeCBfwBdiLUg9A3iO88VwNyGCZu5uPKAcUo16B8B2Rp54QRV9zEdUAgSEy3jxELYB/yBJGPtYcRNfoTtrbv63UgNfYOLWWMIze5hS2C/gM7POK3/2/msGaHicyMVRWI6sAZ0a4KxEUIPKIxeQVIvHbCNtQ6hfIGG35U2RmMuE3u6AAJ42y06N0x++guOkGLP1YyVfNuXcKClhdgcQUohJuVjFL1rxYLQUbn04NBjS+JkIANBYREqBxiBABjUHUAwAvsMxz/vpIvfvErvEdGMZX342suONEynahgID6roQLcL4H7Pf1CbqAESIT9xG5Wjgm0ArUt9k1EVCflWgyYOsIDQBbQ2gC2DxCI8DmEJoBgiOCAtw9/3zFNjqHZZ71tQ37nOT/LnbPjU6Wl53HKv76wAqgY5Do38cglwrx1B3gfyVWAP8+gBz0+eGEBvCH0BzgjWgBQG1EiwA2RrQQoDqixQDrEcEBc1gd/WFso7V2xbV9ojvxEKUu+9xGX2KZA0TjT4AR9xh5jZU84/P4uk0rIaKJScR+h5IZ4JDHFeawrAGi3bOgBgtz57HMk3WLLMCJSojuxAJK9SDqhAdEK8DamojGVQGfqwHRDlBCxBK92Mp5Z1wcRcgUcLh036NPCpVnm5tO0cQYqHsVaZjDlqMYahr4o1MNVJZLATGRAqlWlO6K5NVPRO4i4j7QFVIsmn0Baq+hUwuIeK7GK9fyFXFSax6r4zRMLjc0sgAnF2JjMey23x7H5DDUMfLGcbLJWwHOH8pUqXiNtP6iih8IaRSpyt9UhBKhj4sI0bjzG4kLq3NFPqFwekaatvwCmRkn1bQegtOpIYdBmkzSeQzZcuM/sq/Yw1D571gAAAAASUVORK5CYII=")}.spc-icon-citation{color:#fff;line-height:30px;text-align:center}.spc-icon-flag{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxMSAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuMTM5MTcgNS43MDAzNUwxMC42MjQxIDMuMjU3MzdDMTAuNzIgMy4xMTM2MiAxMC43MiAyLjkyMjA2IDEwLjYyNDEgMi43NzgzQzEwLjU0NDQgMi42MzQ1NSAxMC4zODQ3IDIuNTM4ODMgMTAuMjA5MSAyLjUzODgzTDYuNDU2NzIgMi41Mzg4M0w2LjQ1NjcyIDEuMTgxNjhDNi40NzI2NiAxLjAyMiA2LjM0NDk2IDAuODc4MzcxIDYuMTY5MzQgMC44NjIzMDRMNi4xMzczNiAwLjg2MjMwNEwwLjQwNTMxNiAwLjg2MjMwNUMwLjIyOTY5NCAwLjg2MjMwNSAwLjA4NTkzNzUgMS4wMDYwNSAwLjA4NTkzNzUgMS4xODE2OEwwLjA4NTkzODYgMTIuOTAxNEMwLjA4NTkzODYgMTMuMDc3MSAwLjIyOTY4NyAxMy4yMjA4IDAuNDA1MzE3IDEzLjIyMDhDMC41ODA5NDcgMTMuMjIwOCAwLjcyNDY5NSAxMy4wNzcxIDAuNzI0Njk1IDEyLjkwMTRMMC43MjQ2OTUgNy4wMDk1N0wzLjM0MzI5IDcuMDA5NTdMMy4zNDMyOSA4LjM4Mjc4QzMuMzQzMjkgOC41NTg0IDMuNDg3MDQgOC43MDIxNiAzLjY2MjY3IDguNzAyMTZMMTAuMjA5MiA4LjcwMjE2QzEwLjM4NDggOC43MDIxNiAxMC41NDQ1IDguNjA2MzMgMTAuNjI0MyA4LjQ2MjY5QzEwLjcwNDEgOC4zMDMgMTAuNzA0MSA4LjExMTQ2IDEwLjYwODQgNy45Njc2OUw5LjEzOTE3IDUuNzAwMzVaTTAuNzI0NjggNi4zNzA5NkwwLjcyNDY4IDEuNTAwOTNMNS44MTgyNSAxLjUwMDkzTDUuODE4MjUgNi4zNzA5NkwwLjcyNDY4IDYuMzcwOTZaTTMuOTgxODkgOC4wNjM0MUwzLjk4MTg5IDcuMDA5NThMNi4xMzc0OSA3LjAwOTU4QzYuMjk3MTcgNy4wMjU1MSA2LjQ0MDggNi44OTc4MSA2LjQ1Njg2IDYuNzIyMTlMNi40NTY4NiA2LjY5MDIxTDYuNDU2ODYgMy4xNzc2MUw5LjkyMTY4IDMuMTc3NjFMOC40ODQ2MiA1LjU0MDY3QzguNDIwNzcgNS42NTI0NCA4LjQzNjcxIDUuNzgwMTUgOC41MDA1NiA1Ljg3NTk4TDkuOTA1NjMgOC4wNjM0M0wzLjk4MTg5IDguMDYzNDFaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K")}.spc-icon-spatial{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxMSAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuNTk0MjQgMi4zNDMyNkM0Ljg0Mzc5IDIuMzQzMjYgNC4xMjQwMiAyLjY0MTM5IDMuNTkzNDQgMy4xNzIwNkMzLjA2Mjc3IDMuNzAyNzMgMi43NjQ2NSA0LjQyMjQgMi43NjQ2NSA1LjE3Mjg1QzIuNzY0NjUgNS45MjMzIDMuMDYyNzggNi42NDMwNiAzLjU5MzQ0IDcuMTczNzNDNC4xMjM5OSA3LjcwNDI4IDQuODQzNzkgOC4wMDI0NCA1LjU5NDI0IDguMDAyNDRDNi4zNDQ2OCA4LjAwMjQ0IDcuMDY0NDUgNy43MDQzIDcuNTk1MDMgNy4xNzM3M0M4LjEyNTcgNi42NDMwNiA4LjQyMzgyIDUuOTIzMjcgOC40MjM4MiA1LjE3Mjg1QzguNDIyODUgNC40MjI2NSA4LjEyNDQ3IDMuNzAzNDggNy41OTQwMyAzLjE3MzA1QzcuMDYzNjEgMi42NDI2MyA2LjM0NDQ0IDIuMzQ0MjYgNS41OTQyNCAyLjM0MzI2Wk01LjU5NDI0IDcuMzA2MzhDNS4wMjg5OSA3LjMwNjM4IDQuNDg2NzYgNy4wODE4NyA0LjA4NzAxIDYuNjgyMjVDMy42ODcyNyA2LjI4MjUxIDMuNDYyNjQgNS43NDA1MyAzLjQ2MjM5IDUuMTc1MTVDMy40NjIyNyA0LjYwOTkgMy42ODY2NiA0LjA2NzY3IDQuMDg2MTQgMy42Njc4MUM0LjQ4NTc2IDMuMjY3OTQgNS4wMjc3NyAzLjA0MzA2IDUuNTkyOTkgMy4wNDI4NEM2LjE1ODMzIDMuMDQyNDcgNi43MDA2IDMuMjY2NzQgNy4xMDA1OCAzLjY2NjI1QzcuNTAwNTggNC4wNjU2MiA3LjcyNTU1IDQuNjA3NjMgNy43MjYwNSA1LjE3Mjg1QzcuNzI1NTcgNS43MzgzMiA3LjUwMDgxIDYuMjgwNDUgNy4xMDExOCA2LjY4MDQ0QzYuNzAxNTYgNy4wODAzMSA2LjE1OTU1IDcuMzA1NTQgNS41OTQyIDcuMzA2NDFMNS41OTQyNCA3LjMwNjM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTUuNTk0MzkgMC4xOTA1NzNDMy44ODQ0MyAwLjE5MDgxNiAyLjI5MzU0IDEuMDY2MSAxLjM3ODI5IDIuNTEwM0MwLjQ2MjgzNSAzLjk1NDU5IDAuMzUwMjgzIDUuNzY2OTEgMS4wNzk2OCA3LjMxMzI5QzEuMTc5MDkgNy41MTYwMiAxLjI5Mjc1IDcuNzExMzIgMS40MTk5MiA3Ljg5Nzc3TDUuMjg1ODYgMTMuNjg5NUM1LjM1MTk0IDEzLjc5NTkgNS40Njc1NCAxMy44NjE2IDUuNTkyODggMTMuODYzOUM1LjcxNyAxMy44NjM4IDUuODMyODUgMTMuODAxNiA1LjkwMTYgMTMuNjk4Mkw5LjczOTUxIDcuOTQxM0M5Ljg4NzEyIDcuNzI2NzYgMTAuMDE3NyA3LjUwMTAzIDEwLjEzMDQgNy4yNjYxN0MxMC44Mzk4IDUuNzIwNzYgMTAuNzEzOSAzLjkyMDQ2IDkuNzk2MTIgMi40ODg3MkM4Ljg3ODQ4IDEuMDU3MDcgNy4yOTUwOSAwLjE5MTAyMiA1LjU5NDY2IDAuMTkwNDNMNS41OTQzOSAwLjE5MDU3M1pNOS40OTg2NSA2Ljk3MzI3QzkuNDAxMyA3LjE3MzQ1IDkuMjg4NzQgNy4zNjU5NCA5LjE2MTkzIDcuNTQ4OTZMNS41OTQ0MiAxMi45MDEyTDIuMDAwNzQgNy41MTU2M0MxLjg5MjQ0IDcuMzU1ODUgMS43OTU1OCA3LjE4ODUzIDEuNzExMTIgNy4wMTUwMUMxLjA4NTE2IDUuNjg4MTMgMS4xNzk3IDQuMTMzNDcgMS45NjIxNiAyLjg5MjM4QzIuNzQ0NDggMS42NTExNiA0LjEwNjI5IDAuODk1MjYgNS41NzMyOSAwLjg4NzY5QzcuMDQwNDggMC44ODAxNDUgOC40MTAwNCAxLjYyMTk0IDkuMjA0OTggMi44NTQ5OUMxMC4wMDAxIDQuMDg4MDUgMTAuMTEwOCA1LjY0MTYyIDkuNDk4NDkgNi45NzQ4M0w5LjQ5ODY1IDYuOTczMjdaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)}.spc-icon-organization{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAmCAYAAACsyDmTAAAJC0lEQVRYR71Xf1BU1xn97n1vd0FAVpO2IrKssTOK/DY2Y2OCK0nVJCprG2pJk4Ca2KpVF3bJH4nyQxtnGllYm6ozTVUknRiqKYtJW8WmotTWqBkBQdRUXYEoaRxEBMHd9+7rfHf3ActuJ4gT38zO7OzeH+d+95zznUfgQR+jRQ8SSQYi6EGQGsDlcD3IkuRBJoMhrxCAFPmtQcAJRF4GLkfXaNYePSCD1REaovnlljee16XETwT92FBwtXXCqrc+6r/Z2fuFdHVr0sMDZLSZgClHq36fA6YfToHqmmbo6u6DjHnxHFj0E5s9d/s8W6C1xL96I0A4ugoZbEUASqFyrQRyrB/C3gNn+FYxUXqp9eQG0fz6Hqg+cv4YXCsxjQDDsBu/3xk43pDnTJo2cWHDYasQNbO4v+PrO5WgIHeg6uzf8sB5uAmKHTUArfb7PvB9T+D4fRW6dW4zWIqreYUoJd1hY7Th3c1v09TnSqHpYkeTdHVr4v2edxAQypfRQlEQnpFkligK9Jwky58CZcUBionJywFC9pQVZIB5fjw4DzeDq70TcjJ/wPdHQACwF1rtOQGAcC6QbCBgEkXaLsnsDBA5V7ULLyCjRS8SzXGtVpyW+UKSxjhpPN9g/18aPW63dEFSPGmBoKz1QCAZQZQVLOZk3ra7DjaWHpJ7ety9CpGSAzzJYN0DADlI/pTp0Xzr9/addH91s+eerCiLwVVS6wUUa62a8GjEgpZ/vBHC5dveCQgKlROX/k5/x807h+CafYnfaXlFBQcAZBda5nG1zV26E0SBNkkKvAKurfV+42OsZpVjKdMn8j1wL/wsWr7L89ejF24wkJIJVgeYcGtPyVK+aNqLO6S2G10iKub4gdVi7b8vwzJbJQCVxwU1O4NVGQoIKJmLJw24qlhb7cL0aU9+vHuFJi1zh1R36ooYHqaT3i02i+b5CTAucSOAoiwj4POUo5WroL75OuRuquZ/qBxB08OT/9+NRgrINw4393KMFIOimJPiohJQrSTWxn8LDgiUImwJWDVjzHgvICC50FqCV8Q5xwUg0tckSQn3q5C3NOVA6baBa/MdGsflZM6EybO38DGUkvRFz043ON9bBoOAuIytiqqYtQVVnk8+bdEg8crtP+M8Wrx8t3zuYocACtSCQHNFAhWoxOwXZ3JlmWZN4SiQF+X7z0DpH46xu32eXk5URVkPCpgTp06Qf7tpiYBj0Sp2VZ6SDRP18vZf/1hrnDTOC1KBJV5SG2xFYWM0b/7zo19pkHDqg/4SGRECWGbHrjrYaD8k9/TeE8LDdPK7xWYBwaCy6s9f58BxLoLERz1E2BitZFtpEoty50HtyctQXdMEWCkkMz4476mfbHdfuvr1ac/ld54a9CFDnhOAZDz5uLFfqxFCOrvuyo0Xbgg4CQGp0sZWYVmRxhfMzt3Hx+i0YgtTlE6PR54dEaGTK+xZAgoEK4FAcCwKAx0cHxTMlNhHRPx+qqHN7XZLlyTFswhtwt+pueGBGQjV85mMleN3QYDNY8ZoQ62vzRHwdPgkz7fLLZf/e9Iju18e8BuvYovCw3RrztVYRbQOrPK6Qifr7umnnMiUOIExCxBi5Athy6FSuargkbUOo8UIjDqwgtjhXe23vGqk8uRggUx8LL/9hfS46AGyKtAAgmweSXgbGSAvzywASpnavz48WN9y7z+/mR7gN16ROGKi9Guw86csKIWGCzdG3PnvB9BA5DAt3Qn/+tx1AkkYHNBgPMGxxz678q0A4hVS48XbvzvSI10piQgOKM85Z9b3M2orV0Fk/AbkTyO02lODjh32Y2CFjPkpIEmRIIq3ubH5TBCAWGIm6tnx/atpV3e/6raDZqkujPMZO4u+ZlnxNPCwVtOM8aSVAWTztqLugXPay44NxTQkfuSnUFCqGVMM6gBchFJCJYlNWr/8aS5hJDQaGRogEjs0VPtBX5/7FCjEBYSZdFrNL2bNiA3F6qDC0JfQf17N3cfarndR9E/0+iF7dDOZrYe20nL8zRc/vKda+Eycx7rSpOGGdbsP1hU5mT4iRKlwvCQgCEyBaJBogNj7sPGuLaiS2jtuc09Bw7S+PkdA4Og75ftPQ9K0KHlbsZk7dFFZDez+0ym2/KdPUPQpfHANni59rYkDEifnN86aERtXd2CNiK6LbpoxL4FvjA8a2rpCJ08BAEo1yh832luWJeAYdFv8qDmq2HGEg8GxlNIZjCkxQ3MTthi8RhyPLQoPmb/lYI/EpESMH0ZgwlU8MVZlyUpeOf4ggXGjwZyjrPVywGaiAAcZUyIQUFlhBr/G3E0HB9wYALZBq93i5aCIgijE68P+6CM6Xh8gFRyFGWpzzfXr9gPlw3D+TbECN5KpGWPKsG6/DajsCJIWA3MTY5bEqVELG2tsQ+OHlz/DKsSJh66sjwz15SGaGpACvSY4ooCG7r3m1dnRyC8MY17BwPifmx8Px6r5xQ9qtHVnZaTq/uh4SYt376xpAvO8BB4tXrZ84N5XffYec5WMDfAR33X7V2hIbho6wWAtj/ru2KXXTxeEoOpwH2y6aA0YDDlVKE31qsyXdxE93ikORO5gtEBlYE6BNrvTD5DvzSMiXMcqSrMoJsu0zB2qtMuh1b7Mb7zRoheI2Pbc3DjdZuuCgZiD1rB6w5/dd/vcO5FzQ+KHzYJdXZaVcHUhQSA9ssTWqh4xsIGvMhi60BJUpeH/6nsaj8E+bxmcl58iEnhfklnCsGoj74qw4/s7NW4kUxMQagRFqQdBrg/aoX2NFlVY3/wlrC10Sj2990S8Yoy9Y+PfYnd63XVBX6VRDCCmAAN8ze4CSmqHcnPkzXUYHyLCda/gW2rCj0rczRc7WoAAvmmsv3riTV6lj/9+vpu5SiIDePcNP4wWkCN6QuSq9s82auOf3eo+/8VX54GAC7MzxhPk3faKE19KV7ZOekiABrOR2j667vQTtW1gmmy8cP0TaC01PxxARouegtj4fHrchPfLsjRqYMfNUZl4ZSjhoL71rVwZLmrk6eD49x6N0Ex97Dsh+P52uqHN3XypQxtUYSMs1eg4pC7uC/VASIpIySOSzD4HSh2jqYy65P8AF5y0kWGrG5QAAAAASUVORK5CYII=")}.spc-icon-tag{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAACdklEQVRIS7WWS4hOcRjGf4+USySxsLLAhhJFGAaFJKWU+zDKrWyFGmI30uzsKCX3W1O2cr+N28ZSKTVlksvOQol69E7/7+tz5sz5zhkzZ3n6n/d3nvf2/MUQH9tTgbnAhCYhfgKfJH2IcxoKz/Zi4Bwwv+T3vcBRSd2VgQl2I4FuAi+bQGcA7UBkZEMloO0lQA22Q9LrMgptbwK6gSOlgbZbgOsJ0C7pRSPM9njgELAM+Ah0SvoaZ2yvBJ4AXaWAGdguST05sAg4OxoEmA58BlolfasEtL0UuJYAOyUNqJntDuA0cAK4AKxKTXVX0pbSQNuRniupm3NhKWVRnznAekm9ticCz5LaNmBB05RmYG2SXg3WILaPA6eAY8B5YA1wBuiRtLmpQtutwOWkrGk32p4E3Esq+4DJwG+gRVJfIdD2cuASMArYXqH1A9oJxNx9B05KigYavEszsG2S3pSZs0zHjpH0K/Nu4FjYXgFcTMq2SnpbFVZQ443AHeBg/xzangXcTzUbbthC4DbwB1gr29NSwccBeyU9H0Zli4BboQlYF44RwNXAA6BDUtcIwfZLetRvTyMBtN2orA6rAWspHQsckPT0f1QWweoGbHsm8DDluumgF3TjoMpq39TdIm2X2JvxFK6yPGAzZQOAaTxipVWGloXVU5rZCuEQV4vsKHO+MY37JD0u6oFcA05OEdCYn3D3fwy3FjCjrCksV2FDsJrxBnR3zpWikrLcGmZT0eD2AY1G6r80JbuJvRvvSykrBUzB4/IUV4wIHmvqB7AHGA3EUBfWLCuiyiXqLDAvBXgHHK4KK6xhTnqnpKt9/OR7SV+GspH+AsQwPm54vHhIAAAAAElFTkSuQmCC")}.spc-icon-format{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAWCAYAAAA1vze2AAABTElEQVRIS+2VfVEDMRTEdxWAA4qDogBQADjAAXVQcIAEHDAooCigOGgVUAfLbEjKa7g7QgcYZiD/dHp3eb/3kexS0jmABckZtliSTgGs4n5JI4ciuUi/khz8cIv4ccsVyUs/kDQGcG8wgAOSqxrylF+WABG+dMVVMg64AyBBJO0CeASQKgEwI3kcIabOYxBJCv/X2ZZnkpz9NECuAVxUiZwVyIhkoa+/aYB4HrcFEuBO7oHkUZzJnOSknksDxO15boG4Ap8OD2pjfQTJg3bLfDpveisZOlUtkK79ed9bu/4hDR34Xe2KkvPuMvZV89nB/wjEd8fa5PVtlQxq11e1649CJHVLfY/2WMJPANiay/IhsBjeFVvtEFSrsj1pL79LF5KVSVmR7Wz+eGhZdfd7ErRb+ug7qXGy3w6Iq9hwyCrYqxFlTx8A2T6SXb8AnPUNwIrRUaEAAAAASUVORK5CYII=")}.spc-icon-license{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAhCAYAAAAswACjAAACCUlEQVRIS+VX0U3DQAx9bwJggtIJgAmgEwATABPQDSgTwAbQCWgngE4ATEDZACYwepEvHGkuuYNKIHFSP6I4fvY7288lMo+ZHQHYiczfAMxJLvtcsMvAzLYBXAA47bATyITkNGWTBDEzOb4CsAngFcADgBkAZaBz4L99f9b7Y5LhfY3ZCuIAN251SXKSitLMBHbtVD4BGDWBVkCc+zsA74qUpD7sPWZ2C+BEGZMcxR+0gYjjgUckCrKPmSkgFccZSYFW5wuImY39HqYkuy67FdgL5QXAkuQwBRIiGeaUZhtSRJvupmKimYkBeCa5m81RwzAqmrpgahAzk+NHAAuSqphvHa+2e29UNfBnJhFIZ8nmIJuZGKmDbdKlbHRpKw2V4zzYdIKUOOqy/T0Qr2814LqOSlftMCa5YHTh6wJo+pkJRMNP41yjulcbCiPR1BjEIHWHFjpKmpuZaNv/pyBxFapq+mgtpiuSgeBbJSq5TRZLEUg09KSWklqNn8M2FYyzKwWR43OPXMsEIhXcSs26PwkiXdByIf6l3drH1GidAleUidMTKAu0axfTNrOei490QhdeaY4GYJ/utGXyY0Vs9o3rCuIprMj2+hos9320JM4r+Q1p+a6rxeyn8qtC0ZqrPXoUQPSgiRn+GhRtjo3sVHn66VSbZLwSCUjaotLcyKUlYae5pr8TVbAfH3RQk/UAKIwAAAAASUVORK5CYII=")}.spc-icon-bulb{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAlCAYAAABGWhk4AAACPUlEQVRIS7VWi1EVQRDsjgCNQIhAiECIQIgAiACIQIxAjcBnBEgEQgSSgbwIxAja6mMX597t57iSqbp6V/vueuZ6e3qWaISkbQDvAewC8L3jAcANgFuSd7XXWfpD0j6ADwD82won+EjSv6OYAEv6DOAsPbUG8D1d8cVDAL7epMUVydP4wAhY0grAMYA/AC5JOkk1JJ0A8DNbAO5I7uWHn4BDpa7ysMVfzJT2wV/1FsBT5QNw4vRHqnR/LmhOIOkVgPtU+SnJVQb2ovkaFjsbVvw7FHdPcodhYU0yS2oJtr/c6ngH4MjAWQUXvc3qZUub+RXANwPnLHvP5XYzUdrIX0PzSBr4JVlsll6VBXB5zcBu0a2XAM5U7JB09Ysjye43gLUrzt12RNJCXxyS3OZXAK4N7LZ83EnS94sjFHlh4Ng1i+kIirDPbOfOu0w2eUPyYEnJQbZfSJ5HE7Jp20ie3SiSzgF88qZ5KJB8iMCeEj9TtbObJVHg90zpQTb9TT/OlIy8tePJWa4DBRM/Dhb4z0g68msZWGk0ZS12NzJs2MRua8M0+3OV6ygvkuZ3FDXgzHVVIaGxRtxWOd4YVdckTc0kJLn9feYoWkHVKiU92l/FTrMrAnht3c6iIlXd9Ole4lbFVTsN9uhjVvG0NAe41R+LgHP/t4Crqvkvc66UuUWFTd/nuFZ4OBQPOC3grNMWcFXnLWC3qa20FXbBiYYH/S+ZFnPeaQJLiua/idccBj1gHxJ9tpu4F4CT1jnkL7Y1LNhvfQoiAAAAAElFTkSuQmCC")}.spc-icon-light-bulb{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAlCAYAAAC+uuLPAAACeUlEQVRYR+VY0VEUQRTsjgCNQIhAyQAikAzACJQI1AiQCDgjACMQI0AiACKQDNrqrZmrx97M7swexQ+v6uqq9na35/Xr1+/VEQtC0hsAxyTPFzwOLnlI0gGA3wAOSV73vuMVg0o6Ml0kr2q0SdoFcELy2xS16V2P4xJs0CvJYB8BfCK56q1Xvl/SCYALAN/HhyuBWpkWx/ulQgmAP0ka/EkUhZRawlmuIs2SPiQWrN4cPuAvkn9Dll8A7JL090Y0qTe1yBkAgzpuATwCMCtmxGHw0wheK80saKDqAYCFc0XSgEMkVpyRP0paqIpwEOmM+rIY/gA4imDj5xK4s32XtLCmu6mmIYM7AA8kM61TZ8xZG0wk97rplWQhHQPYI3k/iRZ+DBbp+v7oEpIk1+2a5GAWPSEpZ7tfBA1mkH/PN94sNQhJzvAzSUqywKz8HKe+6HrlbJydafW1xVNEklX+FcDbhBT7dVUzh61GVwQtKb4G6kyfhd6XFJLVfk8y2uUav2oOgaL9FmsLDpUNpTqlpkDtqz7xHcmi9CuuNGsoczZoVV8COK9NjAgc2m+SnRbDz840uYSlLcEH3Bjazd4bapRpviF5WHMmSYNVkvQqMxmzmSbzz81epC2Mv6YVpxXU2f6rUZeGg0ef75uNJtCUbdXE03DwcN/Yh7rModAOaxMfKdY1dJtUR1m3kIKghrp6coxAu326h948otxCcagPi3fPutoD6iHgHWinUCcvbQetG0Yz6KwkO25oBk3D3uOuFB7+7uGmXaoH1D1Y3Ni9eNeWsK1aJqjYwvFum+N2ah/eGrRCsbPMu1BTZZvpDZm6PaKpe03t+gvgP2AFP7/ld3ZvAAAAAElFTkSuQmCC")}.spc-icon-raid{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAfCAYAAAAbW8YEAAAELElEQVRIS7WXV4hdVRSGv5XYG7ErdgVFjd2IsSEWBBWDqGBUxLyIz0bF8uaTTxJfYnmxROJLROyIDUVsWPJgYgN7jb0m0Yy/fMO+cufMndwLM244zHDuOftfe69v/WufYshIsi1wBLAfsCewPbANsDlQwJ/AN8Ba4HPgI+DNqspUU/vSpJHkFGAhcBxwKPALsCVgABsbvwPrgB2BF4DngRVVtbr/pQmiSU4H7gI2AfYGfga2AL4CfuytAtisBeJvBuNqT21ic4FZbRec50vgU2BRVX2s+H+iSS4Hbm3bNgY8CtzXtkrBkUcS03AycHbbMefzmldVq8ZFk9wIXAv8CiyuqhUjKwxnwtxfD1zR0nNpJfHmGw2Q+VUlDDM+klwE3A28pqhJV0hYTqwq6ZvxkUQw5WWsX1QgPgFuqao7Z0q1LeoawJUe4OK6otbb1o3OJ4B7gZVVJX0jjyQHu2vAecCZDdjfWn2v74qK/U2AL0ngH3IGWH9u//fAi62MJHqrFuRfwEntf9/VKGa30vsBeAW4B3gA2DBBtKp6NM8DzgUWNHOwXq29HYYs10Cs2U1bqpYDj8lJkmOaYQwW7Z84iQZg9JrFPsDubQd2aiuWA3dDJ/pAsap6txvcVKK6xdyNeebISR3wYBKd6hkD7d/ef4DlVXXldCYf9G4SK2MZcEGX3g2N2vdb0p+sqvemE0CS+cBZwMXAvo3itV16Xf6RwHaNQHOkYUuseTJ/EizN6xtcQuPzuwB7AccCpwG7tvzPaXA9ApwhZJPoTSL6ixu90uhk7oJ1pmkrapcRJPvqmgaR5SPh3vd573vvfg0H2Bl4eqBoh1xb3dHA8cAewCGtCylqQPZX25d1arP4tvn428DrVfVqb74khwPPdkW/AA4ald4kbulYVWkgQ8dU9BrlOd0uP3S2ER9IsghYYk13QbLD3AYsrSrzMu2RRCauA84H9h9k+MJif3XVBrAUWF1V74yqnkSatbzDgKsbbArrx3rBrO5KbT0KeTDzZa1Ni5NCa/bDZnVCo0/bkSRaT5ZOrVJBBYRNES9PIrc3R5rS8K2xC1u92ZoMwIksCXdCP+4fBuflc/7+E/Ac8DDwUFWtS2L9S+/sgV1mgFl7utD0d2tlYqm4EsvFlHi5eitgVVUZ4ITRRA1kfHtd1UseJavKHvq/jCTm2JWu6fXPp1oe3Y5Lqso8zNhIYq4fBw4Ebu4/90qrrvMd4FHljqp6azrK7UvB85FHF6Ezvwu7J/wHgRNa7vROgdHSNHw/Db5uedP2NH1zKtnCY4M39xr+Ue3Eb54Vc65lVXWDi5j0LZPEb5ergMsakRp4DxjfUVARabVPmgo7Tg8sg/A3jy0+69loSVVZ++Nj4AdU78ckfq35EdX7K706lS3Mie0yf7eW51yfAaZkJfBy79ulm6J/ATMIrA2Q0nQRAAAAAElFTkSuQmCC")}.spc-icon-human{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAhCAYAAADK6cvnAAACe0lEQVRIS+WX/VEUQRDF34tAjQCNQIhALgIxAslAjUCIQMjgjEAuAjECMQI1AjGCtn5b01fjejuzt/cPVU7VFQfs9Ot+/fpjrZknIp5KeiPpVNJxuXYr6U7Ste0fc0x5zkMRcSHpffXsb0mPRncvbF/27HUBI+KtpA+SAOH7je17DEfEY0nnknAIB97ZvmqBNgELjd8L2Klt6PvnRAQUQy+gz1r09gDXkl7P8byinXzCxM7TAySi55KeJI1Thgq9vyR9sY2wFgGGpG+2U5VNTUQESj2yPRnI5D+q/DU9rj2ICPL4YikgtHzuUbQLsCWchxNhqTNyeGf7pFfQ5fnlOZxrIB2pVNoUWa8ssg5f2b5pRRkRZ5I+Sfpom+6zqCxSOLe2Vx3AQaGSVrb5vj9goTWLf7JPVv22W0JzmnfdJ6GY1jX01NJDGVlQSHM/7o2pLmBlmBweTTD1U9LZVHOv7+wDiOQRBh/GEocxxbhaE+3BgBGBaJiF0HrSGU9fy/Qn1/uJpkg81wki2dgmssmTfbQ8AODlLuAtpSWal4Uy9hcOuTlveVx7UGwgrMw1aSD31OYgtAGwknXe30i6mgs0DrswhHIJIM9QVi5eMRWQNbvJujdsW9SOIh7vPCsACRlPuu1rLtBExLS9DYDDBmY7pb7UbvNeRDB57gHkS7clHerFdhv4LwDJIbQimskOcQildSWQQ1ZzugqH4uR3OssgpqWnbACon3rMPfU6C58/si2z9OYh2vywNjQdKADcx3h+0hYdi5ed9V/Tosw3gLmwaxTBwBiYctq1KAOCw3Ss7TtJa03ESL4L0lv5ffyKlhHQpTBK7+QnK8nOF58/ggRHdS7CjF4AAAAASUVORK5CYII=")}.spc-icon-arrow-down{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAALCAYAAACZIGYHAAAAwklEQVQoU53SzRXBQBDA8f/GxY1OxDFxiQroAA3ko5K8aEBKoAIukisdKEFuLna9DRG8zSPmuDPze/NmVhDnHh2l+DeuqhAssxAl4j+NAik9UTYneQrMWkOCBb6T3pESytYgJr9DKiFwQ11fI/G2j9XdAYPvkNoQuNOqrkb0y2/QEXnxiMZnM1JCexvL0hP1DBMVSGwi5/Sae5+kyjRBUg6JRodP3IzoqmU+R7F6NjwuYdpXM/IG1Zdoj1SQ7+h/1Bg3NXM8FKbs0dcAAAAASUVORK5CYII=")}.spc-icon-lense{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB8AAAAhCAYAAAAh3nDkAAACw0lEQVRYR71X3XnaQBCcPQoILsCyXEGcCowrCKkgpgJjRJ6Nn4McUkGgA1JBSAXBFUQcBQTeI12+1SH0d5IOYnOv2tuZnbudWxFslvvpClF0Dag2iK7iLUotAdpAhN8RTAKbNMUYqtzk9tuIxB1AtwDchuRLABNIf3YICTP4udcF4YsFaBErgKAegvHChkQZ3Bk8ADQyblZ4hqDNTnZW48Icp3pYP02bCOTBHe8bAJY5u1ZQaoRWNEcw0cDJcvsuQtEBxWQLROgecjypI5CCnw9uQcTgmdWcYB/sDEeAeshtV/iAtT+vIqDBuYKo9TsTtIUQHQSf+SLZr3IB3A2XJcV2GTW44/H5fNyjNDCuZVMiQI+QY+MdIkPVM0i/eO721XPkxXABpa73m0R4Zqqe4Az7gOK20kvLdJRppBdx2EGkfqRKmm8/5VhyK6197WD/uxyPC0g6wKgmwfFUilN9PgdzcTxus7t4H9FPrMadYo48uLIzBysi+dbbQPpn9eCCbmytsZFAse+lX3LTouyNrtQImgTkwbeQfttUOVvmm92Hr5B+3xqgLjDrHdVnPpgD9H6XJ4D0L18I/A+ApFpjUYSiI73EuRdzVjgmO1wbUYt7UkuvsMDavzm6ep3vV2YWWEH6xmFk5+2lF+n4sy8+yzXtm7xq+eq1BCPIp8eDFCgB1ztm2nt6SGS5MoaHOSi8b/R6N/Zyfh/y1izEu7pnOd/4xoEi5sJP7gJCPO+TabJvQehCoVuh0BTS71WpV57hdBU8fSS9f5DyhuBKAubpVU82PACkA4YdhRkETQ3kjQSq53YG0yrwYMEvknlSBbbxsYhwsr8b+kh4fM6qVyJQD56tlhPyH0sYuSDRhsAS+BtUXkYjgfxAag9uJ3s+ynSBM33/uuBMpYbA64PXEDgNuJnA5nTgZQLb04LHBOI/4A4Ezf8B9O0w9TU+3XUAAAAASUVORK5CYII=")}.spc-icon-follow{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAhCAYAAAC803lsAAACjElEQVRYR+1X23ETQRDsjgCIABwBdgRABEAEhgwgAkwEmAiwIwAiwM7AjgA7AuQImmrVjGq199g9qdAX8yXp9nZ7u3seIg4Uks4BnAI4IXlXH8sD4YCkKwAvALwi6c9b8R/IzoxIOg5qHwOwxtdjWk9Jvbc0kl4C+ALAQOq4APCR5Kp8EO+oWmyzeo8PAG6qZ/ezHpH0DsC34qXr+GxWnsdng7AB15tLegPg+8IkWE0CiVv9ig0vfZPy5iGVGTGgG5InAeQZAN/eYMswG48A3ALYYnD9foemP0n6loOQ5MPMxNOQyABGYyePSPKtfseOR3OmLOTbsDIBenkdKWS5JTlm0s1ZJWiSPQz3F7QCiFPUWTMZIc8fL/iXQFYknzSAZJY8kKwNWjL3A8DrxSVekp1tl78n6eyYMmEecEnS6T61zr47Jun1g5jT9AzAp0i1TZ0od5CUa/zzrKnnWF3L2qA9ne5lZiWZ8e18+/SPq+tk6rZA9ACx5j7c2k7FrHQ9IJpAcpPIIjOw1jmKmAvZ+ZLGNwfqYPNIi5kuIFErssklI64b2QRb5zSft8xqOeyP0V4TGeV0dOoOxr/m6cWCUSDRyj2D2BMZ9zEQ5ffspvndQGzcwWDcA2gApKoND9HSL8YOKEzs6dzhIvh2F3a2gEhyquamXwGc1dPX2O2i8Vmi9JHBjFbQKXY2QCR5hLMcjp1qQ3GRramtW5pq/tgJRFFzsvfckTzqAbEpaJLy5Wbbb20cqW7DNhtmuReXTGMtEAUr2Qy7WTGQ9MbebBRA3KPWw1JvVzaQ7LB7d9CSsaX7Goibl9NudJbslaNeV9SjzyQt1WwYSP2PrPXO0ueTf0dqsyYjSw/oXd8l+V/uFjvHCsmGHQAAAABJRU5ErkJggg==")}.spc-icon-star{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAcCAYAAACdz7SqAAACZElEQVRIS7WW/VEUQRDF34tAjUCJQI1AiEAzECLwiECJQC8CMQIgAiUCMQOIQImgrd/W9NawN7u3Q2n/c3d1M/P6473uth5hEXEp6a2kM9ufep9w74WIOJb0tbp3YPu2553HgP6Q9EbSnaTnkra2N/8NNCJeSfop6V7SYfn+RxLR8rnKuiKNiHNJ7zO6iMioT2zz3ypbDRoRTyX9Lq8Odazqe2v7YBWipB5QWPpR0pXtdwkQEZCI2h7ZJvK91gPafDwims4sITdBIwKShCRSCnleSEIqd7b5Ptok7anZjPje9s3UARcA0gbQPju1/WV6qCLY0n3YjTOngCYD6wvX1Y/0mkvnLWmUaGutZgBk6uXEkytAs6WRBqi/k4594e/7v2TzopRrCyjeEA0eEQ0s/GfAk7b5TdJmIFIBRtw0caxL7HORVszmyNguH7B3QoiN7e2+1C0AZvfaCWJHMpN0QJyTHuCSte9FavToY9vwZrQ5naJJpPGEets+WgPcADxs6nQhPbQ6GPfLNg1ilUUETQV7Njd5ZttgRKC7z73zstL9bC9eAk39djE5IijLh6VVZgkUzVLT5jrCQG/VKyKyLNe2m611jki5IbQaPA+Rds7QVMjEuCPVA8B28/0l9rJ8jbOzPAYYzJ4a0wXxDytLNWNfr2Zv1SSGqVJIxSSiZWJnRVLUj/UFI1rOX07vTz2cizQHNo0BUqRkmD6IvU4n6QY8pwkp59zOlpHgc6CptTzHuklbfNBZ6ghKNkgz5EtrkmkOlCmTng+pXLNilrrXKW/uxHOg1I603fRu74VIlANJNdfSv7IELpBsL3TSAAAAAElFTkSuQmCC")}li.with-icon{position:relative;display:block;padding:0px}li.with-icon i{display:block}li.with-icon .fa:before{position:absolute;font-size:20px;top:10px;left:15px}li.with-icon:hover .fa{color:#000}.fp{display:inline-block;position:relative}.fp:before{position:absolute;font-size:20px;top:10px;left:15px;font:normal normal normal 14px/1 "PngDataPortal";font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;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.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:"progid: DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:"progid: DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:"progid: DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:"progid: DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:"progid: DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{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}.fp.fa-water:before{content:""}.fp.fa-landscape:before{content:""}.fp.fa-mountains:before{content:""}.fp.fa-day-cloudy:before{content:""}.fp.fa-building-o:before{content:""}.fp.fa-building:before{content:""}.fp.fa-building-bts:before{content:""}.fp.fa-location-city:before{content:""}.fp.fa-solar-eclipse:before{content:""}.fp.fa-pagelines:before{content:""}.fp.fa-sitemap:before{content:""}.fp.fa-users:before{content:""}.fp.fa-leaf:before{content:""}.fp.fa-twitter:before{content:""}.fp.fa-facebook:before{content:""}.fp.fa-tint:before{content:""}.fp.fa-download:before{content:""}.fp.fa-bar-chart:before{content:""}.fp.fa-tachometer:before{content:""}.fp.fa-bolt:before{content:""}.fp.fa-caret-left:before{content:""}.fp.fa-caret-right:before{content:""}.fp.fa-sort:before{content:""}.fp.fa-sort-desc:before{content:""}.fp.fa-sort-asc:before{content:""}.fp.fa-university:before{content:""}.fp.fa-tree:before{content:""}.fp.fa-group:before{content:""}.fp.fa-climate:before{content:""}.fp.fa-land:before{content:""}.fp.fa-book:before{content:""}.fp.fa-book-entypo:before{content:""}.fp.fa-radioactive:before{content:""}.fp.fa-orchid:before{content:""}.fp.fa-culture:before{content:""}.fp.fa-data-story:before{content:""}.fp.fa-file-o:before{content:""}.fp.fa-files-o:before{content:""}.fp.fa-paperclip:before{content:""}.fp.fa-line-chart:before{content:""}.fp.fa-pie-chart:before{content:""}.fp.fa-linkedin:before{content:""}.fp.fa-eye:before{content:""}.fp.fa-plus:before{content:""}.fp.fa-folder-open:before{content:""}.fp.fa-download-fas:before{content:""}.fp.fa-download-mdc:before{content:""}.fp.fa-file-text:before{content:""}.fp.fa-file:before{content:""}.fp.fa-edit:before{content:""}.fp.fa-edit-fas:before{content:""}.fp.fa-cogs:before{content:""}.fp.fa-home:before{content:""}.fp.fa-search:before{content:""}.fp.fa-chart-pie:before{content:""}.fp.fa-graduation-cap:before{content:""}.fp.fa-envelope:before{content:""}.fp.fa-times:before{content:""}.fp.fa-angle-down:before{content:""}.fp.fa-angle-up:before{content:""}.fp.fa-chevron-circle-down:before{content:""}.fp.fa-chevron-circle-up:before{content:""}.fp.fa-check-circle:before{content:""}.fp.fa-check:before{content:"烈"}.fp.fa-exclamation-circle:before{content:""}.fp.fa-info-circle:before{content:""}.fp.fa-database:before{content:""}.fp.fa-layer-group:before{content:""}.fp.fa-cubes:before{content:""}.fp.fa-cube:before{content:""}.fp.fa-folder-open-far:before{content:""}.fp.fa-tanoa:before{content:""}.fp.fa-waves:before{content:""}.fp.fa-turtle:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.fa.fa-glass:before{content:""}.fa.fa-music:before{content:""}.fa.fa-search:before{content:""}.fa.fa-envelope-o:before{content:""}.fa.fa-heart:before{content:""}.fa.fa-star:before{content:""}.fa.fa-star-o:before{content:""}.fa.fa-user:before{content:""}.fa.fa-film:before{content:""}.fa.fa-th-large:before{content:""}.fa.fa-th:before{content:""}.fa.fa-th-list:before{content:""}.fa.fa-check:before{content:""}.fa.fa-remove:before,.fa.fa-close:before,.fa.fa-times:before{content:""}.fa.fa-search-plus:before{content:""}.fa.fa-search-minus:before{content:""}.fa.fa-power-off:before{content:""}.fa.fa-signal:before{content:""}.fa.fa-gear:before,.fa.fa-cog:before{content:""}.fa.fa-trash-o:before{content:""}.fa.fa-home:before{content:""}.fa.fa-file-o:before{content:""}.fa.fa-clock-o:before{content:""}.fa.fa-road:before{content:""}.fa.fa-download:before{content:""}.fa.fa-arrow-circle-o-down:before{content:""}.fa.fa-arrow-circle-o-up:before{content:""}.fa.fa-inbox:before{content:""}.fa.fa-play-circle-o:before{content:""}.fa.fa-rotate-right:before,.fa.fa-repeat:before{content:""}.fa.fa-refresh:before{content:""}.fa.fa-list-alt:before{content:""}.fa.fa-lock:before{content:""}.fa.fa-flag:before{content:""}.fa.fa-headphones:before{content:""}.fa.fa-volume-off:before{content:""}.fa.fa-volume-down:before{content:""}.fa.fa-volume-up:before{content:""}.fa.fa-qrcode:before{content:""}.fa.fa-barcode:before{content:""}.fa.fa-tag:before{content:""}.fa.fa-tags:before{content:""}.fa.fa-book:before{content:""}.fa.fa-bookmark:before{content:""}.fa.fa-print:before{content:""}.fa.fa-camera:before{content:""}.fa.fa-font:before{content:""}.fa.fa-bold:before{content:""}.fa.fa-italic:before{content:""}.fa.fa-text-height:before{content:""}.fa.fa-text-width:before{content:""}.fa.fa-align-left:before{content:""}.fa.fa-align-center:before{content:""}.fa.fa-align-right:before{content:""}.fa.fa-align-justify:before{content:""}.fa.fa-list:before{content:""}.fa.fa-dedent:before,.fa.fa-outdent:before{content:""}.fa.fa-indent:before{content:""}.fa.fa-video-camera:before{content:""}.fa.fa-photo:before,.fa.fa-image:before,.fa.fa-picture-o:before{content:""}.fa.fa-pencil:before{content:""}.fa.fa-map-marker:before{content:""}.fa.fa-adjust:before{content:""}.fa.fa-tint:before{content:""}.fa.fa-edit:before,.fa.fa-pencil-square-o:before{content:""}.fa.fa-share-square-o:before{content:""}.fa.fa-check-square-o:before{content:""}.fa.fa-arrows:before{content:""}.fa.fa-step-backward:before{content:""}.fa.fa-fast-backward:before{content:""}.fa.fa-backward:before{content:""}.fa.fa-play:before{content:""}.fa.fa-pause:before{content:""}.fa.fa-stop:before{content:""}.fa.fa-forward:before{content:""}.fa.fa-fast-forward:before{content:""}.fa.fa-step-forward:before{content:""}.fa.fa-eject:before{content:""}.fa.fa-chevron-left:before{content:""}.fa.fa-chevron-right:before{content:""}.fa.fa-plus-circle:before{content:""}.fa.fa-minus-circle:before{content:""}.fa.fa-times-circle:before{content:""}.fa.fa-check-circle:before{content:""}.fa.fa-question-circle:before{content:""}.fa.fa-info-circle:before{content:""}.fa.fa-crosshairs:before{content:""}.fa.fa-times-circle-o:before{content:""}.fa.fa-check-circle-o:before{content:""}.fa.fa-ban:before{content:""}.fa.fa-arrow-left:before{content:""}.fa.fa-arrow-right:before{content:""}.fa.fa-arrow-up:before{content:""}.fa.fa-arrow-down:before{content:""}.fa.fa-mail-forward:before,.fa.fa-share:before{content:""}.fa.fa-expand:before{content:""}.fa.fa-compress:before{content:""}.fa.fa-plus:before{content:""}.fa.fa-minus:before{content:""}.fa.fa-asterisk:before{content:""}.fa.fa-exclamation-circle:before{content:""}.fa.fa-gift:before{content:""}.fa.fa-leaf:before{content:""}.fa.fa-fire:before{content:""}.fa.fa-eye:before{content:""}.fa.fa-eye-slash:before{content:""}.fa.fa-warning:before,.fa.fa-exclamation-triangle:before{content:""}.fa.fa-plane:before{content:""}.fa.fa-calendar:before{content:""}.fa.fa-random:before{content:""}.fa.fa-comment:before{content:""}.fa.fa-magnet:before{content:""}.fa.fa-chevron-up:before{content:""}.fa.fa-chevron-down:before{content:""}.fa.fa-retweet:before{content:""}.fa.fa-shopping-cart:before{content:""}.fa.fa-folder:before{content:""}.fa.fa-folder-open:before{content:""}.fa.fa-arrows-v:before{content:""}.fa.fa-arrows-h:before{content:""}.fa.fa-bar-chart-o:before,.fa.fa-bar-chart:before{content:""}.fa.fa-twitter-square:before{content:""}.fa.fa-facebook-square:before{content:""}.fa.fa-camera-retro:before{content:""}.fa.fa-key:before{content:""}.fa.fa-gears:before,.fa.fa-cogs:before{content:""}.fa.fa-comments:before{content:""}.fa.fa-thumbs-o-up:before{content:""}.fa.fa-thumbs-o-down:before{content:""}.fa.fa-star-half:before{content:""}.fa.fa-heart-o:before{content:""}.fa.fa-sign-out:before{content:""}.fa.fa-linkedin-square:before{content:""}.fa.fa-thumb-tack:before{content:""}.fa.fa-external-link:before{content:""}.fa.fa-sign-in:before{content:""}.fa.fa-trophy:before{content:""}.fa.fa-github-square:before{content:""}.fa.fa-upload:before{content:""}.fa.fa-lemon-o:before{content:""}.fa.fa-phone:before{content:""}.fa.fa-square-o:before{content:""}.fa.fa-bookmark-o:before{content:""}.fa.fa-phone-square:before{content:""}.fa.fa-twitter:before{content:""}.fa.fa-facebook-f:before,.fa.fa-facebook:before{content:""}.fa.fa-github:before{content:""}.fa.fa-unlock:before{content:""}.fa.fa-credit-card:before{content:""}.fa.fa-feed:before,.fa.fa-rss:before{content:""}.fa.fa-hdd-o:before{content:""}.fa.fa-bullhorn:before{content:""}.fa.fa-bell:before{content:""}.fa.fa-certificate:before{content:""}.fa.fa-hand-o-right:before{content:""}.fa.fa-hand-o-left:before{content:""}.fa.fa-hand-o-up:before{content:""}.fa.fa-hand-o-down:before{content:""}.fa.fa-arrow-circle-left:before{content:""}.fa.fa-arrow-circle-right:before{content:""}.fa.fa-arrow-circle-up:before{content:""}.fa.fa-arrow-circle-down:before{content:""}.fa.fa-globe:before{content:""}.fa.fa-wrench:before{content:""}.fa.fa-tasks:before{content:""}.fa.fa-filter:before{content:""}.fa.fa-briefcase:before{content:""}.fa.fa-arrows-alt:before{content:""}.fa.fa-group:before,.fa.fa-users:before{content:""}.fa.fa-chain:before,.fa.fa-link:before{content:""}.fa.fa-cloud:before{content:""}.fa.fa-flask:before{content:""}.fa.fa-cut:before,.fa.fa-scissors:before{content:""}.fa.fa-copy:before,.fa.fa-files-o:before{content:""}.fa.fa-paperclip:before{content:""}.fa.fa-save:before,.fa.fa-floppy-o:before{content:""}.fa.fa-square:before{content:""}.fa.fa-navicon:before,.fa.fa-reorder:before,.fa.fa-bars:before{content:""}.fa.fa-list-ul:before{content:""}.fa.fa-list-ol:before{content:""}.fa.fa-strikethrough:before{content:""}.fa.fa-underline:before{content:""}.fa.fa-table:before{content:""}.fa.fa-magic:before{content:""}.fa.fa-truck:before{content:""}.fa.fa-pinterest:before{content:""}.fa.fa-pinterest-square:before{content:""}.fa.fa-google-plus-square:before{content:""}.fa.fa-google-plus:before{content:""}.fa.fa-money:before{content:""}.fa.fa-caret-down:before{content:""}.fa.fa-caret-up:before{content:""}.fa.fa-caret-left:before{content:""}.fa.fa-caret-right:before{content:""}.fa.fa-columns:before{content:""}.fa.fa-unsorted:before,.fa.fa-sort:before{content:""}.fa.fa-sort-down:before,.fa.fa-sort-desc:before{content:""}.fa.fa-sort-up:before,.fa.fa-sort-asc:before{content:""}.fa.fa-envelope:before{content:""}.fa.fa-linkedin:before{content:""}.fa.fa-rotate-left:before,.fa.fa-undo:before{content:""}.fa.fa-legal:before,.fa.fa-gavel:before{content:""}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:""}.fa.fa-comment-o:before{content:""}.fa.fa-comments-o:before{content:""}.fa.fa-flash:before,.fa.fa-bolt:before{content:""}.fa.fa-sitemap:before{content:""}.fa.fa-umbrella:before{content:""}.fa.fa-paste:before,.fa.fa-clipboard:before{content:""}.fa.fa-lightbulb-o:before{content:""}.fa.fa-exchange:before{content:""}.fa.fa-cloud-download:before{content:""}.fa.fa-cloud-upload:before{content:""}.fa.fa-user-md:before{content:""}.fa.fa-stethoscope:before{content:""}.fa.fa-suitcase:before{content:""}.fa.fa-bell-o:before{content:""}.fa.fa-coffee:before{content:""}.fa.fa-cutlery:before{content:""}.fa.fa-file-text-o:before{content:""}.fa.fa-building-o:before{content:""}.fa.fa-hospital-o:before{content:""}.fa.fa-ambulance:before{content:""}.fa.fa-medkit:before{content:""}.fa.fa-fighter-jet:before{content:""}.fa.fa-beer:before{content:""}.fa.fa-h-square:before{content:""}.fa.fa-plus-square:before{content:""}.fa.fa-angle-double-left:before{content:""}.fa.fa-angle-double-right:before{content:""}.fa.fa-angle-double-up:before{content:""}.fa.fa-angle-double-down:before{content:""}.fa.fa-angle-left:before{content:""}.fa.fa-angle-right:before{content:""}.fa.fa-angle-up:before{content:""}.fa.fa-angle-down:before{content:""}.fa.fa-desktop:before{content:""}.fa.fa-laptop:before{content:""}.fa.fa-tablet:before{content:""}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:""}.fa.fa-circle-o:before{content:""}.fa.fa-quote-left:before{content:""}.fa.fa-quote-right:before{content:""}.fa.fa-spinner:before{content:""}.fa.fa-circle:before{content:""}.fa.fa-mail-reply:before,.fa.fa-reply:before{content:""}.fa.fa-github-alt:before{content:""}.fa.fa-folder-o:before{content:""}.fa.fa-folder-open-o:before{content:""}.fa.fa-smile-o:before{content:""}.fa.fa-frown-o:before{content:""}.fa.fa-meh-o:before{content:""}.fa.fa-gamepad:before{content:""}.fa.fa-keyboard-o:before{content:""}.fa.fa-flag-o:before{content:""}.fa.fa-flag-checkered:before{content:""}.fa.fa-terminal:before{content:""}.fa.fa-code:before{content:""}.fa.fa-mail-reply-all:before,.fa.fa-reply-all:before{content:""}.fa.fa-star-half-empty:before,.fa.fa-star-half-full:before,.fa.fa-star-half-o:before{content:""}.fa.fa-location-arrow:before{content:""}.fa.fa-crop:before{content:""}.fa.fa-code-fork:before{content:""}.fa.fa-unlink:before,.fa.fa-chain-broken:before{content:""}.fa.fa-question:before{content:""}.fa.fa-info:before{content:""}.fa.fa-exclamation:before{content:""}.fa.fa-superscript:before{content:""}.fa.fa-subscript:before{content:""}.fa.fa-eraser:before{content:""}.fa.fa-puzzle-piece:before{content:""}.fa.fa-microphone:before{content:""}.fa.fa-microphone-slash:before{content:""}.fa.fa-shield:before{content:""}.fa.fa-calendar-o:before{content:""}.fa.fa-fire-extinguisher:before{content:""}.fa.fa-rocket:before{content:""}.fa.fa-maxcdn:before{content:""}.fa.fa-chevron-circle-left:before{content:""}.fa.fa-chevron-circle-right:before{content:""}.fa.fa-chevron-circle-up:before{content:""}.fa.fa-chevron-circle-down:before{content:""}.fa.fa-html5:before{content:""}.fa.fa-css3:before{content:""}.fa.fa-anchor:before{content:""}.fa.fa-unlock-alt:before{content:""}.fa.fa-bullseye:before{content:""}.fa.fa-ellipsis-h:before{content:""}.fa.fa-ellipsis-v:before{content:""}.fa.fa-rss-square:before{content:""}.fa.fa-play-circle:before{content:""}.fa.fa-ticket:before{content:""}.fa.fa-minus-square:before{content:""}.fa.fa-minus-square-o:before{content:""}.fa.fa-level-up:before{content:""}.fa.fa-level-down:before{content:""}.fa.fa-check-square:before{content:""}.fa.fa-pencil-square:before{content:""}.fa.fa-external-link-square:before{content:""}.fa.fa-share-square:before{content:""}.fa.fa-compass:before{content:""}.fa.fa-toggle-down:before,.fa.fa-caret-square-o-down:before{content:""}.fa.fa-toggle-up:before,.fa.fa-caret-square-o-up:before{content:""}.fa.fa-toggle-right:before,.fa.fa-caret-square-o-right:before{content:""}.fa.fa-euro:before,.fa.fa-eur:before{content:""}.fa.fa-gbp:before{content:""}.fa.fa-dollar:before,.fa.fa-usd:before{content:""}.fa.fa-rupee:before,.fa.fa-inr:before{content:""}.fa.fa-cny:before,.fa.fa-rmb:before,.fa.fa-yen:before,.fa.fa-jpy:before{content:""}.fa.fa-ruble:before,.fa.fa-rouble:before,.fa.fa-rub:before{content:""}.fa.fa-won:before,.fa.fa-krw:before{content:""}.fa.fa-bitcoin:before,.fa.fa-btc:before{content:""}.fa.fa-file:before{content:""}.fa.fa-file-text:before{content:""}.fa.fa-sort-alpha-asc:before{content:""}.fa.fa-sort-alpha-desc:before{content:""}.fa.fa-sort-amount-asc:before{content:""}.fa.fa-sort-amount-desc:before{content:""}.fa.fa-sort-numeric-asc:before{content:""}.fa.fa-sort-numeric-desc:before{content:""}.fa.fa-thumbs-up:before{content:""}.fa.fa-thumbs-down:before{content:""}.fa.fa-youtube-square:before{content:""}.fa.fa-youtube:before{content:""}.fa.fa-xing:before{content:""}.fa.fa-xing-square:before{content:""}.fa.fa-youtube-play:before{content:""}.fa.fa-dropbox:before{content:""}.fa.fa-stack-overflow:before{content:""}.fa.fa-instagram:before{content:""}.fa.fa-flickr:before{content:""}.fa.fa-adn:before{content:""}.fa.fa-bitbucket:before{content:""}.fa.fa-bitbucket-square:before{content:""}.fa.fa-tumblr:before{content:""}.fa.fa-tumblr-square:before{content:""}.fa.fa-long-arrow-down:before{content:""}.fa.fa-long-arrow-up:before{content:""}.fa.fa-long-arrow-left:before{content:""}.fa.fa-long-arrow-right:before{content:""}.fa.fa-apple:before{content:""}.fa.fa-windows:before{content:""}.fa.fa-android:before{content:""}.fa.fa-linux:before{content:""}.fa.fa-dribbble:before{content:""}.fa.fa-skype:before{content:""}.fa.fa-foursquare:before{content:""}.fa.fa-trello:before{content:""}.fa.fa-female:before{content:""}.fa.fa-male:before{content:""}.fa.fa-gittip:before,.fa.fa-gratipay:before{content:""}.fa.fa-sun-o:before{content:""}.fa.fa-moon-o:before{content:""}.fa.fa-archive:before{content:""}.fa.fa-bug:before{content:""}.fa.fa-vk:before{content:""}.fa.fa-weibo:before{content:""}.fa.fa-renren:before{content:""}.fa.fa-pagelines:before{content:""}.fa.fa-stack-exchange:before{content:""}.fa.fa-arrow-circle-o-right:before{content:""}.fa.fa-arrow-circle-o-left:before{content:""}.fa.fa-toggle-left:before,.fa.fa-caret-square-o-left:before{content:""}.fa.fa-dot-circle-o:before{content:""}.fa.fa-wheelchair:before{content:""}.fa.fa-vimeo-square:before{content:""}.fa.fa-turkish-lira:before,.fa.fa-try:before{content:""}.fa.fa-plus-square-o:before{content:""}.fa.fa-space-shuttle:before{content:""}.fa.fa-slack:before{content:""}.fa.fa-envelope-square:before{content:""}.fa.fa-wordpress:before{content:""}.fa.fa-openid:before{content:""}.fa.fa-institution:before,.fa.fa-bank:before,.fa.fa-university:before{content:""}.fa.fa-mortar-board:before,.fa.fa-graduation-cap:before{content:""}.fa.fa-yahoo:before{content:""}.fa.fa-google:before{content:""}.fa.fa-reddit:before{content:""}.fa.fa-reddit-square:before{content:""}.fa.fa-stumbleupon-circle:before{content:""}.fa.fa-stumbleupon:before{content:""}.fa.fa-delicious:before{content:""}.fa.fa-digg:before{content:""}.fa.fa-pied-piper-pp:before{content:""}.fa.fa-pied-piper-alt:before{content:""}.fa.fa-drupal:before{content:""}.fa.fa-joomla:before{content:""}.fa.fa-language:before{content:""}.fa.fa-fax:before{content:""}.fa.fa-building:before{content:""}.fa.fa-child:before{content:""}.fa.fa-paw:before{content:""}.fa.fa-spoon:before{content:""}.fa.fa-cube:before{content:""}.fa.fa-cubes:before{content:""}.fa.fa-behance:before{content:""}.fa.fa-behance-square:before{content:""}.fa.fa-steam:before{content:""}.fa.fa-steam-square:before{content:""}.fa.fa-recycle:before{content:""}.fa.fa-automobile:before,.fa.fa-car:before{content:""}.fa.fa-cab:before,.fa.fa-taxi:before{content:""}.fa.fa-tree:before{content:""}.fa.fa-spotify:before{content:""}.fa.fa-deviantart:before{content:""}.fa.fa-soundcloud:before{content:""}.fa.fa-database:before{content:""}.fa.fa-file-pdf-o:before{content:""}.fa.fa-file-word-o:before{content:""}.fa.fa-file-excel-o:before{content:""}.fa.fa-file-powerpoint-o:before{content:""}.fa.fa-file-photo-o:before,.fa.fa-file-picture-o:before,.fa.fa-file-image-o:before{content:""}.fa.fa-file-zip-o:before,.fa.fa-file-archive-o:before{content:""}.fa.fa-file-sound-o:before,.fa.fa-file-audio-o:before{content:""}.fa.fa-file-movie-o:before,.fa.fa-file-video-o:before{content:""}.fa.fa-file-code-o:before{content:""}.fa.fa-vine:before{content:""}.fa.fa-codepen:before{content:""}.fa.fa-jsfiddle:before{content:""}.fa.fa-life-bouy:before,.fa.fa-life-buoy:before,.fa.fa-life-saver:before,.fa.fa-support:before,.fa.fa-life-ring:before{content:""}.fa.fa-circle-o-notch:before{content:""}.fa.fa-ra:before,.fa.fa-resistance:before,.fa.fa-rebel:before{content:""}.fa.fa-ge:before,.fa.fa-empire:before{content:""}.fa.fa-git-square:before{content:""}.fa.fa-git:before{content:""}.fa.fa-y-combinator-square:before,.fa.fa-yc-square:before,.fa.fa-hacker-news:before{content:""}.fa.fa-tencent-weibo:before{content:""}.fa.fa-qq:before{content:""}.fa.fa-wechat:before,.fa.fa-weixin:before{content:""}.fa.fa-send:before,.fa.fa-paper-plane:before{content:""}.fa.fa-send-o:before,.fa.fa-paper-plane-o:before{content:""}.fa.fa-history:before{content:""}.fa.fa-circle-thin:before{content:""}.fa.fa-header:before{content:""}.fa.fa-paragraph:before{content:""}.fa.fa-sliders:before{content:""}.fa.fa-share-alt:before{content:""}.fa.fa-share-alt-square:before{content:""}.fa.fa-bomb:before{content:""}.fa.fa-soccer-ball-o:before,.fa.fa-futbol-o:before{content:""}.fa.fa-tty:before{content:""}.fa.fa-binoculars:before{content:""}.fa.fa-plug:before{content:""}.fa.fa-slideshare:before{content:""}.fa.fa-twitch:before{content:""}.fa.fa-yelp:before{content:""}.fa.fa-newspaper-o:before{content:""}.fa.fa-wifi:before{content:""}.fa.fa-calculator:before{content:""}.fa.fa-paypal:before{content:""}.fa.fa-google-wallet:before{content:""}.fa.fa-cc-visa:before{content:""}.fa.fa-cc-mastercard:before{content:""}.fa.fa-cc-discover:before{content:""}.fa.fa-cc-amex:before{content:""}.fa.fa-cc-paypal:before{content:""}.fa.fa-cc-stripe:before{content:""}.fa.fa-bell-slash:before{content:""}.fa.fa-bell-slash-o:before{content:""}.fa.fa-trash:before{content:""}.fa.fa-copyright:before{content:""}.fa.fa-at:before{content:""}.fa.fa-eyedropper:before{content:""}.fa.fa-paint-brush:before{content:""}.fa.fa-birthday-cake:before{content:""}.fa.fa-area-chart:before{content:""}.fa.fa-pie-chart:before{content:""}.fa.fa-line-chart:before{content:""}.fa.fa-lastfm:before{content:""}.fa.fa-lastfm-square:before{content:""}.fa.fa-toggle-off:before{content:""}.fa.fa-toggle-on:before{content:""}.fa.fa-bicycle:before{content:""}.fa.fa-bus:before{content:""}.fa.fa-ioxhost:before{content:""}.fa.fa-angellist:before{content:""}.fa.fa-cc:before{content:""}.fa.fa-shekel:before,.fa.fa-sheqel:before,.fa.fa-ils:before{content:""}.fa.fa-meanpath:before{content:""}.fa.fa-buysellads:before{content:""}.fa.fa-connectdevelop:before{content:""}.fa.fa-dashcube:before{content:""}.fa.fa-forumbee:before{content:""}.fa.fa-leanpub:before{content:""}.fa.fa-sellsy:before{content:""}.fa.fa-shirtsinbulk:before{content:""}.fa.fa-simplybuilt:before{content:""}.fa.fa-skyatlas:before{content:""}.fa.fa-cart-plus:before{content:""}.fa.fa-cart-arrow-down:before{content:""}.fa.fa-diamond:before{content:""}.fa.fa-ship:before{content:""}.fa.fa-user-secret:before{content:""}.fa.fa-motorcycle:before{content:""}.fa.fa-street-view:before{content:""}.fa.fa-heartbeat:before{content:""}.fa.fa-venus:before{content:""}.fa.fa-mars:before{content:""}.fa.fa-mercury:before{content:""}.fa.fa-intersex:before,.fa.fa-transgender:before{content:""}.fa.fa-transgender-alt:before{content:""}.fa.fa-venus-double:before{content:""}.fa.fa-mars-double:before{content:""}.fa.fa-venus-mars:before{content:""}.fa.fa-mars-stroke:before{content:""}.fa.fa-mars-stroke-v:before{content:""}.fa.fa-mars-stroke-h:before{content:""}.fa.fa-neuter:before{content:""}.fa.fa-genderless:before{content:""}.fa.fa-facebook-official:before{content:""}.fa.fa-pinterest-p:before{content:""}.fa.fa-whatsapp:before{content:""}.fa.fa-server:before{content:""}.fa.fa-user-plus:before{content:""}.fa.fa-user-times:before{content:""}.fa.fa-hotel:before,.fa.fa-bed:before{content:""}.fa.fa-viacoin:before{content:""}.fa.fa-train:before{content:""}.fa.fa-subway:before{content:""}.fa.fa-medium:before{content:""}.fa.fa-yc:before,.fa.fa-y-combinator:before{content:""}.fa.fa-optin-monster:before{content:""}.fa.fa-opencart:before{content:""}.fa.fa-expeditedssl:before{content:""}.fa.fa-battery-4:before,.fa.fa-battery:before,.fa.fa-battery-full:before{content:""}.fa.fa-battery-3:before,.fa.fa-battery-three-quarters:before{content:""}.fa.fa-battery-2:before,.fa.fa-battery-half:before{content:""}.fa.fa-battery-1:before,.fa.fa-battery-quarter:before{content:""}.fa.fa-battery-0:before,.fa.fa-battery-empty:before{content:""}.fa.fa-mouse-pointer:before{content:""}.fa.fa-i-cursor:before{content:""}.fa.fa-object-group:before{content:""}.fa.fa-object-ungroup:before{content:""}.fa.fa-sticky-note:before{content:""}.fa.fa-sticky-note-o:before{content:""}.fa.fa-cc-jcb:before{content:""}.fa.fa-cc-diners-club:before{content:""}.fa.fa-clone:before{content:""}.fa.fa-balance-scale:before{content:""}.fa.fa-hourglass-o:before{content:""}.fa.fa-hourglass-1:before,.fa.fa-hourglass-start:before{content:""}.fa.fa-hourglass-2:before,.fa.fa-hourglass-half:before{content:""}.fa.fa-hourglass-3:before,.fa.fa-hourglass-end:before{content:""}.fa.fa-hourglass:before{content:""}.fa.fa-hand-grab-o:before,.fa.fa-hand-rock-o:before{content:""}.fa.fa-hand-stop-o:before,.fa.fa-hand-paper-o:before{content:""}.fa.fa-hand-scissors-o:before{content:""}.fa.fa-hand-lizard-o:before{content:""}.fa.fa-hand-spock-o:before{content:""}.fa.fa-hand-pointer-o:before{content:""}.fa.fa-hand-peace-o:before{content:""}.fa.fa-trademark:before{content:""}.fa.fa-registered:before{content:""}.fa.fa-creative-commons:before{content:""}.fa.fa-gg:before{content:""}.fa.fa-gg-circle:before{content:""}.fa.fa-tripadvisor:before{content:""}.fa.fa-odnoklassniki:before{content:""}.fa.fa-odnoklassniki-square:before{content:""}.fa.fa-get-pocket:before{content:""}.fa.fa-wikipedia-w:before{content:""}.fa.fa-safari:before{content:""}.fa.fa-chrome:before{content:""}.fa.fa-firefox:before{content:""}.fa.fa-opera:before{content:""}.fa.fa-internet-explorer:before{content:""}.fa.fa-tv:before,.fa.fa-television:before{content:""}.fa.fa-contao:before{content:""}.fa.fa-500px:before{content:""}.fa.fa-amazon:before{content:""}.fa.fa-calendar-plus-o:before{content:""}.fa.fa-calendar-minus-o:before{content:""}.fa.fa-calendar-times-o:before{content:""}.fa.fa-calendar-check-o:before{content:""}.fa.fa-industry:before{content:""}.fa.fa-map-pin:before{content:""}.fa.fa-map-signs:before{content:""}.fa.fa-map-o:before{content:""}.fa.fa-map:before{content:""}.fa.fa-commenting:before{content:""}.fa.fa-commenting-o:before{content:""}.fa.fa-houzz:before{content:""}.fa.fa-vimeo:before{content:""}.fa.fa-black-tie:before{content:""}.fa.fa-fonticons:before{content:""}.fa.fa-reddit-alien:before{content:""}.fa.fa-edge:before{content:""}.fa.fa-credit-card-alt:before{content:""}.fa.fa-codiepie:before{content:""}.fa.fa-modx:before{content:""}.fa.fa-fort-awesome:before{content:""}.fa.fa-usb:before{content:""}.fa.fa-product-hunt:before{content:""}.fa.fa-mixcloud:before{content:""}.fa.fa-scribd:before{content:""}.fa.fa-pause-circle:before{content:""}.fa.fa-pause-circle-o:before{content:""}.fa.fa-stop-circle:before{content:""}.fa.fa-stop-circle-o:before{content:""}.fa.fa-shopping-bag:before{content:""}.fa.fa-shopping-basket:before{content:""}.fa.fa-hashtag:before{content:""}.fa.fa-bluetooth:before{content:""}.fa.fa-bluetooth-b:before{content:""}.fa.fa-percent:before{content:""}.fa.fa-gitlab:before{content:""}.fa.fa-wpbeginner:before{content:""}.fa.fa-wpforms:before{content:""}.fa.fa-envira:before{content:""}.fa.fa-universal-access:before{content:""}.fa.fa-wheelchair-alt:before{content:""}.fa.fa-question-circle-o:before{content:""}.fa.fa-blind:before{content:""}.fa.fa-audio-description:before{content:""}.fa.fa-volume-control-phone:before{content:""}.fa.fa-braille:before{content:""}.fa.fa-assistive-listening-systems:before{content:""}.fa.fa-asl-interpreting:before,.fa.fa-american-sign-language-interpreting:before{content:""}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before,.fa.fa-deaf:before{content:""}.fa.fa-glide:before{content:""}.fa.fa-glide-g:before{content:""}.fa.fa-signing:before,.fa.fa-sign-language:before{content:""}.fa.fa-low-vision:before{content:""}.fa.fa-viadeo:before{content:""}.fa.fa-viadeo-square:before{content:""}.fa.fa-snapchat:before{content:""}.fa.fa-snapchat-ghost:before{content:""}.fa.fa-snapchat-square:before{content:""}.fa.fa-pied-piper:before{content:""}.fa.fa-first-order:before{content:""}.fa.fa-yoast:before{content:""}.fa.fa-themeisle:before{content:""}.fa.fa-google-plus-circle:before,.fa.fa-google-plus-official:before{content:""}.fa.fa-fa:before,.fa.fa-font-awesome:before{content:""}.fa.fa-handshake-o:before{content:""}.fa.fa-envelope-open:before{content:""}.fa.fa-envelope-open-o:before{content:""}.fa.fa-linode:before{content:""}.fa.fa-address-book:before{content:""}.fa.fa-address-book-o:before{content:""}.fa.fa-vcard:before,.fa.fa-address-card:before{content:""}.fa.fa-vcard-o:before,.fa.fa-address-card-o:before{content:""}.fa.fa-user-circle:before{content:""}.fa.fa-user-circle-o:before{content:""}.fa.fa-user-o:before{content:""}.fa.fa-id-badge:before{content:""}.fa.fa-drivers-license:before,.fa.fa-id-card:before{content:""}.fa.fa-drivers-license-o:before,.fa.fa-id-card-o:before{content:""}.fa.fa-quora:before{content:""}.fa.fa-free-code-camp:before{content:""}.fa.fa-telegram:before{content:""}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before,.fa.fa-thermometer-full:before{content:""}.fa.fa-thermometer-3:before,.fa.fa-thermometer-three-quarters:before{content:""}.fa.fa-thermometer-2:before,.fa.fa-thermometer-half:before{content:""}.fa.fa-thermometer-1:before,.fa.fa-thermometer-quarter:before{content:""}.fa.fa-thermometer-0:before,.fa.fa-thermometer-empty:before{content:""}.fa.fa-shower:before{content:""}.fa.fa-bathtub:before,.fa.fa-s15:before,.fa.fa-bath:before{content:""}.fa.fa-podcast:before{content:""}.fa.fa-window-maximize:before{content:""}.fa.fa-window-minimize:before{content:""}.fa.fa-window-restore:before{content:""}.fa.fa-times-rectangle:before,.fa.fa-window-close:before{content:""}.fa.fa-times-rectangle-o:before,.fa.fa-window-close-o:before{content:""}.fa.fa-bandcamp:before{content:""}.fa.fa-grav:before{content:""}.fa.fa-etsy:before{content:""}.fa.fa-imdb:before{content:""}.fa.fa-ravelry:before{content:""}.fa.fa-eercast:before{content:""}.fa.fa-microchip:before{content:""}.fa.fa-snowflake-o:before{content:""}.fa.fa-superpowers:before{content:""}.fa.fa-wpexplorer:before{content:""}.fa.fa-meetup:before{content:""}.icon-code:before{font-family:"FontAwesome";content:"";margin-right:3px}@font-face{font-family:"Calibri";font-display:swap;src:url("/data/base/fonts/Calibri-Bold.ttf");src:url("/data/base/fonts/Calibri-Bold.eot?#iefix") format("embedded-opentype"),url("/data/base/fonts/Calibri-Bold.woff2") format("woff2"),url("/data/base/fonts/Calibri-Bold.woff") format("woff"),url("/data/base/fonts/Calibri-Bold.ttf") format("truetype"),url("/data/base/fonts/Calibri-Bold.svg#Calibri-Bold") format("svg");font-weight:bold;font-style:normal}@font-face{font-family:"Calibri";font-display:swap;src:url("/data/base/fonts/Calibri-Light.ttf");src:url("/data/base/fonts/Calibri-Light.eot?#iefix") format("embedded-opentype"),url("/data/base/fonts/Calibri-Light.woff2") format("woff2"),url("/data/base/fonts/Calibri-Light.woff") format("woff"),url("/data/base/fonts/Calibri-Light.ttf") format("truetype"),url("/data/base/fonts/Calibri-Light.svg#Calibri-Light") format("svg");font-weight:lighter;font-style:normal}@font-face{font-family:"Calibri";font-display:swap;src:url("/data/base/fonts/Calibri.ttf");src:url("/data/base/fonts/Calibri.eot?#iefix") format("embedded-opentype"),url("/data/base/fonts/Calibri.woff2") format("woff2"),url("/data/base/fonts/Calibri.woff") format("woff"),url("/data/base/fonts/Calibri.ttf") format("truetype"),url("/data/base/fonts/Calibri.svg#Calibri") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:"FontAwesome";font-display:swap;src:url("/data/base/fonts/fontawesome-webfont.ttf");src:url("/data/base/fonts/fontawesome-webfont.eot?#iefix") format("embedded-opentype"),url("/data/base/fonts/fontawesome-webfont.woff") format("woff"),url("/data/base/fonts/fontawesome-webfont.ttf") format("truetype"),url("/data/base/fonts/fontawesome-webfont.svg#fontawesome-webfont") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:"PngDataPortal";font-display:swap;src:url("/data/base/base/fonts/fa-kit/icons.eot");src:url("/data/base/fonts/fa-kit/icons.eot?#iefix") format("embedded-opentype"),url("/data/base/fonts/fa-kit/icons.woff2") format("woff2"),url("/data/base/fonts/fa-kit/icons.woff") format("woff"),url("/data/base/fonts/fa-kit/icons.ttf") format("truetype"),url("/data/base/fonts/fa-kit/icons.otf") format("opentype");font-weight:normal;font-style:normal}@font-face{font-family:"Roboto";font-display:swap;font-style:normal;font-weight:100;src:local("Roboto Thin"),local("Roboto-Thin"),url("/data/base/fonts/roboto/roboto-v20-latin-100.woff2") format("woff2"),url("/data/base/fonts/roboto/roboto-v20-latin-100.woff") format("woff")}@font-face{font-family:"Roboto";font-display:swap;font-style:italic;font-weight:100;src:local("Roboto Thin Italic"),local("Roboto-ThinItalic"),url("/data/base/fonts/roboto/roboto-v20-latin-100italic.woff2") format("woff2"),url("/data/base/fonts/roboto/roboto-v20-latin-100italic.woff") format("woff")}@font-face{font-family:"Roboto";font-display:swap;font-style:normal;font-weight:300;src:local("Roboto Light"),local("Roboto-Light"),url("/data/base/fonts/roboto/roboto-v20-latin-300.woff2") format("woff2"),url("/data/base/fonts/roboto/roboto-v20-latin-300.woff") format("woff")}@font-face{font-family:"Roboto";font-display:swap;font-style:italic;font-weight:300;src:local("Roboto Light Italic"),local("Roboto-LightItalic"),url("/data/base/fonts/roboto/roboto-v20-latin-300italic.woff2") format("woff2"),url("/data/base/fonts/roboto/roboto-v20-latin-300italic.woff") format("woff")}@font-face{font-family:"Roboto";font-display:swap;font-style:normal;font-weight:400;src:local("Roboto"),local("Roboto-Regular"),url("/data/base/fonts/roboto/roboto-v20-latin-regular.woff2") format("woff2"),url("/data/base/fonts/roboto/roboto-v20-latin-regular.woff") format("woff")}@font-face{font-family:"Roboto";font-display:swap;font-style:italic;font-weight:400;src:local("Roboto Italic"),local("Roboto-Italic"),url("/data/base/fonts/roboto/roboto-v20-latin-italic.woff2") format("woff2"),url("/data/base/fonts/roboto/roboto-v20-latin-italic.woff") format("woff")}@font-face{font-family:"Roboto";font-display:swap;font-style:normal;font-weight:500;src:local("Roboto Medium"),local("Roboto-Medium"),url("/data/base/fonts/roboto/roboto-v20-latin-500.woff2") format("woff2"),url("/data/base/fonts/roboto/roboto-v20-latin-500.woff") format("woff")}@font-face{font-family:"Roboto";font-display:swap;font-style:italic;font-weight:500;src:local("Roboto Medium Italic"),local("Roboto-MediumItalic"),url("/data/base/fonts/roboto/roboto-v20-latin-500italic.woff2") format("woff2"),url("/data/base/fonts/roboto/roboto-v20-latin-500italic.woff") format("woff")}@font-face{font-family:"Roboto";font-display:swap;font-style:normal;font-weight:700;src:local("Roboto Bold"),local("Roboto-Bold"),url("/data/base/fonts/roboto/roboto-v20-latin-700.woff2") format("woff2"),url("/data/base/fonts/roboto/roboto-v20-latin-700.woff") format("woff")}@font-face{font-family:"Roboto";font-display:swap;font-style:italic;font-weight:700;src:local("Roboto Bold Italic"),local("Roboto-BoldItalic"),url("/data/base/fonts/roboto/roboto-v20-latin-700italic.woff2") format("woff2"),url("/data/base/fonts/roboto/roboto-v20-latin-700italic.woff") format("woff")}@font-face{font-family:"Montserrat";src:url("/data/base/fonts/montserrat/Montserrat-Bold.otf");font-weight:700;font-style:normal}@font-face{font-family:"Montserrat";src:url("/data/base/fonts/montserrat/Montserrat-SemiBold.otf");font-weight:600;font-style:normal}@font-face{font-family:"Montserrat";src:url("/data/base/fonts/montserrat/Montserrat-Medium.otf");font-weight:500;font-style:normal}@font-face{font-family:"Montserrat";src:url("/data/base/fonts/montserrat/Montserrat-Regular.otf");font-weight:400;font-style:normal}@font-face{font-family:"Montserrat";src:url("/data/base/fonts/montserrat/Montserrat-Light.otf");font-weight:300;font-style:normal}body{background-color:#f7f7f7;min-height:100vh;display:flex;flex-direction:column}a{color:#006c94;text-decoration:none}thead,tbody{border-color:rgba(0,0,0,0)}.site-footer{padding:0;background:unset}[role=main],.main{padding:17px 15px 25px;background:rgba(0,0,0,0);grid-area:content;flex-grow:1}[role=main] #content,.main #content{background:#fff;border-radius:8px;box-shadow:0px 2px 3px #ccc}.page-wrapper{position:relative;grid-template-areas:"header" "content" "footer";grid-template-rows:auto 1fr auto}.filters .module-footer{border-top:none}.filters .module-footer a{font-size:16px;font-weight:normal}.filters .module-footer a i{font-size:13px;font-weight:bold;color:#036295}.filters .module-heading,.secondary .module-heading{background-color:#036295;font-size:19px;font-weight:normal;color:#fff;border-radius:2px}.filters .module-heading .action,.secondary .module-heading .action{color:#000}.filters .nav-item a,.secondary .nav-item a{font-size:16px;padding:10px 15px}.filters .nav-item.active>a:before,.secondary .nav-item.active>a:before{display:none}.activity_buttons>a.btn.disabled{color:#fff}.btn{--bs-btn-hover-border-color: var(--bs-dark-blue);background:#001e73;border:1px solid #001e73;color:#fff;border-radius:20px;font-weight:400}.btn:hover,.btn:active,.btn:focus{color:#001e73;background:#fff}.btn.btn-suggest,.btn.btn-suggestion-close{color:#000366;background-color:#fff;border:1px solid #000366}.btn.btn-suggest:hover,.btn.btn-suggest:active,.btn.btn-suggestion-close:hover,.btn.btn-suggestion-close:active{background-color:#000366;color:#fff}.active~.btn.btn-suggest,.active~.btn.btn-suggestion-close{z-index:2}.btn.btn-suggest{transition:top .4s,right .4s;position:relative;margin-left:17px;border-radius:5px;font-size:14px;padding:9px 12px;font-weight:600;box-shadow:none;top:0px;right:0px}.btn.btn-suggest .fa{vertical-align:middle;font-size:20px;margin-right:6px}.btn.btn-suggest.active{top:250px;right:65px}.btn.btn-suggestion-close{position:absolute;padding:2px 7px;right:13px;top:-12px}.btn.btn-suggestion-close .fa{font-size:14px;margin-right:0px}.clearfix{clear:both}.ml-5{margin-left:5px}.form-actions{margin:0}.pagination{padding-bottom:60px;margin-top:45px}.pagination ul{box-shadow:none}.pagination ul>li{display:inline-block}.pagination ul>li a{color:#fff;background-color:#bcdfe5;border:none;border-radius:5px;padding:5px 12px}.pagination ul>li a:hover,.pagination ul>li a:focus,.pagination ul>li a:active{background-color:#bcdfe5}.pagination ul>li.active a{color:#fff;background-color:#036295;border-radius:5px}.pagination ul>li:last-child a{border-radius:5px}.data-quality-tooltip{display:inline-block;position:relative}.data-quality-tooltip i{color:#3a87ad}.data-quality-tooltip i:hover{cursor:help}.data-quality-tooltip .tooltiptext{z-index:2;visibility:hidden;position:absolute;left:-85px;bottom:35px;width:120px;font-size:14px;line-height:1;color:#fff;text-align:center;background-color:#3a87ad;border-radius:4px;box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);padding:12px}.data-quality-tooltip .tooltiptext a{color:#fff;text-decoration:underline}.data-quality-tooltip .tooltiptext a:hover{text-shadow:1px 1px #036295}.data-quality-tooltip .tooltiptext:after{content:"";position:absolute;left:50%;margin-left:20px;border-width:10px;border-style:solid;top:100%;border-color:#3a87ad rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0)}.data-quality-tooltip:hover .tooltiptext{visibility:visible}.page_primary_action{margin-bottom:15px}.page_primary_action .btn{margin-right:.25rem;margin-bottom:.25rem}.desktop-only{display:none}.fa-question-circle:before{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAiCAYAAAA6RwvCAAAD80lEQVRYR72YPWxbVRTHf+fadCIkDBWTPxihEiQTGw0SEkMHHBgQEw0bIFrXNhsijioGROy4qpQFRBMhNqDOwsJAOiHBgCsk6IDAfenGgFMYKvB7B933/P2Rd+1EfavvPed/z/mfj7+FWb5sfgk/eR7RHEoWYQlY7phooLQQmqjUSbRv0ay1XM2L08Hse8tosIGSczrfPSTUEbNJ8+NG3L3jgWTzWYLEBnCxb0j3wRxgaIC0ek4sWHSJwEYoWAV5ecD5LsbfpFlrTgM0HUiqmEO4AWH4j0BqmHbNOdw2jUEyD5oHFoEWyjqHlfokMJOBpIuXgVrnwh7GzzsDGPUSAjK7AxHK41WujR4bB5Iu2VdsRwflCt5WF1Bcmo//PcbuMJAoHTdDi6rrHFZ3T+Z95HaqcBERm25Q1gbT1AcSEfOniBOnGInRl/Qj08L4K10C94Gki/b1bwB7eJWBKjnVmETG0oV6hzM9XxEQW3pBYKNxhPGzcxPTFXNI4IQt5UWMWbEtIALSQyibeFtlJ3uZwquovAOsWFYj3EF1B6/6eciAuC9dKoNugO7jVXNChO6v8J7xH3eIhpApfoHy+kRfoh9wt3o1DseQX68iQq9SImSxBuyBTOFNVCqg79J+7GvO/J0m4CvgaeA/ksmz/P7RUaytbiaUNaFH0hkr5ezbj/Lnzj89Z+nSJdCoUQXBM9zb/jkeSK9n7QmZ0gGq5zHyAs2tg9jL0w5kip+FLRwecObfJ/jt+v1YW9nSKoF+h8gtGxFbLcsY/8njhtKxRlPFlxC+sSxD9X0Oqx/Gghiu1oYFEjHcq7itBGMN6so5MN8DC8CXeAuvQTlwAhJWbOT/pEDsfcuFc8CPmIXnaZYfOIMYApIqNhCenSs16dKLoN92CPoc97Z/mAlEt5Eqt09G1lThLUR2gPt4FbtzzPaNkLUzY2Ys39lcTj7dH4B78zW00wAR8qMz/MKGNnuL78PIlNZQ/RT0V5KPXHDqpt3bg37DFj+IjBmGXniv9AvoUx3bl/Aq152DNTb0hhuLXVZsY3PTI/MCiaLxR7iEDa0BUT1HpLVa5G5lzellmeIrKJ8AdzD+BecHZIo3OxppZDEKoxKuilYILT6kVdEuYcvjq6IF8zCX55EhGyMnmKhBnNI2NpMKGyCd7W+8Z00RWAPaJtSv/rpz/kcBWGJq4kZfN09unHGS0xI4kotoDRNccwYUKbzLIFZyRrLVSG7azuMiwm04rcyIPhsh5YAgaJBMHg2J8HbbbuXLCKsj/xxY2VqeT4QPhjickn55ROE7UEX3MYnyyf+WmJRvP7GKkEMkS6BL4QphP+U2RlqoNlHq01T/NPT/A/fWydpXvRBKAAAAAElFTkSuQmCC");color:rgba(0,0,0,0);background-position:50%;background-size:100%;background-repeat:no-repeat}.module{position:relative}.module:first-child .module-heading{border-radius:25px 5px 5px 25px}.module .module-heading{background:#f8f8f8;font-size:16px;font-weight:600;color:#000;border-radius:25px 5px 5px 25px;border:none;margin:12px 16px 0 13px;padding:2px}.module .module-heading a{position:absolute;right:10px;top:12px;color:#001e73;font-size:17px;text-decoration:none}.module .module-heading .heading-icon{width:30px;height:30px;display:inline-block;border-radius:50%;background-color:#001e73;background-repeat:no-repeat;background-position:50%;vertical-align:middle;background-size:11px;margin:4px 11px;margin-right:6px}table.table{table-layout:auto;background-color:unset;margin-bottom:46px}table.table.table-bordered{border:none}table.table tr td,table.table tr th{border:none;font-size:13px;font-weight:normal;border-radius:0px;background-color:unset;padding:6px;vertical-align:middle}table.table tr td:first-child,table.table tr th:first-child{border-left:none}table.table tr td.dataset-label,table.table tr th.dataset-label{width:40%}table.table tr td.dataset-details,table.table tr th.dataset-details{width:70%;word-break:break-word;word-wrap:break-word}table.table tr td.dataset-details ul,table.table tr th.dataset-details ul{padding-left:15px}.request-list-table td.package-name{width:33%}.request-list-table td.reason{width:25%}.query-actions{color:#006c94;display:flex}.query-actions .query-search,.query-actions .query-delete{margin-right:10px}.query-actions .btn-delete{display:contents}.module .module-heading.resource{position:initial}.module-content.request-list-table-org{padding-right:20px !important}.form-group .controls .select2-container{height:unset;padding:unset;border:none}.form-group .controls .select2-container .select2-search-choice a{top:4px}.dropdown .dropdown-toggle .explore{position:relative;top:2px}.dropdown .dropdown-toggle .explore svg path{fill:#036295}.dropdown .dropdown-toggle .tick{position:relative;bottom:1px}.dropdown .dropdown-toggle .tick svg path{fill:#036295}.dropdown.restricted .dropdown-toggle{color:#8c8c8c !important}.dropdown.restricted .dropdown-toggle .explore svg path{fill:#8c8c8c}.dropdown.restricted .dropdown-toggle .tick svg path{fill:#8c8c8c}.dropdown-menu{min-width:initial;min-width:auto}.spc-open-on-pacific-map{position:absolute;top:105px;right:100px;padding:5px;color:#fff;display:block;min-height:28px;font-family:"Nunito",sans-serif;font-size:.8125em;opacity:.95;background:#33404a;padding:8px 10px 8px 10px;border-radius:20px;border:0}.spc-open-on-pacific-map i{font-weight:bold;color:#9ca1aa;margin:auto 6px}.spc-open-on-pacific-map:hover{cursor:pointer;background:#006fc6}@keyframes rotate{from{transform:rotate(0turn)}to{transform:rotate(1turn)}}.suggestion-box{position:absolute;z-index:2000;right:0;bottom:-45px;left:0;padding:0px;background:#fff;border-bottom-left-radius:5px;border-bottom-right-radius:5px;list-style:none;transform:translate(0, 100%);border:2px solid #c3c3c3;border-radius:4px;margin:0}.suggestion-box .suggestion-section .suggestions{padding:0px;margin:20px 24px;font-size:14px;font-weight:normal;line-height:19px;list-style:none}.suggestion-box .suggestion-section .suggestions:empty{display:none}.suggestion-box .suggestion-section .suggestions:before{display:block;color:#001e73;content:attr(data-label);font-size:16px;font-weight:700;line-height:22px}.suggestion-box .suggestion-section .suggestions li{margin-top:8px}.suggestion-box .suggestion-section .suggestions li a{color:#000}.suggestion-box .suggestion-section .suggestions li a.selected{text-decoration:underline}.suggestion-box .suggestion-section .suggestions li:first-child{margin-top:12px}.suggestion-box .suggestion-section .suggestions li .muted{margin-left:6px;color:#c6c6c6}.suggestion-box .suggestion-section .suggestions li strong{font-weight:700}.suggestion-box#header-search-suggestion-box{border:none;border-radius:20px;bottom:-5px;box-shadow:0px 0px 20px rgba(0,0,0,.1);margin:0}.suggestion-box#header-search-suggestion-box .suggestions{margin:15px 20px}.pdh-header .suggestion-box,.pdh-offcanvas .suggestion-box{bottom:0px;border:none;border-radius:.375rem !important;box-shadow:0px 0px 20px rgba(0,0,0,.1)}.btn.btn-scroll-top{display:inline-block;position:fixed;bottom:88px;right:14px;width:54px;height:54px;background:#009fde;border:none;border-radius:50%;box-shadow:0 4px 10px 0 rgba(0,0,0,.04);animation:showButton .3s forwards;transition:all .3s;z-index:30}.btn.btn-scroll-top.invisible{animation:hideButton .3s forwards}.btn.btn-scroll-top:hover,.btn.btn-scroll-top:active,.btn.btn-scroll-top:focus{background-color:#007aab}@keyframes hideButton{from{opacity:1}to{opacity:0}}@keyframes showButton{from{opacity:0}to{opacity:1}}.social-share{display:none;background:rgba(56,113,181,.82);width:100%;height:100%;position:fixed;top:0;left:0;z-index:1000;display:none;backdrop-filter:blur(4px)}.social-share .social-share--panel{top:50%;transform:translateY(-50%);position:relative;margin-left:auto;margin-right:auto;width:max-content;list-style:none;padding:0}.social-share .social-share--panel .social-share--tile{height:70px}.social-share .social-share--panel .social-share--tile a{color:#fff;font-size:25px;text-decoration:none !important}.social-share .social-share--panel .social-share--tile .fa{width:40px;height:40px}.social-share .social-share--panel .social-share--tile .fa:before{height:40px;display:block;background-size:100%;position:relative;top:3px;left:1px}.social-share .social-share--panel .social-share--tile .fa.icon-facebook:before,.social-share .social-share--panel .social-share--tile .fa.icon-twitter:before,.social-share .social-share--panel .social-share--tile .fa.icon-linkedin:before{content:"";background-size:contain;background-repeat:no-repeat}.social-share .social-share--panel .social-share--tile .fa.icon-facebook:before{background-image:url("/data/base/images/social/facebook.svg")}.social-share .social-share--panel .social-share--tile .fa.icon-twitter:before{background-image:url("/data/base/images/social/twitter.svg")}.social-share .social-share--panel .social-share--tile .fa.icon-linkedin:before{background-image:url("/data/base/images/social/linkedin.svg")}.social-share .social-share--panel .social-share--tile .fa.fa-envelope:before{top:-2px;left:1px;font-size:40px}.social-share .social-block--close{background:url("/data/base/images/social/close.svg") no-repeat;width:40px;height:40px;border:none;padding:15px;position:absolute;top:20px;right:20px}.btn-square{font-weight:400;background:#fff;border:1px solid #031f79;box-sizing:border-box;border-radius:3px;color:#031f79;font-size:14px;line-height:20px;padding:8px 19px;position:relative}.btn-square.btn-square-dark{background:#031f79;color:#fff}.btn-square.btn-transparent{border:none;background-color:rgba(0,0,0,0);color:#009fde}.btn-square.btn-white{border-color:#001e73;background-color:#fff;color:#001e73}.btn-square.btn-white:hover{background-color:#001e73;color:#fff}.btn-square .picked-counter{width:16px;height:16px;position:absolute;transform:translateY(-50%);top:0px;right:5px;color:#fff;border-radius:50%;background:#031f79;font-size:12px;line-height:17px;opacity:1;transition:all .2s}.btn-square .picked-counter:after{content:attr(data-count)}.btn-square .picked-counter[data-count="0"],.btn-square .picked-counter.hide{opacity:0;right:220px;top:50px}.btn-square:hover,.btn-square:active{border-color:#001e73;background-color:#fff;color:#001e73}.btn-square:hover svg path,.btn-square:active svg path{stroke:#001e73}.btn.btn-with-icon svg{margin-inline-start:13px;position:relative;top:1px}.btn.btn-icon-only{padding:8px 14px}.btn.btn-icon-only i.fa{margin:0}.btn.btn-subscribe{color:#001e73;background-color:#fff;border-radius:25px;border:1px solid #fff;padding:7px 16px;font-size:13px;font-weight:500;line-height:19px}.meta-export-select .dropdown-toggle{color:#001e73;font-size:12px}.meta-export-select .dropdown-toggle:hover,.meta-export-select .dropdown-toggle:active,.meta-export-select .dropdown-toggle:focus{text-decoration:none}.meta-export-select .dropdown-toggle:focus,.meta-export-select .dropdown-toggle:active{box-shadow:none}.meta-export-select .dropdown-toggle .meta-export-icon{background-size:contain;background-repeat:no-repeat;background-position:50%;width:15px;height:15px}.meta-export-select .dropdown-toggle .meta-export-dropdown-arrow{background-size:contain;background-repeat:no-repeat;background-position:50%;width:8px;height:8px}.meta-export-select li a:hover{background:#dfebed;color:#036295}.meta-export-select.btn-group.open .btn-primary.dropdown-toggle{background-color:#0c436b}.block-bubble{border:1px solid #ebebeb;border-radius:15px;padding:15px;margin:auto 0}.label-bubble{padding:7px 16px;margin-bottom:10px;border-radius:25px;border:1px solid #001e73;color:#001e73;font-size:12px;display:inline-block}.label-bubble:hover,.label-bubble:active{color:#fff;background-color:#001e73;text-decoration:unset}fieldset .raised{margin-bottom:20px;padding:0 10px 10px;border:1px solid #525252}fieldset .raised legend{width:auto;border-bottom:none;margin-bottom:10px}fieldset .raised.error{border-color:red}fieldset .raised.error>legend{color:red}fieldset .raised fieldset{margin-bottom:10px}fieldset .raised fieldset .collapse,fieldset .raised fieldset .collapsing{padding:10px}.schema-fields .field-item .handle{cursor:grab}.schema-fields .field-item .form-group{margin-bottom:.5rem}.nav-item.active>a span{white-space:normal;overflow:hidden}.module .module-content>p{margin:25px 0 10px}.module .module-content>p{margin:0 0 10px}.module .module-content .followers.edit{margin:40px 0 10px}#mobile-menu{position:relative;float:right}#mobile-menu .header-menu-btn{padding:.25rem .75rem;font-size:1.25em;line-height:1;background:rgba(0,0,0,0);border:none;border:1px solid rgba(255,255,255,.1);border-radius:.375rem;transition:box-shadow .15s ease-in-out}#mobile-menu .header-menu-btn span{display:inline-block;width:30px;height:30px;vertical-align:middle;background-image:url("/data/base/images/navbar-toggle-icon.svg");background-repeat:no-repeat;background-position:center;background-size:100%}#mobile-menu .menu-mobile{position:fixed;top:0;right:0;width:400px;height:100vh;border-left:1px solid rgba(0,0,0,.175);background:#fff;z-index:1000;overflow-y:auto;transform:translateX(100%);transition:transform .3s ease-in-out}#mobile-menu .menu-mobile.active{display:block;transform:translateX(0)}#mobile-menu .menu-mobile .close-btn{box-sizing:content-box;width:1em;height:1em;font-size:16px;padding:.25em .25em;color:#000;background:rgba(0,0,0,0) url("/data/base/images/close-icon.svg") center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:.5}#mobile-menu .menu-mobile ul{list-style:none;padding:1rem 1rem;overflow-y:auto}#mobile-menu .menu-mobile ul li{margin:0;padding:0}#mobile-menu .menu-mobile ul li a{display:inline-flex;align-items:center;padding:.5rem;color:#343a40;text-decoration:none;font-size:18px}#mobile-menu .menu-mobile ul li a i{margin-right:4px}#mobile-menu .menu-mobile ul li a span{flex-grow:1}#mobile-menu .menu-mobile ul li a svg{width:26px;height:auto}#mobile-menu .menu-mobile ul li.dropdown{position:relative}#mobile-menu .menu-mobile ul li.dropdown i{color:#333}#mobile-menu .menu-mobile ul li.dropdown .fa-caret-down{position:absolute;top:50%;transform:translateY(-50%);transition:transform .3s}#mobile-menu .menu-mobile ul li.dropdown.show .fa-caret-down{transform:translateY(-50%) rotate(180deg);position:relative;top:5px}#mobile-menu .menu-mobile ul li.dropdown.show .dropdown-menu{display:block;position:relative;max-width:170px;width:auto}#mobile-menu .menu-mobile ul li .dropdown-menu{display:none;background:#fff;padding:5px 0;margin:2px 0 0;font-size:14px;border:1px solid rgba(0,0,0,.15);border-radius:4px;box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}#mobile-menu .menu-mobile ul li .dropdown-menu li a{font-size:16px}#mobile-menu .menu-mobile ul li .dropdown-menu li a::before{margin-right:4px}#mobile-menu .menu-mobile ul li .dropdown-menu li:hover{background-color:#1b7bbc;color:inherit}.menu-overlay{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.9);z-index:999}.menu-overlay.active{display:block}.menu-open .search-form .spc-advanced-search .search-input-group .input-search-icon{z-index:0}.header{top:0;font-family:"Inter",system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";grid-area:header}.header .account-masthead{position:relative;background:unset}.header .account-masthead::before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none;background-color:rgba(0,85,142,.97)}.header .account-masthead .menu-secondary{padding:0 64px}.header .account-masthead .menu-secondary .nav{color:#e9ecef;z-index:1;font-size:16px}.header .account-masthead .menu-secondary .nav li{padding:8px 16px}.header .account-masthead .menu-secondary .nav li a{display:block;padding:.5rem 1rem;font-size:1rem;font-weight:400;color:#e9ecef;text-decoration:none;border:0;transition:color .15sease-in-out,background-color .15sease-in-out,border-color .15sease-in-out}.header .account-masthead .menu-secondary .nav li a:hover{text-decoration:none}.header .masthead{background:unset;padding:0 !important}.header .header-image{display:flex;align-items:center;z-index:1}.header .header-image .logo{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25em}.header .header-image .logo img{width:200px}.header .site-search{z-index:1;display:flex;width:100%;position:relative;border:1px solid #fff;border-radius:5px}.header .site-search .me-2{margin-right:0 !important}.header .site-search .btn{border-radius:.375rem;background:#1b7bbc;border-color:#1b7bbc;background-color:rgba(255,255,255,.15);border:none;border-radius:0;flex-shrink:0;box-shadow:none;height:38px;align-items:center;display:flex;justify-content:space-between;line-height:1;width:fit-content}.header .site-search .btn:hover{background:#135684;border-color:#135684;color:#e9ecef}.header .site-search ::placeholder{font-size:18px;color:#e9ecef}.header .site-search input#field-giant-search-header{font-size:1rem;border:none;background-color:rgba(233,236,239,.15);padding:.375rem .75rem;flex:1}@-moz-document url-prefix(){.header .site-search input#field-giant-search-header{min-width:210px}}.header .site-search .form-text{margin:0}.header .site-search .suggestion-box{border:unset;right:unset;left:unset;bottom:8px;width:100%;border-radius:4px;background-color:#fff;box-shadow:0 2px 4px rgba(0,0,0,.1)}.header .site-search .suggestion-box .suggestions:before{font-weight:600}.header #main-menu{display:flex;align-items:center}.header #main-menu ul{padding-left:0px;display:flex;list-style:none;margin:0;align-items:center}.header #main-menu li{position:relative}.header #main-menu li.active a,.header #main-menu li.active i{color:var(--bs-orange)}.header #main-menu li a{color:var(--bs-gray-200);text-decoration:none;padding:8px}.header #main-menu li a:hover{color:#000}.header #main-menu li a:hover i{color:inherit}.header #main-menu li a svg{vertical-align:text-top}.header #main-menu li a:hover+i{color:#000}.header .dropdown i{color:#e9ecef}.header .dropdown.show .dropdown-menu{display:block !important}.search-form.site-search{padding:8px 0;opacity:.8;margin-left:35px;margin-bottom:10px}.search-form.site-search .me-2{margin-right:0 !important}.search-form.site-search .btn{display:block;border-radius:.25rem;background:rgba(0,85,142,.97);border-color:rgba(0,85,142,.97);color:#e9ecef;opacity:.8;box-shadow:none}.search-form.site-search .btn:hover{background:rgba(0,85,142,.97) !important;border-color:rgba(0,85,142,.97);transform:scale(1.03)}.search-form.site-search .form-control{border-top-right-radius:0;border-bottom-right-radius:0}.search-form.site-search .btn{border-top-left-radius:0;border-bottom-left-radius:0}#mobile-menu{display:block;margin-top:24px;margin-bottom:25px;padding-right:10px}#mobile-menu .dropdown a.dropdown-toggle:after{margin-left:.255em}#mobile-menu .ma5-toggle-menu{z-index:300}.js.ma5-menu-active .header-wrapper{position:initial}.ma5-menu-active button.header-menu-btn span:nth-child(3){transform:rotate(0deg) scale(0, 0)}.form-actions .btn{margin-inline-start:0;top:unset;font-size:1rem}.navbar-light .navbar-nav .nav-link{color:var(--bs-gray-200)}.offcanvas.navbar{padding:0;align-items:normal;flex-wrap:nowrap}.offcanvas.navbar .nav-link{padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x)}.offcanvas.navbar .nav-link:hover{color:var(--bs-navbar-active-color)}.offcanvas.navbar .nav-link.active{background-color:rgba(0,0,0,0)}.offcanvas.navbar .dropdown-menu a.dropdown-item{--bs-dropdown-link-color: unset;--bs-dropdown-link-active-bg: unset;--bs-dropdown-link-hover-color: unset;--bs-dropdown-link-hover-bg: unset}.navbar .navbar-brand .nav-link{padding-top:0;padding-bottom:0}footer{font-family:"Inter",system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}footer h4{font-size:20px}footer .btn{color:var(--bs-white);border-radius:var(--bs-border-radius);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}footer .btn:hover{color:var(--bs-black);--bs-btn-hover-border-color: var(--bs-white)}.js [role=main] .secondary .filters{background:#e9ecef;padding:10px 8px}.secondary .filters .mobile-filters-heading{margin:0 13px;padding-bottom:3px;font-size:25px;font-weight:600;border-bottom:1px dashed #c6c6c6}.secondary .filters .mobile-filters-heading-count{margin:14px;font-size:14px;font-weight:300}.js body.filters-modal .secondary .filters{background:#e9ecef}.js body.filters-modal .secondary .filters .hide-filters{right:25px;top:21px}.js body.filters-modal .secondary .filters .hide-filters i{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAABH0lEQVQ4T5WU/W3CMBDF3yULMEgRXaDQbkAnQJmgYoRuwAbBG7QTlI8FqGAQFvAZ2Yqlw7EdO39Fsv3Te3f3jpRSewAbIjporT+7rruj4uv7ftY0zR+AVwDfpJQy4v2FmT9KoQHMYSzwAmBRC43BAPzScHCogSZg/8z8TlZZDTQHs6VywFLoFMzVUDY0p9TeE930z5xN2cQnYEopEV3tmTFmLgSMYCOFE/almSgsCRRKzwBegjm/MfNbalZHlqXKtm1PgU1Y+1rrZRUw0U0pNJmoVFN8Nj3kNvxI+1FobGxCmGvAMDaTiQoHOwrz9SpJlIxeFlaaKL8cimAl0Nj6Sg7tVEztkg4XbBEsp9QCdwC+AByZeV26rQPoD4AVEW0fg8gLs62lTHoAAAAASUVORK5CYII=");width:10px;height:10px;color:rgba(0,0,0,0);background-size:cover}.js body.filters-modal .secondary .filters .hide-filters i:before{visibility:hidden}.js body.filters-modal .secondary .filters .module .module-content.empty{padding-top:61px;margin-left:40px}.js body.filters-modal .secondary .filters .module .module-footer{display:block;margin-left:40px;margin-bottom:10px}.js body.filters-modal .secondary .filters .module .module-footer a{font-size:13px}.js body.filters-modal .secondary .filters .module .module-footer a:hover,.js body.filters-modal .secondary .filters .module .module-footer a:active,.js body.filters-modal .secondary .filters .module .module-footer a:focus{text-decoration:none}.js body.filters-modal .secondary .filters .module .module-footer .show-more-icon{background-size:9px;width:9px;height:6px;display:inline-block;margin-left:3px;vertical-align:middle}.secondary .filters .module{border:1px solid #c3c3c3;border-radius:5px}.secondary .filters .module{margin-bottom:13px}.secondary .filters .module .read-more{cursor:pointer;user-select:none}.secondary .filters .module .all-visible{display:none}.secondary .filters .module:not(.show-all) .nav-facet{max-height:320px;overflow:hidden}.secondary .filters .module.show-all .all-visible{display:inline}.secondary .filters .module.show-all .not-all-visible{display:none}.secondary .filters .module .module-heading{margin-left:6px;margin-top:10px;z-index:1;display:flex;align-items:center;flex-wrap:wrap}.secondary .filters .module .module-heading .heading-title{margin-left:5px;flex:1}.secondary .filters .module .module-heading .heading-icon{background-size:15px}.secondary .filters .module .module-heading .clear-all{font-size:10px;line-height:20px;color:#004761;position:static}.secondary .filters .module .module-heading .facet-sorter{font-size:10px;line-height:10px;color:#004761;background-color:#e9ecef;border:solid 1px #0091c7;border-radius:5px;padding:10px;margin-right:8px;position:relative}.secondary .filters .module .module-heading .facet-sorter .fa{display:none;position:absolute;left:50%;transform:translateX(-50%)}.secondary .filters .module .module-heading .facet-sorter.active{color:#e9ecef;background-color:#0091c7}.secondary .filters .module .module-heading .facet-sorter.active .fa-chevron-down{display:inline-block;bottom:1px}.secondary .filters .module .module-heading .facet-sorter.active.reverse .fa-chevron-up{top:1px;display:inline-block}.secondary .filters .module .module-heading .facet-sorter.active.reverse .fa-chevron-down{display:none}.secondary .filters .module .module-heading .facet-sorter:focus{outline:none}.secondary .filters .nav-simple>li.nav-item{border-bottom:1px dashed #bdbdbd;word-break:break-word}.secondary .filters .nav-simple>li.nav-item a{font-size:13px;color:#000;padding:6px 25px 7px 0px}.secondary .filters .nav-simple>li.nav-item a:hover:after,.secondary .filters .nav-simple>li.nav-item a:after{position:absolute;content:"+";font-size:17px;font-family:Raleway;background:none;top:5px;right:6px;width:10px;height:10px;margin-top:0px}.secondary .filters .nav-simple>li.nav-item.active{background:rgba(0,0,0,0)}.secondary .filters .nav-simple>li.nav-item.active a{background-color:rgba(0,0,0,0)}.secondary .filters .nav-simple>li.nav-item.active a:after{background:url("/data/base/images/tag-close-side.png") 50% no-repeat;background-size:contain;right:1px;color:rgba(0,0,0,0);border-radius:50%;width:20px;height:20px;text-align:center}.secondary .filters .nav-simple>li.nav-item.active a span{white-space:normal}.nav-simple>li.nav-item{border-bottom:1px dashed #bdbdbd;word-break:break-word;word-wrap:break-word}.nav-simple>li.nav-item a{font-size:16px;color:#000;padding:10px 15px}.nav-simple>li.nav-item a:hover:after,.nav-simple>li.nav-item a:after{position:absolute;font-size:17px;font-family:Raleway;background:none;top:5px;right:6px;width:10px;height:10px;margin-top:0px;color:#000}.nav-simple>li.nav-item.active{background:rgba(0,0,0,0)}.nav-simple>li.nav-item.active a{background-color:#8ca0a6;color:#e9ecef}.nav-simple>li.nav-item.active a:after{background-size:contain;right:1px;color:rgba(0,0,0,0);border-radius:50%;width:20px;height:20px;text-align:center}.nav-simple>li.nav-item.active a span{white-space:normal}.nav-facet{display:flex;flex-direction:column;padding:0 55px;flex-wrap:nowrap}.module .read-more{cursor:pointer;user-select:none}.module .all-visible{display:none}.module:not(.show-all) .nav-facet{max-height:320px;overflow:hidden}.module.show-all .all-visible{display:inline}.module.show-all .not-all-visible{display:none}.module .module-heading{display:flex;align-items:center;flex-wrap:wrap}.module .module-heading .heading-title{margin-left:5px;flex:1}.module .module-heading .heading-icon{background-size:15px}.module .module-heading .clear-all{font-size:10px;line-height:20px;color:#004761;position:static}.module .module-heading .facet-sorter{font-size:10px;line-height:10px;color:#004761;background-color:#e9ecef;border:solid 1px #0091c7;border-radius:5px;padding:10px;margin-right:8px;position:relative}.module .module-heading .facet-sorter .fa{display:none;position:absolute;left:50%;transform:translateX(-50%)}.module .module-heading .facet-sorter.active{color:#e9ecef;background-color:#0091c7}.module .module-heading .facet-sorter.active .fa-chevron-down{display:inline-block;bottom:1px}.module .module-heading .facet-sorter.active.reverse .fa-chevron-up{top:1px;display:inline-block}.module .module-heading .facet-sorter.active.reverse .fa-chevron-down{display:none}.module .module-heading .facet-sorter:focus{outline:none}.dataset-read{display:flex;margin-bottom:60px}.dataset-read .dataset-info{margin-bottom:16px;color:#1d1d1e;font-weight:500;font-size:13px}.dataset-read .dataset-info .dataset-info--version{margin-inline-start:6px;font-weight:700}.dataset-read .dataset-info .badge{font-size:14px;vertical-align:middle;margin-left:15px;padding-top:3px;background-color:#197b60}.dataset-read .dataset-info .empty{color:#000}.dataset-read .primary{position:relative;color:#2a2c2d;float:none;border-radius:8px}.dataset-read .primary .module{margin-top:0}.dataset-read .primary .module .module-content{padding:15px 0 15px 15px}.dataset-read .primary .module .module-content .resource-list .resource-item .heading{word-wrap:break-word}.dataset-read .primary .module .module-content form.publishing{padding:6px 12px}.dataset-read .primary .nav-tabs{padding:20px 30px 0 30px;border:none}.dataset-read .primary .nav-tabs li a{border:none;font-size:13px;color:#525252;border-radius:20px;margin-right:20px;padding:8px 0px}.dataset-read .primary .nav-tabs li a:hover,.dataset-read .primary .nav-tabs li a:focus,.dataset-read .primary .nav-tabs li a:active{background:none}.dataset-read .primary .nav-tabs li a i{display:none}.dataset-read .primary .nav-tabs li.active a{background-color:#001e73;color:#fff;font-weight:600;padding:7px 21px}.dataset-read .primary .nav-tabs li:last-of-type a{margin-right:0}.dataset-read .primary .page-heading{margin-bottom:4px;margin-top:5px;font-size:20px;line-height:30px}.dataset-read .primary .notes{font-size:13px;line-height:21px;margin:0 0 20px 0}.dataset-read .primary .notes img{max-width:100%}.dataset-read .primary .notes a{word-break:break-word}.dataset-read .primary .package-download{display:flex}.dataset-read .primary .package-download .view-source{margin-right:15px}.dataset-read .primary .package-download .bulk-resource-download-controll .btn{padding-left:0}.dataset-read .primary .resources h3{margin:28px 10px;font-size:14px;font-weight:600}.dataset-read .primary .resources .resource-list{margin:0 0 20px 0}.dataset-read .primary .resources .resource-list .resource-item:last-of-type{margin-bottom:0}.dataset-read .primary .resources .resource-item{margin-bottom:15px;display:flex;padding:0}.dataset-read .primary .resources .resource-item .empty{margin-left:0}.dataset-read .primary .resources .resource-item .restricted-access-info{cursor:pointer}.dataset-read .primary .resources .resource-item .restricted-access-info .tooltiptext{background-color:#fff;color:#000;font-size:14px;width:420px}.dataset-read .primary .resources .resource-item .restricted-access-info .tooltiptext:after{left:15%;border-color:rgba(0,0,0,0);border-top-color:#fff}.dataset-read .primary .resources .resource-item .restricted-access-lock{float:left;position:relative;top:5px}.dataset-read .primary .resources .resource-item:hover{background:none}.dataset-read .primary .resources .resource-item .heading{display:block;font-size:13px;color:#2a2c2d;font-weight:600}.dataset-read .primary .resources .resource-item .heading:hover,.dataset-read .primary .resources .resource-item .heading:active,.dataset-read .primary .resources .resource-item .heading:focus{text-decoration:none}.dataset-read .primary .resources .resource-item .description{font-size:13px;color:#727474}.dataset-read .primary .resources .resource-item .res-format{margin-right:30px}.dataset-read .primary .resources .resource-item .res-meta{padding-right:60px;flex-basis:60%}.dataset-read .primary .resources .resource-item .res-buttons{flex-basis:40%;text-align:right;white-space:nowrap}.dataset-read .primary .package-tabs .tab{padding:10px 15px;border:1px solid #ebebeb;border-radius:15px;margin-bottom:10px}.dataset-read .primary .package-tabs .tab:last-of-type{margin-bottom:0}.dataset-read .primary .package-tabs .tab .toggle{cursor:pointer;width:100%;display:flex;justify-content:space-between;font-weight:700;font-size:15px;line-height:20px;color:#2a2c2d;text-decoration:unset}.dataset-read .primary .package-tabs .tab .toggle.collapsed .toggle-show .tab-show{display:inline-block}.dataset-read .primary .package-tabs .tab .toggle.collapsed .toggle-show .tab-hide{display:none}.dataset-read .primary .package-tabs .tab .toggle.collapsed .toggle-show svg{transform:rotate(0deg)}.dataset-read .primary .package-tabs .tab .toggle .toggle-show{display:flex;align-items:center;color:rgba(0,85,142,.97);font-size:12px;line-height:16px;font-weight:400}.dataset-read .primary .package-tabs .tab .toggle .toggle-show .tab-show{display:none}.dataset-read .primary .package-tabs .tab .toggle .toggle-show svg{margin-inline-start:4px;transform:rotate(180deg)}.dataset-read .primary .package-tabs .tab .card.card-body{padding:1rem 0px;border:none}.dataset-read .primary .package-tabs .tab .card.card-body form{padding:0}.dataset-read .primary .package-tabs .tab.group-tab input,.dataset-read .primary .package-tabs .tab.group-tab .toggle:after{display:none}.dataset-read .primary .package-tabs .tab.group-tab input.media-edit{display:inline}.dataset-read .primary .package-tabs .tab.group-tab .add-to-group{margin-bottom:15px}.dataset-read .primary .package-tabs .tab.group-tab .add-to-group .select2-container{margin-bottom:15px}.dataset-read .primary .package-tabs .tab.group-tab .media-grid{padding:0}.dataset-read .primary .package-tabs .tab.group-tab .empty{padding:0}.dataset-read .primary .tags{padding-top:22px}.dataset-read .primary .tags .tag-list{border:none;padding:15px;border-radius:5px;box-shadow:none;background-color:#f8f8f8}.dataset-read .primary .tags .tag-list .tag{color:#001e73;border-color:#001e73;font-size:12px;line-height:12px;box-shadow:none;padding:8px 11px}.dataset-read .primary .tags .tag-list .tag:hover,.dataset-read .primary .tags .tag-list .tag:active,.dataset-read .primary .tags .tag-list .tag:focus{text-decoration:none;background:#001e73;color:#f8f8f8}.dataset-read .primary .table-bordered{border-color:#bcdfe5;margin-bottom:35px}.dataset-read .primary .table-bordered th,.dataset-read .primary .table-bordered td{font-size:16px;font-weight:normal;border-color:#bcdfe5;padding-left:22px}.dataset-read .primary .table-bordered th:first-child,.dataset-read .primary .table-bordered td:first-child{width:30%}.dataset-read .primary .media-grid{background:rgba(0,0,0,0);border:none}.dataset-read .secondary{padding:15px}.dataset-read .secondary .module{padding:10px 15px;border:1px solid #ebebeb;border-radius:15px;margin-bottom:20px}.dataset-read .secondary .module .module-heading{position:static;padding:0;margin:0 0 15px 0;background:rgba(0,0,0,0);font-size:12px;font-weight:500;color:#2a2c2d;border:none}.dataset-read .secondary .module .module-heading .heading-icon{margin:0 7px 0 0}.dataset-read .secondary .module .module-heading .data-quality-tooltip i{color:#e9ecef}.dataset-read .secondary .module .module-heading .data-quality-tooltip.pull-right{margin-left:auto}.dataset-read .secondary .module .module-content{padding:0}.dataset-read .secondary .module.spatial .member_countries{margin-bottom:10px}.dataset-read .secondary .module.spatial .dataset-map #dataset-map-container{height:165px}.dataset-read .secondary .module.single-item{display:flex;align-items:center;justify-content:space-between}.dataset-read .secondary .module.single-item .module-heading,.dataset-read .secondary .module.single-item .label-bubble{margin-bottom:0}.dataset-read .secondary .tooltiptext{background-color:#fff;color:#000;font-size:12px}.dataset-read .secondary .tooltiptext:after{border-color:#fff rgba(0,0,0,0)}.dataset-read .secondary .tooltiptext a{position:static;font-size:12px;color:#0091c7}.dataset-read .secondary .tooltiptext a:hover{text-shadow:none}.dataset-read .secondary .follow{display:flex;justify-content:space-between;align-items:center}.dataset-read .secondary .follow .followers{color:rgba(0,85,142,.97);font-weight:400;font-size:12px;margin-bottom:0}.dataset-read .secondary .follow .followers span{font-size:18px;padding-right:3px}.dataset-read .secondary .follow .follow_button{text-align:center}.dataset-read .secondary .follow .follow_button .btn i{display:none}.dataset-read .secondary .organization-info{padding:15px}.dataset-read .secondary .organization-info .module-content{padding:0}.dataset-read .secondary .organization-info .module-content .image img{max-width:300px;margin:0 auto}.dataset-read .secondary .organization-info .heading{font-size:15px}.dataset-read .secondary .organization-info p{font-size:12px}.dataset-read .secondary .organization-info .read-more a{font-size:11px;font-weight:lighter;color:#036295}.dataset-read .secondary .organization-info .read-more a:hover,.dataset-read .secondary .organization-info .read-more a:active,.dataset-read .secondary .organization-info .read-more a:focus{text-decoration:none}.dataset-read .secondary .organization-info .read-more i{display:none}.dataset-read .additional-info .additional-info--header{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}.dataset-read .additional-info .additional-info--header h3{margin:0;font-size:20px}.dataset-read .additional-info table{table-layout:fixed}.dataset-read .additional-info table.table-striped tr.complex-row.label-row{background-color:#dfebed;cursor:pointer}.dataset-read .additional-info table.table-striped tr.complex-row.label-row td,.dataset-read .additional-info table.table-striped tr.complex-row.label-row th{font-size:16px;font-weight:bold;padding-left:22px}.dataset-read .additional-info table.table-striped tr.complex-row.label-row td:before,.dataset-read .additional-info table.table-striped tr.complex-row.label-row th:before{content:"";font-family:"FontAwesome";margin-right:14px;color:#2a86b8;font-size:20px}.dataset-read .additional-info table.table-striped tr.complex-row.label-row.collapsed td:before,.dataset-read .additional-info table.table-striped tr.complex-row.label-row.collapsed th:before{margin-right:18px;content:""}.dataset-read .additional-info table.table-striped tr.complex-row.content-row{visibility:collapse}.dataset-read .additional-info table.table-striped tr.complex-row.content-row.in{visibility:visible}.dataset-read .additional-info table.table-striped tr.complex-row.content-row>td,.dataset-read .additional-info table.table-striped tr.complex-row.content-row th{padding:0px}.dataset-read .additional-info table.nested-table{border:none;border-radius:0px;margin:0px}.dataset-read .additional-info table.nested-table tr td{border-radius:0px}.dataset-read .additional-info table.nested-table tr.level-label{background-color:#f1f6f7}.dataset-read .additional-info table.nested-table tr.level-label td{font-size:15px}.dataset-read .additional-info table.nested-table tr.level-label td.parent-label:before{content:"";font-family:"FontAwesome";margin-right:10px;font-size:6px;color:#2a86b8}.dataset-read .additional-info table.nested-table tr.level-data>td{padding:0px}.dataset-content .empty{color:#535252}.badge-res{font-size:.8em;padding:4px 7px 3px 7px}.res-format{display:inline-block;position:relative;background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1225.08px 0;height:34px;width:30px}#dataset-resources .data-meta{display:flex;justify-content:space-between;gap:12px;font-size:15px;margin-bottom:24px}#dataset-resources .data-meta .data-licence{flex-basis:65%}#dataset-resources .data-meta .data-rating .rating-scores .stars-block{display:flex;font-size:24px}#dataset-resources .data-meta .data-rating,#dataset-resources .data-meta .data-licence{display:flex;align-items:center;max-height:55px}#dataset-resources .data-meta .licence-title,#dataset-resources .data-meta .rating-title{font-weight:700;color:#000;margin-inline-end:35px}#dataset-resources .resources-header{padding-top:10px;margin-bottom:20px;display:flex;justify-content:space-between;align-items:center}#dataset-resources .resources-header h2{margin-top:10px;font-size:20px}#dataset-resources .resources-header .btn-access{border-radius:5px;padding:8px 25px;color:#e9ecef}#dataset-resources .resources-header .btn-access:hover{color:rgba(0,85,142,.97)}#request-access-modal-success .modal-content,#request-access-modal .modal-content{padding:30px 50px;border-radius:30px;width:580px}#request-access-modal-success .modal-content .modal-header,#request-access-modal .modal-content .modal-header{border:0}#request-access-modal-success .modal-content .modal-header .modal-title,#request-access-modal .modal-content .modal-header .modal-title{font-weight:600;font-size:24px;text-align:center}#request-access-modal-success .modal-content .modal-header .close,#request-access-modal .modal-content .modal-header .close{position:relative;top:-20px;right:-20px;opacity:1;color:#2d2db3}#request-access-modal-success .modal-content .modal-body,#request-access-modal .modal-content .modal-body{text-align:center}#request-access-modal-success .modal-content .modal-body .modal-body-form,#request-access-modal .modal-content .modal-body .modal-body-form{text-align:initial}#request-access-modal-success .modal-content .modal-body .modal-body-form>.form-group .control-label,#request-access-modal .modal-content .modal-body .modal-body-form>.form-group .control-label{color:#002b7f;padding-left:10px}#request-access-modal-success .modal-content .modal-body .modal-body-form>.form-group .control-label .control-required,#request-access-modal .modal-content .modal-body .modal-body-form>.form-group .control-label .control-required{float:right}#request-access-modal-success .modal-content .modal-body .modal-body-form>.form-group .form-control,#request-access-modal .modal-content .modal-body .modal-body-form>.form-group .form-control{padding:6px 9px}#request-access-modal-success .modal-content .modal-body .modal-body-form .org-helper-text,#request-access-modal .modal-content .modal-body .modal-body-form .org-helper-text{font-size:12px;opacity:.6;margin-bottom:20px;padding-left:10px}#request-access-modal-success .modal-content .modal-body .body-image,#request-access-modal .modal-content .modal-body .body-image{width:35%;margin-bottom:25px}#request-access-modal-success .modal-content .modal-body .body-text,#request-access-modal .modal-content .modal-body .body-text{font-family:"Montserrat","Roboto";font-weight:normal;font-size:16px;color:#7e7e7e;max-width:270px;margin:0 auto}#request-access-modal-success .modal-content .modal-footer,#request-access-modal .modal-content .modal-footer{border:0;text-align:center}#request-access-modal-success .modal-content .modal-footer .btn,#request-access-modal .modal-content .modal-footer .btn{border-radius:5px;padding:8px 25px}#request-access-modal .modal-content{padding:20px}.res-format-aac{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:0px 0;height:34px;width:30px}.res-format-3ds{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-29.88px 0;height:34px;width:30px}.res-format-ai{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-59.76px 0;height:34px;width:30px}.res-format-avi{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-89.64px 0;height:34px;width:30px}.res-format-bmp{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-119.52px 0;height:34px;width:30px}.res-format-cad{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-149.4px 0;height:34px;width:30px}.res-format-cdr{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-179.28px 0;height:34px;width:30px}.res-format-css{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-209.16px 0;height:34px;width:30px}.res-format-dat{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-239.04px 0;height:34px;width:30px}.res-format-dll{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-268.92px 0;height:34px;width:30px}.res-format-doc{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-298.8px 0;height:34px;width:30px}.res-format-dmg{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-328.68px 0;height:34px;width:30px}.res-format-eps{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-358.56px 0;height:34px;width:30px}.res-format-flv{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-388.44px 0;height:34px;width:30px}.res-format-fla{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-418.32px 0;height:34px;width:30px}.res-format-gif{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-448.2px 0;height:34px;width:30px}.res-format-html{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-478.08px 0;height:34px;width:30px}.res-format-indd{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-507.96px 0;height:34px;width:30px}.res-format-iso{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-537.84px 0;height:34px;width:30px}.res-format-jpg{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-567.72px 0;height:34px;width:30px}.res-format-js{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-597.6px 0;height:34px;width:30px}.res-format-midi{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-627.48px 0;height:34px;width:30px}.res-format-mov{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-657.36px 0;height:34px;width:30px}.res-format-mp3{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-687.24px 0;height:34px;width:30px}.res-format-mpg{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-717.12px 0;height:34px;width:30px}.res-format-pdf{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-747px 0;height:34px;width:30px}.res-format-php{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-776.88px 0;height:34px;width:30px}.res-format-png{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-806.76px 0;height:34px;width:30px}.res-format-ppt{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-836.64px 0;height:34px;width:30px}.res-format-ps{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-866.52px 0;height:34px;width:30px}.res-format-psd{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-896.4px 0;height:34px;width:30px}.res-format-raw{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-926.28px 0;height:34px;width:30px}.res-format-sql{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-956.16px 0;height:34px;width:30px}.res-format-svg{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-986.04px 0;height:34px;width:30px}.res-format-tif{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1015.92px 0;height:34px;width:30px}.res-format-txt{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1045.8px 0;height:34px;width:30px}.res-format-wmv{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1075.68px 0;height:34px;width:30px}.res-format-xls{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1105.56px 0;height:34px;width:30px}.res-format-xml{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1135.44px 0;height:34px;width:30px}.res-format-zip{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1165.32px 0;height:34px;width:30px}.res-format-api{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1195.2px 0;height:34px;width:30px}.res-format-data{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1225.08px 0;height:34px;width:30px}.res-format-csv{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1254.96px 0;height:34px;width:30px}.res-format-docx{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1284.84px 0;height:34px;width:30px}.res-format-json{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1314.72px 0;height:34px;width:30px}.res-format-geojson{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1344.6px 0;height:34px;width:30px}.res-format-jpeg{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1374.48px 0;height:34px;width:30px}.res-format-kml{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1404.36px 0;height:34px;width:30px}.res-format-kmz{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1434.24px 0;height:34px;width:30px}.res-format-rdf{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1464.12px 0;height:34px;width:30px}.res-format-wms{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1494px 0;height:34px;width:30px}.res-format-xlsx{background-image:url("/data/base/images/sprite_res.png");background-repeat:no-repeat;background-position:-1523.88px 0;height:34px;width:30px}.form-actions .control-required-message{margin-left:0px;margin-right:20px}.slug-preview{word-break:break-word}.wrapper--dataset-type--harvest .module:not(.show-all) .nav-facet{max-height:none}.wrapper--dataset-type--harvest .module:not(.show-all) .read-more{display:none}.resource-picker{position:absolute;left:10px;top:50%;height:8px;transform:translateY(-50%)}.preview-maxsize-info{display:flex;margin-bottom:20px}.preview-maxsize-info svg{margin-right:5px}.search-tweaks--did-you-mean{font-family:Montserrat,Roboto,sans-serif;padding:0px 15px;margin-top:29px;font-size:16px;line-height:19.5px;font-weight:600;color:#f45744}.search-tweaks--did-you-mean .static-text:after{content:":"}.search-tweaks--did-you-mean a{font-style:italic;line-height:22px;font-size:18px;font-weight:700;color:rgba(0,85,142,.97)}.module.citation .select2-container,.module.citation .csl-bib-body{padding:0px 12px}.module.citation .csl-bib-body{margin:10px 0px}.module.citation .btn-group{text-align:center;display:block}.module.citation .btn-group .btn{float:none}.datacite-section .doi-section{display:flex;align-items:center;justify-content:space-between;margin-bottom:15px}.datacite-section .doi-section .doi-section--title{color:rgba(0,85,142,.97);font-weight:700;font-size:12px;margin-left:10px}.datacite-section .doi-section .doi-section--value{margin-bottom:0}.datacite-section .PlumX-Popup .ppp-container{margin:0 auto}.datacite-section .module-content{padding-bottom:0}.datacite-section .module-content.datacite-desktop{display:block}.datacite-section .module-content.datacite-mobile{display:none}.datacite-section .module-content.datacite-mobile .pps-container{width:100%}.harvested-warning{display:flex;align-items:center;margin-bottom:40px}.harvested-warning .harvested-warning--icon{margin-inline-end:15px}.harvested-warning .harvested-warning--text{font-size:13px;flex-basis:65%}#package-groups #publisher-tree .media-edit{opacity:1;padding:0 5px}.dataset-form{margin-right:20px;margin-bottom:20px}.dataset-form .stages{margin-right:-20px}.checkbox-label{position:relative}.checkbox-label:before{content:" ";border:1px solid #001e73;border-radius:2px;width:12px;height:12px;box-sizing:border-box;display:inline-block;margin-bottom:-1px;margin-right:6px}.checkbox-label:after{content:""}input:checked+.checkbox-label:after{content:url("/data/base/images/dark-check.svg");left:2px;top:-2px;position:absolute}div.fpx-toast{transition:none}.search-form{border-bottom:none;padding-bottom:35px;margin-bottom:0}.search-form .search-input.search-giant{margin-bottom:35px}.search-form .search-input.search-giant input{font-size:18px;font-family:"Calibri";font-weight:lighter;color:#b2b1b1;border:2px solid #bcdfe5;box-shadow:none;padding:18px 15px}.search-form .search-input.search-giant button{top:30%}.search-form .search-input.search-giant button i{color:#333}.search-form .control-order-by select{font-size:17px;border-color:#bcdfe5;width:169px;height:35px;line-height:35px}.search-form label{font-size:14px;font-weight:normal}.search-form label:after{content:unset}.search-form .spc-icon-chevron-down-blue-div{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABmJLR0QA/wD/AP+gvaeTAAADIklEQVRoge2WS2gTQRjHf7MbaxWq4gNFk0kURVRQkFZRQSgIiqCCUvWgUDz0pGg3qUH0kJMUn/V1KIKCYqG2Yk+KeFFRCLVKb3oQaaPo1T6wPro7HlSUppvszibWw/4uCzPff77/N7v7zUBISEhISEjI/4RM3mB+ZupE28gjkalEJlvHDhvjhO4nMtyDTC7/B7a8EW1agj2UBRrGTo1XAKCWAVlkand5nXkgZm3HcLoRrBpv2qUAAKpAtSOTrazIVJTJXgEyEaTVjBBdwAy3qEIF/KaBoaGnJI4kSmeuCNHGBcjBRyDSgCgU6qUAgBoc8zmx5Obg7ooQt2oxjB4QG7yEey0AYDaC+0irGepMTXuFEMhUGiUeAvO8ivwU8DMJIo2UD1l4eK5PrTsLjs0inroHqhnwtTl+C/hNLXakh7i1XlP/h1hjNea3HpTaoiPXLQAgihKPkamiP5orMtmAMJ4B2g0ioiv8o1fNSGsdhlNPX8snT6qlR6sYsa8CewLmD/QG/kLswDG7iaZWFg2NH1nGiJ2lBOZh3ALEK821lmCoLDGr3jUiZtWjzBeA5jUl31t+ASOf1wDtegmYghDX8y6EiUwl0rqAENeBKVorC7qImOvyh92QyQbgEqB7jejFceqYZHzHpgOo0VxnFMQJcmdOAWrsZOHuIZs2gHMbmK+ZfODXc7qm/gMYu8mdfuYWULz9zTs0h4qKNmCTpgldniDsvfS3fCwUVPzUG+7+zEC0jekzFLAR3Z7vHQXqEnOG9/HqykCxYH9mZGobqBsUuN4GZAg4QO5sp1eB/92MNi7GNO6gKN7z/fEaYe+kv8VXG/d/kL0//wZRtRbFNd9ad27xVVT7NQ9Bv+efrfYiMFlzha9AmtzZC7oWgv+Q8abVKKcTWOhT+R5D1dF3LhskffC7UP/pl9gVNcADzxrFI8zR6qDmobQtUSBTR0GdxH1jFKhT5N4dhw67NElLTdzaihI3gZljZgYRop7+M3dLma48h9KitGR0tANY82ukF5xd5M6/LXWq8p2qiUwl9uBlAMxpB+nLfClbrpCQkJCQkJAJ4gfGQsbKotIULgAAAABJRU5ErkJggg==");width:12px;height:10px;display:inline-block;background-size:10px;background-repeat:no-repeat;background-position:50%;cursor:pointer;pointer-events:none}.search-form{padding-bottom:0px}.search-form h2{font-size:19px;font-weight:300;color:#000;margin:23px 18px 13px;font-weight:bold}.search-form h2 .looking_data{font-style:normal;font-size:14px;line-height:28px}.search-form h2 .looking_data span{display:inline-block;font-weight:400;margin-top:15px}.search-form h2 .looking_data .structured-data{display:inline-block;border:1px solid #009fde;border-radius:4px;color:#009fde;font-weight:500;padding:0 10px;margin-left:10px}.search-form h2 .looking_data .structured-data:hover{text-decoration:none}.search-form h2 .looking_data .struct-data-tooltip{font-size:17px;top:1px}.search-form h2 .looking_data .struct-data-tooltip .tooltiptext{width:160px;left:-102px}.search-form h2 .looking_data .struct-data-tooltip .info-icon{margin-top:1px;margin-left:0px}.search-form .search-input-group{width:100%;position:relative;margin-bottom:0}.search-form .search-input-group .clear-results{background:rgba(0,0,0,0);box-shadow:none;border:none;position:absolute}.search-form .search-input-group .clear-results{right:35px;color:rgba(0,85,142,.97);font-size:20px}.search-form .search-input-group .btn-lg svg path{fill:rgba(0,85,142,.97)}.search-form .search-input-group .suggestion-box{display:none}.search-form .search-input-group .pending-request{position:absolute;top:55%;left:17px;display:none;color:#e9ecef;transform:translateY(-50%);transform-origin:50%;z-index:50}.search-form .search-input-group .pending-request svg{animation:rotate 1s infinite linear}.search-form .search-input-group.active-suggestions{border-bottom-left-radius:0;border-bottom-right-radius:0}.search-form .search-input-group.active-suggestions .suggestion-box{display:block}.search-form .search-input-group.pending-suggestions .pending-request{display:block}.search-form .spc-advanced-search{border:1px solid #c3c3c3;border-radius:4px;padding:10px}.search-form .spc-advanced-search .search-input-group{padding:0;margin-bottom:10px}.search-form .spc-advanced-search .search-input-group .input-search-icon{position:absolute;z-index:1;background:rgba(0,85,142,.97);border-radius:50% !important;height:30px;width:30px;top:5px;left:10px;display:flex;align-items:center}.filters-modal .search-form .spc-advanced-search .search-input-group .input-search-icon{z-index:initial}.search-form .spc-advanced-search .search-input-group .input-search-icon svg{width:13px;height:13px;position:relative;left:8px}.search-form .spc-advanced-search .search-input-group .input-search-icon svg path{fill:#e9ecef}.search-form .spc-advanced-search .search-input-group .input-wrapper{position:relative;flex-grow:1}.search-form .spc-advanced-search .search-input-group .input-wrapper .search{margin-right:10px;padding-left:40px;background:#eaeaea;border:none;box-shadow:none;height:40px;padding:0 10px 0 47px;border-radius:4px;font-size:16px;font-weight:600;color:#000;z-index:0}.search-form .spc-advanced-search .search-input-group .input-wrapper .search::placeholder{color:#000}.search-form .spc-advanced-search .search-input-group .input-group-btn{padding-left:10px;display:table-cell}.search-form .spc-advanced-search .search-input-group .input-group-btn .btn{justify-content:center;background-color:rgba(0,85,142,.97);color:#e9ecef;height:40px;padding:9px 30px;border-radius:4px}.search-form .spc-advanced-search .search-input-group .input-group-btn .btn:hover,.search-form .spc-advanced-search .search-input-group .input-group-btn .btn:active{border-color:rgba(0,85,142,.97)}.search-form .spc-advanced-search .search-input-group.pending-suggestions .input-search-icon svg{display:none}.search-form .spc-advanced-search .advanced-filters{padding:0}.search-form .spc-advanced-search .advanced-filters .enable-advanced-search label{margin-bottom:0}.search-form .spc-advanced-search .advanced-filters .advanced-filter-row{background:none;padding:0}.search-form .spc-advanced-search .advanced-filters .advanced-filter-row .filter-select--wrapper{margin-left:0}.search-form .spc-advanced-search .advanced-filters .advanced-filter-row .filter-input-text,.search-form .spc-advanced-search .advanced-filters .advanced-filter-row .filter-input-dropdown{padding:7px 21px;background:#e9ecef;box-shadow:inset 0px 0px 4px rgba(0,0,0,.25);width:100%;margin:0;border-radius:4px;margin-right:6px}.search-form .spc-advanced-search .advanced-filters .advanced-filter-row .input-text-wrapper{display:flex;flex:1;width:100%}.search-form .spc-advanced-search .advanced-filters .advanced-filter-row .input-text-wrapper svg{position:absolute;left:9px;top:12px}.search-form .spc-advanced-search .advanced-filters .advanced-filter-row .input-text-wrapper svg path{fill:#979797}.search-form .spc-advanced-search .advanced-filters .advanced-filter-row .input-text-wrapper .filter-input-text{padding-left:30px}.search-form .spc-advanced-search .advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-handle{line-height:initial}.search-form .spc-advanced-search .advanced-filters .advanced-filter-row .filter-input-dropdown .dropdown-value{display:inline;padding:4px 10px}.search-form .spc-advanced-search .advanced-filters .advanced-filter-row.add-filter{color:#000366;border:1px solid #ebebeb;padding:7px 21px;display:flex;flex-direction:row;justify-content:flex-start;padding-left:18px;align-items:center}.search-form .spc-advanced-search .advanced-filters .remove-btn{top:13px;margin-left:2px}.search-form .spc-advanced-search .advanced-filters .advanced-form-control .search-btn{margin-right:0}.search-form .filter-list{margin-left:27px;margin-top:0px;margin-bottom:0px}.search-form .filter-list .filtered{margin:5px 10px 6px 0;padding:5px 9px 5px 19px;background:#676d6e;font-size:15px}.search-form .filter-list .filtered .remove{margin-left:12px;position:relative;top:-1px;color:rgba(0,0,0,0);display:inline-block;width:20px;height:20px;background:url("/data/base/images/tag-close.png") 50% no-repeat;background-size:contain}.search-form .search-additional-control{border:1px solid #c2c2c2;display:flex;align-items:center;border-radius:4px}.search-form .search-additional-control>div{flex:1;flex-direction:row;padding:5px 5px 5px}.search-form .search-additional-control>div:not(:first-child){border-left:1px solid #c2c2c2}.search-form .search-additional-control>div:first-child{flex-grow:.8}.search-form .search-additional-control>div:first-child a:not(.btn-suggest){cursor:pointer;line-height:35px;color:#000;font-weight:900}.search-form .search-additional-control>div:first-child a:not(.btn-suggest):hover,.search-form .search-additional-control>div:first-child a:not(.btn-suggest):focus,.search-form .search-additional-control>div:first-child a:not(.btn-suggest):active{text-decoration:none}.search-form .search-additional-control>div .control-order-by{margin:0px}.search-form .search-additional-control>div .control-order-by>label:hover{cursor:default}.search-form .search-additional-control>div .control-order-by select{box-shadow:none;border:none;font-weight:900;font-size:14px}.search-form .search-additional-control>div .control-order-by select::-ms-expand{display:none}.search-form .search-additional-control>div .show-filters .spc-icon-chevron-down-blue-div{margin-right:10px}.search-form .search-additional-control>div .show-filters-wrapper,.search-form .search-additional-control>div .control-order-by{position:relative;margin:auto;text-align:center;color:#000;width:auto}.search-form .search-additional-control>div .show-filters-wrapper select,.search-form .search-additional-control>div .control-order-by select{color:#000;padding-right:0px;cursor:pointer}.search-form .search-additional-control>div .show-filters-wrapper{width:90px;margin-bottom:-10px}.search-form .search-additional-control>div .show-filters-wrapper:after{left:7px}.search-form .search-additional-control #field-order-by{-webkit-appearance:none;-moz-appearance:none;line-height:22px}.dataset-list{border:1px solid #c3c3c3;border-radius:4px}.dataset-list .dataset-heading{font-size:15px;margin-bottom:12px;padding-right:25px}.dataset-list .dataset-heading a{color:#000}.dataset-list .dataset-heading a:hover,.dataset-list .dataset-heading a:active,.dataset-list .dataset-heading a:focus{text-decoration:none}.dataset-list .dataset-item{font-size:17px;color:#000;margin:12px;padding-bottom:20px;border-bottom:1px dashed #c6c6c6}.dataset-list .dataset-item:last-child{border-bottom:none}.dataset-list .dataset-item:first-of-type{padding-top:7px}.dataset-list .dataset-item .dataset-type-label{font-weight:normal;font-size:12px;padding:5px 10px;background-color:#197b60}.dataset-list .dataset-item .dataset-content{word-wrap:break-word;font-size:12px}.dataset-list .dataset-item .dataset-resources{padding:5px}.dataset-list .dataset-item .dataset-info{color:#1d1d1e;font-weight:600;font-size:13px}.dataset-list .dataset-item .dataset-info .badge{font-size:14px;vertical-align:middle;margin-left:15px;padding-top:3px;background-color:#197b60}.dataset-list .dataset-item .dataset-info .empty{color:#000}.label[data-format=xls],.label[data-format*=xls]{background-color:#42abb3}.label[data-format=xlsx],.label[data-format*=xlsx]{background-color:#b7894c}.spc-no-results{margin:28px 18px;font-family:"Montserrat","Roboto";line-height:20px}.spc-no-results a{color:#036295}.spc-order-by-wrapper{position:relative}.spc-order-by-wrapper .suggestion-block{transition:all .4s;opacity:0;transform:scale(0.0001);position:absolute;padding:33px 27px 69px;width:320px;border-radius:3px;right:0px;top:48px;box-shadow:0px 3px 70px 0 rgba(142,153,158,.45);background-color:#e9ecef;z-index:2}.spc-order-by-wrapper .suggestion-block.active{transform:scale(1);opacity:1}.spc-order-by-wrapper .suggestion-block .suggestion-text{font-size:13px;font-family:"HelveticaNeue","Montserrat","Roboto";text-align:center}input::-ms-clear{display:none;width:0px;height:0px}.ui-autocomplete{border-radius:12px;border:solid 2px #ddd;padding:18px;background:#e9ecef;margin-top:1px;color:#333}.ui-autocomplete li{padding:4px 7px 1px;line-height:17px;border-radius:13px}.ui-autocomplete li:hover{background:#e5f5fc}.ui-autocomplete li a,.ui-autocomplete li a:hover,.ui-autocomplete li a:focus,.ui-autocomplete li a:active{color:#33333e !important;border:none !important;background:none !important}.ui-autocomplete li a.ui-state-active,.ui-autocomplete li a:hover.ui-state-active,.ui-autocomplete li a:focus.ui-state-active,.ui-autocomplete li a:active.ui-state-active{margin:0px}.ui-autocomplete li a strong,.ui-autocomplete li a:hover strong,.ui-autocomplete li a:focus strong,.ui-autocomplete li a:active strong{font-weight:normal}#organization-search-form.search-form .search-without-facets{border:none}#organization-search-form.search-form .spc-order-by-wrapper{display:none}.advanced-filters{padding:0 15px}.advanced-filters .advanced-form-control .enable-advanced-search input:checked+label:after{content:url("/data/base/images/check.svg")}#dataset-map.search-spatial .module-heading{position:absolute;top:0;z-index:10000;left:0;right:0;margin:12px}.search-form .control-order-by{border:none;box-shadow:none;background:none;padding:0px}.search-form .control-order-by select{vertical-align:middle;line-height:20px;font-size:14px}.organization-list-page .module-content.page-header{margin-top:1rem}.organization-list-page .organization-list-sidebar{border-bottom:1px dashed #c6c6c6;margin:5px}.organization-list-page .organization-list-sidebar .module-heading{position:relative}.organization-list-page .organization-list-sidebar .module-content{padding:7px 50px;text-align:center;font-size:12px}.organization-list-page .organization-list-sidebar .module-content>p{margin:0 0 10px}.organization-list-page .search-form .spc-advanced-search .search-input-group{margin-bottom:0px}.organization-list-page #org-field-order-by{font-size:14px;border-color:#c6c6c6}.organization-list-page .nav-tabs li a{color:#001e73}.organization-list-page ul.hierarchy-flat{padding:0px 35px}.organization-list-page ul.hierarchy-flat li{list-style:none;margin:7px 0}.organization-list-page ul.hierarchy-flat li a{color:#001e73}.organization-list-page #publisher-tree ul.hierarchy-tree-top{padding:0px 35px}.organization-list-page #publisher-tree ul.hierarchy-tree-top li{list-style:none;margin:7px 0}.organization-list-page #publisher-tree ul.hierarchy-tree-top li:last-child{margin-bottom:0px}.organization-list-page #publisher-tree ul.hierarchy-tree-top li a{color:#001e73;margin-left:5px}.organization-list-page #publisher-tree ul.hierarchy-tree-top>li{border-bottom:1px dashed #c6c6c6;padding-bottom:7px;position:relative}.organization-list-page #publisher-tree ul.hierarchy-tree-top>li:before,.organization-list-page #publisher-tree ul.hierarchy-tree-top>li>.hierarchy-tree:before{display:block;width:8px;height:8px;content:" ";background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABmJLR0QA/wD/AP+gvaeTAAADIklEQVRoge2WS2gTQRjHf7MbaxWq4gNFk0kURVRQkFZRQSgIiqCCUvWgUDz0pGg3qUH0kJMUn/V1KIKCYqG2Yk+KeFFRCLVKb3oQaaPo1T6wPro7HlSUppvszibWw/4uCzPff77/N7v7zUBISEhISEjI/4RM3mB+ZupE28gjkalEJlvHDhvjhO4nMtyDTC7/B7a8EW1agj2UBRrGTo1XAKCWAVlkand5nXkgZm3HcLoRrBpv2qUAAKpAtSOTrazIVJTJXgEyEaTVjBBdwAy3qEIF/KaBoaGnJI4kSmeuCNHGBcjBRyDSgCgU6qUAgBoc8zmx5Obg7ooQt2oxjB4QG7yEey0AYDaC+0irGepMTXuFEMhUGiUeAvO8ivwU8DMJIo2UD1l4eK5PrTsLjs0inroHqhnwtTl+C/hNLXakh7i1XlP/h1hjNea3HpTaoiPXLQAgihKPkamiP5orMtmAMJ4B2g0ioiv8o1fNSGsdhlNPX8snT6qlR6sYsa8CewLmD/QG/kLswDG7iaZWFg2NH1nGiJ2lBOZh3ALEK821lmCoLDGr3jUiZtWjzBeA5jUl31t+ASOf1wDtegmYghDX8y6EiUwl0rqAENeBKVorC7qImOvyh92QyQbgEqB7jejFceqYZHzHpgOo0VxnFMQJcmdOAWrsZOHuIZs2gHMbmK+ZfODXc7qm/gMYu8mdfuYWULz9zTs0h4qKNmCTpgldniDsvfS3fCwUVPzUG+7+zEC0jekzFLAR3Z7vHQXqEnOG9/HqykCxYH9mZGobqBsUuN4GZAg4QO5sp1eB/92MNi7GNO6gKN7z/fEaYe+kv8VXG/d/kL0//wZRtRbFNd9ad27xVVT7NQ9Bv+efrfYiMFlzha9AmtzZC7oWgv+Q8abVKKcTWOhT+R5D1dF3LhskffC7UP/pl9gVNcADzxrFI8zR6qDmobQtUSBTR0GdxH1jFKhT5N4dhw67NElLTdzaihI3gZljZgYRop7+M3dLma48h9KitGR0tANY82ukF5xd5M6/LXWq8p2qiUwl9uBlAMxpB+nLfClbrpCQkJCQkJAJ4gfGQsbKotIULgAAAABJRU5ErkJggg==");background-size:contain;background-repeat:no-repeat;background-position:50%;background-color:#e9ecef;position:absolute;left:-15px;top:7px}.organization-list-page #publisher-tree ul.hierarchy-tree-top .hierarchy-tree{background:none}.organization-list-page #publisher-tree ul.hierarchy-tree-top .hierarchy-tree:before{transform:rotateZ(-90deg)}.organization-list-page #publisher-tree ul.hierarchy-tree-top .hierarchy-tree li,.organization-list-page #publisher-tree ul.hierarchy-tree-top .hierarchy-tree li:last-child{background:none}.organization-list-page #publisher-tree ul.hierarchy-tree-top .hierarchy-tree li:before{content:"-"}.organization-list-page #publisher-tree .media-grid.flat{background:#e9ecef;margin:0;border:none;padding-top:0}.organization-list-page #publisher-tree .media-grid.flat li .label-top{background-color:#001e73;padding-top:5px;color:#fff;font-size:.6rem;font-weight:bold;padding:.2rem .6rem;border-radius:.25rem}.import-datasets-form{display:inline}.import-datasets-form .file-input-label:after{content:none}#user-register-form,#user-login-form{margin-right:20px}#user-register-form .form-actions,#user-login-form .form-actions{margin-bottom:20px}.wrapper:before{display:none}@media (min-width: 768px){.wrapper.wrapper--dataset-type--dataset{flex-direction:row}.leaflet-left.leaflet-top{display:block;top:auto;left:auto;bottom:18px;right:21px}.leaflet-right .leaflet-control{margin-right:-2px}.leaflet-right.leaflet-top{top:60px;bottom:auto;right:11px}.leaflet-bar a,.leaflet-bar a:hover{width:26px;height:26px;line-height:32px}.leaflet-control-container .leaflet-draw-toolbar a.leaflet-draw-draw-rectangle{height:26px;width:26px;background-size:15px}.leaflet-control-container .leaflet-control-zoom a{width:26px;height:26px;font-size:18px;line-height:32px}.leaflet-control-container .leaflet-control-zoom a:hover{width:26px;height:26px;line-height:32px}.dataset-map-expanded #dataset-map{position:absolute;width:740px;height:384px;top:-384px;left:0px;background-color:#fff;border:1px solid #ccc;margin:0}.dataset-map-expanded #dataset-map #dataset-map-container{height:300px}#dataset-map #dataset-map-container{height:220px}.dataset-map-expanded .wrapper #dataset-map{width:740px}.dataset-map-expanded #dataset-map #dataset-map-attribution{*zoom:1}.dataset-map-expanded #dataset-map #dataset-map-attribution:before,.dataset-map-expanded #dataset-map #dataset-map-attribution:after{display:table;content:"";line-height:0}.dataset-map-expanded #dataset-map #dataset-map-attribution:after{clear:both}.dataset-map-expanded #dataset-map #dataset-map-attribution div{float:left;margin-right:10px}.dataset-map-expanded #dataset-map #dataset-map-edit-buttons{display:block;float:right;padding:10px}.dataset-map-expanded #dataset-map #dataset-map-edit{display:none}.dataset-map-expanded #dataset-map .module-heading{border-top-color:#000}.dataset-map-expanded .wrapper{margin-top:383px}.social-share{display:block;position:static;backdrop-filter:none}.social-share .social-share--panel{position:fixed;right:0;left:unset;top:50%;transform:translateY(-50%);background:#115ea3;padding:0;z-index:5}.social-share .social-share--panel .social-share--tile{text-align:center;width:45px;height:45px;padding:0;margin:0;transition:.3s all;background-color:#115ea3}.social-share .social-share--panel .social-share--tile:hover{transform:translateX(-5px)}.social-share .social-share--panel .social-share--tile a{color:#fff;font-size:25px;line-height:45px;text-decoration:none !important}.social-share .social-share--panel .social-share--tile .fa{width:25px;height:25px}.social-share .social-share--panel .social-share--tile .fa:before{height:25px}.social-share .social-share--panel .social-share--tile .fa.fa-envelope:before{font-size:25px}.social-share .social-block--close{display:none}.share-menu-toggle{display:none}#mobile-menu{padding-right:0px}.desktop-only{display:initial}.main{padding-top:17px}.main .secondary .filters .module .module-heading .heading-icon{margin:4px 3px}.main .secondary .filters .module .module-footer{margin-left:40px}.main .secondary .filters .module .module-footer a{font-size:13px}.main .secondary .filters>div .module .module-heading{margin:13px}.main .secondary .filters>div .nav-facet{padding:0 30px 0 55px}.mobile-filters-heading,.mobile-filters-heading-count,.show-filters-wrapper{display:none}.js [role=main] .secondary .filters{background:rgba(0,0,0,0)}.search-form .search-input-group #field-giant-search{box-shadow:none}.search-form .search-input-group .btn-lg{z-index:3}.search-form .search-additional-control{display:block;float:right;border:none;margin-top:10px}.search-form .search-additional-control>div{padding:0px}.search-form .search-additional-control>div:not(:first-child){border:none}.dataset-list .dataset-item{margin:25px}.dataset-list .dataset-item .dataset-heading{margin-bottom:5px}.dataset-list .dataset-item .right-icons .pull-right>*{margin:-1px 4px}.dataset-list .dataset-item .dataset-info .badge{font-size:12px;padding:3px 10px}.dataset-read{margin-bottom:0px}.dataset-read .primary h1{font-size:20px;font-weight:700}.dataset-read .primary .nav-tabs li.active a{padding:7px 21px}.dataset-read .primary .module .module-content .resources h3{margin:25px 0px}.dataset-read .primary .module .module-content .resources .resource-item .btn-group{position:absolute;top:9px}.pagination-wrapper{padding:28px 20px}.pagination-wrapper .pagination li a{padding:3px 10px}.module-resource+.secondary{padding:10px;border:1px solid #cdcdcd;border-radius:5px}.module-resource+.secondary+.primary{width:66%;padding-right:10px}.module-resource+.secondary .resources{padding-bottom:0}.module-resource+.secondary .resources .module-heading{display:none}.module-resource+.secondary .resources .nav-item{border-bottom:none}.module-resource+.secondary .resources .nav-item.active{border-radius:20px}.module-resource+.secondary .resources .nav-item.active a{border-radius:0}.organization-list-page{flex-direction:row-reverse}.organization-list-page .organization-list-sidebar{border:1px solid #c6c6c6;border-radius:5px;padding:10px 25px}.organization-list-page .organization-list-sidebar .module-heading{margin:0px -10px 20px -22px}.organization-list-page .organization-list-sidebar .module-content{text-align:left;padding:0px}.organization-list-page #organization-search-form .search-additional-control>div{padding:17px 0px}.organization-list-page .search-form h2{display:inline-block;font-size:25px;font-weight:600;margin-left:0px;margin-top:0px;margin-bottom:0px}.organization-list-page #publisher-tree ul.hierarchy-tree-top{padding:0px 43px}.organization-list-page #publisher-tree ul.hierarchy-tree-top>li{border:none}.js .dataset-read .secondary{width:33%}.js .dataset-read .primary{width:67%}}@media (min-width: 992px){#dataset-map #dataset-map-container{height:280px}#dataset-map.control-group #dataset-map-container{height:250px}.dataset-map-expanded .wrapper #dataset-map{width:971px}.leaflet-bar a,.leaflet-bar a:hover{width:30px;height:30px;line-height:32px}.leaflet-control-container .leaflet-draw-toolbar a.leaflet-draw-draw-rectangle{width:30px;height:30px}.leaflet-control-container .leaflet-control-zoom a{width:30px;height:30px;font-size:18px;line-height:32px}.leaflet-control-container .leaflet-control-zoom a:hover{width:30px;height:30px;line-height:32px}.control-group .leaflet-control-container .leaflet-control-zoom a{width:26px;height:26px;font-size:18px;line-height:26px}.control-group .leaflet-control-container .leaflet-control-zoom a:hover{width:26px;height:26px;line-height:26px}#mobile-menu{display:none}.js .dataset-read .secondary .stars-block i{margin:20px 8px 9px}}@media (max-width: 992px){#dataset-map .module-heading{margin:12px 5px 0 5px}.header .account-masthead,.header #main-menu{display:none}.header .account-masthead,.header .search-in-header{display:none}.header .offcanvas-body .search-in-header{display:flex}.dataset-read .primary .resources .resource-item{flex-direction:column}.dataset-read .primary .resources .resource-item .res-format{margin-right:0;margin-bottom:15px}.dataset-read .primary .resources .resource-item .res-meta{padding-right:0;margin-bottom:10px}.dataset-read .primary .resources .resource-item .res-meta .heading{margin-bottom:4px}.dataset-read .primary .resources .resource-item .res-buttons{display:flex}.dataset-read .primary .resources .resource-item .res-buttons a{flex-basis:50%}.dataset-read .primary .resources .resource-item .res-buttons a:first-of-type{margin-right:6px}.dataset-read .primary .resources .resource-item .res-buttons.no-url a:first-of-type{flex-basis:100%}.dataset-read .primary .resources .resource-item .res-buttons .btn-edit{display:none}.harvested-warning .harvested-warning--text{flex-basis:unset}}@media (min-width: 1200px){#dataset-map #dataset-map-container{height:328px}.dataset-map-expanded .wrapper #dataset-map{width:1239px;max-width:1239px}}@media (max-width: 767px){#dataset-map:not(.control-group) .leaflet-left.leaflet-top{display:none}#dataset-map:not(.control-group) .leaflet-control-container .leaflet-draw-toolbar a.leaflet-draw-draw-rectangle{width:47px;height:47px;background-size:25px}.control-group .leaflet-draw-toolbar a.leaflet-draw-draw-rectangle{width:30px;height:30px}.control-group #dataset-map #dataset-map-container{height:250px;border-radius:4px}#dataset-map #dataset-map-container{height:328px}.control-group .leaflet-bar a,.leaflet-bar a:hover{width:30px;height:30px;line-height:32px}.control-group .leaflet-control-container .leaflet-control-zoom a{width:30px;height:30px;font-size:20px;line-height:32px}.control-group .leaflet-control-container .leaflet-control-zoom a:hover{width:30px;height:30px;line-height:32px}.control-group .leaflet-control-container .leaflet-draw-toolbar a.leaflet-draw-draw-rectangle{height:30px;width:30px}#dataset-map.control-group .leaflet-control-layers,#dataset-map.control-group .leaflet-bar{border:2px solid rgba(0,0,0,.2)}#dataset-map .leaflet-bar{box-shadow:none}.control-group .leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-29px 0px}.control-group .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-240px 0px}.dataset-map-expanded .wrapper #dataset-map{position:relative;width:auto;height:328px;top:0;left:0px;background-color:#fff;border:none;margin:0}.dataset-map-expanded #dataset-map .dataset-map #dataset-map-container{height:328px}.dataset-map-expanded #dataset-map.module.module-narrow.module-shallow #dataset-map-edit-buttons{display:none}}@media (max-width: 768px){.suggestion-box{bottom:-5px}.dataset-read .primary .module .module-content{padding:16px}.dataset-read .primary .nav-tabs{padding:16px 16px 0 16px}.dataset-read .primary .page-heading{line-height:27px}.dataset-read .primary .package-download{flex-direction:column-reverse}.dataset-read .primary .package-download .view-source{margin-right:0}.dataset-read .primary .package-download .bulk-resource-download-controll{margin-bottom:20px}#dataset-resources .resources-header{margin-bottom:16px;flex-direction:column;align-items:normal}.datacite-section .module-content.datacite-desktop{display:none}.datacite-section .module-content.datacite-mobile{display:block}.harvested-warning{flex-direction:column;align-items:baseline}.search-form .spc-advanced-search{margin-bottom:15px}.search-form .spc-advanced-search .advanced-filters .advanced-filter-row{margin-bottom:15px}.search-form .spc-advanced-search .advanced-filters .advanced-filter-row .input-text-wrapper svg{left:9px;top:8px}.search-form .spc-advanced-search .search-input-group{display:flex;flex-direction:column}.search-form .spc-advanced-search .search-input-group .input-wrapper{margin-bottom:10px}.search-form .spc-advanced-search .search-input-group .input-group-btn{padding-left:0;width:100%}.search-form .spc-advanced-search .search-input-group .input-group-btn .btn{width:inherit;margin:0}.search-form .input-group.search-input-group .input-group-btn{position:unset}.search-form .input-group.search-input-group .pending-request{top:22px}.organization-list-page .organization-list-sidebar .module-heading{background:none;text-align:center}.organization-list-page .organization-list-sidebar .module-heading .heading-icon{background-size:14px;margin:7px 4px 16px}.organization-list-page .organization-list-sidebar .second-heading{text-align:center;margin:0;padding:0;font-size:14px;margin-top:-5px}.wrapper.no-nav .primary{float:none;width:auto}.wrapper.no-nav .primary,.wrapper.no-nav .secondary{margin:0 10px}.wrapper.no-nav .module-resource{border-bottom:none}.wrapper.no-nav .resources{margin-bottom:20px}body{padding:0}.page_primary_action{display:none}.nav-simple>li.nav-item a:before{position:static}.header-search-wrapper{margin-bottom:65px}.navbar-toggle{margin:0px;padding:0px}.navbar-toggle .fa{font-size:22px}.main #content .primary.span9{width:100%}.main #content .show-filters.btn{background:linear-gradient(0deg, #0c436b 0%, #036295 100%);font-weight:normal;border:none;border-radius:5px;color:#e9ecef}.main #content .show-filters.btn:hover,.main #content .show-filters.btn:focus,.main #content .show-filters.btn:active{background:linear-gradient(0deg, #0c436b 20%, #036295 80%);color:#e9ecef}.dataset-read{display:block}.dataset-read .primary{background:#e9ecef}.dataset-list .dataset-item .right-icons{display:none}.dataset-read .primary .resource-list .resource-item .heading{padding-right:10px}.search-form .search-input-group{position:relative;top:0;margin-bottom:10px;padding:0 10px}.search-form .search-additional-control>div{text-align:center}.search-form .search-additional-control>div .control-order-by #field-order-by{padding-left:5px}.search-form .search-additional-control>div .show-filters-wrapper{width:105px;margin-bottom:0px}#dataset-map .module-heading{z-index:9999}#organization-datasets-search-form .input-group.search-input-group,#group-datasets-search-form .input-group.search-input-group{position:relative;top:0}.module-resource .page-heading{word-wrap:break-word;word-break:break-word}#dataset-resources .resource-list .resource-item{word-wrap:break-word;word-break:break-word}.secondary .resources .module-heading{display:none}}@media (min-width: 560px){.btn.btn-scroll-top{bottom:100px;right:24px;width:60px;height:60px}}@media (max-width: 748px){.search-form.site-search{margin-left:25px;margin-bottom:unset}}@media (max-width: 575.98px){#mobile-menu .share-menu-toggle{display:none}}@media (max-width: 1200px){.dataset-read .primary .resources .resource-item .res-meta{padding-right:30px;flex-basis:50%}.dataset-read .primary .resources .resource-item .res-buttons{flex-basis:50%}#dataset-resources .data-meta{flex-direction:column}#dataset-resources .data-meta .data-licence,#dataset-resources .data-meta .data-rating{width:fit-content}#dataset-resources .data-meta .data-licence{flex-basis:55%;margin-inline-end:0;margin-bottom:8px}#dataset-resources .data-meta .data-rating{flex-basis:45%}}@media screen and (max-width: 447px){.search-form h2 .looking_data .structured-data{margin-left:0px}}@media (min-width: 768px)and (max-width: 992px){.container{width:720px}.secondary .filters .module .module-heading{margin:12px 4px 0 5px}.js .main .secondary .filters .module .nav-facet{padding:0 15px 0 20px}.js .main .secondary .filters .module .module-footer{margin-left:5px}}@media (min-width: 769px){.dataset-map-expanded #dataset-map{width:100%;max-width:1008px;left:0;border-color:#bcdfe5;border-radius:2px}.dataset-map-expanded #dataset-map .btn.cancel{color:#036295;background:#e9ecef;border:2px solid #036295;line-height:16px}.dataset-map-expanded #dataset-map .btn.apply.disabled{line-height:16px;opacity:.8}}