@charset "UTF-8";
/* Zotonic scss main file, setting our preferences. */
/* -------begin customization-------- */
/* ------tufte css settings-------- */
/* -------Bootstrap customization-------- */
/* -------Grid break points-------- */
/* -------Include bootstrap basic settings-------- */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* -------Extra site definitions-------- */
/* -------end customization-------- */
/*! autoprefixer: off */
:root {
  --safe-area-inset-top: 0px;
  --safe-area-inset-right: 0px;
  --safe-area-inset-bottom: 0px;
  --safe-area-inset-left: 0px;
}

@supports (padding-top: env(safe-area-inset-top)) {
  :root {
    --safe-area-inset-top: env(safe-area-inset-top, 0);
    --safe-area-inset-right: env(safe-area-inset-right, 0);
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0);
    --safe-area-inset-left: env(safe-area-inset-left, 0);
  }
}
html, body {
  min-height: 100vh;
  max-height: 100vh;
  width: 100vw;
  padding: 0;
  margin: 0;
}

body {
  display: grid;
  grid-template-columns: 0 minmax(15px, 1fr) minmax(100px, 1400px) minmax(15px, 1fr);
  grid-template-rows: 76px auto 1fr auto auto;
}
@media (min-width: 1200px) {
  body {
    grid-template-columns: 0 minmax(15px, 1fr) minmax(800px, 1400px) minmax(15px, 1fr);
  }
}
@media (min-width: 1200px) {
  body {
    grid-template-columns: minmax(300px, 300px) minmax(45px, 1fr) minmax(800px, 1400px) minmax(15px, 1fr);
  }
}
@media (min-width: 2000px) {
  body {
    grid-template-columns: minmax(300px, 500px) minmax(45px, 1fr) minmax(800px, 1400px) minmax(15px, 1fr);
  }
}

#content-wrapper {
  width: 100%;
  grid-column: 3;
  grid-row: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 1fr auto;
}
#content-wrapper main {
  grid-column: 1;
  grid-row: 1;
}
#content-wrapper footer {
  grid-column: 1;
  grid-row: 2;
  text-align: right;
  padding: 1rem;
}

#header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 0;
}
#header-wrapper header {
  position: relative;
  top: 0;
  transition: all 0.6s;
}

.wide-content #header-wrapper header {
  grid-template-columns: 0 1fr 0;
}

.navbar.navbar-grid {
  display: grid;
  grid-template-columns: 62px 1fr;
  grid-template-rows: 50px auto;
  background-color: rgba(255, 255, 252, 0.95);
  background: linear-gradient(#fffffc, #fffffc, rgba(255, 255, 252, 0.8));
}
@media (min-width: 1200px) {
  .navbar.navbar-grid {
    grid-template-columns: 10px 1fr;
  }
}
.navbar.navbar-grid > label {
  grid-column: 1;
  grid-row: 1;
  display: block;
  position: absolute;
  left: 0;
  font-size: 30px;
  line-height: 30px;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.navbar.navbar-grid > label:hover {
  transform: rotate(-30deg);
}
.navbar.navbar-grid > div.home-link {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  text-align: center;
  overflow: hidden;
  padding-top: 2px;
}
.navbar.navbar-grid > div.home-link a {
  overflow: hidden;
}
.navbar.navbar-grid > div.home-link a img {
  max-height: 50px;
  max-width: 100%;
}
.navbar.navbar-grid .nav-wrapper {
  grid-column: 1/3;
  grid-row: 2;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.navbar.navbar-grid .nav-wrapper .nav-wrapper2 {
  overflow-x: scroll;
  box-sizing: border-box;
  height: calc(100% + 20px);
  padding-bottom: 20px;
}
.navbar.navbar-grid .nav-wrapper .nav-wrapper2 ul {
  display: flex;
  width: auto;
  padding-left: 50px;
}
@media (min-width: 1200px) {
  .navbar.navbar-grid .nav-wrapper .nav-wrapper2 ul {
    padding-left: 0px;
  }
}
.navbar.navbar-grid .nav-wrapper .nav-wrapper2 ul li {
  margin-top: 0;
  white-space: nowrap;
}

/* Show main nav as "hamburger" menu */
#sidedrawer {
  display: block;
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 500px;
  left: -500px;
  max-width: 100%;
  bottom: 0;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  #sidedrawer > div {
    height: 100vh;
    overflow-y: auto;
  }
}
@media (min-width: 1200px) {
  #sidedrawer {
    grid-column: 1;
    grid-row: 3;
    position: relative;
    left: 0;
    z-index: 0;
  }
  #sidedrawer > div {
    padding-top: 1rem;
    padding-bottom: 5rem;
  }
}

#nav-toggle {
  display: none;
}

@media (max-width: 1199px) {
  #nav-toggle:checked ~ #sidedrawer {
    left: 0;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  #nav-toggle:checked ~ #header-wrapper #nav-label {
    transform: rotate(-90deg);
  }
  #nav-toggle:checked ~ #sidedrawer-bg {
    display: block;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
}
.scrolled-down #header-wrapper {
  height: 0;
}
.scrolled-down #header-wrapper header {
  top: -86px;
  box-shadow: none;
}
.scrolled-down #header-wrapper header:has(.header-message) {
  top: -136px;
}
.scrolled-down #sidedrawer {
  top: 0;
}
.scrolled-down .sticky {
  top: 0;
  z-index: 101;
}

small,
.small {
  font-size: 87%;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-muted {
  color: #777777;
}

.text-primary {
  color: rgb(28, 165, 222);
}

a.text-primary:hover,
a.text-primary:focus {
  color: #1683b1;
}

.text-success {
  color: #3c763d;
}

a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}

a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

.bg-primary {
  color: #fff;
}

.bg-primary {
  background-color: rgb(28, 165, 222);
}

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #1683b1;
}

.bg-success {
  background-color: #dff0d8;
}

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

.bg-info {
  background-color: #d9edf7;
}

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

.bg-warning {
  background-color: #fcf8e3;
}

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

.bg-danger {
  background-color: #f2dede;
}

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

#sidedrawer {
  background-color: #fffffc;
  color: #111;
}
#sidedrawer > div > label {
  display: block;
  text-align: right;
  font-size: 40px;
  line-height: 30px;
  padding: 10px;
  text-transform: uppercase;
}
#sidedrawer > div > .nav-stacked > li > a {
  text-transform: uppercase;
}
#sidedrawer .nav-stacked {
  padding-left: 1.2rem;
  line-height: 2rem;
}
#sidedrawer .nav-stacked a {
  padding: 0;
  color: #111;
  white-space: nowrap;
}
#sidedrawer .nav-stacked a:hover {
  color: #1683b1;
}
#sidedrawer .nav-stacked li {
  margin-top: 0;
  padding: 0;
  overflow-x: hidden;
  text-overflow: ellipsis;
}
#sidedrawer .nav-stacked ul {
  padding: 0 0 0 1.2rem;
  display: none;
}
#sidedrawer .nav-stacked li.nav__show > a {
  color: #1683b1;
}
#sidedrawer .nav-stacked li.nav__show > a::before {
  position: absolute;
  left: -0.95rem;
  content: ">";
}
#sidedrawer .nav-stacked li.nav__show > ul {
  display: block;
}
#sidedrawer .nav-stacked li.divider {
  padding: 1rem;
}

@media (min-width: 1200px) {
  #sidedrawer-bg,
  #nav-label {
    display: none;
  }
  #sidedrawer > div {
    padding-top: 3.2rem;
  }
  #sidedrawer > div > label {
    display: none;
  }
}
.page-haspart {
  clear: both;
  text-align: center;
  overflow: hidden;
  display: flex;
  margin-top: 2.8rem;
}
.page-haspart > * {
  flex-grow: 0;
  flex-basis: 32%;
  display: block;
}
.page-haspart .haspart__prev {
  text-align: left;
  text-indent: -1rem;
  margin-left: 1rem;
}
.page-haspart .haspart__prev:before {
  content: "< ";
}
.page-haspart .haspart__next {
  text-align: right;
  margin-right: 1rem;
}
.page-haspart .haspart__next:after {
  content: " >";
  margin-right: -1rem;
}

main .pagination {
  margin-top: 2.8rem;
  width: 100%;
}
main .pagination li {
  padding: 0;
}

