<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
.alert {
  background-color: #70a6fd;
  border: 1px solid blue;
  color: darkblue;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  width: 100%;
}
.alert.alert-success {
  background-color: lightgreen;
  color: darkgreen;
  border-color: darkgreen;
}
.alert.alert-danger {
  background-color: lightpink;
  color: darkred;
  border-color: darkred;
}

.icon {
  line-height: 0.1em;
  height: 0.9em;
  vertical-align: -0.2em;
}
.icon.icon-70pc {
  height: 0.7em;
  vertical-align: -0.1em;
}
.icon.icon-80pc {
  height: 0.8em;
}
.icon.icon-100pc {
  height: 1em;
}
.icon.icon-110pc {
  height: 1.1em;
}
.icon.icon-120pc {
  height: 1.2em;
}
.icon.icon-150pc {
  height: 1.5em;
}
.icon.icon-200pc {
  height: 2em;
}
.icon.spin {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
table {
  font-size: 0.9em;
  width: 100%;
  border-spacing: 0;
  margin-top: 2em;
}
table thead {
  background-color: #466EB4;
  color: white;
}
table tbody {
  font-size: 0.9em;
}
table th {
  text-align: left;
  padding: 0.2em 0.4em;
}
table th.sortable {
  cursor: pointer;
  position: relative;
}
table th.sortable.sort-asc::after, table th.sortable.sort-desc::after {
  position: absolute;
  right: 5px;
}
table th.sortable.sort-asc::after {
  content: "⏷";
}
table th.sortable.sort-desc::after {
  content: "⏶";
}
table th.td-1pc, table td.td-1pc {
  width: 1%;
}
table th.td-3pc, table td.td-3pc {
  width: 3%;
}
table th.td-5pc, table td.td-5pc {
  width: 5%;
}
table th.td-8pc, table td.td-8pc {
  width: 8%;
}
table th.td-10pc, table td.td-10pc {
  width: 10%;
}
table th.td-15pc, table td.td-15pc {
  width: 15%;
}
table th.td-20pc, table td.td-20pc {
  width: 20%;
}
table th.td-25pc, table td.td-25pc {
  width: 25%;
}
table th.td-30pc, table td.td-30pc {
  width: 30%;
}
table th.td-40pc, table td.td-40pc {
  width: 40%;
}
table th.td-50pc, table td.td-50pc {
  width: 50%;
}
table th.td-60pc, table td.td-60pc {
  width: 60%;
}
table th.td-70pc, table td.td-70pc {
  width: 70%;
}
table th.small, table td.small {
  font-size: 0.8em;
}
table th.strong, table td.strong {
  font-weight: bold;
  color: black;
}
table th.centered, table td.centered {
  text-align: center;
}
table tr:nth-child(even) {
  background-color: #b6d8fd;
}
table td {
  font-size: 1em;
  padding: 0.2em 0.4em;
}
table td.table-loading {
  padding: 2em 2em;
  text-align: center;
  font-size: 2em;
}
table td.no-data {
  padding: 2em 2em;
  text-align: center;
  font-size: 1.5em;
}
table td.td-tools {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
table tfoot td {
  padding: 2em 0 1em 0;
}
table tfoot td div.tfoot-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
table tfoot td div.tfoot-container div {
  padding: 0.5em 0;
}
table tfoot td div.tfoot-container ul {
  list-style: none;
  margin: 0;
}
table tfoot td div.tfoot-container ul li {
  border: 1px solid #466EB4;
  border-left: none;
  padding: 0.5em;
  display: inline-block;
  min-width: 1em;
  text-align: center;
}
table tfoot td div.tfoot-container ul li:first-child {
  border-radius: 0.3em 0 0 0.3em;
  border-left: 1px solid #466EB4;
}
table tfoot td div.tfoot-container ul li:last-child {
  border-radius: 0 0.3em 0.3em 0;
}
table tfoot td div.tfoot-container ul li.current-page, table tfoot td div.tfoot-container ul li.link:hover {
  background-color: #466EB4;
  color: white;
}
table tfoot td div.tfoot-container ul li.link:hover {
  cursor: pointer;
}
table tfoot td div.tfoot-container .pagesize-selector {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  margin: 0;
}
table tfoot td div.tfoot-container .pagesize-selector div {
  padding: 0;
}
table tfoot td div.tfoot-container .pagesize-selector input {
  width: 3em;
  font-size: 1em;
  border-radius: 5px;
  padding: 3px 0.5em;
}
table tfoot .stimulus-select input.main-select ~ .options-select {
  top: 2em;
}

.table-container {
  position: relative;
}
.table-container div.loader {
  position: absolute;
  color: #7c7c7c;
  font-size: 2.5em;
  text-align: center;
  background-color: rgba(245, 245, 245, 0.8);
  padding-top: 1em;
  min-height: 4em;
  line-height: 1.5em;
}
.table-container table, .table-container div.loader {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.display-none {
  display: none;
}

table.table-search {
  margin-top: 3em;
}
table.table-search thead {
  background-color: #AcAcAc;
}
table.table-search thead th {
  padding: 6px;
}
table.table-search tbody {
  font-size: 0.85em;
  min-height: 10em;
}
table.table-search tbody td {
  padding: 3px 5px;
  margin: 0;
}
table.table-search tbody td a {
  text-decoration: none;
}
table.table-search tbody td.no-data {
  font-size: 1.2em;
  padding: 2em;
}

.frame {
  border: 1px solid black;
  border-radius: 3px;
}
.frame .frame-header {
  background-color: black;
  color: white;
  padding: 0.2em 0.5em;
}
.frame .frame-content {
  padding: 0.2em 0.5em;
}

.stimulus-select {
  position: relative;
}
.stimulus-select input:focus.main-select {
  color: darkgrey;
  font-style: italic;
}
.stimulus-select select {
  display: none;
}
.stimulus-select input.main-select ~ .options-select {
  position: absolute;
  display: none;
  top: 4.3em;
  background-color: whitesmoke;
  z-index: 20;
  border-radius: 0 0 0.5em 0.5em;
  box-shadow: 2px 2px 3px grey;
  max-height: 20em;
  overflow-y: scroll;
}
.stimulus-select input.main-select ~ .options-select.show {
  display: block;
}
.stimulus-select input.main-select ~ .options-select .option-select {
  color: black;
  padding: 0.2em 1em;
  cursor: pointer;
  min-height: 1.2em;
}
.stimulus-select input.main-select ~ .options-select .option-select:hover {
  background-color: grey;
  color: white;
}
.stimulus-select input.main-select ~ .options-select .option-select:last-child {
  border-radius: 0 0 0.5em 0.5em;
}
.stimulus-select input.main-select ~ .options-select .option-select.select-levels-root {
  font-weight: bold;
  font-style: italic;
}
.stimulus-select input.main-select ~ .options-select .option-select.select-levels-child {
  font-size: 0.9em;
  padding-left: 2em;
}

.centered-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

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

form {
  background-color: #f1f1f1;
  border: 1px solid #d3d3d3;
  margin: 3em auto;
  padding: 1em;
  width: 90%;
}
form .form-row {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.1em;
}
form .form-row label {
  display: inline-block;
  width: 40%;
}
form .form-row input, form .form-row textarea {
  border: 1px solid #d3d3d3;
  border-radius: 0.3em;
  font-size: 0.8em;
  outline: 0;
  padding: 0.2em 0.5em;
  width: 60%;
}
form .form-row input.full-width, form .form-row textarea.full-width {
  width: 100%;
}
form .form-error {
  margin-bottom: 0.1em;
  height: fit-content;
  margin-top: 0.3em;
}
form .form-error ul {
  margin-top: 0.2em;
  list-style-type: none;
  background-color: lightpink;
  border: darkred 1px solid;
  border-radius: 0.3em;
  color: darkred;
  padding: 0.2em 0.5em;
  font-size: 0.95em;
  text-align: justify;
}
form .form-button-row {
  display: flex;
  justify-content: space-around;
  padding: 1em;
  text-align: center;
}
form textarea.small {
  height: 6em;
}
form textarea.medium {
  height: 12em;
}
form textarea.big {
  height: 25em;
}

form.form-medium {
  width: 60%;
}

form.form-small {
  width: 30em;
}

button {
  background-color: #466EB4;
  border: none;
  border-radius: 0.3em;
  color: #fff;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  margin: 0.1em 0.2em;
  padding: 0.5em 2em;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-light-italic-cyrillic-ext-bdKjaeC.woff2") format("woff2");
  unicode-range: "U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-regular-italic-cyrillic-ext-MEBEvmx.woff2") format("woff2");
  unicode-range: "U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-medium-italic-cyrillic-ext-HeKjMTs.woff2") format("woff2");
  unicode-range: "U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-semi-bold-italic-cyrillic-ext-ENqnI1W.woff2") format("woff2");
  unicode-range: "U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-bold-italic-cyrillic-ext-3_Ui5TT.woff2") format("woff2");
  unicode-range: "U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-light-normal-cyrillic-ext-Z4Cy6WM.woff2") format("woff2");
  unicode-range: "U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-regular-normal-cyrillic-ext-uqwvDzX.woff2") format("woff2");
  unicode-range: "U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-medium-normal-cyrillic-ext-J7ue0Nm.woff2") format("woff2");
  unicode-range: "U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-semi-bold-normal-cyrillic-ext-eGQbBq9.woff2") format("woff2");
  unicode-range: "U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-bold-normal-cyrillic-ext-sQiCxZr.woff2") format("woff2");
  unicode-range: "U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-light-italic-cyrillic-BpzRprR.woff2") format("woff2");
  unicode-range: "U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-regular-italic-cyrillic-EB9v2sr.woff2") format("woff2");
  unicode-range: "U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-medium-italic-cyrillic-WFROX6B.woff2") format("woff2");
  unicode-range: "U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-semi-bold-italic-cyrillic-N7I0d1z.woff2") format("woff2");
  unicode-range: "U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-bold-italic-cyrillic-ploQoeV.woff2") format("woff2");
  unicode-range: "U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-light-normal-cyrillic-IgsKZcg.woff2") format("woff2");
  unicode-range: "U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-regular-normal-cyrillic-_4Soc2g.woff2") format("woff2");
  unicode-range: "U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-medium-normal-cyrillic-SAIfZ61.woff2") format("woff2");
  unicode-range: "U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-semi-bold-normal-cyrillic-4knyNqh.woff2") format("woff2");
  unicode-range: "U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-bold-normal-cyrillic-nBRQJyD.woff2") format("woff2");
  unicode-range: "U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-light-italic-vietnamese-_X-ZD7f.woff2") format("woff2");
  unicode-range: "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-regular-italic-vietnamese-P6qbida.woff2") format("woff2");
  unicode-range: "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-medium-italic-vietnamese-r4HQjEp.woff2") format("woff2");
  unicode-range: "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-semi-bold-italic-vietnamese-R87MtVl.woff2") format("woff2");
  unicode-range: "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-bold-italic-vietnamese-yIUsLmQ.woff2") format("woff2");
  unicode-range: "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-light-normal-vietnamese-xg6-GP4.woff2") format("woff2");
  unicode-range: "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-regular-normal-vietnamese-GYOhH9W.woff2") format("woff2");
  unicode-range: "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-medium-normal-vietnamese-SduA11E.woff2") format("woff2");
  unicode-range: "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-semi-bold-normal-vietnamese-Tl6yDNO.woff2") format("woff2");
  unicode-range: "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-bold-normal-vietnamese-3OyYMtE.woff2") format("woff2");
  unicode-range: "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-light-italic-latin-ext-_hnYFmR.woff2") format("woff2");
  unicode-range: "U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-regular-italic-latin-ext-anZDip8.woff2") format("woff2");
  unicode-range: "U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-medium-italic-latin-ext-MCa5z_H.woff2") format("woff2");
  unicode-range: "U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-semi-bold-italic-latin-ext-mLaEhvz.woff2") format("woff2");
  unicode-range: "U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-bold-italic-latin-ext-bydN7r4.woff2") format("woff2");
  unicode-range: "U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-light-normal-latin-ext-LmEW2-K.woff2") format("woff2");
  unicode-range: "U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-regular-normal-latin-ext-7VxA0OK.woff2") format("woff2");
  unicode-range: "U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-medium-normal-latin-ext-L8D-Zlf.woff2") format("woff2");
  unicode-range: "U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-semi-bold-normal-latin-ext-FecwPfw.woff2") format("woff2");
  unicode-range: "U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-bold-normal-latin-ext-Kjqgvsu.woff2") format("woff2");
  unicode-range: "U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-light-italic-latin-EkMZs1k.woff2") format("woff2");
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-regular-italic-latin-PNpUXdj.woff2") format("woff2");
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-medium-italic-latin-pM-d9G1.woff2") format("woff2");
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-semi-bold-italic-latin-OFABmme.woff2") format("woff2");
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-bold-italic-latin-Kkap9Iu.woff2") format("woff2");
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-light-normal-latin-TJNDeHn.woff2") format("woff2");
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-regular-normal-latin-zYEbOgd.woff2") format("woff2");
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-medium-normal-latin-0Jcu3LB.woff2") format("woff2");
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-semi-bold-normal-latin-qq0WYkC.woff2") format("woff2");
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond/cormorant-garamond-bold-normal-latin-iAfxKcA.woff2") format("woff2");
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
@font-face {
  font-family: "Della Respira";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/della-respira/della-respira-regular-normal-latin-rjh_TaU.woff2") format("woff2");
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos/tinos-regular-italic-cyrillic-ext-JcK8ufC.woff2") format("woff2");
  unicode-range: "U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F";
}
@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos/tinos-bold-italic-cyrillic-ext-9Q1yRAY.woff2") format("woff2");
  unicode-range: "U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F";
}
@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos/tinos-regular-normal-cyrillic-ext-4OGW2XC.woff2") format("woff2");
  unicode-range: "U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F";
}
@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos/tinos-bold-normal-cyrillic-ext-g4gY5zU.woff2") format("woff2");
  unicode-range: "U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F";
}
@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos/tinos-regular-italic-cyrillic-ElIDPSC.woff2") format("woff2");
  unicode-range: "U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116";
}
@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos/tinos-bold-italic-cyrillic-XB4kVhE.woff2") format("woff2");
  unicode-range: "U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116";
}
@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos/tinos-regular-normal-cyrillic-SEzaqTj.woff2") format("woff2");
  unicode-range: "U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116";
}
@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos/tinos-bold-normal-cyrillic-p2spX4r.woff2") format("woff2");
  unicode-range: "U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116";
}
@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos/tinos-regular-italic-greek-ext-zGxaAkx.woff2") format("woff2");
  unicode-range: "U+1F00-1FFF";
}
@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos/tinos-bold-italic-greek-ext-zQ8JGsA.woff2") format("woff2");
  unicode-range: "U+1F00-1FFF";
}
@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos/tinos-regular-normal-greek-ext-npf2bn1.woff2") format("woff2");
  unicode-range: "U+1F00-1FFF";
}
@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos/tinos-bold-normal-greek-ext-TwuMLbd.woff2") format("woff2");
  unicode-range: "U+1F00-1FFF";
}
@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos/tinos-regular-italic-greek-jZ445n1.woff2") format("woff2");
  unicode-range: "U+0370-03FF";
}
@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos/tinos-bold-italic-greek-hUBhyRT.woff2") format("woff2");
  unicode-range: "U+0370-03FF";
}
@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos/tinos-regular-normal-greek-iNBisD6.woff2") format("woff2");
  unicode-range: "U+0370-03FF";
}
@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos/tinos-bold-normal-greek-aK0ODjR.woff2") format("woff2");
  unicode-range: "U+0370-03FF";
}
@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos/tinos-regular-italic-hebrew-5EBG7ZY.woff2") format("woff2");
  unicode-range: "";
}
@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos/tinos-bold-italic-hebrew-1F44qJL.woff2") format("woff2");
  unicode-range: "";
}
@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos/tinos-regular-normal-hebrew-5CpJxN4.woff2") format("woff2");
  unicode-range: "";
}
@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos/tinos-bold-normal-hebrew-qxq0Xfm.woff2") format("woff2");
  unicode-range: "";
}
@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos/tinos-regular-italic-vietnamese-nCPio5v.woff2") format("woff2");
  unicode-range: "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB";
}
@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos/tinos-bold-italic-vietnamese-pe-TCvS.woff2") format("woff2");
  unicode-range: "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB";
}
@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos/tinos-regular-normal-vietnamese-CKS_Goq.woff2") format("woff2");
  unicode-range: "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB";
}
@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos/tinos-bold-normal-vietnamese-xO5pg7x.woff2") format("woff2");
  unicode-range: "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB";
}
@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos/tinos-regular-italic-latin-ext-i-bKMfT.woff2") format("woff2");
  unicode-range: "U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF";
}
@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos/tinos-bold-italic-latin-ext-OQBOTMM.woff2") format("woff2");
  unicode-range: "U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF";
}
@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos/tinos-regular-normal-latin-ext-a7HBApN.woff2") format("woff2");
  unicode-range: "U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF";
}
@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos/tinos-bold-normal-latin-ext-_kXuboZ.woff2") format("woff2");
  unicode-range: "U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF";
}
@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos/tinos-regular-italic-latin-mCwDBbn.woff2") format("woff2");
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos/tinos-bold-italic-latin-gyjOc_c.woff2") format("woff2");
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos/tinos-regular-normal-latin-_S1hQ95.woff2") format("woff2");
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos/tinos-bold-normal-latin-4-gTsT6.woff2") format("woff2");
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
.font-cormorant-garamond {
  font-family: "Cormorant Garamond", serif;
}

