@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600|Arvo:700");
/*
	Strongly Typed by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

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

body {
  -webkit-text-size-adjust: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

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

input, select, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

/* Basic */
html {
  box-sizing: border-box;
}

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

body {
  background: #fff;
}
body.is-preload *, body.is-preload *:before, body.is-preload *:after {
  -moz-animation: none !important;
  -webkit-animation: none !important;
  -ms-animation: none !important;
  animation: none !important;
  -moz-transition: none !important;
  -webkit-transition: none !important;
  -ms-transition: none !important;
  transition: none !important;
}

body, input, textarea, select {
  font-family: "Source Sans Pro";
  font-weight: 300;
  color: #2a2a2a;
  line-height: 1.65em;
  font-size: 18pt;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #888;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  text-decoration: none;
  border: 0;
}

h2 {
  font-size: 1.65em;
  font-weight: 400;
  letter-spacing: 4px;
  margin: 0 0 1.5em 0;
  line-height: 1.75em;
}

h3 {
  font-size: 1em;
  letter-spacing: 2px;
  margin: 0 0 1.25em 0;
}

a {
  -moz-transition: color 0.25s ease-in-out, border-bottom-color 0.25s ease-in-out;
  -webkit-transition: color 0.25s ease-in-out, border-bottom-color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out, border-bottom-color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out, border-bottom-color 0.25s ease-in-out;
  color: #666;
  text-decoration: none;
  border-bottom: solid 1px #ddd;
}
a strong {
  -moz-transition: color 0.25s ease-in-out, border-bottom-color 0.25s ease-in-out;
  -webkit-transition: color 0.25s ease-in-out, border-bottom-color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out, border-bottom-color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out, border-bottom-color 0.25s ease-in-out;
}
a:hover {
  color: #ed786a;
  border-bottom-color: rgba(255, 255, 255, 0);
}
a:hover strong {
  color: #ed786a;
}

strong, b {
  font-weight: 600;
  color: #666;
}

em, i {
  font-style: italic;
}

sub {
  position: relative;
  top: 0.5em;
  font-size: 0.8em;
}

sup {
  position: relative;
  top: -0.5em;
  font-size: 0.8em;
}

hr {
  border: 0;
  border-top: solid 1px #ddd;
}

blockquote {
  border-left: solid 0.5em #ddd;
  padding: 1em 0 1em 2em;
  font-style: italic;
}

p {
  text-align: justify;
  margin-bottom: 2em;
}

ul, ol, dl, table, blockquote {
  margin-bottom: 2em;
}

br.clear {
  clear: both;
}