main aside,
main .edit-github,
.mce-content-body aside,
.mce-content-body .edit-github {
  float: right;
  clear: right;
  margin-top: 0;
  margin-bottom: 1.96rem;
  margin-right: 0%;
  width: 25%;
  font-size: 1rem;
  line-height: 1.96;
  vertical-align: baseline;
  position: relative;
  overflow: hidden;
}
main aside p, main aside pre, main aside ol, main aside ul,
main .edit-github p,
main .edit-github pre,
main .edit-github ol,
main .edit-github ul,
.mce-content-body aside p,
.mce-content-body aside pre,
.mce-content-body aside ol,
.mce-content-body aside ul,
.mce-content-body .edit-github p,
.mce-content-body .edit-github pre,
.mce-content-body .edit-github ol,
.mce-content-body .edit-github ul {
  width: 100%;
  font-size: 1rem;
}
main aside ol, main aside ul,
main .edit-github ol,
main .edit-github ul,
.mce-content-body aside ol,
.mce-content-body aside ul,
.mce-content-body .edit-github ol,
.mce-content-body .edit-github ul {
  max-width: 100%;
}
main aside ol li, main aside ul li,
main .edit-github ol li,
main .edit-github ul li,
.mce-content-body aside ol li,
.mce-content-body aside ul li,
.mce-content-body .edit-github ol li,
.mce-content-body .edit-github ul li {
  margin-top: 0.75rem;
  font-size: inherit;
  line-height: 1.5;
}
main aside .first,
main .edit-github .first,
.mce-content-body aside .first,
.mce-content-body .edit-github .first {
  margin-top: 0;
}
main aside .first ~ p,
main .edit-github .first ~ p,
.mce-content-body aside .first ~ p,
.mce-content-body .edit-github .first ~ p {
  margin-top: 0;
}
@media screen and (max-width: 760px) {
  main aside,
  main .edit-github,
  .mce-content-body aside,
  .mce-content-body .edit-github {
    float: none;
    margin-top: 1.4rem;
    margin-left: 5%;
    width: 90%;
  }
}
main .edit-github,
.mce-content-body .edit-github {
  margin-top: 1.4rem;
}
main li aside,
.mce-content-body li aside {
  margin-right: -80%;
}
main .admonition-title,
.mce-content-body .admonition-title {
  color: #1683b1;
}
main .toctree-wrapper,
.mce-content-body .toctree-wrapper {
  display: none;
}
main .page-developerguide .toctree-wrapper,
.mce-content-body .page-developerguide .toctree-wrapper {
  display: block;
}
main .literal-block-wrapper,
.mce-content-body .literal-block-wrapper {
  margin-top: 1.4rem;
}
main table,
.mce-content-body table {
  margin-top: 1.4rem;
}
main dt,
main dd,
.mce-content-body dt,
.mce-content-body dd {
  font-size: 1.3rem;
}
main dt,
.mce-content-body dt {
  color: #1683b1;
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
main dd,
.mce-content-body dd {
  margin-bottom: 1rem;
  max-width: 55%;
  line-height: 2rem;
  padding-left: 2rem;
}
@media screen and (max-width: 760px) {
  main dd,
  .mce-content-body dd {
    max-width: 90%;
  }
}
main dd p,
.mce-content-body dd p {
  margin: 0;
  width: 100%;
}
main dd a,
.mce-content-body dd a {
  color: #111;
  text-decoration: none;
  background: -webkit-linear-gradient(#fffffc, #fffffc), -webkit-linear-gradient(#fffffc, #fffffc), -webkit-linear-gradient(currentColor, currentColor);
  background: linear-gradient(#fffffc, #fffffc), linear-gradient(#fffffc, #fffffc), linear-gradient(currentColor, currentColor);
  -webkit-background-size: 0.05em 1px, 0.05em 1px, 1px 1px;
  -moz-background-size: 0.05em 1px, 0.05em 1px, 1px 1px;
  background-size: 0.05em 1px, 0.05em 1px, 1px 1px;
  background-repeat: no-repeat, no-repeat, repeat-x;
  text-shadow: 0.03em 0 #fffffc, -0.03em 0 #fffffc, 0 0.03em #fffffc, 0 -0.03em #fffffc, 0.06em 0 #fffffc, -0.06em 0 #fffffc, 0.09em 0 #fffffc, -0.09em 0 #fffffc, 0.12em 0 #fffffc, -0.12em 0 #fffffc, 0.15em 0 #fffffc, -0.15em 0 #fffffc;
  background-position: 0% 93%, 100% 93%, 0% 93%;
}
main td p, main td pre,
main th p,
main th pre,
.mce-content-body td p,
.mce-content-body td pre,
.mce-content-body th p,
.mce-content-body th pre {
  width: 100%;
}
main dd dd, main dd ol, main dd ul, main ol dd, main ol ol, main ol ul, main ul dd, main ul ol, main ul ul,
.mce-content-body dd dd,
.mce-content-body dd ol,
.mce-content-body dd ul,
.mce-content-body ol dd,
.mce-content-body ol ol,
.mce-content-body ol ul,
.mce-content-body ul dd,
.mce-content-body ul ol,
.mce-content-body ul ul {
  width: 100%;
  max-width: 100%;
}

.list-item {
  margin-top: 1.4rem;
}
.list-item p {
  max-width: 55%;
  margin-inline-start: 5%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0;
}
@media screen and (max-width: 760px) {
  .list-item p {
    max-width: 90%;
  }
}
.list-item p.title {
  margin-inline-start: 0;
  font-size: 1.5rem;
}
.list-item figure {
  padding-left: 5%;
}

.connections dt {
  font-size: 1.8rem;
}

.clickable:hover p.title a {
  color: rgb(28, 165, 222);
}

input.form-control {
  font-size: 1.5rem;
  line-height: 1.5;
  height: auto;
  border: none;
  border-bottom: 1px solid #333333;
  box-shadow: none;
  color: #111;
}
input.form-control:focus {
  border-bottom: 1px solid #1683b1;
  box-shadow: none;
}

.search main h2 {
  margin-top: 2.8rem;
}

.label-floating {
  position: relative;
  padding-top: 22px;
}
.label-floating label,
.label-floating label.control-label {
  position: absolute;
  top: 0;
  display: none;
  padding: 0;
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
  color: #777777;
}
.label-floating input:not(:placeholder-shown) + label,
.label-floating textarea:not(:placeholder-shown) + label {
  display: block;
}
.label-floating select + label.control-label {
  display: block;
}
.label-floating input:focus + label,
.label-floating textarea:focus + label,
.label-floating select:focus + label {
  color: #1683b1;
}
.label-floating input.field-title {
  font-size: 34px;
  height: 46px;
}
.label-floating textarea.field-summary {
  font-size: 20px;
}
.label-floating textarea.field-collapse:placeholder-shown,
.label-floating textarea.field-summary:placeholder-shown {
  height: 37px;
}
.label-floating.has-error input,
.label-floating.has-error select,
.label-floating.has-error textarea, .label-floating.invalid input,
.label-floating.invalid select,
.label-floating.invalid textarea {
  padding: 0 2px;
  border-bottom: 2px solid #d9534f;
}
.label-floating.has-error label,
.label-floating.has-error input::placeholder,
.label-floating.has-error textarea::placeholder, .label-floating.invalid label,
.label-floating.invalid input::placeholder,
.label-floating.invalid textarea::placeholder {
  color: #d9534f;
}
.label-floating input:not(:placeholder-shown):invalid + label,
.label-floating textarea:not(:placeholder-shown):invalid + label,
.label-floating .did-submit :invalid + label {
  color: rgb(28, 165, 222);
}
.label-floating input:not(:placeholder-shown):invalid,
.label-floating textarea:not(:placeholder-shown):invalid,
.label-floating .did-submit :invalid {
  padding: 0 2px;
  border-bottom: 2px solid #d9534f;
}

.page-page_home .home__list__item {
  clear: right;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.page-page_home .home__list__item figure {
  margin-bottom: 0;
}
.page-page_home .home__summary {
  margin-top: 2.1777777778rem;
  margin-bottom: 2.1777777778rem;
  font-size: 1.8rem;
  display: block;
  line-height: 1.0888888889;
}
.page-page_home .home__featured {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 90%;
  font-size: 1.4rem;
  margin: 3rem 0;
}
@media screen and (max-width: 760px) {
  .page-page_home .home__featured {
    max-width: 100%;
  }
}
.page-page_home .home__featured > * {
  width: 40%;
  flex-grow: 1;
}
@media screen and (max-width: 760px) {
  .page-page_home .home__featured > * {
    width: 100%;
  }
}
.page-page_home .home__featured .home__featured__item {
  background-color: rgb(28, 165, 222);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.page-page_home .home__featured .home__featured__item img {
  opacity: 0.9;
}
.page-page_home .home__featured .home__featured__item h2 {
  color: white;
  margin: 0;
  padding: 1rem 1rem 0 1rem;
}
.page-page_home .home__featured .home__featured__item h2 a {
  color: inherit;
}
.page-page_home .home__featured .home__featured__item p {
  color: white;
  margin: 0;
  padding: 1rem;
  width: 100%;
}
.page-page_home .home__featured .home__featured__item:hover {
  background-color: #2fafe5;
}
.page-page_home .home__featured .home__featured__item:hover img {
  opacity: 1;
}

form.form-survey {
  font-size: 1.4rem;
}
form.form-survey .radio input[type=radio],
form.form-survey .radio-inline input[type=radio],
form.form-survey .checkbox input[type=checkbox],
form.form-survey .checkbox-inline input[type=checkbox] {
  position: relative;
  margin-left: 0;
  transform: scale(2);
  margin-right: 0.7rem;
  margin-top: 1.4rem;
}
form.form-survey .form-group {
  margin-bottom: 2rem;
}

.clickable {
  cursor: pointer;
}

.docutils.literal {
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  padding: 2px 4px;
  background: #fbfbf6;
}

.docutils.container {
  padding-left: 0;
  padding-right: 0;
}

.header-message {
  padding: 10px;
  background-color: #f0ad4e;
  color: white;
}

header:has(.header-message) .home-link {
  padding-top: 10px;
}
header:has(.header-message) .navbar.navbar-grid .nav-wrapper .nav-wrapper2 {
  padding-bottom: 0 !important;
}

/*****************************************************************************/
/*
/* Tufte Jekyll blog theme
/* Based on Tufte CSS by Dave Liepmann ( https://github.com/edwardtufte/tufte-css )
/*
/* The README.md will show you how to set up your site along with other goodies
/*****************************************************************************/
/**
 * Syntax highlighting styles
 */
.highlight {
  margin-bottom: 15px;
}

.highlight {
  clear: right;
  overflow: hidden;
}
.highlight .c {
  color: #998;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  font-weight: bold;
}
.highlight .o {
  font-weight: bold;
}
.highlight .cm {
  color: #998;
  font-style: italic;
}
.highlight .cp {
  color: #999;
  font-weight: bold;
}
.highlight .c1 {
  color: #998;
  font-style: italic;
}
.highlight .cs {
  color: #999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000;
  background-color: #fdd;
}
.highlight .gd .x {
  color: #000;
  background-color: #faa;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gr {
  color: #a00;
}
.highlight .gh {
  color: #999;
}
.highlight .gi {
  color: #000;
  background-color: #dfd;
}
.highlight .gi .x {
  color: #000;
  background-color: #afa;
}
.highlight .go {
  color: #888;
}
.highlight .gp {
  color: #555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaa;
}
.highlight .gt {
  color: #a00;
}
.highlight .kc {
  font-weight: bold;
}
.highlight .kd {
  font-weight: bold;
}
.highlight .kp {
  font-weight: bold;
}
.highlight .kr {
  font-weight: bold;
}
.highlight .kt {
  color: #458;
  font-weight: bold;
}
.highlight .m {
  color: #099;
}
.highlight .s {
  color: #d14;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #458;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #900;
  font-weight: bold;
}
.highlight .nf {
  color: #900;
  font-weight: bold;
}
.highlight .nn {
  color: #555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  font-weight: bold;
}
.highlight .w {
  color: #bbb;
}
.highlight .mf {
  color: #099;
}
.highlight .mh {
  color: #099;
}
.highlight .mi {
  color: #099;
}
.highlight .mo {
  color: #099;
}
.highlight .sb {
  color: #d14;
}
.highlight .sc {
  color: #d14;
}
.highlight .sd {
  color: #d14;
}
.highlight .s2 {
  color: #d14;
}
.highlight .se {
  color: #d14;
}
.highlight .sh {
  color: #d14;
}
.highlight .si {
  color: #d14;
}
.highlight .sx {
  color: #d14;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d14;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #099;
}

* {
  margin: 0;
  padding: 0;
}

/* clearfix hack after Cederholm (group class name) */
.group:after {
  content: "";
  display: table;
  clear: both;
}

html, body {
  height: 100%;
}

html {
  text-align: baseline;
  font-size: 16px;
}

a {
  color: #1683b1;
  text-decoration: none;
}

article p > a:not(.btn),
article cite > a:not(.btn),
article span > a:not(.btn) {
  color: #111;
  text-decoration: none;
  background: linear-gradient(#fffffc, #fffffc), linear-gradient(#fffffc, #fffffc), linear-gradient(currentColor, currentColor);
  background-size: 0.05em 1px, 0.05em 1px, 1px 1px;
  background-repeat: no-repeat, no-repeat, repeat-x;
  background-position: 0% 93%, 100% 93%, 0% 93%;
}

body {
  font-family: Athelas, Constantia, Georgia, serif;
  background-color: #fffffc;
  color: #111;
  counter-reset: sidenote-counter;
}

h1 {
  font-weight: 400;
  margin-top: 1.568rem;
  margin-bottom: 1.568rem;
  font-size: 2.5rem;
  line-height: 1.05;
}

h2 {
  font-style: italic;
  font-weight: 400;
  margin-top: 1.8666666667rem;
  margin-bottom: 0;
  font-size: 2.1rem;
  line-height: 0.9333333333;
}

h3 {
  font-style: italic;
  font-weight: 400;
  font-size: 1.8rem;
  margin-top: 2.1777777778rem;
  margin-bottom: 0;
  line-height: 1.0888888889;
}

p.subtitle {
  font-style: italic;
  margin-top: 2.1777777778rem;
  margin-bottom: 2.1777777778rem;
  font-size: 1.8rem;
  display: block;
  line-height: 1.0888888889;
}

p,
ol,
ul {
  font-size: 1.3rem;
}

p,
li {
  line-height: 2rem;
  margin-top: 1.4rem;
  vertical-align: baseline;
}

li p,
li pre,
table p,
table pre {
  width: 100%;
  padding-right: 0;
}

/* Chapter Epigraphs */
div.epigraph {
  margin: 3.5636rem 0;
}
div.epigraph > blockquote {
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-style: italic;
}
div.epigraph > blockquote > p {
  font-style: italic;
}
div.epigraph > blockquote > footer {
  font-style: normal;
  width: 60%;
  padding-left: 2.5%;
  padding-right: 2.5%;
  padding-top: 0;
  margin-top: 0.4455rem;
  margin-bottom: 3.1182rem;
}
div.epigraph > blockquote > footer > cite {
  font-style: italic;
}

/* end chapter epigraphs styles */
blockquote p,
blockquote footer {
  width: 60%;
  padding-left: 2.5%;
  padding-right: 2.5%;
}
blockquote footer {
  font-size: 1.1rem;
  line-height: 1.78181818;
  margin-top: 1.78181818rem;
  margin-bottom: 1.78181818rem;
  text-align: right;
}

/* blockquote footer { width: 45%;
                    text-align: right; }
*/
.sans {
  font-family: "Gill Sans", "Gill Sans MT", "Gotham Narrow", "Lato", Calibri, sans-serif;
  letter-spacing: 0.03em;
}

pre,
pre code,
p code,
p pre code {
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 1rem;
  line-height: 1.71428571;
  margin-top: 1.71428571rem;
}

code,
kbd,
samp {
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 1rem;
  color: #c7254e;
}

.highlight pre {
  font-size: 1rem;
  line-height: 1.5;
}

h1 code,
h2 code,
h3 code {
  font-size: 0.8em;
}

/*-- Table styling section - For Tufte-Jekyll, booktabs style is default for Markdown tables  --*/
table {
  width: auto;
  border-spacing: 0px;
  border-top: 2px solid #333333;
  border-bottom: 2px solid #333333;
}
table th {
  border-bottom: 1px solid #333333;
  padding: 0.65ex 0.5em 0.4ex 0.5em;
  font-weight: normal;
}
table th,
table td {
  font-size: 1.2rem;
  line-height: 1.71428571;
}
table th code,
table td code {
  font-size: 0.9rem;
}
table th {
  border-bottom: 1px solid #737373;
}
table tr:first-child td {
  padding-top: 0.65ex; /* add space between thead row and tbody */
}
table td {
  padding-left: 0.5em;
  padding-right: 0.5em;
  text-align: left;
}
table caption {
  font-size: 90%;
  text-align: left;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1ex;
  caption-side: top;
}

/* -- End of Table Styling section --*/
/* Basic Layout stuff --*/
article {
  position: relative;
  padding: 1rem 0rem 2.5rem 0rem;
}

section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

main ul,
main ol {
  width: 60%;
  padding-inline-start: 5%;
  padding-inline-end: 5%;
  list-style-type: none;
}

figure,
figure img.maincolumn {
  max-width: 70%;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-bottom: 3em;
}

figcaption {
  float: right;
  clear: right;
  margin-right: -41%;
  max-width: 36%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
  vertical-align: baseline;
  position: relative;
  overflow: hidden;
}

figure.fullwidth figcaption {
  float: left;
  margin-right: 0%;
  margin-left: 33%;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

.sidenote,
.marginnote {
  float: right;
  clear: right;
  margin-right: -41%;
  width: 36%;
  margin-top: 0;
  margin-bottom: 1.96rem;
  font-size: 1rem;
  line-height: 1.96;
  vertical-align: baseline;
  position: relative;
  overflow: hidden;
}

div.sidenote,
div.marginnote {
  margin-right: 0;
  width: 25%;
}

li .sidenote,
li .marginnote {
  margin-right: -80%;
}

blockquote .sidenote,
blockquote .marginnote {
  margin-right: -79%;
}

.sidenote-number {
  counter-increment: sidenote-counter;
}

.sidenote-number:after,
.sidenote:before {
  content: counter(sidenote-counter) " ";
  color: #1683b1;
  position: relative;
  vertical-align: baseline;
}

.sidenote-number:after {
  content: counter(sidenote-counter);
  font-size: 1rem;
  top: -0.5rem;
  left: 0.1rem;
}

.sidenote:before {
  content: counter(sidenote-counter) ". ";
  color: #1683b1;
  top: 0rem;
}

h1,
h2 {
  clear: right;
}

p,
footer,
h3,
h4,
h5 {
  width: 70%;
}

div.table-wrapper {
  width: 100%;
}

div.table-wrapper,
table {
  overflow-x: auto;
}

@media screen and (max-width: 760px) {
  main p,
  main footer,
  main h3,
  main h4,
  main h5,
  .mce-content-body p,
  .mce-content-body footer,
  .mce-content-body h3,
  .mce-content-body h4,
  .mce-content-body h5 {
    width: 100%;
  }
  main pre code,
  .mce-content-body pre code {
    width: 100%;
  }
  main ol,
  main ul,
  .mce-content-body ol,
  .mce-content-body ul {
    width: 85%;
  }
  main dl,
  .mce-content-body dl {
    width: 100%;
  }
  main figure,
  .mce-content-body figure {
    max-width: 100%;
  }
  main .fullwidth,
  .mce-content-body .fullwidth {
    max-width: 100%;
  }
  main figcaption,
  main figure.fullwidth figcaption,
  .mce-content-body figcaption,
  .mce-content-body figure.fullwidth figcaption {
    margin-right: 0%;
    max-width: none;
  }
  main blockquote p,
  main blockquote footer,
  main div.epigraph > blockquote > footer,
  .mce-content-body blockquote p,
  .mce-content-body blockquote footer,
  .mce-content-body div.epigraph > blockquote > footer {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
}
.marginnote code, .sidenote code {
  font-size: 1rem;
}

pre,
html pre[class*=language-] {
  clear: right;
  width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  color: #26343d;
  background: #f6fbfb;
  border: 1px solid rgba(28, 165, 222, 0.2);
  border-left: 4px solid rgba(28, 165, 222, 0.8);
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  margin: 15px 0;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
  tab-size: 4;
  -webkit-overflow-scrolling: touch;
}
pre code,
html pre[class*=language-] code {
  display: block;
  margin: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: inherit;
  line-height: inherit;
  white-space: pre;
}

.fullwidth,
li.listing div {
  max-width: 90%;
}

.full-width .sidenote,
.full-width .sidenote-number,
.full-width .marginnote {
  display: none;
}

span.newthought {
  font-variant: small-caps;
  font-size: 1.2em;
  letter-spacing: 0.05rem;
}

input.margin-toggle {
  display: none;
}

label.sidenote-number {
  display: inline;
}

label.margin-toggle:not(.sidenote-number) {
  display: none;
}

@media (max-width: 760px) {
  label.margin-toggle:not(.sidenote-number) {
    display: inline;
    color: #1683b1;
  }
  .sidenote,
  .marginnote {
    display: none;
  }
  .margin-toggle:checked + .sidenote,
  .margin-toggle:checked + .marginnote {
    display: block;
    float: left;
    left: 1rem;
    clear: both;
    width: 95%;
    margin: 1rem 2.5%;
    vertical-align: baseline;
    position: relative;
  }
  label {
    cursor: pointer;
  }
  pre,
  pre code,
  p code,
  p pre code {
    width: 100%;
    padding: 15px 1%;
  }
  .table-caption {
    display: block;
    float: right;
    clear: both;
    width: 98%;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    margin-left: 1%;
    margin-right: 1%;
    vertical-align: baseline;
    position: relative;
  }
  div.table-wrapper,
  table,
  table.booktabs {
    width: 100%;
  }
  div.table-wrapper {
    border-right: 1px solid #efefef;
  }
  img {
    max-width: 100%;
  }
  figcaption.maincolumn-figure,
  figure.fullwidth figcaption {
    float: none;
    text-align: center;
  }
  figure.fullwidth figcaption {
    margin-left: 0;
  }
}
/*--- End of Basic Layout stuff from tufte.css ---*/
/* -- Jekyll specific styling --*/
.contrast {
  color: #1683b1;
}

.smaller {
  font-size: 80%;
}

header > nav.group,
body footer {
  width: 95%;
  padding-top: 2rem;
}

nav.group a.active:before {
  content: "< ";
}

nav.group a.active:after {
  content: " >";
}

header > nav a {
  font-size: 1.2rem;
  font-family: "Gill Sans", "Gill Sans MT", "Gotham Narrow", "Lato", Calibri, sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgb(28, 165, 222);
  padding-top: 1.5rem;
  text-decoration: none;
  display: inline-block;
  float: left;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 2rem;
  vertical-align: baseline;
}
header > nav a:hover {
  color: #1683b1;
}
header > nav a img {
  height: 5rem;
  position: relative;
  max-width: 100%;
  top: -1.5rem;
}

ul.footer-links,
.credits {
  list-style: none;
  text-align: center;
  margin: 0 auto;
}

ul.footer-links li {
  display: inline;
  padding: 0.5rem 0.25rem;
}

.credits {
  padding: 1rem 0rem;
}

.credits {
  font-family: "Gill Sans", "Gill Sans MT", "Gotham Narrow", "Lato", Calibri, sans-serif;
}
.credits a {
  color: #1683b1;
}

body.full-width,
.content-listing,
ul.content-listing li.listing {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 0% 5%;
}

.full-width article p {
  width: 90%;
}

h1.content-listing-header {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 1.8rem;
}

.listing,
.listing h3 {
  display: inline-block;
  margin: 0;
}

li.listing {
  margin: 0;
}
li.listing hr {
  width: 100%;
}
li.listing p {
  width: 100%;
}
li.listing:last-of-type {
  border-bottom: none;
  margin-bottom: 1.4rem;
}
li.listing h3.new {
  text-transform: uppercase;
  font-style: normal;
}

hr.slender {
  border: 0;
  height: 1px;
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
  background-image: linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

@media screen {
  .print-footer {
    display: none;
  }
}
@media print {
  * {
    transition: none !important;
  }
  *,
  *:before,
  *:after {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  @page {
    margin: 0.75in 0.5in 0.75in 0.5in;
    orphans: 4;
    widows: 2;
  }
  body {
    font-size: 12pt;
  }
  html body .print-footer {
    font-family: "Gill Sans", "Gill Sans MT", "Gotham Narrow", "Lato", Calibri, sans-serif;
    font-size: 9pt;
    margin-top: 22.4pt;
    padding-top: 4pt;
    border-top: 1px solid #000;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    break-inside: avoid-page;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 4;
    widows: 4;
  }
  article h2,
  article h3,
  article h4,
  article h5 {
    break-after: avoid-page;
  }
  body header,
  body footer {
    display: none;
  }
}
/* finally, import Bootstrap to set the changes! */
@font-face {
  font-family: "Glyphicons Halflings";
  src: url("/lib/fonts/glyphicons-halflings-regular.eot");
  src: url("/lib/fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("/lib/fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("/lib/fonts/glyphicons-halflings-regular.woff") format("woff"), url("/lib/fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("/lib/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glyphicon-asterisk:before {
  content: "*";
}

.glyphicon-plus:before {
  content: "+";
}

.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "€";
}

.glyphicon-minus:before {
  content: "−";
}

.glyphicon-cloud:before {
  content: "☁";
}

.glyphicon-envelope:before {
  content: "✉";
}

.glyphicon-pencil:before {
  content: "✏";
}

.glyphicon-glass:before {
  content: "\e001";
}

.glyphicon-music:before {
  content: "\e002";
}

.glyphicon-search:before {
  content: "\e003";
}

.glyphicon-heart:before {
  content: "\e005";
}

.glyphicon-star:before {
  content: "\e006";
}

.glyphicon-star-empty:before {
  content: "\e007";
}

.glyphicon-user:before {
  content: "\e008";
}

.glyphicon-film:before {
  content: "\e009";
}

.glyphicon-th-large:before {
  content: "\e010";
}

.glyphicon-th:before {
  content: "\e011";
}

.glyphicon-th-list:before {
  content: "\e012";
}

.glyphicon-ok:before {
  content: "\e013";
}

.glyphicon-remove:before {
  content: "\e014";
}

.glyphicon-zoom-in:before {
  content: "\e015";
}

.glyphicon-zoom-out:before {
  content: "\e016";
}

.glyphicon-off:before {
  content: "\e017";
}

.glyphicon-signal:before {
  content: "\e018";
}

.glyphicon-cog:before {
  content: "\e019";
}

.glyphicon-trash:before {
  content: "\e020";
}

.glyphicon-home:before {
  content: "\e021";
}

.glyphicon-file:before {
  content: "\e022";
}

.glyphicon-time:before {
  content: "\e023";
}

.glyphicon-road:before {
  content: "\e024";
}

.glyphicon-download-alt:before {
  content: "\e025";
}

.glyphicon-download:before {
  content: "\e026";
}

.glyphicon-upload:before {
  content: "\e027";
}

.glyphicon-inbox:before {
  content: "\e028";
}

.glyphicon-play-circle:before {
  content: "\e029";
}

.glyphicon-repeat:before {
  content: "\e030";
}

.glyphicon-refresh:before {
  content: "\e031";
}

.glyphicon-list-alt:before {
  content: "\e032";
}

.glyphicon-lock:before {
  content: "\e033";
}

.glyphicon-flag:before {
  content: "\e034";
}

.glyphicon-headphones:before {
  content: "\e035";
}

.glyphicon-volume-off:before {
  content: "\e036";
}

.glyphicon-volume-down:before {
  content: "\e037";
}

.glyphicon-volume-up:before {
  content: "\e038";
}

.glyphicon-qrcode:before {
  content: "\e039";
}

.glyphicon-barcode:before {
  content: "\e040";
}

.glyphicon-tag:before {
  content: "\e041";
}

.glyphicon-tags:before {
  content: "\e042";
}

.glyphicon-book:before {
  content: "\e043";
}

.glyphicon-bookmark:before {
  content: "\e044";
}

.glyphicon-print:before {
  content: "\e045";
}

.glyphicon-camera:before {
  content: "\e046";
}

.glyphicon-font:before {
  content: "\e047";
}

.glyphicon-bold:before {
  content: "\e048";
}

.glyphicon-italic:before {
  content: "\e049";
}

.glyphicon-text-height:before {
  content: "\e050";
}

.glyphicon-text-width:before {
  content: "\e051";
}

.glyphicon-align-left:before {
  content: "\e052";
}

.glyphicon-align-center:before {
  content: "\e053";
}

.glyphicon-align-right:before {
  content: "\e054";
}

.glyphicon-align-justify:before {
  content: "\e055";
}

.glyphicon-list:before {
  content: "\e056";
}

.glyphicon-indent-left:before {
  content: "\e057";
}

.glyphicon-indent-right:before {
  content: "\e058";
}

.glyphicon-facetime-video:before {
  content: "\e059";
}

.glyphicon-picture:before {
  content: "\e060";
}

.glyphicon-map-marker:before {
  content: "\e062";
}

.glyphicon-adjust:before {
  content: "\e063";
}

.glyphicon-tint:before {
  content: "\e064";
}

.glyphicon-edit:before {
  content: "\e065";
}

.glyphicon-share:before {
  content: "\e066";
}

.glyphicon-check:before {
  content: "\e067";
}

.glyphicon-move:before {
  content: "\e068";
}

.glyphicon-step-backward:before {
  content: "\e069";
}

.glyphicon-fast-backward:before {
  content: "\e070";
}

.glyphicon-backward:before {
  content: "\e071";
}

.glyphicon-play:before {
  content: "\e072";
}

.glyphicon-pause:before {
  content: "\e073";
}

.glyphicon-stop:before {
  content: "\e074";
}

.glyphicon-forward:before {
  content: "\e075";
}

.glyphicon-fast-forward:before {
  content: "\e076";
}

.glyphicon-step-forward:before {
  content: "\e077";
}

.glyphicon-eject:before {
  content: "\e078";
}

.glyphicon-chevron-left:before {
  content: "\e079";
}

.glyphicon-chevron-right:before {
  content: "\e080";
}

.glyphicon-plus-sign:before {
  content: "\e081";
}

.glyphicon-minus-sign:before {
  content: "\e082";
}

.glyphicon-remove-sign:before {
  content: "\e083";
}

.glyphicon-ok-sign:before {
  content: "\e084";
}

.glyphicon-question-sign:before {
  content: "\e085";
}

.glyphicon-info-sign:before {
  content: "\e086";
}

.glyphicon-screenshot:before {
  content: "\e087";
}

.glyphicon-remove-circle:before {
  content: "\e088";
}

.glyphicon-ok-circle:before {
  content: "\e089";
}

.glyphicon-ban-circle:before {
  content: "\e090";
}

.glyphicon-arrow-left:before {
  content: "\e091";
}

.glyphicon-arrow-right:before {
  content: "\e092";
}

.glyphicon-arrow-up:before {
  content: "\e093";
}

.glyphicon-arrow-down:before {
  content: "\e094";
}

.glyphicon-share-alt:before {
  content: "\e095";
}

.glyphicon-resize-full:before {
  content: "\e096";
}

.glyphicon-resize-small:before {
  content: "\e097";
}

.glyphicon-exclamation-sign:before {
  content: "\e101";
}

.glyphicon-gift:before {
  content: "\e102";
}

.glyphicon-leaf:before {
  content: "\e103";
}

.glyphicon-fire:before {
  content: "\e104";
}

.glyphicon-eye-open:before {
  content: "\e105";
}

.glyphicon-eye-close:before {
  content: "\e106";
}

.glyphicon-warning-sign:before {
  content: "\e107";
}

.glyphicon-plane:before {
  content: "\e108";
}

.glyphicon-calendar:before {
  content: "\e109";
}

.glyphicon-random:before {
  content: "\e110";
}

.glyphicon-comment:before {
  content: "\e111";
}

.glyphicon-magnet:before {
  content: "\e112";
}

.glyphicon-chevron-up:before {
  content: "\e113";
}

.glyphicon-chevron-down:before {
  content: "\e114";
}

.glyphicon-retweet:before {
  content: "\e115";
}

.glyphicon-shopping-cart:before {
  content: "\e116";
}

.glyphicon-folder-close:before {
  content: "\e117";
}

.glyphicon-folder-open:before {
  content: "\e118";
}

.glyphicon-resize-vertical:before {
  content: "\e119";
}

.glyphicon-resize-horizontal:before {
  content: "\e120";
}

.glyphicon-hdd:before {
  content: "\e121";
}

.glyphicon-bullhorn:before {
  content: "\e122";
}

.glyphicon-bell:before {
  content: "\e123";
}

.glyphicon-certificate:before {
  content: "\e124";
}

.glyphicon-thumbs-up:before {
  content: "\e125";
}

.glyphicon-thumbs-down:before {
  content: "\e126";
}

.glyphicon-hand-right:before {
  content: "\e127";
}

.glyphicon-hand-left:before {
  content: "\e128";
}

.glyphicon-hand-up:before {
  content: "\e129";
}

.glyphicon-hand-down:before {
  content: "\e130";
}

.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

.glyphicon-globe:before {
  content: "\e135";
}

.glyphicon-wrench:before {
  content: "\e136";
}

.glyphicon-tasks:before {
  content: "\e137";
}

.glyphicon-filter:before {
  content: "\e138";
}

.glyphicon-briefcase:before {
  content: "\e139";
}

.glyphicon-fullscreen:before {
  content: "\e140";
}

.glyphicon-dashboard:before {
  content: "\e141";
}

.glyphicon-paperclip:before {
  content: "\e142";
}

.glyphicon-heart-empty:before {
  content: "\e143";
}

.glyphicon-link:before {
  content: "\e144";
}

.glyphicon-phone:before {
  content: "\e145";
}

.glyphicon-pushpin:before {
  content: "\e146";
}

.glyphicon-usd:before {
  content: "\e148";
}

.glyphicon-gbp:before {
  content: "\e149";
}

.glyphicon-sort:before {
  content: "\e150";
}

.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

.glyphicon-sort-by-order:before {
  content: "\e153";
}

.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

.glyphicon-unchecked:before {
  content: "\e157";
}

.glyphicon-expand:before {
  content: "\e158";
}

.glyphicon-collapse-down:before {
  content: "\e159";
}

.glyphicon-collapse-up:before {
  content: "\e160";
}

.glyphicon-log-in:before {
  content: "\e161";
}

.glyphicon-flash:before {
  content: "\e162";
}

.glyphicon-log-out:before {
  content: "\e163";
}

.glyphicon-new-window:before {
  content: "\e164";
}

.glyphicon-record:before {
  content: "\e165";
}

.glyphicon-save:before {
  content: "\e166";
}

.glyphicon-open:before {
  content: "\e167";
}

.glyphicon-saved:before {
  content: "\e168";
}

.glyphicon-import:before {
  content: "\e169";
}

.glyphicon-export:before {
  content: "\e170";
}

.glyphicon-send:before {
  content: "\e171";
}

.glyphicon-floppy-disk:before {
  content: "\e172";
}

.glyphicon-floppy-saved:before {
  content: "\e173";
}

.glyphicon-floppy-remove:before {
  content: "\e174";
}

.glyphicon-floppy-save:before {
  content: "\e175";
}

.glyphicon-floppy-open:before {
  content: "\e176";
}

.glyphicon-credit-card:before {
  content: "\e177";
}

.glyphicon-transfer:before {
  content: "\e178";
}

.glyphicon-cutlery:before {
  content: "\e179";
}

.glyphicon-header:before {
  content: "\e180";
}

.glyphicon-compressed:before {
  content: "\e181";
}

.glyphicon-earphone:before {
  content: "\e182";
}

.glyphicon-phone-alt:before {
  content: "\e183";
}

.glyphicon-tower:before {
  content: "\e184";
}

.glyphicon-stats:before {
  content: "\e185";
}

.glyphicon-sd-video:before {
  content: "\e186";
}

.glyphicon-hd-video:before {
  content: "\e187";
}

.glyphicon-subtitles:before {
  content: "\e188";
}

.glyphicon-sound-stereo:before {
  content: "\e189";
}

.glyphicon-sound-dolby:before {
  content: "\e190";
}

.glyphicon-sound-5-1:before {
  content: "\e191";
}

.glyphicon-sound-6-1:before {
  content: "\e192";
}

.glyphicon-sound-7-1:before {
  content: "\e193";
}

.glyphicon-copyright-mark:before {
  content: "\e194";
}

.glyphicon-registration-mark:before {
  content: "\e195";
}

.glyphicon-cloud-download:before {
  content: "\e197";
}

.glyphicon-cloud-upload:before {
  content: "\e198";
}

.glyphicon-tree-conifer:before {
  content: "\e199";
}

.glyphicon-tree-deciduous:before {
  content: "\e200";
}

.glyphicon-cd:before {
  content: "\e201";
}

.glyphicon-save-file:before {
  content: "\e202";
}

.glyphicon-open-file:before {
  content: "\e203";
}

.glyphicon-level-up:before {
  content: "\e204";
}

.glyphicon-copy:before {
  content: "\e205";
}

.glyphicon-paste:before {
  content: "\e206";
}

.glyphicon-alert:before {
  content: "\e209";
}

.glyphicon-equalizer:before {
  content: "\e210";
}

.glyphicon-king:before {
  content: "\e211";
}

.glyphicon-queen:before {
  content: "\e212";
}

.glyphicon-pawn:before {
  content: "\e213";
}

.glyphicon-bishop:before {
  content: "\e214";
}

.glyphicon-knight:before {
  content: "\e215";
}

.glyphicon-baby-formula:before {
  content: "\e216";
}

.glyphicon-tent:before {
  content: "⛺";
}

.glyphicon-blackboard:before {
  content: "\e218";
}

.glyphicon-bed:before {
  content: "\e219";
}

.glyphicon-apple:before {
  content: "\f8ff";
}

.glyphicon-erase:before {
  content: "\e221";
}

.glyphicon-hourglass:before {
  content: "⌛";
}

.glyphicon-lamp:before {
  content: "\e223";
}

.glyphicon-duplicate:before {
  content: "\e224";
}

.glyphicon-piggy-bank:before {
  content: "\e225";
}

.glyphicon-scissors:before {
  content: "\e226";
}

.glyphicon-bitcoin:before {
  content: "\e227";
}

.glyphicon-btc:before {
  content: "\e227";
}

.glyphicon-xbt:before {
  content: "\e227";
}

.glyphicon-yen:before {
  content: "¥";
}

.glyphicon-jpy:before {
  content: "¥";
}

.glyphicon-ruble:before {
  content: "₽";
}

.glyphicon-rub:before {
  content: "₽";
}

.glyphicon-scale:before {
  content: "\e230";
}

.glyphicon-ice-lolly:before {
  content: "\e231";
}

.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}

.glyphicon-education:before {
  content: "\e233";
}

.glyphicon-option-horizontal:before {
  content: "\e234";
}

.glyphicon-option-vertical:before {
  content: "\e235";
}

.glyphicon-menu-hamburger:before {
  content: "\e236";
}

.glyphicon-modal-window:before {
  content: "\e237";
}

.glyphicon-oil:before {
  content: "\e238";
}

.glyphicon-grain:before {
  content: "\e239";
}

.glyphicon-sunglasses:before {
  content: "\e240";
}

.glyphicon-text-size:before {
  content: "\e241";
}

.glyphicon-text-color:before {
  content: "\e242";
}

.glyphicon-text-background:before {
  content: "\e243";
}

.glyphicon-object-align-top:before {
  content: "\e244";
}

.glyphicon-object-align-bottom:before {
  content: "\e245";
}

.glyphicon-object-align-horizontal:before {
  content: "\e246";
}

.glyphicon-object-align-left:before {
  content: "\e247";
}

.glyphicon-object-align-vertical:before {
  content: "\e248";
}

.glyphicon-object-align-right:before {
  content: "\e249";
}

.glyphicon-triangle-right:before {
  content: "\e250";
}

.glyphicon-triangle-left:before {
  content: "\e251";
}

.glyphicon-triangle-bottom:before {
  content: "\e252";
}

.glyphicon-triangle-top:before {
  content: "\e253";
}

.glyphicon-console:before {
  content: "\e254";
}

.glyphicon-superscript:before {
  content: "\e255";
}

.glyphicon-subscript:before {
  content: "\e256";
}

.glyphicon-menu-left:before {
  content: "\e257";
}

.glyphicon-menu-right:before {
  content: "\e258";
}

.glyphicon-menu-down:before {
  content: "\e259";
}

.glyphicon-menu-up:before {
  content: "\e260";
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container:before, .container:after {
  display: table;
  content: " ";
}
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container-fluid:before, .container-fluid:after {
  display: table;
  content: " ";
}
.container-fluid:after {
  clear: both;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row:before, .row:after {
  display: table;
  content: " ";
}
.row:after {
  clear: both;
}

.row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row-no-gutters [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.3333333333%;
}

.col-xs-2 {
  width: 16.6666666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.3333333333%;
}

.col-xs-5 {
  width: 41.6666666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.3333333333%;
}

.col-xs-8 {
  width: 66.6666666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.3333333333%;
}

.col-xs-11 {
  width: 91.6666666667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.3333333333%;
}

.col-xs-pull-2 {
  right: 16.6666666667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.3333333333%;
}

.col-xs-pull-5 {
  right: 41.6666666667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.3333333333%;
}

.col-xs-pull-8 {
  right: 66.6666666667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.3333333333%;
}

.col-xs-pull-11 {
  right: 91.6666666667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.3333333333%;
}

.col-xs-push-2 {
  left: 16.6666666667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.3333333333%;
}

.col-xs-push-5 {
  left: 41.6666666667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.3333333333%;
}

.col-xs-push-8 {
  left: 66.6666666667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.3333333333%;
}

.col-xs-push-11 {
  left: 91.6666666667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.3333333333%;
  }
  .col-sm-push-2 {
    left: 16.6666666667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.3333333333%;
  }
  .col-sm-push-5 {
    left: 41.6666666667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.3333333333%;
  }
  .col-sm-push-8 {
    left: 66.6666666667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.3333333333%;
  }
  .col-sm-push-11 {
    left: 91.6666666667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 22px;
  font-size: 24px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

input[type=radio],
input[type=checkbox] {
  margin: 4px 0 0;
  margin-top: 1px \9 ;
  line-height: normal;
}
input[type=radio][disabled], input[type=radio].disabled, fieldset[disabled] input[type=radio],
input[type=checkbox][disabled],
input[type=checkbox].disabled,
fieldset[disabled] input[type=checkbox] {
  cursor: not-allowed;
}

input[type=file] {
  display: block;
}

input[type=range] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type=file]:focus,
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 16px;
  line-height: 1.428571429;
  color: #555555;
}

.form-control {
  display: block;
  width: 100%;
  height: 36px;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #b0b0b0;
  opacity: 1;
}
.form-control[disabled], fieldset[disabled] .form-control {
  cursor: not-allowed;
}

textarea.form-control {
  height: auto;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=date].form-control,
  input[type=time].form-control,
  input[type=datetime-local].form-control,
  input[type=month].form-control {
    line-height: 36px;
  }
  input[type=date].input-sm,
  .input-group-sm > .input-group-btn > input[type=date].btn, .input-group-sm input[type=date],
  input[type=time].input-sm,
  .input-group-sm > .input-group-btn > input[type=time].btn,
  .input-group-sm input[type=time],
  input[type=datetime-local].input-sm,
  .input-group-sm > .input-group-btn > input[type=datetime-local].btn,
  .input-group-sm input[type=datetime-local],
  input[type=month].input-sm,
  .input-group-sm > .input-group-btn > input[type=month].btn,
  .input-group-sm input[type=month] {
    line-height: 33px;
  }
  input[type=date].input-lg,
  .input-group-lg > .input-group-btn > input[type=date].btn, .input-group-lg input[type=date],
  input[type=time].input-lg,
  .input-group-lg > .input-group-btn > input[type=time].btn,
  .input-group-lg input[type=time],
  input[type=datetime-local].input-lg,
  .input-group-lg > .input-group-btn > input[type=datetime-local].btn,
  .input-group-lg input[type=datetime-local],
  input[type=month].input-lg,
  .input-group-lg > .input-group-btn > input[type=month].btn,
  .input-group-lg input[type=month] {
    line-height: 49px;
  }
}
.form-group {
  margin-bottom: 15px;
}

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio.disabled label, fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.radio label,
.checkbox label {
  min-height: 22px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.radio input[type=radio],
.radio-inline input[type=radio],
.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox] {
  position: absolute;
  margin-top: 4px \9 ;
  margin-left: -20px;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline.disabled, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

.form-control-static {
  min-height: 38px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-right: 0;
  padding-left: 0;
}

.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 33px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0;
}

select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 33px;
  line-height: 33px;
}

textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-sm .form-control {
  height: 33px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0;
}
.form-group-sm select.form-control {
  height: 33px;
  line-height: 33px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 33px;
  min-height: 36px;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 1.5;
}

.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 49px;
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 0;
}

select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 49px;
  line-height: 49px;
}

textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-lg .form-control {
  height: 49px;
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 0;
}
.form-group-lg select.form-control {
  height: 49px;
  line-height: 49px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 49px;
  min-height: 42px;
  padding: 11px 16px;
  font-size: 20px;
  line-height: 1.3333333;
}

.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 45px;
}

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  pointer-events: none;
}

.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 49px;
  height: 49px;
  line-height: 49px;
}

.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 33px;
  height: 33px;
  line-height: 33px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
}
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}
.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
  top: 27px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #515151;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type=radio],
  .form-inline .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 29px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  display: table;
  content: " ";
}
.form-horizontal .form-group:after {
  clear: both;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 14px;
  }
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.428571429;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover, .btn:focus, .btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active, .btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
  -webkit-box-shadow: none;
  box-shadow: none;
}

a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:focus, .btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}