.font-della-respira {
  font-family: "Della Respira", serif;
}

.font-tinos {
  font-family: "Tinos", serif;
}

.dropdown {
  position: relative;
  display: inline-block;
  padding-top: 0.1em;
}
.dropdown ul {
  display: none;
  position: absolute;
  background-color: #466EB4;
  color: #DDDDDD;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 10;
  right: -10px;
  list-style: none;
  font-size: 1.1rem;
  padding: 10px 0 0 0;
  margin: 0;
}
.dropdown ul li {
  white-space: nowrap;
  padding: 10px 15px;
  margin: 0;
}
.dropdown ul li:hover {
  background-color: #444444;
}
.dropdown ul li:hover a {
  color: #FFFFFF;
}
.dropdown ul li.admin {
  background-color: #8f1600;
}
.dropdown ul li a {
  display: block;
  color: #DDDDDD;
  width: 100%;
  text-decoration: none;
}
.dropdown:hover ul {
  display: block;
}

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

div.common-page {
  font-size: 1.3em;
}
div.common-page header {
  background-color: #466EB4;
  font-family: "Della Respira", serif;
  color: white;
  font-size: 2em;
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 0.3em 2em;
}
div.common-page header .title {
  width: 70%;
  text-align: center;
  margin: 0;
}
div.common-page header a {
  color: white;
  text-decoration: none;
}
div.common-page header a:hover {
  color: lightblue;
}
div.common-page section.common-page {
  width: 100%;
}
@media (min-width: 768px) {
  div.common-page section.common-page {
    width: 768px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  div.common-page section.common-page {
    width: 1024px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  div.common-page section.common-page {
    width: 1200px;
    margin: 0 auto;
  }
}
@media (min-width: 1600px) {
  div.common-page section.common-page {
    width: 1600px;
    margin: 0 auto;
  }
}
div.common-page footer {
  background-color: black;
  color: white;
  text-align: center;
  font-size: 0.8em;
  padding: 0 1em;
}
div.common-page footer a {
  color: white;
  text-decoration: none;
}
div.common-page footer a:hover {
  color: lightblue;
  text-decoration: underline;
}
div.common-page h1 {
  font-family: "Cormorant Garamond";
}

/* latin */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/roboto/roboto-v32-latin-italic-100-bpPSSOS.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/roboto/roboto-v32-latin-italic-300-w4Sq9Io.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/roboto/roboto-v32-latin-italic-400-_PyzxVQ.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/roboto/roboto-v32-latin-italic-500-l0PQe1K.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/roboto/roboto-v32-latin-italic-700-hg3Ta4u.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/roboto/roboto-v32-latin-italic-900-YGu8nkb.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/roboto/roboto-v32-latin-normal-100-r9MOsGF.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/roboto/roboto-v32-latin-normal-300-ODqWJww.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/roboto/roboto-v32-latin-normal-400-mmDBXp4.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/roboto/roboto-v32-latin-normal-500-pdDltQf.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/roboto/roboto-v32-latin-normal-700-3tYcndW.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/roboto/roboto-v32-latin-normal-900-ofaN26T.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body .livres-manager nav {
  background-color: #70a6fd;
  color: white;
}
body .livres-manager nav a {
  color: white;
  text-decoration: none;
}
body .livres-manager nav a:hover {
  text-shadow: whitesmoke 2px 0 5px;
}
body .livres-manager header .submenu {
  background-color: whitesmoke;
  border-bottom: 3px solid darkblue;
}
body .livres-manager header .submenu a, body .livres-manager header .submenu a:visited {
  color: darkblue;
  text-decoration: none;
}
body .livres-manager header .submenu ul {
  display: flex;
  flex-direction: row;
}
body .livres-manager header .submenu ul li {
  padding: 0 0.5em;
}
body .livres-manager nav, body .livres-manager header .submenu {
  padding: 0.2em 0.5em;
}
body .livres-manager nav ul, body .livres-manager header .submenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
}
body .livres-manager {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}
body .livres-manager section {
  margin: 0 1em;
}

ul.periodes-links {
  list-style: none;
  display: flex;
  flex-direction: row;
}
ul.periodes-links li {
  margin: 0 0.5em;
  padding: 0.2em 0.5em;
  border: 1px solid darkblue;
  border-radius: 3px;
  background-color: darkblue;
  color: white;
}
ul.periodes-links li.selected {
  border-color: darkgreen;
  background-color: darkgreen;
}
ul.periodes-links li:hover {
  background-color: lightcyan;
  color: darkblue;
  cursor: pointer;
}
ul.periodes-links li:hover a {
  color: darkblue;
}
ul.periodes-links li a {
  text-decoration: none;
  color: white;
}

table thead {
  padding-bottom: 5px;
}
table thead tr.row-summary {
  color: black;
  font-weight: bold;
}

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

body {
  background-color: white;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-family: "Tinos", serif;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: "Cormorant Garamond", serif;
}

/*# sourceMappingURL=app.output.css.map */
</pre></body></html>