/* Container */
.container {
  margin: 0 auto;
  max-width: 100%;
  width: 70em;
}
@media screen and (max-width: 1680px) {
  .container {
    width: 68em;
  }
}
@media screen and (max-width: 1280px) {
  .container {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 980px) {
  .container {
    width: calc(100% - 100px);
  }
}
@media screen and (max-width: 736px) {
  .container {
    width: calc(100% - 40px);
  }
}

/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: stretch;
}
.row > * {
  box-sizing: border-box;
}
.row.gtr-uniform > * > :last-child {
  margin-bottom: 0;
}
.row.aln-left {
  justify-content: flex-start;
}
.row.aln-center {
  justify-content: center;
}
.row.aln-right {
  justify-content: flex-end;
}
.row.aln-top {
  align-items: flex-start;
}
.row.aln-middle {
  align-items: center;
}
.row.aln-bottom {
  align-items: flex-end;
}
.row > .imp {
  order: -1;
}
.row > .col-1 {
  width: 8.3333333333%;
}
.row > .off-1 {
  margin-left: 8.3333333333%;
}
.row > .col-2 {
  width: 16.6666666667%;
}
.row > .off-2 {
  margin-left: 16.6666666667%;
}
.row > .col-3 {
  width: 25%;
}
.row > .off-3 {
  margin-left: 25%;
}
.row > .col-4 {
  width: 33.3333333333%;
}
.row > .off-4 {
  margin-left: 33.3333333333%;
}
.row > .col-5 {
  width: 41.6666666667%;
}
.row > .off-5 {
  margin-left: 41.6666666667%;
}
.row > .col-6 {
  width: 50%;
}
.row > .off-6 {
  margin-left: 50%;
}
.row > .col-7 {
  width: 58.3333333333%;
}
.row > .off-7 {
  margin-left: 58.3333333333%;
}
.row > .col-8 {
  width: 66.6666666667%;
}
.row > .off-8 {
  margin-left: 66.6666666667%;
}
.row > .col-9 {
  width: 75%;
}
.row > .off-9 {
  margin-left: 75%;
}
.row > .col-10 {
  width: 83.3333333333%;
}
.row > .off-10 {
  margin-left: 83.3333333333%;
}
.row > .col-11 {
  width: 91.6666666667%;
}
.row > .off-11 {
  margin-left: 91.6666666667%;
}
.row > .col-12 {
  width: 100%;
}
.row > .off-12 {
  margin-left: 100%;
}
.row.gtr-0 {
  margin-top: 0px;
  margin-left: 0px;
}
.row.gtr-0 > * {
  padding: 0px 0 0 0px;
}
.row.gtr-0.gtr-uniform {
  margin-top: 0px;
}
.row.gtr-0.gtr-uniform > * {
  padding-top: 0px;
}
.row.gtr-25 {
  margin-top: -12.5px;
  margin-left: -12.5px;
}
.row.gtr-25 > * {
  padding: 12.5px 0 0 12.5px;
}
.row.gtr-25.gtr-uniform {
  margin-top: -12.5px;
}
.row.gtr-25.gtr-uniform > * {
  padding-top: 12.5px;
}
.row.gtr-50 {
  margin-top: -25px;
  margin-left: -25px;
}
.row.gtr-50 > * {
  padding: 25px 0 0 25px;
}
.row.gtr-50.gtr-uniform {
  margin-top: -25px;
}
.row.gtr-50.gtr-uniform > * {
  padding-top: 25px;
}
.row {
  margin-top: -50px;
  margin-left: -50px;
}
.row > * {
  padding: 50px 0 0 50px;
}
.row.gtr-uniform {
  margin-top: -50px;
}
.row.gtr-uniform > * {
  padding-top: 50px;
}
.row.gtr-150 {
  margin-top: -75px;
  margin-left: -75px;
}
.row.gtr-150 > * {
  padding: 75px 0 0 75px;
}
.row.gtr-150.gtr-uniform {
  margin-top: -75px;
}
.row.gtr-150.gtr-uniform > * {
  padding-top: 75px;
}
.row.gtr-200 {
  margin-top: -100px;
  margin-left: -100px;
}
.row.gtr-200 > * {
  padding: 100px 0 0 100px;
}
.row.gtr-200.gtr-uniform {
  margin-top: -100px;
}
.row.gtr-200.gtr-uniform > * {
  padding-top: 100px;
}
@media screen and (max-width: 1680px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }
  .row > * {
    box-sizing: border-box;
  }
  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }
  .row.aln-left {
    justify-content: flex-start;
  }
  .row.aln-center {
    justify-content: center;
  }
  .row.aln-right {
    justify-content: flex-end;
  }
  .row.aln-top {
    align-items: flex-start;
  }
  .row.aln-middle {
    align-items: center;
  }
  .row.aln-bottom {
    align-items: flex-end;
  }
  .row > .imp-xlarge {
    order: -1;
  }
  .row > .col-1-xlarge {
    width: 8.3333333333%;
  }
  .row > .off-1-xlarge {
    margin-left: 8.3333333333%;
  }
  .row > .col-2-xlarge {
    width: 16.6666666667%;
  }
  .row > .off-2-xlarge {
    margin-left: 16.6666666667%;
  }
  .row > .col-3-xlarge {
    width: 25%;
  }
  .row > .off-3-xlarge {
    margin-left: 25%;
  }
  .row > .col-4-xlarge {
    width: 33.3333333333%;
  }
  .row > .off-4-xlarge {
    margin-left: 33.3333333333%;
  }
  .row > .col-5-xlarge {
    width: 41.6666666667%;
  }
  .row > .off-5-xlarge {
    margin-left: 41.6666666667%;
  }
  .row > .col-6-xlarge {
    width: 50%;
  }
  .row > .off-6-xlarge {
    margin-left: 50%;
  }
  .row > .col-7-xlarge {
    width: 58.3333333333%;
  }
  .row > .off-7-xlarge {
    margin-left: 58.3333333333%;
  }
  .row > .col-8-xlarge {
    width: 66.6666666667%;
  }
  .row > .off-8-xlarge {
    margin-left: 66.6666666667%;
  }
  .row > .col-9-xlarge {
    width: 75%;
  }
  .row > .off-9-xlarge {
    margin-left: 75%;
  }
  .row > .col-10-xlarge {
    width: 83.3333333333%;
  }
  .row > .off-10-xlarge {
    margin-left: 83.3333333333%;
  }
  .row > .col-11-xlarge {
    width: 91.6666666667%;
  }
  .row > .off-11-xlarge {
    margin-left: 91.6666666667%;
  }
  .row > .col-12-xlarge {
    width: 100%;
  }
  .row > .off-12-xlarge {
    margin-left: 100%;
  }
  .row.gtr-0 {
    margin-top: 0px;
    margin-left: 0px;
  }
  .row.gtr-0 > * {
    padding: 0px 0 0 0px;
  }
  .row.gtr-0.gtr-uniform {
    margin-top: 0px;
  }
  .row.gtr-0.gtr-uniform > * {
    padding-top: 0px;
  }
  .row.gtr-25 {
    margin-top: -12.5px;
    margin-left: -12.5px;
  }
  .row.gtr-25 > * {
    padding: 12.5px 0 0 12.5px;
  }
  .row.gtr-25.gtr-uniform {
    margin-top: -12.5px;
  }
  .row.gtr-25.gtr-uniform > * {
    padding-top: 12.5px;
  }
  .row.gtr-50 {
    margin-top: -25px;
    margin-left: -25px;
  }
  .row.gtr-50 > * {
    padding: 25px 0 0 25px;
  }
  .row.gtr-50.gtr-uniform {
    margin-top: -25px;
  }
  .row.gtr-50.gtr-uniform > * {
    padding-top: 25px;
  }
  .row {
    margin-top: -50px;
    margin-left: -50px;
  }
  .row > * {
    padding: 50px 0 0 50px;
  }
  .row.gtr-uniform {
    margin-top: -50px;
  }
  .row.gtr-uniform > * {
    padding-top: 50px;
  }
  .row.gtr-150 {
    margin-top: -75px;
    margin-left: -75px;
  }
  .row.gtr-150 > * {
    padding: 75px 0 0 75px;
  }
  .row.gtr-150.gtr-uniform {
    margin-top: -75px;
  }
  .row.gtr-150.gtr-uniform > * {
    padding-top: 75px;
  }
  .row.gtr-200 {
    margin-top: -100px;
    margin-left: -100px;
  }
  .row.gtr-200 > * {
    padding: 100px 0 0 100px;
  }
  .row.gtr-200.gtr-uniform {
    margin-top: -100px;
  }
  .row.gtr-200.gtr-uniform > * {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1280px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }
  .row > * {
    box-sizing: border-box;
  }
  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }
  .row.aln-left {
    justify-content: flex-start;
  }
  .row.aln-center {
    justify-content: center;
  }
  .row.aln-right {
    justify-content: flex-end;
  }
  .row.aln-top {
    align-items: flex-start;
  }
  .row.aln-middle {
    align-items: center;
  }
  .row.aln-bottom {
    align-items: flex-end;
  }
  .row > .imp-large {
    order: -1;
  }
  .row > .col-1-large {
    width: 8.3333333333%;
  }
  .row > .off-1-large {
    margin-left: 8.3333333333%;
  }
  .row > .col-2-large {
    width: 16.6666666667%;
  }
  .row > .off-2-large {
    margin-left: 16.6666666667%;
  }
  .row > .col-3-large {
    width: 25%;
  }
  .row > .off-3-large {
    margin-left: 25%;
  }
  .row > .col-4-large {
    width: 33.3333333333%;
  }
  .row > .off-4-large {
    margin-left: 33.3333333333%;
  }
  .row > .col-5-large {
    width: 41.6666666667%;
  }
  .row > .off-5-large {
    margin-left: 41.6666666667%;
  }
  .row > .col-6-large {
    width: 50%;
  }
  .row > .off-6-large {
    margin-left: 50%;
  }
  .row > .col-7-large {
    width: 58.3333333333%;
  }
  .row > .off-7-large {
    margin-left: 58.3333333333%;
  }
  .row > .col-8-large {
    width: 66.6666666667%;
  }
  .row > .off-8-large {
    margin-left: 66.6666666667%;
  }
  .row > .col-9-large {
    width: 75%;
  }
  .row > .off-9-large {
    margin-left: 75%;
  }
  .row > .col-10-large {
    width: 83.3333333333%;
  }
  .row > .off-10-large {
    margin-left: 83.3333333333%;
  }
  .row > .col-11-large {
    width: 91.6666666667%;
  }
  .row > .off-11-large {
    margin-left: 91.6666666667%;
  }
  .row > .col-12-large {
    width: 100%;
  }
  .row > .off-12-large {
    margin-left: 100%;
  }
  .row.gtr-0 {
    margin-top: 0px;
    margin-left: 0px;
  }
  .row.gtr-0 > * {
    padding: 0px 0 0 0px;
  }
  .row.gtr-0.gtr-uniform {
    margin-top: 0px;
  }
  .row.gtr-0.gtr-uniform > * {
    padding-top: 0px;
  }
  .row.gtr-25 {
    margin-top: -10px;
    margin-left: -10px;
  }
  .row.gtr-25 > * {
    padding: 10px 0 0 10px;
  }
  .row.gtr-25.gtr-uniform {
    margin-top: -10px;
  }
  .row.gtr-25.gtr-uniform > * {
    padding-top: 10px;
    left: auto;
  }
  .row.gtr-50 {
    margin-top: -20px;
    margin-left: -20px;
  }
  .row.gtr-50 > * {
    padding: 20px 0 0 20px;
  }
  .row.gtr-50.gtr-uniform {
    margin-top: -20px;
  }
  .row.gtr-50.gtr-uniform > * {
    padding-top: 20px;
  }
  .row {
    margin-top: -40px;
    margin-left: -40px;
  }
  .row > * {
    padding: 40px 0 0 40px;
  }
  .row.gtr-uniform {
    margin-top: -40px;
  }
  .row.gtr-uniform > * {
    padding-top: 40px;
  }
  .row.gtr-150 {
    margin-top: -60px;
    margin-left: -60px;
  }
  .row.gtr-150 > * {
    padding: 60px 0 0 60px;
  }
  .row.gtr-150.gtr-uniform {
    margin-top: -60px;
  }
  .row.gtr-150.gtr-uniform > * {
    padding-top: 60px;
  }
  .row.gtr-200 {
    margin-top: -80px;
    margin-left: -80px;
  }
  .row.gtr-200 > * {
    padding: 80px 0 0 80px;
  }
  .row.gtr-200.gtr-uniform {
    margin-top: -80px;
  }
  .row.gtr-200.gtr-uniform > * {
    padding-top: 80px;
  }
}
@media screen and (max-width: 980px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }
  .row > * {
    box-sizing: border-box;
  }
  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }
  .row.aln-left {
    justify-content: flex-start;
  }
  .row.aln-center {
    justify-content: center;
  }
  .row.aln-right {
    justify-content: flex-end;
  }
  .row.aln-top {
    align-items: flex-start;
  }
  .row.aln-middle {
    align-items: center;
  }
  .row.aln-bottom {
    align-items: flex-end;
  }
  .row > .imp-medium {
    order: -1;
  }
  .row > .col-1-medium {
    width: 8.3333333333%;
  }
  .row > .off-1-medium {
    margin-left: 8.3333333333%;
  }
  .row > .col-2-medium {
    width: 16.6666666667%;
  }
  .row > .off-2-medium {
    margin-left: 16.6666666667%;
  }
  .row > .col-3-medium {
    width: 25%;
  }
  .row > .off-3-medium {
    margin-left: 25%;
  }
  .row > .col-4-medium {
    width: 33.3333333333%;
  }
  .row > .off-4-medium {
    margin-left: 33.3333333333%;
  }
  .row > .col-5-medium {
    width: 41.6666666667%;
  }
  .row > .off-5-medium {
    margin-left: 41.6666666667%;
  }
  .row > .col-6-medium {
    width: 50%;
  }
  .row > .off-6-medium {
    margin-left: 50%;
  }
  .row > .col-7-medium {
    width: 58.3333333333%;
  }
  .row > .off-7-medium {
    margin-left: 58.3333333333%;
  }
  .row > .col-8-medium {
    width: 66.6666666667%;
  }
  .row > .off-8-medium {
    margin-left: 66.6666666667%;
  }
  .row > .col-9-medium {
    width: 75%;
  }
  .row > .off-9-medium {
    margin-left: 75%;
  }
  .row > .col-10-medium {
    width: 83.3333333333%;
  }
  .row > .off-10-medium {
    margin-left: 83.3333333333%;
  }
  .row > .col-11-medium {
    width: 91.6666666667%;
  }
  .row > .off-11-medium {
    margin-left: 91.6666666667%;
  }
  .row > .col-12-medium {
    width: 100%;
  }
  .row > .off-12-medium {
    margin-left: 100%;
  }
  .row.gtr-0 {
    margin-top: 0px;
    margin-left: 0px;
  }
  .row.gtr-0 > * {
    padding: 0px 0 0 0px;
  }
  .row.gtr-0.gtr-uniform {
    margin-top: 0px;
  }
  .row.gtr-0.gtr-uniform > * {
    padding-top: 0px;
  }
  .row.gtr-25 {
    margin-top: -12.5px;
    margin-left: -12.5px;
  }
  .row.gtr-25 > * {
    padding: 12.5px 0 0 12.5px;
  }
  .row.gtr-25.gtr-uniform {
    margin-top: -12.5px;
  }
  .row.gtr-25.gtr-uniform > * {
    padding-top: 12.5px;
  }
  .row.gtr-50 {
    margin-top: -25px;
    margin-left: -25px;
  }
  .row.gtr-50 > * {
    padding: 25px 0 0 25px;
  }
  .row.gtr-50.gtr-uniform {
    margin-top: -25px;
  }
  .row.gtr-50.gtr-uniform > * {
    padding-top: 25px;
  }
  .row {
    margin-top: -50px;
    margin-left: -50px;
  }
  .row > * {
    padding: 50px 0 0 50px;
  }
  .row.gtr-uniform {
    margin-top: -50px;
  }
  .row.gtr-uniform > * {
    padding-top: 50px;
  }
  .row.gtr-150 {
    margin-top: -75px;
    margin-left: -75px;
  }
  .row.gtr-150 > * {
    padding: 75px 0 0 75px;
  }
  .row.gtr-150.gtr-uniform {
    margin-top: -75px;
  }
  .row.gtr-150.gtr-uniform > * {
    padding-top: 75px;
  }
  .row.gtr-200 {
    margin-top: -100px;
    margin-left: -100px;
  }
  .row.gtr-200 > * {
    padding: 100px 0 0 100px;
  }
  .row.gtr-200.gtr-uniform {
    margin-top: -100px;
  }
  .row.gtr-200.gtr-uniform > * {
    padding-top: 100px;
  }
}
@media screen and (max-width: 736px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }
  .row > * {
    box-sizing: border-box;
  }
  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }
  .row.aln-left {
    justify-content: flex-start;
  }
  .row.aln-center {
    justify-content: center;
  }
  .row.aln-right {
    justify-content: flex-end;
  }
  .row.aln-top {
    align-items: flex-start;
  }
  .row.aln-middle {
    align-items: center;
  }
  .row.aln-bottom {
    align-items: flex-end;
  }
  .row > .imp-small {
    order: -1;
  }
  .row > .col-1-small {
    width: 8.3333333333%;
  }
  .row > .off-1-small {
    margin-left: 8.3333333333%;
  }
  .row > .col-2-small {
    width: 16.6666666667%;
  }
  .row > .off-2-small {
    margin-left: 16.6666666667%;
  }
  .row > .col-3-small {
    width: 25%;
  }
  .row > .off-3-small {
    margin-left: 25%;
  }
  .row > .col-4-small {
    width: 33.3333333333%;
  }
  .row > .off-4-small {
    margin-left: 33.3333333333%;
  }
  .row > .col-5-small {
    width: 41.6666666667%;
  }
  .row > .off-5-small {
    margin-left: 41.6666666667%;
  }
  .row > .col-6-small {
    width: 50%;
  }
  .row > .off-6-small {
    margin-left: 50%;
  }
  .row > .col-7-small {
    width: 58.3333333333%;
  }
  .row > .off-7-small {
    margin-left: 58.3333333333%;
  }
  .row > .col-8-small {
    width: 66.6666666667%;
  }
  .row > .off-8-small {
    margin-left: 66.6666666667%;
  }
  .row > .col-9-small {
    width: 75%;
  }
  .row > .off-9-small {
    margin-left: 75%;
  }
  .row > .col-10-small {
    width: 83.3333333333%;
  }
  .row > .off-10-small {
    margin-left: 83.3333333333%;
  }
  .row > .col-11-small {
    width: 91.6666666667%;
  }
  .row > .off-11-small {
    margin-left: 91.6666666667%;
  }
  .row > .col-12-small {
    width: 100%;
  }
  .row > .off-12-small {
    margin-left: 100%;
  }
  .row.gtr-0 {
    margin-top: 0px;
    margin-left: 0px;
  }
  .row.gtr-0 > * {
    padding: 0px 0 0 0px;
  }
  .row.gtr-0.gtr-uniform {
    margin-top: 0px;
  }
  .row.gtr-0.gtr-uniform > * {
    padding-top: 0px;
  }
  .row.gtr-25 {
    margin-top: -7.5px;
    margin-left: -7.5px;
  }
  .row.gtr-25 > * {
    padding: 7.5px 0 0 7.5px;
  }
  .row.gtr-25.gtr-uniform {
    margin-top: -7.5px;
  }
  .row.gtr-25.gtr-uniform > * {
    padding-top: 7.5px;
  }
  .row.gtr-50 {
    margin-top: -15px;
    margin-left: -15px;
  }
  .row.gtr-50 > * {
    padding: 15px 0 0 15px;
  }
  .row.gtr-50.gtr-uniform {
    margin-top: -15px;
  }
  .row.gtr-50.gtr-uniform > * {
    padding-top: 15px;
  }
  .row {
    margin-top: -30px;
    margin-left: -30px;
  }
  .row > * {
    padding: 30px 0 0 30px;
  }
  .row.gtr-uniform {
    margin-top: -30px;
  }
  .row.gtr-uniform > * {
    padding-top: 30px;
  }
  .row.gtr-150 {
    margin-top: -45px;
    margin-left: -45px;
  }
  .row.gtr-150 > * {
    padding: 45px 0 0 45px;
  }
  .row.gtr-150.gtr-uniform {
    margin-top: -45px;
  }
  .row.gtr-150.gtr-uniform > * {
    padding-top: 45px;
  }
  .row.gtr-200 {
    margin-top: -60px;
    margin-left: -60px;
  }
  .row.gtr-200 > * {
    padding: 60px 0 0 60px;
  }
  .row.gtr-200.gtr-uniform {
    margin-top: -60px;
  }
  .row.gtr-200.gtr-uniform > * {
    padding-top: 60px;
  }
}