.btn-primary {
  color: #fff;
  background-color: rgb(28, 165, 222);
  border-color: #1994c7;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #1683b1;
  border-color: #0b4056;
}
.btn-primary:hover {
  color: #fff;
  background-color: #1683b1;
  border-color: #126c91;
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #1683b1;
  background-image: none;
  border-color: #126c91;
}
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #126c91;
  border-color: #0b4056;
}
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus {
  background-color: rgb(28, 165, 222);
  border-color: #1994c7;
}
.btn-primary .badge {
  color: rgb(28, 165, 222);
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  background-image: none;
  border-color: #398439;
}
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  background-image: none;
  border-color: #269abc;
}
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  background-image: none;
  border-color: #d58512;
}
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  background-image: none;
  border-color: #ac2925;
}
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.btn-link {
  font-weight: 400;
  color: black;
  border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}
.btn-link:hover, .btn-link:focus {
  color: black;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}
.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9 ;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 16px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 10px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: rgb(28, 165, 222);
  outline: 0;
}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #777777;
  white-space: nowrap;
}

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9 ;
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar:before, .btn-toolbar:after {
  display: table;
  content: " ";
}
.btn-toolbar:after {
  clear: both;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group > .btn-group {
  float: left;
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn .caret {
  margin-left: 0;
}

.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  display: table;
  content: " ";
}
.btn-group-vertical > .btn-group:after {
  clear: both;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

[data-toggle=buttons] > .btn input[type=radio],
[data-toggle=buttons] > .btn input[type=checkbox],
[data-toggle=buttons] > .btn-group > .btn input[type=radio],
[data-toggle=buttons] > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*=col-] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group .form-control:focus {
  z-index: 3;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 6px 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #b0b0b0;
  border: 1px solid #ccc;
  border-radius: 0;
}
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 0;
}
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 10px 16px;
  font-size: 20px;
  border-radius: 0;
}
.input-group-addon input[type=radio],
.input-group-addon input[type=checkbox] {
  margin-top: 0;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-addon:first-child {
  border-right: 0;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-addon:last-child {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav:before, .nav:after {
  display: table;
  content: " ";
}
.nav:after {
  clear: both;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: inherit;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: inherit;
  border-color: black;
}
.nav .nav-divider {
  height: 1px;
  margin: 10px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #b0b0b0 #b0b0b0 #ddd;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #555555;
  cursor: default;
  background-color: #fffffc;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: rgb(28, 165, 222);
}

.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fffffc;
  }
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 22px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.428571429;
  color: black;
  text-decoration: none;
  background-color: #fffffc;
  border: 1px solid #ddd;
}
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: black;
  background-color: #b0b0b0;
  border-color: #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: rgb(28, 165, 222);
  border-color: rgb(28, 165, 222);
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.pager {
  padding-left: 0;
  margin: 22px 0;
  text-align: center;
  list-style: none;
}
.pager:before, .pager:after {
  display: table;
  content: " ";
}
.pager:after {
  clear: both;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fffffc;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #b0b0b0;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  cursor: not-allowed;
  background-color: #fffffc;
}

.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.label-default {
  background-color: #777777;
}
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #5e5e5e;
}

.label-primary {
  background-color: rgb(28, 165, 222);
}
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #1683b1;
}

.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge, .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: black;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 22px;
  line-height: 1.428571429;
  background-color: #fffffc;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
.thumbnail .caption {
  padding: 9px;
  color: #111;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: black;
}

.alert {
  padding: 15px;
  margin-bottom: 22px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}

.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}

.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}

.media-body {
  width: 10000px;
}

.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}

.media-right,
.media > .pull-right {
  padding-left: 10px;
}

.media-left,
.media > .pull-left {
  padding-right: 10px;
}

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

.media-middle {
  vertical-align: middle;
}

.media-bottom {
  vertical-align: bottom;
}

.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.media-list {
  padding-left: 0;
  list-style: none;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
}
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header:before, .modal-header:after {
  display: table;
  content: " ";
}
.modal-header:after {
  clear: both;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before, .modal-footer:after {
  display: table;
  content: " ";
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.clearfix:before, .clearfix:after {
  display: table;
  content: " ";
}
.clearfix:after {
  clear: both;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
.visible-xs {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

.visible-md {
  display: none !important;
}

.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}
/* -------begin customization-------- */
/* create new custom classes from existing classes */
/* -------end customization-------- */
:root {
  --site-accent: rgb(28, 165, 222);
  --site-ink: #171717;
  --site-muted: #626262;
  --site-paper: #fffffc;
  --site-rule: rgba(23, 23, 23, .14);
  --site-ui-font: Gill Sans, Gill Sans MT, Gotham Narrow, Lato, Calibri, sans-serif;
}

html,
body {
  height: auto;
  min-height: 100%;
  max-height: none;
  width: 100%;
  overflow-x: clip;
}

body {
  display: block;
  color: var(--site-ink);
  background: var(--site-paper);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  transform: translateY(-180%);
  background: var(--site-ink);
  color: white;
  font-family: var(--site-ui-font);
}
.skip-link:focus {
  transform: translateY(0);
}

.page-edit-button {
  position: fixed;
  z-index: 125;
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  left: clamp(0.75rem, 2vw, 1.5rem);
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: var(--site-ink);
  box-shadow: 0 5px 18px rgba(23, 23, 23, 0.22);
  color: white;
  font-family: var(--site-ui-font);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.page-edit-button svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.page-edit-button:hover, .page-edit-button:focus {
  transform: translateY(-2px);
  background: var(--site-accent);
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.26);
  color: white;
  text-decoration: none;
}

#header-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  height: auto;
  border-bottom: 1px solid var(--site-rule);
  background: rgba(255, 255, 252, 0.96);
  backdrop-filter: blur(14px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
#header-wrapper header {
  position: static;
  top: auto;
}

body.site-nav-hidden:not(.search-overlay-open) #header-wrapper {
  transform: translateY(calc(-100% - 1px));
}

@media (prefers-reduced-motion: reduce) {
  #header-wrapper {
    transition: none;
  }
}
.site-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  width: min(100% - 2rem, 1280px);
  min-height: 75px;
  margin: 0 auto;
  font-family: var(--site-ui-font);
}