/* Sections/Article */
section, article {
  margin-bottom: 3em;
}

section > :last-child,
article > :last-child,
section:last-child,
article:last-child {
  margin-bottom: 0;
}

/* Image */
.image {
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
  -ms-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  display: inline-block;
  border: solid 6px #ebebeb !important;
}
.image:hover {
  opacity: 0.9;
}
.image img {
  display: block;
  width: 100%;
}
.image.fit {
  display: block;
  width: 100%;
}
.image.featured {
  display: block;
  width: 100%;
  margin: 0 0 3.5em 0;
}
.image.left {
  float: left;
  margin: 0 1.5em 1.5em 0;
  position: relative;
  top: 0.5em;
}
.image.centered {
  display: block;
  margin: 0 0 2em 0;
}
.image.centered img {
  margin: 0 auto;
  width: auto;
}

/* List */
ul {
  list-style: disc;
  padding-left: 1em;
}
ul li {
  padding-left: 0.5em;
  margin: 0.75em 0 0.75em 0;
}
ul li:first-child {
  margin-top: 0;
}

ol {
  list-style: decimal;
  padding-left: 1em;
}
ol li {
  padding-left: 0.5em;
  margin: 0.75em 0 0.75em 0;
}
ol li:first-child {
  margin-top: 0;
}

/* Links */
ul.links {
  list-style: none;
  padding-left: 0;
}
ul.links li {
  display: inline;
  border-left: solid 1px #d0d0d0;
  padding-left: 1em;
  margin: 0 0 0 1em;
}
ul.links li:first-child {
  margin-left: 0;
  padding-left: 0;
}

/* Actions */
ul.actions {
  margin-top: 2.5em;
  clear: both;
  list-style: none;
  padding-left: 0;
}
ul.actions li {
  padding-left: 0;
  display: inline-block;
  margin: 0 0 0 1em;
}
ul.actions li:first-child {
  margin-left: 0;
}

/* Divided */
ul.divided {
  list-style: none;
  padding-left: 0;
}
ul.divided li {
  border-top: solid 2px #e5e5e5;
  padding-left: 0;
  margin: 2.5em 0 0 0;
  padding: 2.5em 0 0 0;
}
ul.divided li:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

/* Icons */
ul.icons {
  list-style: none;
  padding-left: 0;
}
ul.icons > li {
  position: relative;
  padding: 2em 0 0 3em;
  margin: 0;
}
ul.icons > li:before {
  position: absolute;
  left: 0;
  top: 2em;
  display: block;
  background: #878787;
  color: #e4e4e4;
  width: 1.65em;
  height: 1.65em;
  border-radius: 1.65em;
  line-height: 1.65em;
  text-align: center;
  box-shadow: 0.125em 0.175em 0 0 rgba(0, 0, 0, 0.125);
}
ul.icons > li:first-child {
  padding-top: 0;
}
ul.icons > li:first-child:before {
  top: 0;
}

/* Form */
form label {
  font-weight: 600;
  color: #888;
  display: block;
  margin: 0 0 1em 0;
}
form input[type=text],
form input[type=email] input[type=password],
form select,
form textarea {
  -moz-transition: background-color 0.25s ease-in-out;
  -webkit-transition: background-color 0.25s ease-in-out;
  -ms-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
  -webkit-appearance: none;
  display: block;
  border: 0;
  background: #e8e8e8;
  width: 100%;
  box-shadow: inset 2px 2px 0px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  line-height: 1.25em;
  padding: 0.75em 1em 0.75em 1em;
}
form input[type=text]:focus,
form input[type=email] input[type=password]:focus,
form select:focus,
form textarea:focus {
  background: #f0f0f0;
}
form textarea {
  min-height: 11em;
}
form ::-webkit-input-placeholder {
  color: #555 !important;
  line-height: 1.65em;
}
form :-moz-placeholder {
  color: #555 !important;
}
form ::-moz-placeholder {
  color: #555 !important;
}
form :-ms-input-placeholder {
  color: #555 !important;
}
form ::-moz-focus-inner {
  border: 0;
}

/* Table */
table {
  width: 100%;
}
table tbody tr {
  border-top: solid 1px #E5E5E5;
}
table tbody tr:first-child {
  border-top: 0;
}
table td {
  padding: 0.75em 1em 0.75em 1em;
}
table th {
  text-align: left;
  font-weight: bold;
  padding: 0.75em 1em 0.75em 1em;
}
table thead {
  background: #878787;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  border: 0;
  box-shadow: 0.125em 0.175em 0 0 rgba(0, 0, 0, 0.125);
  font-size: 0.85em;
  letter-spacing: 2px;
}
table tfoot {
  background: #F0F0F0;
  border-top: solid 2px #E5E5E5;
}