.site-nav__brand {
  display: flex;
  align-self: center;
  align-items: center;
  padding: 0;
  float: none;
  line-height: 0;
}
.site-nav__brand img {
  position: static;
  top: auto;
  display: block;
  width: auto;
  height: auto;
  max-width: 155px;
  max-height: 44px;
}

.site-nav__links {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1.6rem);
  align-items: center;
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav__links li {
  margin: 0;
  line-height: 1;
}
.site-nav__links a {
  display: block;
  padding: 0.75rem 0.25rem;
  color: var(--site-ink);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}
.site-nav__links a:hover, .site-nav__links a:focus {
  color: var(--site-accent);
}

.site-nav__search {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--site-rule);
  border-radius: 999px;
  background: white;
}
.site-nav__search > .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-nav__search:focus-within {
  border-color: var(--site-accent);
  box-shadow: 0 0 0 3px rgba(28, 165, 222, 0.14);
}
.site-nav__search input,
.site-nav__search button {
  border: 0;
  background: transparent;
  font-family: var(--site-ui-font);
}
.site-nav__search input {
  min-width: 0;
  padding: 0.62rem 0.25rem 0.62rem 1rem;
  font-size: 1rem;
  outline: 0;
}
.site-nav__search button {
  padding: 0.55rem 0.9rem;
  color: var(--site-accent);
}

body.search-overlay-open {
  overflow: hidden;
}
body.search-overlay-open #header-wrapper {
  z-index: 175;
  box-shadow: 0 10px 28px rgba(23, 23, 23, 0.12);
}

.site-search-overlay {
  position: fixed;
  z-index: 150;
  top: var(--site-search-top, 75px);
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 1rem 1rem;
  font-family: var(--site-ui-font);
}
.site-search-overlay[hidden] {
  display: none;
}

.site-search-overlay__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(20, 25, 28, 0.58);
  cursor: default;
  backdrop-filter: blur(3px);
}

.site-search-overlay__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 1120px);
  max-height: calc(100% - 1rem);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: var(--site-paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.site-search-overlay__toolbar {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--site-rule);
}
.site-search-overlay__toolbar p {
  width: auto;
  margin: 0;
  color: var(--site-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-search-overlay__close {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: transparent;
  color: var(--site-ink);
  font-size: 1.7rem;
  line-height: 1;
}
.site-search-overlay__close:hover {
  background: rgba(23, 23, 23, 0.07);
}

.search-feedback {
  width: 100%;
  font-family: var(--site-ui-font);
}
.search-feedback.loading {
  opacity: 0.58;
  transition: opacity 0.12s ease;
}

.search-feedback--overlay {
  flex: 1 1 auto;
  padding: clamp(1rem, 3vw, 2rem);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.search-page-intro {
  width: min(100%, 900px) !important;
}
.search-page-intro > p {
  width: min(100%, 700px);
}

.not-found-intro {
  width: min(100%, 900px) !important;
  padding-top: 1.35rem;
  border-top: 4px solid var(--site-accent);
}
.not-found-intro h1 {
  width: min(100%, 780px);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.02;
}
.not-found-intro > p {
  width: min(100%, 700px);
}

.search-page-intro__eyebrow,
.not-found-intro__eyebrow,
.search-summary__label,
.search-empty__label {
  margin-bottom: 0.35rem;
  color: var(--site-accent);
  font-family: var(--site-ui-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.not-found-results {
  width: min(100%, 1100px);
  margin-top: clamp(3rem, 7vw, 5.5rem);
}

.search-page-form {
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(100%, 780px);
  margin: 2rem 0 0;
  border: 1px solid var(--site-ink);
  border-radius: 4px;
  background: white;
  font-family: var(--site-ui-font);
}
.search-page-form:focus-within {
  border-color: var(--site-accent);
  box-shadow: 0 0 0 4px rgba(28, 165, 222, 0.14);
}
.search-page-form > span {
  display: contents;
}
.search-page-form input[type=search] {
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 1.05rem;
}
.search-page-form button {
  padding: 0.75rem 1.25rem;
  border: 0;
  background: var(--site-ink);
  color: white;
  font-weight: 700;
}
.search-page-form button:hover, .search-page-form button:focus {
  background: var(--site-accent);
}

#search-results {
  margin-top: clamp(2rem, 5vw, 4rem);
}

.search-summary {
  display: flex;
  gap: 1rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--site-rule);
}
.search-summary h2,
.search-summary p {
  width: auto;
  margin-top: 0;
}
.search-summary h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: normal;
}

.search-summary__mode {
  max-width: 32rem;
  margin-bottom: 0.25rem;
  color: var(--site-muted);
  font-size: 0.9rem;
  text-align: right;
}

.search-facets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0 1.25rem;
  border-bottom: 1px solid var(--site-rule);
}

.search-facet-group > p {
  width: auto;
  margin: 0 0 0.6rem;
  color: var(--site-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.search-facet-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.search-facet {
  position: relative;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.38rem 0.65rem;
  border: 1px solid var(--site-rule);
  border-radius: 999px;
  color: var(--site-ink);
  font-size: 0.8rem;
  line-height: 1.2;
  text-decoration: none;
}
.search-facet input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.search-facet:has(input) {
  cursor: pointer;
}
.search-facet span {
  color: var(--site-muted);
  font-variant-numeric: tabular-nums;
}
.search-facet:hover, .search-facet:focus, .search-facet.is-active {
  border-color: var(--site-accent);
  color: var(--site-accent);
  text-decoration: none;
}
.search-facet.is-active {
  background: rgba(28, 165, 222, 0.09);
  box-shadow: inset 0 0 0 1px var(--site-accent);
}

.search-facets__clear {
  align-self: end;
  justify-self: start;
  color: var(--site-muted);
  font-size: 0.82rem;
}

.search-result-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.search-result-card {
  margin: 0;
  border: 1px solid var(--site-rule);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.55);
  transition: border-color 0.14s ease, transform 0.14s ease, box-shadow 0.14s ease;
}
.search-result-card:hover {
  border-color: rgba(28, 165, 222, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.08);
}
.search-result-card > a {
  display: block;
  height: 100%;
  padding: 1rem 1.1rem 1.1rem;
  color: var(--site-ink);
  text-decoration: none;
}
.search-result-card h3,
.search-result-card p,
.search-result-card ul {
  width: 100%;
}
.search-result-card h3 {
  margin: 0.3rem 0 0.55rem;
  font-family: var(--site-ui-font);
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
}

.search-result-card__meta {
  margin: 0;
  color: var(--site-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.search-result-card__summary {
  margin: 0;
  color: var(--site-muted);
  font-family: Athelas, Constantia, Georgia, serif;
  font-size: 0.92rem;
  line-height: 1.45;
}

.search-result-card__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}
.search-result-card__topics li {
  margin: 0;
  padding: 0.25rem 0.45rem;
  border-radius: 2px;
  background: rgba(23, 23, 23, 0.055);
  color: var(--site-muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.search-empty {
  padding: clamp(2rem, 6vw, 4.5rem) 1rem;
  text-align: center;
}
.search-empty h2,
.search-empty p {
  width: min(100%, 38rem);
  margin-right: auto;
  margin-left: auto;
}
.search-empty h2 {
  margin-top: 0;
  font-style: normal;
}

.search-empty--prompt {
  padding-top: 2rem;
}

.search-view-all {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 700;
}

#content-wrapper {
  display: grid;
  grid-template-rows: 1fr auto;
  width: min(100% - 2rem, 1280px);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
}

#content {
  width: 100%;
  padding: clamp(2.5rem, 7vw, 6.5rem) 0 4rem;
  outline: 0;
}

#content > article,
#content > .page-relations,
#content > .related-content {
  width: min(100%, 1100px);
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  align-items: center;
  width: 70%;
  margin-bottom: 1.15rem;
  color: var(--site-muted);
  font-family: var(--site-ui-font);
  font-size: 0.9rem;
}
.page-meta a {
  color: var(--site-accent);
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
.page-meta a:hover, .page-meta a:focus {
  color: var(--site-ink);
  text-decoration-thickness: 2px;
}

.page-meta__type {
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.subject-label-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}
.subject-label-list li {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: center;
  margin: 0;
  line-height: 1;
}

h2 + .subject-label-list {
  margin-top: 0.75rem;
}

.subject-label-list--meta {
  width: 70%;
}

.page-subjects {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  width: 70%;
  margin-bottom: 1.75rem;
}

.page-subjects__labels {
  display: contents;
}

.page-subjects .subject-label-list--meta {
  flex: 1 1 auto;
  width: auto;
  margin-bottom: 0;
}

.subject-label-edit {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.4rem;
  align-items: center;
  padding: 0.42rem 0.7rem;
  border: 1px dashed rgba(28, 165, 222, 0.7);
  border-radius: 999px;
  background: transparent;
  color: var(--site-accent);
  font-family: var(--site-ui-font);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.15;
  cursor: pointer;
}
.subject-label-edit svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.subject-label-edit:hover, .subject-label-edit:focus-visible {
  border-style: solid;
  background: rgba(28, 165, 222, 0.08);
  color: var(--site-ink);
}

#dialog-connect-panels {
  font-family: var(--site-ui-font);
}
#dialog-connect-panels > .tab-pane > form:first-child {
  margin-bottom: 1.25rem;
}
#dialog-connect-panels .form-control {
  font-family: var(--site-ui-font);
  font-size: 1rem;
}

#find-connect-objects {
  max-height: min(60vh, 38rem);
  padding-right: 0.25rem;
  overflow-y: auto;
}
#find-connect-objects .checkbox-list-heading {
  margin: 1rem 0 0.45rem;
  padding: 0.45rem 0.6rem;
  border-left: 3px solid rgba(28, 165, 222, 0.6);
  border-radius: 0.3rem;
  background: rgba(23, 23, 23, 0.045);
  font-family: var(--site-ui-font);
}
#find-connect-objects .checkbox-list-heading:first-child {
  margin-top: 0;
}
#find-connect-objects .checkbox-list-heading__title {
  margin: 0;
  color: var(--site-muted);
  font-family: var(--site-ui-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
#find-connect-objects .checkbox-list-heading__summary {
  margin: 0.2rem 0 0;
  color: var(--site-muted);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
}
#find-connect-objects .checkbox-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0.3rem 0.6rem;
  padding: 0.25rem 0 0.85rem;
}
#find-connect-objects .checkbox-list--separated {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--site-rule);
}
#find-connect-objects .connection-checkbox {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0.5rem 0.6rem;
  border-radius: 0.4rem;
  font-family: var(--site-ui-font);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
}
#find-connect-objects .connection-checkbox:hover, #find-connect-objects .connection-checkbox:focus-within {
  background: rgba(23, 23, 23, 0.03);
  box-shadow: inset 0 0 0 1px rgba(23, 23, 23, 0.07);
}
#find-connect-objects .connection-checkbox input[type=checkbox] {
  position: static;
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin: 0.1rem 0 0;
  accent-color: var(--site-accent);
}
#find-connect-objects .connection-checkbox__label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 0.6rem;
  align-items: flex-start;
  min-height: 1rem;
  padding: 0;
  margin: 0;
  font-weight: inherit;
  cursor: pointer;
}
#find-connect-objects .connection-checkbox--described .connection-checkbox__label {
  padding-right: 1.5rem;
}
#find-connect-objects .connection-checkbox__title {
  min-width: 0;
}
#find-connect-objects .connection-checkbox__help {
  position: absolute;
  z-index: 2;
  top: 0.5rem;
  right: 0.6rem;
  margin: 0;
}
#find-connect-objects .connection-checkbox__help-toggle {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  list-style: none;
  font-size: 0;
  line-height: 0;
  cursor: help;
}
#find-connect-objects .connection-checkbox__help-toggle::marker {
  display: none;
  content: none;
}
#find-connect-objects .connection-checkbox__help-toggle::-webkit-details-marker {
  display: none !important;
}
#find-connect-objects .connection-checkbox__info {
  display: inline-grid;
  place-items: center;
  width: 1.05rem;
  height: 1.05rem;
  border: 1px solid rgba(28, 165, 222, 0.65);
  border-radius: 50%;
  color: var(--site-accent);
  font-size: 0.66rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  cursor: help;
}
#find-connect-objects .connection-checkbox__description {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#find-connect-objects .connection-checkbox__help:hover + .connection-checkbox__description,
#find-connect-objects .connection-checkbox__help:focus-within + .connection-checkbox__description,
#find-connect-objects .connection-checkbox__help[open] + .connection-checkbox__description {
  position: absolute;
  z-index: 12;
  top: 2rem;
  right: 0.5rem;
  width: min(18rem, 100% - 1rem);
  height: auto;
  padding: 0.55rem 0.65rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border-radius: 0.35rem;
  background: var(--site-accent);
  box-shadow: 0 5px 14px rgba(23, 23, 23, 0.18);
  color: white;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
  pointer-events: none;
}