/* Button */
input[type=button],
input[type=submit],
input[type=reset],
button,
.button {
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-appearance: none;
  position: relative;
  display: inline-block;
  background: #ed786a;
  color: #fff !important;
  border-radius: 4px;
  border: 0;
  outline: 0;
  font-size: 1em;
  box-shadow: 0.125em 0.175em 0 0 rgba(0, 0, 0, 0.125);
  font-weight: 600;
  text-align: center;
  font-size: 0.85em;
  letter-spacing: 2px;
  padding: 0.85em 2.75em 0.85em 2.75em;
}
input[type=button].icon:before,
input[type=submit].icon:before,
input[type=reset].icon:before,
button.icon:before,
.button.icon:before {
  position: relative;
  padding-right: 0.75em;
  opacity: 0.5;
  top: 0.05em;
}
input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover,
button:hover,
.button:hover {
  background: #fd887a;
}
input[type=button]:active,
input[type=submit]:active,
input[type=reset]:active,
button:active,
.button:active {
  background: #ed786a;
}
input[type=button].alt,
input[type=submit].alt,
input[type=reset].alt,
button.alt,
.button.alt {
  background: #878787;
}
input[type=button].alt:hover,
input[type=submit].alt:hover,
input[type=reset].alt:hover,
button.alt:hover,
.button.alt:hover {
  background: #979797;
}
input[type=button].alt:active,
input[type=submit].alt:active,
input[type=reset].alt:active,
button.alt:active,
.button.alt:active {
  background: #878787;
}

/* Box */
.no-sidebar .box.post > header {
  text-align: center;
}
.box.excerpt .date {
  background: #878787;
  color: #fff;
  font-weight: 400;
  border-radius: 4px;
  border: 0;
  box-shadow: 0.125em 0.175em 0 0 rgba(0, 0, 0, 0.125);
  display: inline-block;
  font-size: 0.85em;
  letter-spacing: 2px;
  padding: 0.25em 1em 0.25em 1em;
  margin: 0 0 2.5em 0;
}

/* Icons */
.icon {
  position: relative;
  text-decoration: none;
}
.icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}
.icon > .label {
  display: none;
}

/* Page Wrapper */
#page-wrapper > section {
  margin-bottom: 0;
}

/* Header */
#header {
  position: relative;
  position: relative;
  background: #fff;
  text-align: center;
}
#header > .container {
  padding: 14em 0 7em 0;
  border-bottom: solid 2px #e5e5e5;
  box-shadow: inset 0px -8px 0px 0px #fff, inset 0px -10px 0px 0px #e5e5e5;
}
#header h1 {
  font-family: "Arvo";
  font-weight: 700;
  color: #ed786a;
  text-shadow: 0.05em 0.075em 0 rgba(0, 0, 0, 0.1);
  font-size: 3em;
  letter-spacing: 13px;
}
#header h1 a {
  border: 0;
}
#header p {
  font-weight: 400;
  color: #888;
  margin: 2.5em 0 0 0;
  font-size: 0.85em;
  letter-spacing: 3px;
  text-align: center;
}

/* Nav */
#nav {
  position: absolute;
  top: 3em;
  left: 0;
  width: 100%;
  cursor: default;
}
#nav > ul > li {
  display: inline-block;
  padding-right: 1em;
}
#nav > ul > li:last-child {
  padding-right: 0;
}
#nav > ul > li > a {
  border: 0;
  text-decoration: none;
  text-transform: none !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  color: #777;
  outline: 0;
  display: block;
}
#nav > ul > li > a:before {
  display: inline-block;
  background: #878787;
  color: #e4e4e4;
  width: 1.65em;
  height: 1.65em;
  border-radius: 1.65em;
  line-height: 1.65em;
  text-align: center;
  box-shadow: 0.125em 0.175em 0 0 rgba(0, 0, 0, 0.125);
  margin-right: 0.75em;
  -moz-transition: color 0.25s ease-in-out, background 0.25s ease-in-out;
  -webkit-transition: color 0.25s ease-in-out, background 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out, background 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out, background 0.25s ease-in-out;
  transition: color 0.25s ease-in-out, background 0.25s ease-in-out;
}
#nav > ul > li > a > span {
  -moz-transition: color 0.25s ease-in-out;
  -webkit-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1em;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: none !important;
}
#nav > ul > li > ul {
  display: none;
}
#nav > ul > li.active > a:before, #nav > ul > li:hover > a:before {
  background: #ED786A;
  color: #fff;
}
#nav > ul > li.active > a > span, #nav > ul > li:hover > a > span {
  color: #ED786A;
}

.dropotron {
  text-align: left;
  border: solid 1px #e5e5e5;
  border-radius: 4px;
  background: #fff;
  background: rgba(255, 255, 255, 0.965);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  padding: 0.75em 0 0.5em 0;
  min-width: 12em;
  margin-top: calc(-0.5em + 1px);
  margin-left: -2px;
  list-style: none;
}
.dropotron.level-0 {
  margin-top: 1.5em;
  margin-left: -1em;
}
.dropotron.level-0:after {
  content: "";
  display: block;
  position: absolute;
  left: 1.25em;
  top: calc(-0.75em + 1px);
  border-left: solid 0.75em rgba(255, 255, 255, 0);
  border-right: solid 0.75em rgba(255, 255, 255, 0);
  border-bottom: solid 0.75em #fff;
}
.dropotron.level-0:before {
  content: "";
  display: block;
  position: absolute;
  left: 1.25em;
  top: -0.75em;
  border-left: solid 0.75em rgba(255, 255, 255, 0);
  border-right: solid 0.75em rgba(255, 255, 255, 0);
  border-bottom: solid 0.75em #ccc;
}
.dropotron span, .dropotron a {
  display: block;
  padding: 0.3em 1em 0.3em 1em;
  border: 0;
  border-top: solid 1px #f0f0f0;
  outline: 0;
}
.dropotron li {
  padding-left: 0;
  margin: 0;
}
.dropotron li:first-child > span, .dropotron li:first-child > a {
  border-top: 0;
  padding-top: 0;
}
.dropotron li:hover > span, .dropotron li:hover > a {
  -moz-transition: color 0.25s ease-in-out, border-bottom-color 0.25s ease-in-out;
  -webkit-transition: color 0.25s ease-in-out, border-bottom-color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out, border-bottom-color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out, border-bottom-color 0.25s ease-in-out;
  color: #ed786a;
}

/* Features */
#features {
  position: relative;
  overflow: hidden;
  background: var(--page-bg, #fff);
  text-align: center;
  padding: 6em 0;
}
#features p {
  text-align: center;
}
#features ul.actions {
  margin-top: 1.25em;
}

/* Banner */
#banner {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #fff;
  text-align: center;
  border-top: solid 2px #e5e5e5;
  border-bottom: solid 2px #e5e5e5;
  box-shadow: inset 0px -8px 0px 0px #fff, inset 0px 8px 0px 0px #fff;
  position: relative;
  text-transform: uppercase;
  background: url("../../images/banner.jpg");
  background-size: cover;
  padding: 10em 0;
}
#banner p {
  font-weight: 400;
  font-size: 2em;
  line-height: 1.5em;
  letter-spacing: 4px;
  text-align: center;
  margin: 0;
}
#banner strong {
  color: inherit;
}
#banner > .container {
  position: relative;
}
#banner > .container:before, #banner > .container:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 141px;
  margin-top: -70px;
  background: url("images/bracket.svg");
  opacity: 0.15;
}
#banner > .container:before {
  left: 0;
}
#banner > .container:after {
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
  right: 0;
}

/* Main */
#main {
  position: relative;
  overflow: hidden;
  background: var(--page-bg, #fff);
  padding: 6em 0;
}

/* Content */
#content > section,
#content > article {
  border-top: solid 2px #e5e5e5;
  box-shadow: inset 0px 8px 0px 0px #fff, inset 0px 10px 0px 0px #e5e5e5;
  margin: 5em 0 0 0;
  padding: 5em 0 0 0;
}
#content > section:first-child,
#content > article:first-child {
  border-top: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

/* Sidebar */
#sidebar > section,
#sidebar > article {
  border-top: solid 2px #e5e5e5;
  box-shadow: inset 0px 8px 0px 0px #fff, inset 0px 10px 0px 0px #e5e5e5;
  margin: 5em 0 0 0;
  padding: 5em 0 0 0;
}
#sidebar > section:first-child,
#sidebar > article:first-child {
  border-top: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

/* Footer */
#footer {
  position: relative;
  overflow: hidden;
  border-top: solid 2px #e5e5e5;
  background: #f0f0f0;
  padding: 6em 0 8em 0;
}
#footer form input[type=text],
#footer form input[type=email],
#footer form input[type=password],
#footer form select,
#footer form textarea {
  background: #f7f7f7;
}
#footer form input[type=text]:focus,
#footer form input[type=email]:focus,
#footer form input[type=password]:focus,
#footer form select:focus,
#footer form textarea:focus {
  background: #fff;
}
#footer h2 {
  text-align: center;
}

/* Copyright */
#copyright {
  border-top: solid 2px #e5e5e5;
  text-align: center;
  margin-top: 6em;
  padding-top: 4em;
}

#copyright .links li {
  padding-left: 1.5em;
  margin-left: 1.5em;
}

#copyright .links li:first-child {
  padding-right: 0.5em;
}

/* XLarge */
@media screen and (max-width: 1680px) {
  /* Basic */
  body, input, textarea, select {
    font-size: 15pt;
  }
}
/* Large */
@media screen and (max-width: 1280px) {
  /* Basic */
  body, input, textarea, select {
    font-size: 14pt;
  }
  h2 br, h3 br, h4 br, h5 br, h6 br {
    display: none;
  }
  /* Image */
  .image.left {
    max-width: 50%;
  }
  .image.right {
    max-width: 50%;
  }
  /* Header */
  #header > .container {
    padding: 12em 0 5em 0;
  }
  #header h1 {
    font-size: 2.5em;
  }
  /* Nav */
  #nav > ul > li {
    padding-right: 1.25em;
  }
  /* Features */
  #features {
    padding: 4em 0;
  }
  /* Banner */
  #banner {
    padding: 8em 0;
  }
  #banner > .container {
    padding: 0 4em;
  }
  #banner > .container br {
    display: none;
  }
  /* Main */
  #main {
    padding: 4em 0;
  }
  /* Footer */
  #footer {
    padding: 4em 0;
  }
  /* Copyright */
  #copyright {
    margin-top: 2em;
    padding-top: 2em;
  }
}
/* Medium */
#navPanel, #titleBar {
  display: none;
}