.module-components-nav {
  margin: 1.25rem 0 2rem;
  font-family: var(--site-ui-font);
}
.module-components-nav:not(:has(li)) {
  display: none;
}
.module-components-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.module-components-nav li {
  margin: 0;
}

.module-components-nav__link {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.42rem 0.7rem;
  border: 1px solid var(--site-rule);
  border-radius: 999px;
  color: var(--site-ink);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.15;
  text-decoration: none;
}
.module-components-nav__link span {
  color: var(--site-muted);
  font-variant-numeric: tabular-nums;
}
.module-components-nav__link:hover, .module-components-nav__link:focus {
  border-color: var(--site-accent);
  color: var(--site-accent);
  text-decoration: none;
}

.subject-label {
  --subject-label-background: #f0f0ed;
  --subject-label-border: #c9c9c2;
  --subject-label-color: #4f4f4a;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.7rem;
  border: 1px solid var(--subject-label-border);
  border-radius: 999px;
  background: var(--subject-label-background);
  color: var(--subject-label-color);
  font-family: var(--site-ui-font);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.15;
  text-decoration: none;
}
.subject-label:hover, .subject-label:focus {
  border-color: currentColor;
  color: var(--subject-label-color);
  text-decoration: none;
  filter: brightness(0.94);
}

.subject-label--information_type {
  --subject-label-background: #e8eefb;
  --subject-label-border: #a9bce4;
  --subject-label-color: #294d8d;
}

.subject-label--audience {
  --subject-label-background: #e6f3e8;
  --subject-label-border: #a6cbae;
  --subject-label-color: #27623a;
}

.subject-label--domain {
  --subject-label-background: #e3f2f7;
  --subject-label-border: #9bc8d7;
  --subject-label-color: #155a74;
}

.subject-label--architecture {
  --subject-label-background: #f0e9f7;
  --subject-label-border: #c5aedb;
  --subject-label-color: #634282;
}

.subject-label--task {
  --subject-label-background: #fff0dc;
  --subject-label-border: #e8bf89;
  --subject-label-color: #85490e;
}

.subject-label--data_type {
  --subject-label-background: #f5f1dc;
  --subject-label-border: #d8ca88;
  --subject-label-color: #685912;
}

.subject-label--technology {
  --subject-label-background: #e1f3f1;
  --subject-label-border: #99cac5;
  --subject-label-color: #17635d;
}

.subject-label--quality {
  --subject-label-background: #f9e6e6;
  --subject-label-border: #dfaaaa;
  --subject-label-color: #873535;
}

.article-toc {
  width: 70%;
  margin: 2rem 0 2.75rem;
  padding: 1.25rem 1.4rem 1.35rem;
  border-left: 3px solid var(--site-accent);
  background: rgba(28, 165, 222, 0.065);
  font-family: var(--site-ui-font);
}

.article-toc__title {
  width: 100%;
  margin: 0 0 0.75rem;
  color: var(--site-ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.3;
  text-transform: uppercase;
}

.article-toc ol {
  display: grid;
  gap: 0.38rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.article-toc ol ol {
  gap: 0.3rem;
  margin-top: 0.35rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(28, 165, 222, 0.28);
}
.article-toc ol li {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}
.article-toc ol a {
  color: var(--site-ink);
  text-decoration-color: rgba(28, 165, 222, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
.article-toc ol a:hover, .article-toc ol a:focus {
  color: var(--site-accent);
  text-decoration-color: currentColor;
}

.body > div[id^=toc] {
  scroll-margin-top: 6.5rem;
}

.subject-label-relation {
  color: var(--site-muted);
  font-family: var(--site-ui-font);
  font-size: 0.72rem;
  line-height: 1.2;
}

.related-content {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--site-rule);
}
.related-content > h2 {
  width: 100%;
  margin-bottom: 1.5rem;
  font-family: var(--site-ui-font);
  font-size: 1.35rem;
  font-style: normal;
  font-weight: 700;
}

.related-content__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.related-content__grid article {
  position: relative;
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid var(--site-rule);
  border-radius: 4px;
  overflow-wrap: anywhere;
}
.related-content__grid article:hover, .related-content__grid article:focus-within {
  border-color: rgba(28, 165, 222, 0.55);
  background: rgba(28, 165, 222, 0.055);
}
.related-content__grid article:hover .related-content__link,
.related-content__grid article .related-content__link:focus {
  color: var(--site-accent);
}
.related-content__grid article h3,
.related-content__grid article p {
  width: 100%;
  word-break: break-word;
}
.related-content__grid article h3 {
  margin: 0.3rem 0 0.75rem;
  font-family: var(--site-ui-font);
  font-size: 1.15rem;
  font-style: normal;
  line-height: 1.3;
}
.related-content__grid article p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.related-content__link {
  color: var(--site-ink);
  text-decoration: none;
}
.related-content__link::after {
  position: absolute;
  inset: 0;
  content: "";
}
.related-content__link:focus::after {
  outline: 2px solid var(--site-accent);
  outline-offset: -2px;
}

.related-content__type {
  color: var(--site-muted);
  font-family: var(--site-ui-font);
  font-size: 0.75rem !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.related-content__more {
  grid-column: 1/-1;
  justify-self: center;
  margin-top: 0.5rem;
  padding: 0.65rem 1.2rem;
  border: 1px solid var(--site-ink);
  border-radius: 999px;
  background: transparent;
  color: var(--site-ink);
  font-family: var(--site-ui-font);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}
.related-content__more:hover, .related-content__more:focus-visible {
  background: var(--site-ink);
  color: var(--site-paper);
}
.related-content__more.loading {
  opacity: 0.55;
  cursor: wait;
}

.content-list,
.list-items {
  width: 100%;
  max-width: 1100px;
  margin: 2rem 0 0;
  border-top: 2px solid var(--site-ink);
}

.connections > .content-list,
.connections > .list-items {
  margin-top: 1rem;
}

.page-relations .connections > h3,
.page-relations .page-count,
.release-index__label {
  width: 100%;
  margin: 2.5rem 0 0;
  color: var(--site-muted);
  font-family: var(--site-ui-font);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.release-index__label + .content-list {
  margin-top: 0.75rem;
}

.page-relations .connections {
  scroll-margin-top: 6.5rem;
}

.content-list__item {
  display: grid;
  grid-template-columns: 7.25rem minmax(0, 1fr) 5rem;
  grid-template-areas: "meta copy media";
  gap: 1.25rem;
  align-items: center;
  min-height: 5.6rem;
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--site-rule);
  cursor: pointer;
  transition: padding 0.15s ease, background-color 0.15s ease;
}
.content-list__item:hover {
  padding-right: 0.65rem;
  padding-left: 0.65rem;
  background: rgba(28, 165, 222, 0.045);
}
.content-list__item:hover .content-list__title a {
  color: var(--site-accent);
}
.content-list__item:hover .content-list__media img {
  opacity: 1;
  filter: saturate(1) contrast(1);
  transform: scale(1.025);
}

.content-list__item--highlight {
  box-shadow: inset 3px 0 0 var(--site-accent);
}

.content-list__meta {
  grid-area: meta;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
  margin: 0;
  color: var(--site-muted);
  font-family: var(--site-ui-font);
  font-size: 0.72rem;
  line-height: 1.3;
}
.content-list__meta span {
  color: var(--site-accent);
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.content-list__copy {
  grid-area: copy;
  min-width: 0;
}

.content-list__title,
.content-list__summary {
  width: 100%;
  margin: 0;
}

.content-list__title {
  font-family: var(--site-ui-font);
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
}
.content-list__title a {
  color: var(--site-ink);
  text-decoration: none;
}

.content-list__summary {
  margin-top: 0.35rem;
  color: var(--site-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.content-list__media {
  grid-area: media;
  width: 100%;
  max-width: none;
  aspect-ratio: 3/2;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(23, 23, 23, 0.04);
}
.content-list__media img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.86;
  filter: saturate(0.72) contrast(0.97);
  object-fit: cover;
  transition: filter 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.reference-category-page,
.category-index {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.reference-explorer__header {
  display: flex;
  gap: 1.5rem;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--site-ink);
}
.reference-explorer__header h2,
.reference-explorer__header p {
  width: auto;
}
.reference-explorer__header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: normal;
}

.reference-explorer__eyebrow,
.reference-category-overview__eyebrow,
.category-index__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--site-accent);
  font-family: var(--site-ui-font);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference-category-overview {
  margin-bottom: clamp(3.5rem, 8vw, 6rem);
}
.reference-category-overview > header {
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--site-ink);
}
.reference-category-overview > header h2 {
  margin: 0;
  font-style: normal;
}
.reference-category-overview > header > p:last-child {
  width: min(100%, 760px);
  margin: 0.7rem 0 0;
  color: var(--site-muted);
}

.reference-category-overview__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 3rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.reference-category-overview__list li {
  min-width: 0;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--site-rule);
}
.reference-category-overview__list li > a {
  display: block;
  height: 100%;
  padding: 1.15rem 0 1.25rem;
  color: inherit;
  text-decoration: none;
}
.reference-category-overview__list li > a:hover h3, .reference-category-overview__list li > a:focus h3 {
  color: var(--site-accent);
}
.reference-category-overview__list h3,
.reference-category-overview__list p {
  width: 100%;
}
.reference-category-overview__list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-style: normal;
  line-height: 1.3;
}
.reference-category-overview__list p {
  margin: 0;
  color: var(--site-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.reference-explorer__count {
  flex: 0 0 auto;
  margin: 0 0 0.35rem;
  color: var(--site-muted);
  font-family: var(--site-ui-font);
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}

.reference-explorer__form {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--site-rule);
  border-radius: 5px;
  background: rgba(23, 23, 23, 0.025);
  font-family: var(--site-ui-font);
}

.reference-explorer__search {
  width: min(100%, 780px);
}
.reference-explorer__search > label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--site-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.reference-explorer__search > div {
  display: block;
}
.reference-explorer__search input {
  width: 100%;
  min-width: 0;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--site-rule);
  border-radius: 4px;
  background: white;
  font-size: 1rem;
}

.reference-explorer__facets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--site-rule);
}

.reference-facet-reset {
  grid-column: 1/-1;
}

.reference-facet-group {
  min-width: 0;
  border-bottom: 1px solid var(--site-rule);
}
.reference-facet-group summary {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.55rem 0;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}
.reference-facet-group summary span:last-child {
  color: var(--site-muted);
  font-variant-numeric: tabular-nums;
}
.reference-facet-group > p {
  width: 100%;
  margin: 0.2rem 0 0.75rem;
  color: var(--site-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.reference-facet-group--category {
  grid-column: 1/-1;
}

.reference-facet-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.25rem 0 1rem;
}

.reference-facet {
  --subject-label-background: #f0f0ed;
  --subject-label-border: #c9c9c2;
  --subject-label-color: #4f4f4a;
  position: relative;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.38rem 0.62rem;
  border: 1px solid var(--subject-label-border);
  border-radius: 999px;
  background: var(--subject-label-background);
  color: var(--subject-label-color);
  cursor: pointer;
  font-size: 0.78rem;
  line-height: 1.2;
}
.reference-facet input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.reference-facet small {
  color: inherit;
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  opacity: 0.72;
}
.reference-facet:hover, .reference-facet:focus-within, .reference-facet.is-active {
  border-color: currentColor;
}
.reference-facet.is-active {
  box-shadow: inset 0 0 0 1px currentColor;
}

.reference-explorer__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}
.reference-explorer__actions a {
  color: var(--site-muted);
  font-size: 0.84rem;
}

.reference-result-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.5rem;
  margin-top: 2rem;
  border-top: 2px solid var(--site-ink);
}

.search-result-list__loader,
.reference-result-list__loader {
  grid-column: 1/-1;
  padding: 1.5rem 0;
  color: var(--site-muted);
  font-family: var(--site-ui-font);
  font-size: 0.84rem;
  text-align: center;
}

.reference-result {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 1.2rem 0 1.3rem;
  border-bottom: 1px solid var(--site-rule);
}
.reference-result h3,
.reference-result p,
.reference-result ul {
  width: 100%;
}
.reference-result h3 {
  margin: 0.3rem 0 0.5rem;
  font-family: var(--site-ui-font);
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
}
.reference-result h3 .reference-result__link {
  color: var(--site-ink);
  text-decoration: none;
}
.reference-result h3 .reference-result__link::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}
.reference-result h3 .reference-result__link:focus::after {
  outline: 2px solid var(--site-accent);
  outline-offset: -2px;
}
.reference-result:hover .reference-result__link,
.reference-result .reference-result__link:focus {
  color: var(--site-accent);
}

.reference-result__meta {
  margin: 0;
  color: var(--site-accent);
  font-family: var(--site-ui-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.reference-result__meta a {
  position: relative;
  z-index: 2;
  color: inherit;
}

.reference-result__summary {
  margin: 0;
  color: var(--site-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.reference-result__subjects {
  margin-top: 0.8rem;
  margin-bottom: 0;
}
.reference-result__subjects a {
  position: relative;
  z-index: 2;
}

.reference-explorer__empty {
  margin-top: 2rem;
  padding: 2.5rem 1rem;
  border-top: 2px solid var(--site-ink);
  text-align: center;
}
.reference-explorer__empty h3,
.reference-explorer__empty p {
  width: min(100%, 36rem);
  margin-right: auto;
  margin-left: auto;
}
.reference-explorer__empty h3 {
  margin-top: 0;
  font-family: var(--site-ui-font);
  font-style: normal;
}

.category-clusters {
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.cluster-category-heading h1 {
  margin-bottom: 0.7rem;
}

.cluster-category-heading__up,
.category-clusters__topic-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  color: var(--site-accent);
  font-family: var(--site-ui-font);
  font-size: 0.88rem;
  font-weight: 700;
}

.category-clusters__topic-link {
  margin-top: 0.85rem;
}

.cluster-category-heading + .reference-category-page--cluster {
  margin-top: 1.5rem;
}

.category-clusters + .reference-explorer {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.category-clusters__header {
  display: flex;
  gap: 1.5rem;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--site-ink);
}
.category-clusters__header h2,
.category-clusters__header p {
  width: auto;
}
.category-clusters__header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: normal;
}
.category-clusters__header > div > p:last-child {
  width: min(100%, 720px);
  margin: 0.7rem 0 0;
  color: var(--site-muted);
}

.category-clusters__eyebrow {
  margin: 0 0 0.35rem !important;
  color: var(--site-accent) !important;
  font-family: var(--site-ui-font);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-clusters__count {
  flex: 0 0 auto;
  margin: 0 0 0.35rem;
  color: var(--site-muted);
  font-family: var(--site-ui-font);
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}

.category-clusters__split > p {
  width: 100%;
  margin: 1.35rem 0 0.75rem;
  color: var(--site-muted);
  font-family: var(--site-ui-font);
  font-size: 0.82rem;
}

.category-cluster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.category-cluster-card {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 1.15rem;
  overflow: hidden;
  border: 1px solid var(--site-rule);
  border-radius: 5px;
  background: rgba(28, 165, 222, 0.025);
}
.category-cluster-card > header {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  justify-content: space-between;
}
.category-cluster-card > header h3 {
  width: auto;
  min-width: 0;
  margin: 0;
  font-family: var(--site-ui-font);
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
}
.category-cluster-card > header > span {
  flex: 0 0 auto;
  color: var(--site-muted);
  font-family: var(--site-ui-font);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
}
.category-cluster-card:hover, .category-cluster-card:focus-within {
  border-color: rgba(28, 165, 222, 0.55);
  background: rgba(28, 165, 222, 0.055);
}
.category-cluster-card:hover .category-cluster-card__link,
.category-cluster-card .category-cluster-card__link:focus {
  color: var(--site-accent);
}

.category-cluster-card__link {
  color: var(--site-ink);
  text-decoration: none;
}
.category-cluster-card__link::after {
  position: absolute;
  inset: 0;
  content: "";
}
.category-cluster-card__link:focus::after {
  outline: 2px solid var(--site-accent);
  outline-offset: -2px;
}

.category-cluster-card__summary {
  width: 100%;
  margin: 0.55rem 0 0;
  color: var(--site-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.category-cluster-card__keywords {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0.8rem 0 0;
}

.category-cluster-card__resources {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0.9rem 0 0;
  padding: 0.8rem 0 0 1.1rem;
  border-top: 1px solid var(--site-rule);
  font-size: 0.86rem;
  line-height: 1.4;
}
.category-cluster-card__resources li {
  margin: 0 0 0.35rem;
}
.category-cluster-card__resources a {
  overflow-wrap: anywhere;
}

.category-cluster-card__more {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--site-accent);
  font-family: var(--site-ui-font);
  font-size: 0.78rem;
  font-weight: 700;
}

.category-clusters__leaf-note {
  width: min(100%, 720px);
  margin: 1.25rem 0 0;
  color: var(--site-muted);
  font-size: 0.9rem;
}

.category-index__section + .category-index__section {
  margin-top: 4rem;
}

.category-index__section > header {
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--site-ink);
}
.category-index__section > header h2 {
  margin: 0;
  font-style: normal;
}
.category-index__section > header > p:last-child {
  width: min(100%, 720px);
  margin: 0.7rem 0 0;
  color: var(--site-muted);
}

.category-index__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.category-index__card {
  display: flex;
  margin: 0;
  border: 1px solid var(--site-rule);
  border-radius: 4px;
  transition: border-color 0.14s ease, background-color 0.14s ease;
}
.category-index__card:hover, .category-index__card:focus-within {
  border-color: var(--site-accent);
  background: rgba(28, 165, 222, 0.045);
}
.category-index__card:hover h3, .category-index__card:focus-within h3 {
  color: var(--site-accent);
}
.category-index__card > a {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 1rem;
  color: var(--site-ink);
  text-decoration: none;
}
.category-index__card > a:focus-visible {
  outline: 2px solid var(--site-accent);
  outline-offset: 2px;
}
.category-index__card h3,
.category-index__card p {
  width: 100%;
}
.category-index__card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--site-ui-font);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 700;
}
.category-index__card p {
  margin: 0 0 0.75rem;
  color: var(--site-muted);
  font-size: 0.86rem;
  line-height: 1.4;
}
.category-index__card span {
  margin-top: auto;
  color: var(--site-muted);
  font-family: var(--site-ui-font);
  font-size: 0.75rem;
}

.category-index__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.category-index__links li {
  margin: 0;
}
.category-index__links a {
  display: inline-flex;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--site-rule);
  border-radius: 999px;
  color: var(--site-ink);
  font-family: var(--site-ui-font);
  font-size: 0.8rem;
  text-decoration: none;
}
.category-index__links a:hover, .category-index__links a:focus {
  border-color: var(--site-accent);
  color: var(--site-accent);
}

.page-page_home #content {
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  width: 100%;
  max-width: 1100px;
  margin: 0 0 clamp(2.25rem, 4vw, 3.25rem);
  padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--site-rule);
}

.page-page_home .home__summary {
  width: 100%;
  margin: 0;
  font-size: clamp(3.4rem, 6.5vw, 5.75rem);
  font-style: normal;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.page-page_home .home__body {
  width: 100%;
  margin: 0 0 0.2rem;
  color: var(--site-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.5;
}
.page-page_home .home__body p {
  width: 100%;
  margin: 0;
}
.page-page_home .home__body p + p {
  margin-top: 0.7rem;
}
.page-page_home .home__body a {
  color: var(--site-ink);
  text-decoration-color: rgba(28, 165, 222, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}
.page-page_home .home__body a:hover, .page-page_home .home__body a:focus {
  color: var(--site-accent);
  text-decoration-color: currentColor;
}

.page-page_home .home__featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 0 clamp(3rem, 5vw, 4rem);
  font-size: 1rem;
}
.page-page_home .home__featured > * {
  width: auto;
}
.page-page_home .home__featured .home__featured__item {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  aspect-ratio: 3/2;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(28, 165, 222, 0.28);
  border-radius: 3px;
  background: var(--site-accent);
  box-shadow: 0 8px 28px rgba(23, 23, 23, 0.08);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.page-page_home .home__featured .home__featured__item:hover {
  transform: translateY(-3px);
  background: var(--site-accent);
  box-shadow: 0 14px 36px rgba(23, 23, 23, 0.14);
}
.page-page_home .home__featured .home__featured__item:hover img {
  opacity: 1;
  transform: scale(1.018);
}
.page-page_home .home__featured .home__featured__item--text {
  grid-template-rows: 1fr;
}
.page-page_home .home__featured .home__featured__item--text .home__featured__body {
  align-self: end;
  padding: clamp(1.5rem, 4vw, 3rem);
}
.page-page_home .home__featured .home__featured__item--text h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.home__featured__media {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.08);
}
.home__featured__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
  transition: opacity 0.18s ease, transform 0.3s ease;
}

.page-page_home .home__featured__body {
  padding: 1.15rem 1.25rem 1.35rem;
  color: white;
}
.page-page_home .home__featured__body h2,
.page-page_home .home__featured__body p {
  width: 100%;
  margin: 0;
  padding: 0;
  color: inherit;
}
.page-page_home .home__featured__body h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.15;
}
.page-page_home .home__featured__body h2 a {
  color: inherit;
  text-decoration-color: transparent;
  text-underline-offset: 0.15em;
}
.page-page_home .home__featured__body p {
  margin-top: 0.65rem;
  font-size: 0.98rem;
  line-height: 1.45;
}

.page-page_home .home__list {
  width: 100%;
  margin-top: clamp(4rem, 8vw, 7rem);
}

.home-feed {
  width: 100%;
}
.home-feed + .home-feed {
  margin-top: clamp(4rem, 7vw, 6rem);
}

.home-feed__header {
  display: flex;
  gap: 2rem;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 1.15rem;
  border-bottom: 2px solid var(--site-ink);
}
.home-feed__header h2,
.home-feed__header p {
  width: 100%;
  margin: 0;
}
.home-feed__header h2 {
  font-family: Athelas, Constantia, Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
}
.home-feed__header p {
  margin-top: 0.55rem;
  color: var(--site-muted);
  font-family: var(--site-ui-font);
  font-size: 0.95rem;
  line-height: 1.45;
}

.home-feed__more {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.45rem;
  align-items: center;
  padding-bottom: 0.2rem;
  color: var(--site-ink);
  font-family: var(--site-ui-font);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.home-feed__more svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 0.15s ease;
}
.home-feed__more:hover, .home-feed__more:focus {
  color: var(--site-accent);
  text-decoration: none;
}
.home-feed__more:hover svg, .home-feed__more:focus svg {
  transform: translateX(0.2rem);
}

.home-release-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2.5rem;
}