@media screen and (max-width: 980px) {
  /* Basic */
  html, body {
    overflow-x: hidden;
  }
  /* Header */
  #header > .container {
    padding: 10em 0 7em 0;
  }
  /* Nav */
  #nav {
    display: none;
  }
  /* Nav */
  #page-wrapper {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    padding-bottom: 1px;
  }
  #titleBar {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    display: block;
    height: 44px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10001;
  }
  #titleBar .toggle {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 60px;
    border: 0;
  }
  #titleBar .toggle:before {
    display: inline-block;
    font-family: FontAwesome;
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f0c9";
    display: block;
    width: 60px;
    height: 40px;
    background: rgba(232, 232, 232, 0.9);
    border-radius: 4px;
    position: absolute;
    left: 5px;
    top: 5px;
    box-shadow: 0.125em 0.125em 0 0 rgba(0, 0, 0, 0.15);
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    color: #aaa;
  }
  #titleBar .toggle:active:before {
    opacity: 0.5;
  }
  #navPanel {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transform: translateX(-275px);
    -webkit-transform: translateX(-275px);
    -ms-transform: translateX(-275px);
    transform: translateX(-275px);
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    display: block;
    height: 100%;
    left: 0;
    overflow-y: auto;
    position: fixed;
    top: 0;
    width: 275px;
    z-index: 10002;
    background: #444;
    border-right: solid 2px #3c3c3c;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    text-transform: none;
    color: #888;
    letter-spacing: 0.3px;
    font-size: 1.05em;
  }
  #navPanel .link {
    display: block;
    color: #ddd;
    text-decoration: none;
    height: 44px;
    line-height: 44px;
    border: 0;
    border-top: solid 1px #3c3c3c;
    padding: 0 1em 0 1em;
  }
  #navPanel .link:first-child {
    border-top: 0;
  }
  #navPanel .link.depth-0 {
    font-weight: 600;
    color: #fff;
  }
  #navPanel .indent-1 {
    display: inline-block;
    width: 1em;
  }
  #navPanel .indent-2 {
    display: inline-block;
    width: 2em;
  }
  #navPanel .indent-3 {
    display: inline-block;
    width: 3em;
  }
  #navPanel .indent-4 {
    display: inline-block;
    width: 4em;
  }
  #navPanel .indent-5 {
    display: inline-block;
    width: 5em;
  }
  #navPanel .depth-0 {
    color: #fff;
  }
  body.navPanel-visible #page-wrapper {
    -moz-transform: translateX(275px);
    -webkit-transform: translateX(275px);
    -ms-transform: translateX(275px);
    transform: translateX(275px);
  }
  body.navPanel-visible #titleBar {
    -moz-transform: translateX(275px);
    -webkit-transform: translateX(275px);
    -ms-transform: translateX(275px);
    transform: translateX(275px);
  }
  body.navPanel-visible #navPanel {
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  /* Sidebar */
  #sidebar {
    padding-top: 6em;
  }
}
/* Small */
@media screen and (max-width: 736px) {
  /* Basic */
  body, input, textarea, select {
    font-size: 13pt;
  }
  h2, h3, h4, h5, h6 {
    font-size: 1.2em;
    letter-spacing: 2px;
    text-align: center;
    margin: 0 0 1em 0;
  }
  h2 br, h3 br, h4 br, h5 br, h6 br {
    display: none;
  }
  /* Image */
  .image.featured {
    margin: 0 0 1.5em 0;
  }
  .image.left {
    max-width: 35%;
  }
  .image.right {
    max-width: 35%;
  }
  /* Publication images - prevent overlap on mobile */
  .box.highlight .image.left {
    float: none !important;
    display: block !important;
    max-width: 100% !important;
    margin: 0 auto 1.5em auto !important;
  }
  .box.highlight .image.left img {
    max-width: 300px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  /* Button */
  input[type=button],
  input[type=submit],
  input[type=reset],
  button,
  .button {
    letter-spacing: 0.5px;
    display: block;
    padding: 1em 1em 1em 1em;
    width: 100%;
    font-size: 0.9em;
  }
  /* Icon buttons need even less spacing */
  .button.icon {
    letter-spacing: 0.3px;
    font-size: 0.85em;
  }
  /* Fix icon spacing on mobile buttons */
  .button.icon:before {
    padding-right: 0.4em;
    padding-left: 0.5em;
  }
  /* Actions */
  ul.actions li {
    display: block;
    margin: 1em 0 0 0;
  }
  ul.actions li:first-child {
    margin-top: 0;
  }
  /* Box */
  .box.excerpt header {
    text-align: center;
  }
  /* Header */
  #header > .container {
    padding: 6em 0 4em 0;
  }
  #header h1 {
    font-size: 2em;
    letter-spacing: 8px;
    line-height: 1.325em;
  }
  #header p {
    margin: 1.25em 0 0 0;
    letter-spacing: 2px;
  }
  /* Banner */
  #banner {
    padding: 5em 0;
  }
  #banner > .container {
    padding: 0;
  }
  #banner > .container:before, #banner > .container:after {
    display: none;
  }
  #banner p {
    font-size: 1.25em;
  }
  /* Features */
  #features {
    padding: 2em 0;
  }
  #features ul.actions {
    margin-top: 0;
  }
  /* Main */
  #main {
    padding: 2em 0;
  }
  /* Content */
  #content > section,
  #content > article {
    margin: 3em 0 0 0;
    padding: 3em 0 0 0;
  }
  /* Sidebar */
  #sidebar {
    padding-top: 3em;
  }
  #sidebar > section,
  #sidebar > article {
    margin: 3em 0 0 0;
    padding: 3em 0 0 0;
  }
  /* Footer */
  #footer {
    padding: 2em 0;
  }
  #footer ul.icons {
    margin-bottom: 0;
  }
  /* Copyright */
  #copyright .links {
    margin-bottom: 0;
  }
  #copyright .links li {
    display: block;
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
  }
}

/* Light Theme Support (Default) */
:root {
  --page-bg: #ffffff;
  --heading-color: #3c3b3b;
  --accent-color: #5e5e5e;
  --text-muted: #777;
  --border-color: #e5e5e5;
  --box-bg: #ffffff;
}

html[data-theme=light] {
  --page-bg: #ffffff;
  --heading-color: #3c3b3b;
  --accent-color: #5e5e5e;
  --text-muted: #777;
  --border-color: #e5e5e5;
  --box-bg: #ffffff;
}

/* Dark Theme Support */
html[data-theme=dark] {
  --page-bg: #2a2a2a;
  --heading-color: #f5f5f5;
  --accent-color: #4a9eff;
  --text-muted: #888;
  --border-color: #444;
  --box-bg: #2a2a2a;
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme=light]) {
    --page-bg: #2a2a2a;
    --heading-color: #f5f5f5;
    --accent-color: #4a9eff;
    --text-muted: #888;
    --border-color: #444;
    --box-bg: #2a2a2a;
  }
  html:not([data-theme=light]) body {
    background: #2a2a2a;
    color: #e0e0e0;
  }
  html:not([data-theme=light]) h1, html:not([data-theme=light]) h2, html:not([data-theme=light]) h3, html:not([data-theme=light]) h4, html:not([data-theme=light]) h5, html:not([data-theme=light]) h6 {
    color: #f5f5f5;
  }
  html:not([data-theme=light]) strong, html:not([data-theme=light]) b {
    color: #e0e0e0;
  }
  html:not([data-theme=light]) a {
    color: #4a9eff !important;
    border-bottom-color: #444;
  }
  html:not([data-theme=light]) a:hover {
    color: #6bb6ff !important;
    border-bottom-color: transparent;
  }
  html:not([data-theme=light]) #header {
    background: #2a2a2a;
    color: #e0e0e0;
  }
  html:not([data-theme=light]) #header > .container {
    border-bottom-color: #444;
    box-shadow: inset 0px -8px 0px 0px #2a2a2a, inset 0px -10px 0px 0px #444;
  }
  html:not([data-theme=light]) #header h1 {
    color: #4a9eff;
  }
  html:not([data-theme=light]) #header p {
    color: #b0b0b0;
  }
  html:not([data-theme=light]) #header article.box.post p,
  html:not([data-theme=light]) #header .col-12 p {
    color: #b0b0b0 !important;
  }
  html:not([data-theme=light]) #nav > ul > li > a {
    color: #b0b0b0;
  }
  html:not([data-theme=light]) #nav > ul > li > a:before {
    background: #333;
    color: #888;
  }
  html:not([data-theme=light]) #nav > ul > li.active > a:before, html:not([data-theme=light]) #nav > ul > li:hover > a:before {
    background: #4a9eff;
    color: #fff;
  }
  html:not([data-theme=light]) #nav > ul > li.active > a > span, html:not([data-theme=light]) #nav > ul > li:hover > a > span {
    color: #4a9eff;
  }
  html:not([data-theme=light]) #features, html:not([data-theme=light]) #main {
    background: #2a2a2a;
  }
  html:not([data-theme=light]) .image {
    border-color: #444 !important;
  }
  html:not([data-theme=light]) form label {
    color: #b0b0b0;
  }
  html:not([data-theme=light]) form input[type=text],
  html:not([data-theme=light]) form input[type=email],
  html:not([data-theme=light]) form input[type=password],
  html:not([data-theme=light]) form select,
  html:not([data-theme=light]) form textarea {
    background: #333;
    color: #e0e0e0;
    box-shadow: inset 2px 2px 0px 0px rgba(0, 0, 0, 0.2);
  }
  html:not([data-theme=light]) form input[type=text]:focus,
  html:not([data-theme=light]) form input[type=email]:focus,
  html:not([data-theme=light]) form input[type=password]:focus,
  html:not([data-theme=light]) form select:focus,
  html:not([data-theme=light]) form textarea:focus {
    background: rgb(63.75, 63.75, 63.75);
  }
  html:not([data-theme=light]) input[type=button],
  html:not([data-theme=light]) input[type=submit],
  html:not([data-theme=light]) input[type=reset],
  html:not([data-theme=light]) button,
  html:not([data-theme=light]) .button {
    background: #4a9eff;
    color: #fff !important;
  }
  html:not([data-theme=light]) input[type=button]:hover,
  html:not([data-theme=light]) input[type=submit]:hover,
  html:not([data-theme=light]) input[type=reset]:hover,
  html:not([data-theme=light]) button:hover,
  html:not([data-theme=light]) .button:hover {
    background: #6bb6ff;
    color: #fff !important;
  }
  html:not([data-theme=light]) input[type=button].alt,
  html:not([data-theme=light]) input[type=submit].alt,
  html:not([data-theme=light]) input[type=reset].alt,
  html:not([data-theme=light]) button.alt,
  html:not([data-theme=light]) .button.alt {
    background: #333;
    color: #fff !important;
  }
  html:not([data-theme=light]) input[type=button].alt:hover,
  html:not([data-theme=light]) input[type=submit].alt:hover,
  html:not([data-theme=light]) input[type=reset].alt:hover,
  html:not([data-theme=light]) button.alt:hover,
  html:not([data-theme=light]) .button.alt:hover {
    background: rgb(76.5, 76.5, 76.5);
    color: #fff !important;
  }
  html:not([data-theme=light]) #footer {
    background: #2a2a2a;
    border-top-color: #444;
  }
  html:not([data-theme=light]) #footer .image.featured img {
    background: white !important;
    padding: 8px !important;
    border-radius: 4px !important;
  }
  html:not([data-theme=light]) .modal {
    background-color: rgba(0, 0, 0, 0.9);
  }
  html:not([data-theme=light]) .modal .close {
    color: #e0e0e0;
  }
  html:not([data-theme=light]) .modal .close:hover {
    color: #4a9eff;
  }
  html:not([data-theme=light]) #content > section,
  html:not([data-theme=light]) #content > article, html:not([data-theme=light]) #sidebar > section,
  html:not([data-theme=light]) #sidebar > article {
    border-top-color: #444;
    box-shadow: inset 0px 8px 0px 0px #2a2a2a, inset 0px 10px 0px 0px #444;
  }
  html:not([data-theme=light]) .dropotron {
    background: #2a2a2a;
    border-color: #444;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
  }
  html:not([data-theme=light]) .dropotron span, html:not([data-theme=light]) .dropotron a {
    border-top-color: #444;
  }
  html:not([data-theme=light]) .dropotron li:hover > span,
  html:not([data-theme=light]) .dropotron li:hover > a {
    color: #4a9eff;
  }
  html:not([data-theme=light]) .dropotron.level-0:after {
    border-bottom-color: #2a2a2a;
  }
  html:not([data-theme=light]) .dropotron.level-0:before {
    border-bottom-color: #444;
  }
  html:not([data-theme=light]) #titleBar .toggle:before {
    background: rgba(50, 50, 50, 0.9);
    color: #b0b0b0;
  }
  html:not([data-theme=light]) #titleBar .toggle:active:before {
    opacity: 0.7;
  }
  html:not([data-theme=light]) #navPanel {
    background: #2a2a2a;
    border-right-color: #444;
    color: #b0b0b0;
  }
  html:not([data-theme=light]) #navPanel .link {
    color: #b0b0b0;
    border-top-color: #444;
  }
  html:not([data-theme=light]) #navPanel .link.depth-0 {
    color: #e0e0e0;
  }
  html:not([data-theme=light]) #navPanel .link:hover {
    color: #4a9eff;
  }
  html:not([data-theme=light]) #banner {
    border-top-color: #444;
    border-bottom-color: #444;
    box-shadow: inset 0px -8px 0px 0px #2a2a2a, inset 0px 8px 0px 0px #2a2a2a;
  }
  html:not([data-theme=light]) #banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  html:not([data-theme=light]) #banner > .container {
    position: relative;
    z-index: 2;
  }
  html:not([data-theme=light]) ul.divided li {
    border-top-color: #444;
  }
  html:not([data-theme=light]) ul.icons > li:before {
    background: #333;
    color: #888;
  }
  html:not([data-theme=light]) hr {
    border-top-color: #444;
  }
  html:not([data-theme=light]) blockquote {
    border-left-color: #444;
  }
  html:not([data-theme=light]) .box.excerpt .date {
    background: #4a9eff;
    color: #fff;
  }
  html:not([data-theme=light]) table tbody tr {
    border-top-color: #444;
  }
  html:not([data-theme=light]) table thead {
    background: #333;
  }
  html:not([data-theme=light]) table tfoot {
    background: #2a2a2a;
    border-top-color: #444;
  }
  html:not([data-theme=light]) #copyright {
    border-top-color: #444;
  }
  html:not([data-theme=light]) .modal-content {
    border: 2px solid #444;
  }
  html:not([data-theme=light]) .hidden, html:not([data-theme=light]) .unhidden {
    color: inherit;
  }
  html:not([data-theme=light]) ::-webkit-input-placeholder {
    color: #888 !important;
  }
  html:not([data-theme=light]) :-moz-placeholder {
    color: #888 !important;
  }
  html:not([data-theme=light]) ::-moz-placeholder {
    color: #888 !important;
  }
  html:not([data-theme=light]) :-ms-input-placeholder {
    color: #888 !important;
  }
  html:not([data-theme=light]) * {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }
  html:not([data-theme=light]) p, html:not([data-theme=light]) li, html:not([data-theme=light]) span {
    color: #e0e0e0;
  }
  html:not([data-theme=light]) .publication {
    border-color: #444;
  }
  html:not([data-theme=light]) .news-item {
    border-color: #444;
    background: rgba(255, 255, 255, 0.02);
  }
  html:not([data-theme=light]) .icon:before {
    color: #b0b0b0;
  }
  html:not([data-theme=light]) .team-member {
    background: #2a2a2a !important;
    border-color: #444 !important;
  }
  html:not([data-theme=light]) .team-member div {
    color: #888 !important;
  }
  html:not([data-theme=light]) #sherbrooke-banner {
    background: #2a2a2a !important;
  }
  html:not([data-theme=light]) #features {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  html:not([data-theme=light]) .box {
    background: #2a2a2a !important;
    border-color: #444 !important;
  }
}
html[data-theme=dark] :root {
  --page-bg: #2a2a2a;
  --heading-color: #f5f5f5;
  --accent-color: #4a9eff;
  --text-muted: #888;
  --border-color: #444;
  --box-bg: #333;
}
html[data-theme=dark] body {
  background: #2a2a2a;
  color: #e0e0e0;
}
html[data-theme=dark] h1, html[data-theme=dark] h2, html[data-theme=dark] h3, html[data-theme=dark] h4, html[data-theme=dark] h5, html[data-theme=dark] h6 {
  color: #f5f5f5;
}
html[data-theme=dark] strong, html[data-theme=dark] b {
  color: #e0e0e0;
}
html[data-theme=dark] a {
  color: #4a9eff !important;
  border-bottom-color: #444;
}
html[data-theme=dark] a:hover {
  color: #6bb6ff !important;
  border-bottom-color: transparent;
}
html[data-theme=dark] #header {
  background: #2a2a2a;
  color: #e0e0e0;
}
html[data-theme=dark] #header > .container {
  border-bottom-color: #444;
  box-shadow: inset 0px -8px 0px 0px #2a2a2a, inset 0px -10px 0px 0px #444;
}
html[data-theme=dark] #header h1 {
  color: #4a9eff;
}
html[data-theme=dark] #header p {
  color: #b0b0b0;
}
html[data-theme=dark] #header article.box.post p,
html[data-theme=dark] #header .col-12 p {
  color: #b0b0b0 !important;
}
html[data-theme=dark] #nav > ul > li > a {
  color: #b0b0b0;
}
html[data-theme=dark] #nav > ul > li > a:before {
  background: #333;
  color: #888;
}
html[data-theme=dark] #nav > ul > li.active > a:before, html[data-theme=dark] #nav > ul > li:hover > a:before {
  background: #4a9eff;
  color: #fff;
}
html[data-theme=dark] #nav > ul > li.active > a > span, html[data-theme=dark] #nav > ul > li:hover > a > span {
  color: #4a9eff;
}
html[data-theme=dark] #features, html[data-theme=dark] #main {
  background: #2a2a2a;
}
html[data-theme=dark] .image {
  border-color: #444 !important;
}
html[data-theme=dark] form label {
  color: #b0b0b0;
}
html[data-theme=dark] form input[type=text],
html[data-theme=dark] form input[type=email],
html[data-theme=dark] form input[type=password],
html[data-theme=dark] form select,
html[data-theme=dark] form textarea {
  background: #333;
  color: #e0e0e0;
  box-shadow: inset 2px 2px 0px 0px rgba(0, 0, 0, 0.2);
}
html[data-theme=dark] form input[type=text]:focus,
html[data-theme=dark] form input[type=email]:focus,
html[data-theme=dark] form input[type=password]:focus,
html[data-theme=dark] form select:focus,
html[data-theme=dark] form textarea:focus {
  background: rgb(63.75, 63.75, 63.75);
}
html[data-theme=dark] input[type=button],
html[data-theme=dark] input[type=submit],
html[data-theme=dark] input[type=reset],
html[data-theme=dark] button,
html[data-theme=dark] .button {
  background: #4a9eff;
  color: #fff !important;
}
html[data-theme=dark] input[type=button]:hover,
html[data-theme=dark] input[type=submit]:hover,
html[data-theme=dark] input[type=reset]:hover,
html[data-theme=dark] button:hover,
html[data-theme=dark] .button:hover {
  background: #6bb6ff;
  color: #fff !important;
}
html[data-theme=dark] input[type=button].alt,
html[data-theme=dark] input[type=submit].alt,
html[data-theme=dark] input[type=reset].alt,
html[data-theme=dark] button.alt,
html[data-theme=dark] .button.alt {
  background: #333;
  color: #fff !important;
}
html[data-theme=dark] input[type=button].alt:hover,
html[data-theme=dark] input[type=submit].alt:hover,
html[data-theme=dark] input[type=reset].alt:hover,
html[data-theme=dark] button.alt:hover,
html[data-theme=dark] .button.alt:hover {
  background: rgb(76.5, 76.5, 76.5);
  color: #fff !important;
}
html[data-theme=dark] #footer {
  background: #2a2a2a;
  border-top-color: #444;
}
html[data-theme=dark] #footer .image.featured img {
  background: white !important;
  padding: 8px !important;
  border-radius: 4px !important;
}
html[data-theme=dark] .modal {
  background-color: rgba(0, 0, 0, 0.9);
}
html[data-theme=dark] .modal .close {
  color: #e0e0e0;
}
html[data-theme=dark] .modal .close:hover {
  color: #4a9eff;
}
html[data-theme=dark] #content > section,
html[data-theme=dark] #content > article, html[data-theme=dark] #sidebar > section,
html[data-theme=dark] #sidebar > article {
  border-top-color: #444;
  box-shadow: inset 0px 8px 0px 0px #2a2a2a, inset 0px 10px 0px 0px #444;
}
html[data-theme=dark] .dropotron {
  background: #2a2a2a;
  border-color: #444;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
}
html[data-theme=dark] .dropotron span, html[data-theme=dark] .dropotron a {
  border-top-color: #444;
}
html[data-theme=dark] .dropotron li:hover > span,
html[data-theme=dark] .dropotron li:hover > a {
  color: #4a9eff;
}
html[data-theme=dark] .dropotron.level-0:after {
  border-bottom-color: #2a2a2a;
}
html[data-theme=dark] .dropotron.level-0:before {
  border-bottom-color: #444;
}
html[data-theme=dark] #titleBar .toggle:before {
  background: rgba(50, 50, 50, 0.9);
  color: #b0b0b0;
}
html[data-theme=dark] #titleBar .toggle:active:before {
  opacity: 0.7;
}
html[data-theme=dark] #navPanel {
  background: #2a2a2a;
  border-right-color: #444;
  color: #b0b0b0;
}
html[data-theme=dark] #navPanel .link {
  color: #b0b0b0;
  border-top-color: #444;
}
html[data-theme=dark] #navPanel .link.depth-0 {
  color: #e0e0e0;
}
html[data-theme=dark] #navPanel .link:hover {
  color: #4a9eff;
}
html[data-theme=dark] #banner {
  border-top-color: #444;
  border-bottom-color: #444;
  box-shadow: inset 0px -8px 0px 0px #2a2a2a, inset 0px 8px 0px 0px #2a2a2a;
}
html[data-theme=dark] #banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
html[data-theme=dark] #banner > .container {
  position: relative;
  z-index: 2;
}
html[data-theme=dark] ul.divided li {
  border-top-color: #444;
}
html[data-theme=dark] ul.icons > li:before {
  background: #333;
  color: #888;
}
html[data-theme=dark] hr {
  border-top-color: #444;
}
html[data-theme=dark] blockquote {
  border-left-color: #444;
}
html[data-theme=dark] .box.excerpt .date {
  background: #4a9eff;
  color: #fff;
}
html[data-theme=dark] table tbody tr {
  border-top-color: #444;
}
html[data-theme=dark] table thead {
  background: #333;
}
html[data-theme=dark] table tfoot {
  background: #2a2a2a;
  border-top-color: #444;
}
html[data-theme=dark] #copyright {
  border-top-color: #444;
}
html[data-theme=dark] .modal-content {
  border: 2px solid #444;
}
html[data-theme=dark] .hidden, html[data-theme=dark] .unhidden {
  color: inherit;
}
html[data-theme=dark] ::-webkit-input-placeholder {
  color: #888 !important;
}
html[data-theme=dark] :-moz-placeholder {
  color: #888 !important;
}
html[data-theme=dark] ::-moz-placeholder {
  color: #888 !important;
}
html[data-theme=dark] :-ms-input-placeholder {
  color: #888 !important;
}
html[data-theme=dark] * {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
html[data-theme=dark] p, html[data-theme=dark] li, html[data-theme=dark] span {
  color: #e0e0e0;
}
html[data-theme=dark] .publication {
  border-color: #444;
}
html[data-theme=dark] .news-item {
  border-color: #444;
  background: rgba(255, 255, 255, 0.02);
}
html[data-theme=dark] .icon:before {
  color: #b0b0b0;
}
html[data-theme=dark] .team-member {
  background: #2a2a2a !important;
  border-color: #444 !important;
}
html[data-theme=dark] .team-member div {
  color: #888 !important;
}
html[data-theme=dark] #sherbrooke-banner {
  background: #2a2a2a !important;
}
html[data-theme=dark] #features {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
html[data-theme=dark] .box {
  background: #2a2a2a !important;
  border-color: #444 !important;
}