.home-release-list__item {
  margin: 0;
  padding: 1.5rem 0 1.75rem;
  border-bottom: 1px solid var(--site-rule);
  cursor: pointer;
}
.home-release-list__item h3,
.home-release-list__item p {
  width: 100%;
}
.home-release-list__item h3 {
  margin: 0.35rem 0 0.65rem;
  font-family: var(--site-ui-font);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
.home-release-list__item h3 a {
  color: var(--site-ink);
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
.home-release-list__item:hover h3 a {
  color: var(--site-accent);
  text-decoration-color: currentColor;
}

.home-entry__type {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  justify-content: space-between;
  align-items: baseline;
  margin: 0;
  font-family: var(--site-ui-font);
  font-size: 0.75rem;
}
.home-entry__type span {
  color: var(--site-accent);
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.home-entry__type time {
  color: var(--site-muted);
  font-weight: 600;
  letter-spacing: 0.025em;
}

.home-entry__summary {
  margin: 0;
  color: var(--site-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.home-reading-list__item {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr) 6rem;
  grid-template-areas: "meta copy media";
  gap: 1.5rem;
  align-items: center;
  min-height: 6.85rem;
  margin: 0;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--site-rule);
  cursor: pointer;
  transition: padding 0.15s ease, background-color 0.15s ease;
}
.home-reading-list__item:hover {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  background: rgba(28, 165, 222, 0.045);
}
.home-reading-list__item:hover h3 a {
  color: var(--site-accent);
}

.home-reading-list__item--media:hover .home-reading-list__media img {
  opacity: 1;
  filter: saturate(1) contrast(1);
  transform: scale(1.025);
}

.home-reading-list__meta {
  grid-area: meta;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
  margin: 0.15rem 0 0;
  color: var(--site-muted);
  font-family: var(--site-ui-font);
  font-size: 0.75rem;
  line-height: 1.3;
}
.home-reading-list__meta span {
  color: var(--site-accent);
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.home-reading-list__copy {
  grid-area: copy;
}
.home-reading-list__copy h3,
.home-reading-list__copy p {
  width: 100%;
}
.home-reading-list__copy h3 {
  margin: 0 0 0.5rem;
  font-family: var(--site-ui-font);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
}
.home-reading-list__copy h3 a {
  color: var(--site-ink);
  text-decoration: none;
}
.home-reading-list__copy p {
  margin: 0;
  color: var(--site-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.home-reading-list__media {
  grid-area: media;
  width: 100%;
  max-width: none;
  aspect-ratio: 3/2;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(23, 23, 23, 0.04);
}
.home-reading-list__media img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.86;
  filter: saturate(0.72) contrast(0.97);
  object-fit: cover;
  transition: filter 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

pre {
  max-width: 100%;
  overflow-x: auto;
  border-radius: 3px;
}

.dispatch-controller-link {
  display: inline-flex;
  gap: 0.35em;
  align-items: baseline;
  color: var(--site-accent);
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
.dispatch-controller-link code {
  color: inherit;
}
.dispatch-controller-link::after {
  color: currentColor;
  font-family: var(--site-ui-font);
  font-size: 0.8em;
  line-height: 1;
  text-decoration: none;
  content: "→";
}
.dispatch-controller-link:hover, .dispatch-controller-link:focus {
  color: var(--site-ink);
  text-decoration-thickness: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(28, 165, 222, 0.38);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .site-nav {
    grid-template-columns: auto 1fr;
    gap: 0.25rem 1rem;
    padding: 0.6rem 0;
  }
  .site-nav__links {
    justify-content: flex-end;
  }
  .site-nav__search {
    grid-column: 1/-1;
    margin-bottom: 0.35rem;
  }
  .related-content__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .search-facets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-index__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .content-list__item {
    grid-template-columns: 6rem minmax(0, 1fr) 4.5rem;
    gap: 1rem;
  }
  .home-reading-list__item {
    grid-template-columns: 7rem minmax(0, 1fr) 5.5rem;
    gap: 1rem;
  }
}
@media (max-width: 760px) {
  .site-nav {
    display: flex;
    flex-wrap: wrap;
  }
  .site-nav__brand {
    flex: 1 0 auto;
  }
  .site-nav__links {
    order: 3;
    flex: 1 0 100%;
    justify-content: space-between;
    overflow-x: auto;
  }
  .site-nav__links a {
    font-size: 0.875rem;
  }
  .site-nav__search {
    flex: 1 1 220px;
  }
  #content {
    padding-top: 2.5rem;
  }
  .page-page_home #content {
    padding-top: 2.75rem;
  }
  .home-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.35rem;
    margin-bottom: 1.5rem;
    padding-bottom: 2rem;
  }
  .page-page_home .home__summary {
    font-size: clamp(3.25rem, 14vw, 4.5rem);
  }
  .page-meta,
  .subject-label-list--meta,
  .page-subjects,
  .article-toc {
    width: 100%;
  }
  .related-content__grid {
    grid-template-columns: 1fr;
  }
  .site-search-overlay {
    padding: 0 0.5rem 0.5rem;
  }
  .site-search-overlay__panel {
    max-height: calc(100% - 0.5rem);
    border-radius: 0 0 5px 5px;
  }
  .site-search-overlay__toolbar p,
  .search-page-intro__eyebrow,
  .not-found-intro__eyebrow,
  .search-summary__label,
  .search-empty__label,
  .search-facet-group > p,
  .search-facet,
  .search-facets__clear,
  .search-result-card__meta,
  .search-result-card__topics li {
    font-size: 0.875rem;
  }
  .search-feedback--overlay {
    padding: 1rem;
  }
  .search-summary {
    display: block;
  }
  .search-summary__mode {
    margin-top: 0.65rem;
    text-align: left;
  }
  .search-facets,
  .search-result-list,
  .reference-explorer__facets,
  .reference-result-list,
  .reference-category-overview__list,
  .category-cluster-grid,
  .category-index__grid {
    grid-template-columns: 1fr;
  }
  .reference-explorer__header,
  .category-clusters__header {
    display: block;
  }
  .reference-explorer__count,
  .category-clusters__count {
    margin-top: 0.7rem;
  }
  .reference-explorer__form {
    padding: 1rem;
  }
  .reference-explorer__search > div {
    grid-template-columns: 1fr;
  }
  .reference-explorer__search > div input,
  .reference-explorer__search > div button {
    border-radius: 3px;
  }
  .reference-explorer__search > div button {
    margin-top: 0.5rem;
  }
  .search-page-form button {
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }
  .home-feed__header {
    display: block;
  }
  .home-feed__header > div {
    width: 100%;
  }
  .home-feed__more {
    margin-top: 1rem;
  }
  .home-release-list {
    grid-template-columns: 1fr;
  }
  .page-page_home .home__featured {
    grid-template-columns: 1fr;
  }
  .page-page_home .home__featured .home__featured__item {
    aspect-ratio: auto;
    min-height: 0;
  }
  .page-page_home .home__featured .home__featured__item--text {
    min-height: 15rem;
  }
  .home__featured__media {
    aspect-ratio: 2/1;
  }
  .content-list,
  .list-items {
    margin-top: 1.5rem;
  }
  .content-list__item {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "meta" "copy";
    gap: 0.45rem 1rem;
    align-items: start;
    min-height: 0;
    padding-top: 1.15rem;
    padding-bottom: 1.2rem;
  }
  .content-list__item--media {
    grid-template-columns: minmax(0, 1fr) 4.75rem;
    grid-template-areas: "meta media" "copy media";
  }
  .content-list__meta {
    flex-direction: row;
    gap: 0.65rem;
    font-size: 0.875rem;
  }
  .home-reading-list__item {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "meta" "copy";
    gap: 0.65rem 1rem;
    align-items: start;
    align-content: center;
    min-height: 6.875rem;
  }
  .home-reading-list__meta {
    flex-direction: row;
    gap: 0.7rem;
    font-size: 0.875rem;
  }
  .home-entry__type {
    font-size: 0.875rem;
  }
  .home-reading-list__item--media {
    grid-template-columns: minmax(0, 1fr) 5.75rem;
    grid-template-areas: "meta media" "copy media";
    gap: 0.65rem 1rem;
    align-items: start;
    align-content: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 360px) {
  .site-nav__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 0.75rem;
    overflow: visible;
  }
  .site-nav__links a {
    text-align: center;
  }
}
@media print {
  #header-wrapper,
  .related-content,
  .article-toc,
  .edit-github,
  .page-edit-button,
  .site-search-overlay,
  footer {
    display: none !important;
  }
  #content-wrapper,
  #content,
  #content > article {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

/*# sourceMappingURL=bootstrap.css.map */
body.err403 {
  background-color: #e8e8e8;
}
body.err403 .z-logon-box {
  background-color: white;
  padding: 20px 10px;
}

.z-logon-prompt {
  text-align: center;
  max-width: 400px;
  margin: 40px auto;
}

.z-logon-back {
  float: left;
  margin: 40px 20px;
}

.z-logon-box {
  float: none;
  margin: 15px auto;
  width: 400px;
  max-width: 100%;
  /* Extra login options */
  /* Supporting options */
  /* Sign up specific*/
}
.z-logon-box img.loading {
  display: block;
  margin: 0 auto;
  opacity: 0.5;
  height: 16px;
}
.z-logon-box ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.z-logon-box p {
  margin-bottom: 10px;
  width: 100%;
}
.z-logon-box button[type=submit],
.z-logon-box input[type=submit],
.z-logon-box .btn-submit {
  width: 100%;
}
.z-logon-box .z-logon-title:first-of-type,
.z-logon-box h2:first-of-type, .z-logon-box h3:first-of-type, .z-logon-box h4:first-of-type {
  margin-top: 0;
}
.z-logon-box .z-logon-form {
  margin: 15px auto 0 auto;
}
.z-logon-box .z-logon-extra,
.z-logon-box .z-logon-external {
  width: 100%;
}
.z-logon-box .z-logon-extra .z-btn-social,
.z-logon-box .z-logon-external .z-btn-social {
  display: block;
  text-align: center;
  text-decoration: none;
}
.z-logon-box .z-logon-extra > .z-logon-extra-separator:first-child,
.z-logon-box .z-logon-external > .z-logon-extra-separator:first-child {
  display: none;
}
.z-logon-box .z-logon-extra > .z-logon-extra-separator:first-child.-first,
.z-logon-box .z-logon-external > .z-logon-extra-separator:first-child.-first {
  margin-top: 15px;
  display: block;
}
.z-logon-box .z-logon-extra > .z-logon-extra-separator.-first:last-child,
.z-logon-box .z-logon-external > .z-logon-extra-separator.-first:last-child {
  display: none;
}
.z-logon-box .z-logon-extra-separator {
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 16px;
  margin: 15px 0;
}
.z-logon-box .z-logon-extra-separator > span {
  display: inline-block;
  text-align: center;
  width: fit-content;
  padding-left: 2ch;
  padding-right: 2ch;
  background-color: #fff;
}
.z-logon-box .z-logon-extra-separator:after {
  position: absolute;
  left: 0;
  top: 8px;
  content: " ";
  width: 100%;
  border-bottom: 1px solid #ddd;
  z-index: -2;
}
.z-logon-box .z-logon-support {
  margin: 15px 0 0 0;
  padding: 15px 0 0 0;
}
.z-logon-box .z-logon-support:empty {
  display: none;
}
.z-logon-box .alert :first-child {
  margin-top: 0;
}
.z-logon-box .alert :last-child {
  margin-bottom: 0;
}
.z-logon-box.z-logon-box-boxed .z-logon-form {
  margin: 15px 0;
  padding: 15px 20px;
  background-color: #f2f2f2;
}
.z-logon-box.z-logon-box-boxed .z-logon-extra .z-logon-extra-separator,
.z-logon-box.z-logon-box-boxed .z-logon-external .z-logon-extra-separator {
  margin-left: -20px;
  margin-right: -20px;
}
.z-logon-box.z-logon-box-boxed .z-logon-extra .z-logon-extra-separator:before,
.z-logon-box.z-logon-box-boxed .z-logon-external .z-logon-extra-separator:before {
  background-color: #f2f2f2;
}
.z-logon-box.z-logon-box-boxed .z-logon-support {
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-top: 1px solid #ddd;
}
.z-logon-box.z-logon-box-boxed .z-logon-support p:last-child {
  margin-bottom: 0;
}
.z-logon-box .signup-external,
.z-logon-box .z-logon-external,
.z-logon-box .z-logon-extra {
  display: flex;
  flex-flow: column nowrap;
  gap: 1em;
}
.z-logon-box .signup-external .btn,
.z-logon-box .z-logon-external .btn,
.z-logon-box .z-logon-extra .btn {
  width: 100%;
}
.z-logon-box .signup-name {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.z-logon-box .signup-name #signup_name_first {
  flex-grow: 1;
  min-width: 60%;
}
.z-logon-box .signup-name #signup_surname_prefix {
  flex-shrink: 0;
}
.z-logon-box .signup-name #signup_surname_prefix input[name=surprefix] {
  width: 8ch;
}
.z-logon-box .signup-name #signup_name_surname {
  flex-grow: 2;
  min-width: 60%;
}
.z-logon-box.error_custom_1 #signup_error_custom_1, .z-logon-box.error_custom_2 #signup_error_custom_2 {
  display: block;
}
.z-logon-box .z_validation_message {
  display: block;
  margin: 5px 0 0 0;
}
.z-logon-box .z_validation.z_invalid {
  color: #C21C3D;
}
.z-logon-box .form-control-prefilled {
  font-weight: bold;
}
.z-logon-box .form-control-prefilled span {
  font-weight: normal;
}
@charset "UTF-8";
/* CSS for surveys, overrules the bootstrap css */
.survey-status-label {
  display: inline-block;
  min-width: 2em;
  padding: 0.25em 0.5em;
  color: var(--survey-status-text-color, inherit);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em; }
  .survey-status-label-none {
    background-color: #fff;
    border: 1px solid #ccc; }
  .survey-status-label button {
    color: inherit;
    background-color: transparent;
    border: none; }
  .survey-status-label-0 {
    --survey-status-color: #E2E8F0;
    --survey-status-text-color: #000;
    --survey-status-foreground-color: #000;
    background-color: var(--survey-status-color); }
  .survey-status-label-1 {
    --survey-status-color: #B8E9C0;
    --survey-status-text-color: #000;
    --survey-status-foreground-color: #000;
    background-color: var(--survey-status-color); }
  .survey-status-label-2 {
    --survey-status-color: #BBE1FA;
    --survey-status-text-color: #000;
    --survey-status-foreground-color: #000;
    background-color: var(--survey-status-color); }
  .survey-status-label-3 {
    --survey-status-color: #E2C6FF;
    --survey-status-text-color: #000;
    --survey-status-foreground-color: #000;
    background-color: var(--survey-status-color); }
  .survey-status-label-4 {
    --survey-status-color: #FAC112;
    --survey-status-text-color: #000;
    --survey-status-foreground-color: #000;
    background-color: var(--survey-status-color); }
  .survey-status-label-5 {
    --survey-status-color: #F87171;
    --survey-status-text-color: #000;
    --survey-status-foreground-color: #000;
    background-color: var(--survey-status-color); }

.survey-status-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  width: 100%; }
  .survey-status-options .survey-status-option {
    position: relative;
    flex: 1 1 2.75em;
    min-width: 2.75em;
    margin: 0;
    cursor: pointer; }
    .survey-status-options .survey-status-option > input {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none; }
      .survey-status-options .survey-status-option > input:checked + .survey-status-label {
        outline: 3px solid #222;
        outline-offset: 2px; }
      .survey-status-options .survey-status-option > input:focus + .survey-status-label {
        box-shadow: 0 0 0 2px #fff, 0 0 0 4px #337ab7; }
    .survey-status-options .survey-status-option .survey-status-label {
      display: block;
      width: 100%;
      min-height: 2.5em; }

.survey-results .survey-result,
.survey-results .survey_result {
  padding: 1.25rem;
  margin: 1rem 0;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem; }

.survey-result-question {
  margin-top: 0;
  margin-bottom: 0.5rem; }

.survey-result-subquestion {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem; }

.survey-chart {
  margin-top: 0.5rem; }
  .survey-chart + .survey-chart {
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb; }
  .survey-chart .survey-chart__title {
    margin-top: 0;
    margin-bottom: 0.5rem; }
  .survey-chart .survey-chart__body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 2rem; }
  .survey-chart .survey-chart__plot {
    flex: 0 1 25rem;
    width: 100%;
    min-width: 16rem;
    max-width: 25rem; }
    .survey-chart .survey-chart__plot .z-chart {
      margin: 0; }
    .survey-chart .survey-chart__plot .z-chart-svg {
      display: block; }
    .survey-chart .survey-chart__plot .z-chart-legend {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.25rem 1rem;
      padding: 0;
      margin: 0.5rem 0 0;
      list-style: none; }
  .survey-chart .survey-chart__results {
    flex: 1 1 18rem;
    width: auto;
    min-width: 14rem;
    max-width: 42rem;
    padding-left: 0;
    margin: 0; }
    .survey-chart .survey-chart__results tr,
    .survey-chart .survey-chart__results li {
      border-top: 1px solid #d1d5db; }
    .survey-chart .survey-chart__results tr:last-child,
    .survey-chart .survey-chart__results li:last-child {
      border-bottom: 1px solid #d1d5db; }
    .survey-chart .survey-chart__results th,
    .survey-chart .survey-chart__results td,
    .survey-chart .survey-chart__results li {
      padding: 0.65rem 0.75rem; }
    .survey-chart .survey-chart__results th {
      font-weight: normal;
      text-align: left; }
    .survey-chart .survey-chart__results td,
    .survey-chart .survey-chart__results li > span {
      min-width: 3.5rem;
      font-weight: 600;
      text-align: center;
      background-color: #f3f4f6; }
    .survey-chart .survey-chart__results li {
      display: flex;
      align-items: stretch;
      gap: 1rem;
      padding: 0 0 0 0.75rem; }
      .survey-chart .survey-chart__results li > span {
        display: flex;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        padding: 0.65rem 0.75rem;
        margin-left: auto; }

@media (max-width: 640px) {
  .survey-chart .survey-chart__body {
    display: block; }
  .survey-chart .survey-chart__plot,
  .survey-chart .survey-chart__results {
    min-width: 0;
    max-width: none; }
  .survey-chart .survey-chart__results {
    width: 100%;
    margin-top: 1rem; } }

.survey-is-correct:after {
  color: green;
  font-weight: bold;
  content: " √"; }

.survey-is-not-correct:after {
  color: red;
  font-weight: bold;
  content: " X"; }

.survey-thurstone .btn {
  display: block;
  width: auto;
  margin-bottom: 12px; }

.survey-thurstone .btn:before {
  content: "\0025BA"; }

.survey-narrative input,
.survey-narrative select {
  display: inline-block;
  width: auto;
  vertical-align: baseline; }

hr.survey-stop {
  display: none; }

.picture-file {
  display: block; }

.picture-preview {
  width: 128px;
  margin: 4px 0; }

.picture-preview.has-preview {
  width: 256px; }

.alert.z_invalid {
  display: none; }

form.z_form_invalid .alert.z_invalid {
  display: block; }

.form-survey .form-actions {
  margin-top: 12px; }

.survey-q-ok .survey-test-feedback-icon {
  color: green !important; }

.survey-q-not-ok .survey-test-feedback-icon {
  color: red !important; }

.do_survey_test_feedback .survey-test-feedback-answer,
.do_survey_test_feedback .survey-test-feedback-correct,
.do_survey_test_feedback .survey-test-feedback-wrong {
  display: none; }

.do_survey_test_feedback.survey-test-correct .survey-test-feedback-correct {
  display: block; }

.do_survey_test_feedback.survey-test-wrong .survey-test-feedback-wrong {
  display: block; }