/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.8); /* Black w/ opacity */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close:hover,
.close:focus {
  color: #ff4444;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

/* Animation for modal open/close */
.modal {
  animation-duration: 0.3s;
}

.modal.show {
  animation-name: modalOpen;
}

.modal.hide {
  animation-name: modalClose;
}

@keyframes modalOpen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalClose {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    max-height: 85%;
  }
  .close {
    top: 10px;
    left: auto;
    right: 20px;
    font-size: 30px;
    width: 40px;
    height: 40px;
  }
}
/* Hidden/Unhidden classes for publication summaries */
.hidden {
  display: none;
}

.unhidden {
  display: block;
}

/* Publication thumbnail image sizing - Responsive */

/* Very large screens (> 1680px): 1/3 of available space */
@media screen and (min-width: 1681px) {
  .box.highlight .image.left img,
  .box.post .image.left img {
    max-width: 350px;
    width: 33.333%;
    height: auto;
  }
}

/* Large screens (1280px - 1680px): 1/3 of available space */
@media screen and (min-width: 981px) and (max-width: 1680px) {
  .box.highlight .image.left img,
  .box.post .image.left img {
    max-width: 300px;
    width: 33.333%;
    height: auto;
  }
}

/* Medium screens (980px - 1280px): 1/2 of available space */
@media screen and (min-width: 737px) and (max-width: 980px) {
  .box.highlight .image.left img,
  .box.post .image.left img {
    max-width: 400px;
    width: 50%;
    height: auto;
  }
}

/* Small screens and mobile (< 736px): Full width */
@media screen and (max-width: 736px) {
  .box.highlight .image.left img,
  .box.post .image.left img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}

/* Clearfix for publication content divs to contain floated images */
.box.highlight div[id],
.box.post div[id] {
  overflow: auto;
}

/* Ensure each publication list item clears floats from previous items */
#publications ol li {
  clear: both;
}

/* Ensure each publication box clears floats */
.box.highlight,
.box.post {
  clear: both;
}

/* Main page hero image styling for MAIN.png */
.image.featured img[src*="MAIN.png"] {
  display: block;
  margin: 0 auto;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  max-width: 50%;
  height: auto;
}

/* Responsive sizing for MAIN.png - reduced by factor of 2 */
@media screen and (min-width: 1281px) {
  .image.featured img[src*="MAIN.png"] {
    max-width: 35%;
    height: auto;
  }
}
@media screen and (min-width: 981px) and (max-width: 1280px) {
  .image.featured img[src*="MAIN.png"] {
    max-width: 40%;
    height: auto;
  }
}
@media screen and (min-width: 737px) and (max-width: 980px) {
  .image.featured img[src*="MAIN.png"] {
    max-width: 45%;
    height: auto;
  }
}
/* Container styling for MAIN.png */
.image.featured:has(img[src*="MAIN.png"]) {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  text-align: center;
}

/* Large research mission statement styling */
.research-mission {
  font-size: 1.8em !important;
  line-height: 1.4em !important;
  font-weight: 400 !important;
  color: #666 !important;
  margin: 1.5em 0 0 0 !important;
  text-align: center !important;
  max-width: 90% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  letter-spacing: 1px !important;
}

/* Responsive sizing for research mission */
@media screen and (max-width: 1280px) {
  .research-mission {
    font-size: 1.6em !important;
  }
}
@media screen and (max-width: 980px) {
  .research-mission {
    font-size: 1.4em !important;
    max-width: 95% !important;
  }
}
@media screen and (max-width: 736px) {
  .research-mission {
    font-size: 1.2em !important;
    max-width: 100% !important;
    letter-spacing: 0.5px !important;
  }
}
/* Dark theme support for research mission */
html[data-theme=dark] .research-mission {
  color: #b0b0b0 !important;
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme=light]) .research-mission {
    color: #b0b0b0 !important;
  }
}
/* Mobile footer - comprehensive fix for icon overlap and stretching */
@media screen and (max-width: 736px) {
  /* Social media icons - reduce size and add spacing */
  #footer .footer-social-link {
    margin: 0.4em 0.3em !important;
    display: inline-block !important;
  }
  #footer .footer-social-link i {
    font-size: 2em !important;
  }
  /* Address and email icons - prevent overlap with text */
  #footer .icons li.icon {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    font-size: 15px !important;
    line-height: 1.5em !important;
  }
  #footer .icons li.icon:before {
    display: block !important;
    margin-bottom: 0.5em !important;
    margin-right: 0 !important;
    font-size: 1.3em !important;
  }
  /* Ensure columns stack properly */
  #footer .col-12-small {
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 1.5em !important;
  }
  /* Header spacing */
  #footer h2 {
    font-size: 1.1em !important;
    line-height: 1.4em !important;
  }
}

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

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 8px;
  background: #000;
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  left: 6px;
  top: 7px;
}

/* Theme toggle button */
.theme-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Footer icon sizing */
#footer .icons li.icon {
  font-size: 22px;
}

/* Footer social links alignment */
#footer .col-12 {
  text-align: center;
}

/* Sherbrooke banner styling */
#sherbrooke-banner {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  background: #fff;
}

#sherbrooke-banner > div {
  width: 90%;
  max-width: 1400px;
  height: 450px;
  overflow: hidden;
}

#sherbrooke-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Language switcher */
.language-toggle {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  gap: 0.5em;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 15px;
  border-radius: 25px;
  border: 2px solid #ddd;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.language-toggle a {
  text-decoration: none;
  font-weight: 600;
  color: #777;
  transition: color 0.3s ease;
  font-size: 0.9em;
  letter-spacing: 0.5px;
}

.language-toggle a.active {
  color: #4a9eff;
}

.language-toggle a:hover {
  color: #4a9eff;
}

.language-toggle span {
  color: #ddd;
  font-weight: 300;
}

/* Dark theme language toggle */
html[data-theme=dark] .language-toggle,
@media (prefers-color-scheme: dark) {
  html:not([data-theme=light]) .language-toggle {
    background: rgba(42, 42, 42, 0.9);
    border-color: #444;
  }
  
  html:not([data-theme=light]) .language-toggle a {
    color: #b0b0b0;
  }
  
  html:not([data-theme=light]) .language-toggle a.active {
    color: #4a9eff;
  }
  
  html:not([data-theme=light]) .language-toggle span {
    color: #666;
  }
}

html[data-theme=dark] .language-toggle {
  background: rgba(42, 42, 42, 0.9);
  border-color: #444;
}

html[data-theme=dark] .language-toggle a {
  color: #b0b0b0;
}

html[data-theme=dark] .language-toggle a.active {
  color: #4a9eff;
}

html[data-theme=dark] .language-toggle span {
  color: #666;
}

/* Mobile responsive */
@media screen and (max-width: 736px) {
  .language-toggle {
    top: 10px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    padding: 6px 12px;
    font-size: 0.85em;
    z-index: 10003;
  }

  /* Fix for h3.actions buttons on mobile */
  h3.actions {
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: stretch;
  }

  h3.actions .button {
    display: block;
    width: 100%;
    margin: 0;
    text-align: center;
  }
}

/* Section title styling for proper dark/light theme support */
.section-title {
  color: #333;
  border-bottom: 2px solid #ed786a;
  padding-bottom: 0.5em;
}

.section-heading {
  color: #333;
}

/* Dark theme section titles */
@media (prefers-color-scheme: dark) {
  html:not([data-theme=light]) .section-title {
    color: #f5f5f5;
    border-bottom-color: #4a9eff;
  }

  html:not([data-theme=light]) .section-heading {
    color: #f5f5f5;
  }
}

html[data-theme=dark] .section-title {
  color: #f5f5f5;
  border-bottom-color: #4a9eff;
}

html[data-theme=dark] .section-heading {
  color: #f5f5f5;
}

/* Footer contact icons styling */
#footer .icon.fa-home,
#footer .icon.fa-at {
  font-size: 22px;
}

/* Team page styles */
.team-member {
  text-align: center;
  margin-bottom: 2em;
  padding: 1em;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.team-member:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1em auto;
  display: block;
}

.team-photo-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1em auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border: 2px solid #ddd;
  font-size: 0.9em;
  color: #777;
  text-align: center;
  padding: 1em;
  line-height: 1.3;
}

.team-photo-placeholder.phd-placeholder {
  background: rgba(232, 245, 233, 0.3);
  border-color: #228B22;
  color: #228B22;
}

.team-photo-placeholder.masters-placeholder {
  background: rgba(255, 243, 224, 0.3);
  border-color: #FF8C00;
  color: #FF8C00;
}

.team-photo-placeholder.undergrad-placeholder {
  background: rgba(243, 229, 245, 0.3);
  border-color: #9932CC;
  color: #9932CC;
}

.role-icon {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.pi { color: #8B0000; }
.postdoc { color: #4169E1; }
.phd { color: #228B22; }
.masters { color: #FF8C00; }
.undergrad { color: #9932CC; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  margin: 2em 0;
}

@media (max-width: 980px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Dark theme team page adjustments */
@media (prefers-color-scheme: dark) {
  html:not([data-theme=light]) .team-member {
    border-color: #444;
  }

  html:not([data-theme=light]) .team-member:hover {
    box-shadow: 0 4px 8px rgba(255,255,255,0.1);
  }

  html:not([data-theme=light]) .team-photo-placeholder {
    background: #333;
    border-color: #555;
    color: #aaa;
  }
}

html[data-theme=dark] .team-member {
  border-color: #444;
}

html[data-theme=dark] .team-member:hover {
  box-shadow: 0 4px 8px rgba(255,255,255,0.1);
}

html[data-theme=dark] .team-photo-placeholder {
  background: #333;
  border-color: #555;
  color: #aaa;
}

/* Research focus area images - consistent sizing */
.box > a > img:not(.modal-content):not(.myBtn_multi),
.box a.image img:not(.modal-content):not(.myBtn_multi) {
  max-height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* Preserve inline badge/icon images - size them to match text height */
.box h3 img[height="20"],
.box header img[height="20"],
.box h3 a img,
.box header h3 a img {
  width: 20px !important;
  height: 20px !important;
  max-height: 20px !important;
  display: inline !important;
  vertical-align: middle !important;
  margin-left: 0.5em !important;
}

/* Preserve thumbnail images at their natural aspect ratio */
.box .myBtn_multi {
  width: auto !important;
  max-height: none !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Modal content images should fit within viewport */
.modal-content {
  width: auto !important;
  max-width: 90vw !important;
  max-height: 90vh !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Publication citation spacing - larger gaps between elements */
.box .hidden > i,
.box .hidden > b {
  margin-left: 0.75em;
}

.box .hidden > a[href*="doi"] {
  margin-left: 0.75em;
}

/* Mobile Responsiveness Fixes */

/* 1. Banner image responsive on mobile */
@media screen and (max-width: 736px) {
  #sherbrooke-banner div {
    height: 250px !important;
    width: 100% !important;
  }
}

/* 2. Prevent page numbers from being detected as phone numbers */
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
  color: inherit;
}

/* Disable automatic phone number detection styling */
.box .hidden {
  -webkit-text-size-adjust: none;
}

/* 3. Make publication figures responsive on mobile */
@media screen and (max-width: 736px) {
  .box .image.left,
  .box .image.right {
    float: none !important;
    margin: 0 0 2em 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .box .image.left img,
  .box .image.right img {
    width: 100% !important;
    height: auto !important;
  }
}

/* 4. Fix year overlap on news page mobile */
@media screen and (max-width: 736px) {
  .divided header h2 {
    margin-bottom: 1.5em !important;
    padding-bottom: 0.5em !important;
  }

  .divided header h2 strong {
    display: block;
    padding: 0.5em 0;
  }
}

/* Light Theme Text Contrast Improvements */
/* Improve readability by using darker text colors in light theme */

html[data-theme=light] body,
html[data-theme=light] p,
html[data-theme=light] li,
html[data-theme=light] span,
html:not([data-theme=dark]) body,
html:not([data-theme=dark]) p,
html:not([data-theme=dark]) li,
html:not([data-theme=dark]) span {
  color: #1a1a1a !important;
}

/* Muted text should still be darker than original */
html[data-theme=light] .text-muted,
html:not([data-theme=dark]) .text-muted {
  color: #555 !important;
}

/* Header paragraph text */
html[data-theme=light] #header p,
html:not([data-theme=dark]) #header p {
  color: #444 !important;
}

/* Box content text */
html[data-theme=light] .box p,
html[data-theme=light] .box li,
html:not([data-theme=dark]) .box p,
html:not([data-theme=dark]) .box li {
  color: #2a2a2a !important;
}

/* Publication citation text */
html[data-theme=light] .box .hidden,
html:not([data-theme=dark]) .box .hidden {
  color: #2a2a2a !important;
}

/* News item text */
html[data-theme=light] .box.excerpt p,
html:not([data-theme=dark]) .box.excerpt p {
  color: #2a2a2a !important;
}

/* Navigation text */
html[data-theme=light] #nav > ul > li > a,
html:not([data-theme=dark]) #nav > ul > li > a {
  color: #555 !important;
}

/* Team member bio text */
html[data-theme=light] .team-member p,
html[data-theme=light] .team-member div,
html:not([data-theme=dark]) .team-member p,
html:not([data-theme=dark]) .team-member div {
  color: #2a2a2a !important;
}

/* Footer text */
html[data-theme=light] #footer p,
html[data-theme=light] #footer li,
html:not([data-theme=dark]) #footer p,
html:not([data-theme=dark]) #footer li {
  color: #2a2a2a !important;
}


/* CRITICAL FIX: Force navigation text to normal case - highest specificity override */
nav#nav > ul > li > a,
nav#nav > ul > li > a > span,
#nav > ul > li > a,
#nav > ul > li > a > span {
  text-transform: none !important;
  font-variant: normal !important;
}
