

/* Copyright 2014 Mozilla Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

.textLayer {
  position: absolute;
  text-align: initial;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0.2;
  line-height: 1;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

.textLayer span,
.textLayer br {
  color: transparent;
  position: absolute;
  white-space: pre;
  cursor: text;
  transform-origin: 0% 0%;
}

/* Only necessary in Google Chrome, see issue 14205, and most unfortunately
 * the problem doesn't show up in "text" reference tests. */
.textLayer span.markedContent {
  top: 0;
  height: 0;
}

.textLayer .highlight {
  margin: -1px;
  padding: 1px;
  background-color: rgba(180, 0, 170, 1);
  border-radius: 4px;
}

.textLayer .highlight.appended {
  position: initial;
}

.textLayer .highlight.begin {
  border-radius: 4px 0 0 4px;
}

.textLayer .highlight.end {
  border-radius: 0 4px 4px 0;
}

.textLayer .highlight.middle {
  border-radius: 0;
}

.textLayer .highlight.selected {
  background-color: rgba(0, 100, 0, 1);
}

.textLayer ::-moz-selection {
  background: rgba(0, 0, 255, 1);
}

.textLayer ::selection {
  background: rgba(0, 0, 255, 1);
}

/* Avoids https://github.com/mozilla/pdf.js/issues/13840 in Chrome */
.textLayer br::-moz-selection {
  background: transparent;
}
.textLayer br::selection {
  background: transparent;
}

.textLayer .endOfContent {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  bottom: 0;
  z-index: -1;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.textLayer .endOfContent.active {
  top: 0;
}


:root {
  --annotation-unfocused-field-background: url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");
}

.annotationLayer section {
  position: absolute;
  text-align: initial;
}

.annotationLayer .linkAnnotation > a,
.annotationLayer .buttonWidgetAnnotation.pushButton > a {
  position: absolute;
  font-size: 1em;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.annotationLayer .buttonWidgetAnnotation.pushButton > canvas {
  position: relative;
  top: 0;
  left: 0;
  z-index: -1;
}

.annotationLayer .linkAnnotation > a:hover,
.annotationLayer .buttonWidgetAnnotation.pushButton > a:hover {
  opacity: 0.2;
  background: rgba(255, 255, 0, 1);
  box-shadow: 0 2px 10px rgba(255, 255, 0, 1);
}

.annotationLayer .textAnnotation img {
  position: absolute;
  cursor: pointer;
}

.annotationLayer .textWidgetAnnotation input,
.annotationLayer .textWidgetAnnotation textarea,
.annotationLayer .choiceWidgetAnnotation select,
.annotationLayer .buttonWidgetAnnotation.checkBox input,
.annotationLayer .buttonWidgetAnnotation.radioButton input {
  background-image: var(--annotation-unfocused-field-background);
  border: 1px solid transparent;
  box-sizing: border-box;
  font-size: 9px;
  height: 100%;
  margin: 0;
  padding: 0 3px;
  vertical-align: top;
  width: 100%;
}

.annotationLayer .choiceWidgetAnnotation select option {
  padding: 0;
}

.annotationLayer .buttonWidgetAnnotation.radioButton input {
  border-radius: 50%;
}

.annotationLayer .textWidgetAnnotation textarea {
  font: message-box;
  font-size: 9px;
  resize: none;
}

.annotationLayer .textWidgetAnnotation input[disabled],
.annotationLayer .textWidgetAnnotation textarea[disabled],
.annotationLayer .choiceWidgetAnnotation select[disabled],
.annotationLayer .buttonWidgetAnnotation.checkBox input[disabled],
.annotationLayer .buttonWidgetAnnotation.radioButton input[disabled] {
  background: none;
  border: 1px solid transparent;
  cursor: not-allowed;
}

.annotationLayer .textWidgetAnnotation input:hover,
.annotationLayer .textWidgetAnnotation textarea:hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation.checkBox input:hover,
.annotationLayer .buttonWidgetAnnotation.radioButton input:hover {
  border: 1px solid rgba(0, 0, 0, 1);
}

.annotationLayer .textWidgetAnnotation input:focus,
.annotationLayer .textWidgetAnnotation textarea:focus,
.annotationLayer .choiceWidgetAnnotation select:focus {
  background: none;
  border: 1px solid transparent;
}

.annotationLayer .textWidgetAnnotation input :focus,
.annotationLayer .textWidgetAnnotation textarea :focus,
.annotationLayer .choiceWidgetAnnotation select :focus,
.annotationLayer .buttonWidgetAnnotation.checkBox :focus,
.annotationLayer .buttonWidgetAnnotation.radioButton :focus {
  background-image: none;
  background-color: transparent;
  outline: auto;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after,
.annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before {
  background-color: rgba(0, 0, 0, 1);
  content: "";
  display: block;
  position: absolute;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after {
  height: 80%;
  left: 45%;
  width: 1px;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before {
  transform: rotate(45deg);
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after {
  transform: rotate(-45deg);
}

.annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before {
  border-radius: 50%;
  height: 50%;
  left: 30%;
  top: 20%;
  width: 50%;
}

.annotationLayer .textWidgetAnnotation input.comb {
  font-family: monospace;
  padding-left: 2px;
  padding-right: 0;
}

.annotationLayer .textWidgetAnnotation input.comb:focus {
  /*
   * Letter spacing is placed on the right side of each character. Hence, the
   * letter spacing of the last character may be placed outside the visible
   * area, causing horizontal scrolling. We avoid this by extending the width
   * when the element has focus and revert this when it loses focus.
   */
  width: 103%;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input,
.annotationLayer .buttonWidgetAnnotation.radioButton input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
}

.annotationLayer .popupWrapper {
  position: absolute;
  width: 20em;
}

.annotationLayer .popup {
  position: absolute;
  z-index: 200;
  max-width: 20em;
  background-color: rgba(255, 255, 153, 1);
  box-shadow: 0 2px 5px rgba(136, 136, 136, 1);
  border-radius: 2px;
  padding: 6px;
  margin-left: 5px;
  cursor: pointer;
  font: message-box;
  font-size: 9px;
  white-space: normal;
  word-wrap: break-word;
}

.annotationLayer .popup > * {
  font-size: 9px;
}

.annotationLayer .popup h1 {
  display: inline-block;
}

.annotationLayer .popupDate {
  display: inline-block;
  margin-left: 5px;
}

.annotationLayer .popupContent {
  border-top: 1px solid rgba(51, 51, 51, 1);
  margin-top: 2px;
  padding-top: 2px;
}

.annotationLayer .richText > * {
  white-space: pre-wrap;
}

.annotationLayer .highlightAnnotation,
.annotationLayer .underlineAnnotation,
.annotationLayer .squigglyAnnotation,
.annotationLayer .strikeoutAnnotation,
.annotationLayer .freeTextAnnotation,
.annotationLayer .lineAnnotation svg line,
.annotationLayer .squareAnnotation svg rect,
.annotationLayer .circleAnnotation svg ellipse,
.annotationLayer .polylineAnnotation svg polyline,
.annotationLayer .polygonAnnotation svg polygon,
.annotationLayer .caretAnnotation,
.annotationLayer .inkAnnotation svg polyline,
.annotationLayer .stampAnnotation,
.annotationLayer .fileAttachmentAnnotation {
  cursor: pointer;
}


:root {
  --xfa-unfocused-field-background: url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");
}

.xfaLayer .highlight {
  margin: -1px;
  padding: 1px;
  background-color: rgba(239, 203, 237, 1);
  border-radius: 4px;
}

.xfaLayer .highlight.appended {
  position: initial;
}

.xfaLayer .highlight.begin {
  border-radius: 4px 0 0 4px;
}

.xfaLayer .highlight.end {
  border-radius: 0 4px 4px 0;
}

.xfaLayer .highlight.middle {
  border-radius: 0;
}

.xfaLayer .highlight.selected {
  background-color: rgba(203, 223, 203, 1);
}

.xfaLayer ::-moz-selection {
  background: rgba(0, 0, 255, 1);
}

.xfaLayer ::selection {
  background: rgba(0, 0, 255, 1);
}

.xfaPage {
  overflow: hidden;
  position: relative;
}

.xfaContentarea {
  position: absolute;
}

.xfaPrintOnly {
  display: none;
}

.xfaLayer {
  position: absolute;
  text-align: initial;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  line-height: 1.2;
}

.xfaLayer * {
  color: inherit;
  font: inherit;
  font-style: inherit;
  font-weight: inherit;
  font-kerning: inherit;
  letter-spacing: -0.01px;
  text-align: inherit;
  text-decoration: inherit;
  box-sizing: border-box;
  background-color: transparent;
  padding: 0;
  margin: 0;
  pointer-events: auto;
  line-height: inherit;
}

.xfaLayer div {
  pointer-events: none;
}

.xfaLayer svg {
  pointer-events: none;
}

.xfaLayer svg * {
  pointer-events: none;
}

.xfaLayer a {
  color: blue;
}

.xfaRich li {
  margin-left: 3em;
}

.xfaFont {
  color: black;
  font-weight: normal;
  font-kerning: none;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0;
  text-decoration: none;
  vertical-align: 0;
}

.xfaCaption {
  overflow: hidden;
  flex: 0 0 auto;
}

.xfaCaptionForCheckButton {
  overflow: hidden;
  flex: 1 1 auto;
}

.xfaLabel {
  height: 100%;
  width: 100%;
}

.xfaLeft {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.xfaRight {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.xfaLeft > .xfaCaption,
.xfaLeft > .xfaCaptionForCheckButton,
.xfaRight > .xfaCaption,
.xfaRight > .xfaCaptionForCheckButton {
  max-height: 100%;
}

.xfaTop {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.xfaBottom {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}

.xfaTop > .xfaCaption,
.xfaTop > .xfaCaptionForCheckButton,
.xfaBottom > .xfaCaption,
.xfaBottom > .xfaCaptionForCheckButton {
  width: 100%;
}

.xfaBorder {
  background-color: transparent;
  position: absolute;
  pointer-events: none;
}

.xfaWrapped {
  width: 100%;
  height: 100%;
}

.xfaTextfield:focus,
.xfaSelect:focus {
  background-image: none;
  background-color: transparent;
  outline: auto;
  outline-offset: -1px;
}

.xfaCheckbox:focus,
.xfaRadio:focus {
  outline: auto;
}

.xfaTextfield,
.xfaSelect {
  height: 100%;
  width: 100%;
  flex: 1 1 auto;
  border: none;
  resize: none;
  background-image: var(--xfa-unfocused-field-background);
}

.xfaTop > .xfaTextfield,
.xfaTop > .xfaSelect,
.xfaBottom > .xfaTextfield,
.xfaBottom > .xfaSelect {
  flex: 0 1 auto;
}

.xfaButton {
  cursor: pointer;
  width: 100%;
  height: 100%;
  border: none;
  text-align: center;
}

.xfaLink {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.xfaCheckbox,
.xfaRadio {
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  border: none;
}

.xfaRich {
  white-space: pre-wrap;
  width: 100%;
  height: 100%;
}

.xfaImage {
  -o-object-position: left top;
     object-position: left top;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.xfaLrTb,
.xfaRlTb,
.xfaTb {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.xfaLr {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.xfaRl {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
}

.xfaTb > div {
  justify-content: left;
}

.xfaPosition {
  position: relative;
}

.xfaArea {
  position: relative;
}

.xfaValignMiddle {
  display: flex;
  align-items: center;
}

.xfaTable {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.xfaTable .xfaRow {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.xfaTable .xfaRlRow {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  flex: 1;
}

.xfaTable .xfaRlRow > div {
  flex: 1;
}

.xfaNonInteractive input,
.xfaNonInteractive textarea,
.xfaDisabled input,
.xfaDisabled textarea,
.xfaReadOnly input,
.xfaReadOnly textarea {
  background: initial;
}

@media print {
  .xfaTextfield,
  .xfaSelect {
    background: transparent;
  }

  .xfaSelect {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    text-indent: 1px;
    text-overflow: "";
  }
}

:root {
  --pdfViewer-padding-bottom: 0;
  --page-margin: 1px auto -8px;
  --page-border: 9px solid transparent;
  --spreadHorizontalWrapped-margin-LR: -3.5px;
  --zoom-factor: 1;
  --viewport-scale-factor: 1;
}

@media screen and (forced-colors: active) {
  :root {
    --pdfViewer-padding-bottom: 9px;
    --page-margin: 9px auto 0;
    --page-border: none;
    --spreadHorizontalWrapped-margin-LR: 4.5px;
  }
}

.pdfViewer {
  padding-bottom: var(--pdfViewer-padding-bottom);
}

.pdfViewer .canvasWrapper {
  overflow: hidden;
}

.pdfViewer .page {
  direction: ltr;
  width: 816px;
  height: 1056px;
  margin: var(--page-margin);
  position: relative;
  overflow: visible;
  border: var(--page-border);
  background-clip: content-box;
  -o-border-image: url(/62f647d5fcef70c4ae01.png) 9 9 repeat;
     border-image: url(/62f647d5fcef70c4ae01.png) 9 9 repeat;
  background-color: rgba(255, 255, 255, 1);
}

.pdfViewer .dummyPage {
  position: relative;
  width: 0;
  /* The height is set via JS, see `BaseViewer.#ensurePageViewVisible`. */
}

.pdfViewer.removePageBorders .page {
  margin: 0 auto 10px;
  border: none;
}

.pdfViewer.singlePageView {
  display: inline-block;
}

.pdfViewer.singlePageView .page {
  margin: 0;
  border: none;
}

.pdfViewer.scrollHorizontal,
.pdfViewer.scrollWrapped,
.spread {
  margin-left: 3.5px;
  margin-right: 3.5px;
  text-align: center;
}

.pdfViewer.scrollHorizontal,
.spread {
  white-space: nowrap;
}

.pdfViewer.removePageBorders,
.pdfViewer.scrollHorizontal .spread,
.pdfViewer.scrollWrapped .spread {
  margin-left: 0;
  margin-right: 0;
}

.spread .page,
.spread .dummyPage,
.pdfViewer.scrollHorizontal .page,
.pdfViewer.scrollWrapped .page,
.pdfViewer.scrollHorizontal .spread,
.pdfViewer.scrollWrapped .spread {
  display: inline-block;
  vertical-align: middle;
}

.spread .page,
.pdfViewer.scrollHorizontal .page,
.pdfViewer.scrollWrapped .page {
  margin-left: var(--spreadHorizontalWrapped-margin-LR);
  margin-right: var(--spreadHorizontalWrapped-margin-LR);
}

.pdfViewer.removePageBorders .spread .page,
.pdfViewer.removePageBorders.scrollHorizontal .page,
.pdfViewer.removePageBorders.scrollWrapped .page {
  margin-left: 5px;
  margin-right: 5px;
}

.pdfViewer .page canvas {
  margin: 0;
  display: block;
}

.pdfViewer .page canvas[hidden] {
  display: none;
}

.pdfViewer .page .loadingIcon {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(/2154b586a53a52e48ad0.gif) center no-repeat;
}
.pdfViewer .page .loadingIcon.notVisible {
  background: none;
}

.pdfViewer.enablePermissions .textLayer span {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
  cursor: not-allowed;
}

.pdfPresentationMode .pdfViewer {
  padding-bottom: 0;
}

.pdfPresentationMode .spread {
  margin: 0;
}

.pdfPresentationMode .pdfViewer .page {
  margin: 0 auto;
  border: 2px solid transparent;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}:root,:root[data-theme=light]{--search-input-background:#fff;--layout-body-background-color:#f5f6f9;--layout-section-background-color:#fff;--popover-background-color:#fff;--popover-shadow-color:rgba(25,29,68,.1);--text-color:#191d44;--upload-dropzone-background:#f3f3f5;color-scheme:light}:root.dark-mode,:root[data-theme=dark]{--search-input-background:#3a3b3d;--comment-text-color:#dfe0e6;--layout-body-background-color:#18181a;--layout-section-background-color:#242425;--popover-background-color:#242425;--popover-shadow-color:rgba(255,255,255,.1);--text-color:#fff;--upload-dropzone-background:#3a3b3d;color-scheme:dark}@font-face{font-display:swap;font-family:Open Sans;src:url(/1b0809d519837cb7aad3.ttf)}@font-face{font-display:swap;font-family:Open Sans;font-weight:500;src:url(/1b0809d519837cb7aad3.ttf)}@font-face{font-display:swap;font-family:Open Sans;font-weight:600;src:url(/a16d8201b06a03c6c365.ttf)}@font-face{font-display:swap;font-family:Quicksand;src:url(/cffc279022b0d87c571d.ttf)}@font-face{font-display:swap;font-family:Quicksand;font-weight:500;src:url(/74eb5c183e5f25c68c2e.ttf)}@font-face{font-display:swap;font-family:Quicksand;font-weight:600;src:url(/d4f6bc51411626477b05.ttf)}@font-face{font-display:swap;font-family:Montserrat;font-weight:300;src:url(/02afb26fe72fcc052988.ttf)}@font-face{font-display:swap;font-family:Montserrat;src:url(/3cd786652b8a2e9d41f2.ttf)}@font-face{font-display:swap;font-family:Montserrat;font-weight:500;src:url(/e2d60bc49517598c0ce8.ttf)}@font-face{font-family:Audrey;src:url(/dbf539370e1b91e7fef5.otf)}@font-face{font-family:Audrey;font-weight:700;src:url(/9b8e7531ee7197c58606.otf)}@font-face{font-family:Audrey;font-style:italic;src:url(/b34233c1a47d55ac8413.otf)}@font-face{font-family:Audrey;font-style:italic;font-weight:700;src:url(/37d1fd072e26185e44c2.otf)}@font-face{font-family:Bookerly;src:url(/79f3811e09e06b79a9f3.ttf)}@font-face{font-family:Bookerly;font-weight:700;src:url(/ab041b8c0e32c95a861d.ttf)}@font-face{font-family:Bookerly;font-style:italic;src:url(/ddcd571258254c9b03ec.ttf)}@font-face{font-family:Bookerly;font-style:italic;font-weight:700;src:url(/f9f08e690d1a70bbe331.ttf)}@font-face{font-family:OpenDyslexic;src:url(/d9b06c5ffd7d312017e5.otf)}@font-face{font-family:OpenDyslexic;font-weight:700;src:url(/1082cfdbbc04743cc3f1.otf)}@font-face{font-family:OpenDyslexic;font-style:italic;src:url(/5ff9ce0dd64351704ef0.otf)}@font-face{font-family:OpenDyslexic;font-style:italic;font-weight:700;src:url(/51781d5c5f73576d2f8c.otf)}@font-face{font-family:Open Sans;src:url(/17e98b9e5586529b13cc.ttf)}@font-face{font-family:Open Sans;font-weight:700;src:url(/043771c999cd4d47d9f3.ttf)}@font-face{font-family:Open Sans;font-style:italic;src:url(/9585580230392fee3fdc.ttf)}@font-face{font-family:Open Sans;font-style:italic;font-weight:700;src:url(/1c9d53ac65b20d03c4d0.ttf)}@font-face{font-family:PT Sans;src:url(/983a32f60c185f37dab7.ttf)}@font-face{font-family:PT Sans;font-weight:700;src:url(/adbe2c3130dc75b4f8e8.ttf)}@font-face{font-family:PT Sans;font-style:italic;src:url(/1d55fc62311cd0c3b80e.ttf)}@font-face{font-family:PT Sans;font-style:italic;font-weight:700;src:url(/fb37b0048c2b957ce2ca.ttf)}@font-face{font-family:PT Serif;src:url(/26d0ba434e0874b7ebcf.ttf)}@font-face{font-family:PT Serif;font-weight:700;src:url(/56f091993ce06f4f0b34.ttf)}@font-face{font-family:PT Serif;font-style:italic;src:url(/694ffd04e7152a0b96f3.ttf)}@font-face{font-family:PT Serif;font-style:italic;font-weight:700;src:url(/d5af85eaf623ba4771dc.ttf)}@font-face{font-family:Source Sans Pro;src:url(/7a9975d8c02d6933c47d.otf)}@font-face{font-family:Source Sans Pro;font-weight:700;src:url(/94f13d0e0d1f9443c8ce.otf)}@font-face{font-family:Source Sans Pro;font-style:italic;src:url(/fb96197d794f3be75287.otf)}@font-face{font-family:Source Sans Pro;font-style:italic;font-weight:700;src:url(/972b642e35323937d113.otf)}@font-face{font-family:Volkhov;src:url(/345adbefcd418ae2ccc7.ttf)}@font-face{font-family:Volkhov;font-weight:700;src:url(/c01227190f26bdef8d8e.ttf)}@font-face{font-family:Volkhov;font-style:italic;src:url(/46060ab36a8bcf16403a.ttf)}@font-face{font-family:Volkhov;font-style:italic;font-weight:700;src:url(/de6b8a8fe1372902955d.ttf)}@font-face{font-family:Liberation Mono;src:url(/96a03c201f50631a1d9b.ttf)}@font-face{font-family:Liberation Mono;font-weight:700;src:url(/7fecf39a9d39a0248a30.ttf)}@font-face{font-family:Liberation Mono;font-style:italic;src:url(/c3b196be9588acbafeaa.ttf)}@font-face{font-family:Liberation Mono;font-style:italic;font-weight:700;src:url(/34eb219acb28648d5b46.ttf)}@font-face{font-family:Lora;src:url(/52949912492218707f32.ttf)}@font-face{font-family:Lora;font-weight:700;src:url(/d6dab44b57ec95be8460.ttf)}@font-face{font-family:Lora;font-style:italic;src:url(/24a898c72d57410ede0b.ttf)}@font-face{font-family:Lora;font-style:italic;font-weight:700;src:url(/9fdf4dafa3f0a6c7df0c.ttf)}@font-face{font-family:Noticia Text;src:url(/03445153eae26fdddf13.ttf)}@font-face{font-family:Noticia Text;font-weight:700;src:url(/7681cd5befee433499ae.ttf)}@font-face{font-family:Noticia Text;font-style:italic;src:url(/1ea539622b332f82e9b4.ttf)}@font-face{font-family:Noticia Text;font-style:italic;font-weight:700;src:url(/5cd54a891e21a696077d.ttf)}@font-face{font-family:Noto Serif;src:url(/1f642ed4ef7daa19ab3e.ttf)}@font-face{font-family:Noto Serif;font-weight:700;src:url(/c418d776911504db3b4b.ttf)}@font-face{font-family:Noto Serif;font-style:italic;src:url(/15130b6b90cb73aa3a2b.ttf)}@font-face{font-family:Noto Serif;font-style:italic;font-weight:700;src:url(/507fdeea10ee6a45916f.ttf)}:root{--theme-paper-color:#fff;--theme-text-color:#191d44;--theme-link-color:#2c7aff;--popover-background-color:#fff;--text-color:#191d44}:-webkit-full-screen{scrollbar-width:none}:-ms-fullscreen{scrollbar-width:none}:fullscreen{scrollbar-width:none}:-webkit-full-screen ::-webkit-scrollbar{display:none}:fullscreen ::-webkit-scrollbar{display:none}.dark-mode{--popover-background-color:#242425;--text-color:#fff}.overlay-switch{bottom:0;box-sizing:border-box;left:0;position:fixed;right:0;top:0;top:64px;z-index:98}.has-overlay{overflow:hidden}svg.icon{display:block}html,body{background-color:var(--theme-paper-color);color:var(--theme-text-color);height:100%}html,body,input,textarea,select,button{font-family:Montserrat,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:14px}body{margin:0}.header{bottom:0;box-sizing:border-box;left:0;position:fixed;right:0;top:0;background-color:var(--theme-paper-color);bottom:auto;height:64px;z-index:100}:-webkit-full-screen .header .header-content{visibility:hidden}:-ms-fullscreen .header .header-content{visibility:hidden}:fullscreen .header .header-content{visibility:hidden}:-webkit-full-screen .header:hover .header-content, :-webkit-full-screen .header.is-permanent .header-content{visibility:visible}:-ms-fullscreen .header:hover .header-content, :-ms-fullscreen .header.is-permanent .header-content{visibility:visible}:fullscreen .header:hover .header-content,:fullscreen .header.is-permanent .header-content{visibility:visible}.header-content{padding:16px 24px 0}:-webkit-full-screen .header{background-color:transparent;height:16px}:-ms-fullscreen .header{background-color:transparent;height:16px}:fullscreen .header{background-color:transparent;height:16px}:-webkit-full-screen .header:hover, :-webkit-full-screen .header.is-permanent{background-color:var(--theme-paper-color);height:64px}:-ms-fullscreen .header:hover, :-ms-fullscreen .header.is-permanent{background-color:var(--theme-paper-color);height:64px}:fullscreen .header:hover,:fullscreen .header.is-permanent{background-color:var(--theme-paper-color);height:64px}.footer{bottom:0;box-sizing:border-box;left:0;position:fixed;right:0;top:0;background-color:var(--theme-paper-color);height:78px;top:auto;z-index:97}:-webkit-full-screen .footer .footer-content{visibility:hidden}:-ms-fullscreen .footer .footer-content{visibility:hidden}:fullscreen .footer .footer-content{visibility:hidden}:-webkit-full-screen .footer:hover .footer-content, :-webkit-full-screen .footer.is-permanent .footer-content{visibility:visible}:-ms-fullscreen .footer:hover .footer-content, :-ms-fullscreen .footer.is-permanent .footer-content{visibility:visible}:fullscreen .footer:hover .footer-content,:fullscreen .footer.is-permanent .footer-content{visibility:visible}.footer-content{align-items:flex-start;display:flex;padding:16px 24px 0}.footer-content>*+*{margin-left:16px}:-webkit-full-screen .footer{background-color:transparent;height:16px}:-ms-fullscreen .footer{background-color:transparent;height:16px}:fullscreen .footer{background-color:transparent;height:16px}:-webkit-full-screen .footer:hover{background-color:var(--theme-paper-color);height:78px}:-ms-fullscreen .footer:hover{background-color:var(--theme-paper-color);height:78px}:fullscreen .footer:hover{background-color:var(--theme-paper-color);height:78px}.toolbar{display:flex;justify-content:space-between}.toolbar-group{align-items:center;display:flex;flex-basis:100%}.toolbar-group.is-center{justify-content:center;flex-basis:200%;overflow:hidden;margin:0 12px}.toolbar-group.is-right{justify-content:flex-end}.toolbar-group>*+*{margin-left:24px}.toolbar-back{align-items:center;display:flex;justify-content:center;width:32px;height:32px;margin-left:-10px;margin-right:-15px}.toolbar-back .icon{fill:#2c7aff;height:16px;stroke:#2c7aff;transform:scaleX(-1);width:9px}.toolbar-item{align-items:center;display:flex;justify-content:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border-radius:6px;border:1px solid rgba(133,136,159,.2);box-sizing:border-box;cursor:pointer;height:32px;padding:0;width:32px}.toolbar-item:hover .icon{color:#2c7aff}.toolbar-item.is-active{background:#2c7aff;border:none;box-shadow:0 6px 15px rgba(44,122,255,.4)}.toolbar-item.is-active .icon{color:#fff}.toolbar-item .icon{color:var(--theme-text-color);width:16px;height:16px}.book-menu{align-items:center;justify-content:center;display:flex;flex-wrap:wrap;margin-left:-4px;margin-right:-4px;flex-wrap:nowrap;width:100%}.book-menu>*{margin-left:4px;margin-right:4px}.book-menu-button{color:#85889f;cursor:pointer;padding:4px 8px;visibility:hidden}.book-menu:hover .book-menu-button{visibility:visible}.book-menu-button:hover{color:#2c7aff}.book-menu-button.is-grayscale{filter:grayscale(1)}.book-menu-button.is-grayscale:hover{filter:none}.book-menu-icon{align-items:center;display:flex;justify-content:center;height:16px;width:16px}.book-menu-icon.is-bigger{height:18px;width:18px}.book-menu-title{font-family:Quicksand,Open Sans,sans-serif;color:var(--theme-text-color);font-size:18px;font-weight:600;line-height:22px;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap}.btn{font-family:Quicksand,Open Sans,sans-serif;background-color:var(--btn-color-second,transparent);border-radius:100px;border:1px solid transparent;box-sizing:border-box;color:var(--btn-color-first,#191d44);cursor:pointer;display:inline-block;font-size:14px;font-weight:600;line-height:38px;outline:none;padding:0 16px;position:relative;text-align:center;white-space:nowrap}.btn:focus,.btn:focus-within,.btn:active,.btn:hover{color:var(--btn-color-first,#191d44);text-decoration:none}.btn.with-loader{color:transparent!important;pointer-events:none}.btn.with-loader>.bf-btn-loader{display:block}.btn.with-loader>.bf-btn-loader>*{background-color:var(--btn-color-first,#191d44)}.btn.is-outline{color:var(--btn-color-second);background-color:transparent;border-color:var(--btn-color-second)}.btn.is-outline.with-loader>.bf-btn-loader>*{background-color:var(--btn-color-second,#191d44)}.btn.has-shadow{box-shadow:0 4px 15px rgba(25,29,68,.06)}.btn.is-primary{--btn-color-first:#fff;--btn-color-second:#2c7aff}.btn.is-primary:focus,.btn.is-primary:focus-within{box-shadow:0 0 0 4px rgba(44,122,255,.25)}.btn.is-success{--btn-color-first:#fff;--btn-color-second:#79cf76}.btn.is-success:focus,.btn.is-success:focus-within{box-shadow:0 0 0 4px rgba(121,207,118,.25)}.btn.is-danger{--btn-color-first:#fff;--btn-color-second:#fe5a59}.btn.is-danger:focus,.btn.is-danger:focus-within{box-shadow:0 0 0 4px rgba(254,90,89,.25)}.btn.is-secondary{--btn-color-first:#2c7aff;--btn-color-second:rgba(44,122,255,.1)}.btn.is-secondary:focus,.btn.is-secondary:focus-within{box-shadow:0 0 0 4px rgba(44,122,255,.25)}.btn.is-disabled,.btn:disabled{--btn-color-first:#fff;--btn-color-second:#727272;box-shadow:none!important;cursor:not-allowed}.btn.is-small{line-height:30px}.btn.is-tiny{font-size:12px;line-height:22px}.btn.is-popover-toggle{align-items:center;display:flex;justify-content:space-between;max-width:100%}.btn.is-popover-toggle>.icon{height:10px;margin-left:10px;transform:rotateZ(90deg);width:10px}.btn.is-popover-toggle>.caption{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.btn.is-skeleton{background:rgba(133,136,159,.1);color:transparent;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:unset}.btn.has-full-width{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.form-inline-label{font-family:Montserrat,sans-serif;color:#85889f;font-size:14px;line-height:17px;margin:0;white-space:nowrap}.form-select{align-items:center;background:rgba(44,122,255,.1);border-radius:100px;border:1px solid transparent;box-sizing:border-box;color:#2c7aff;display:inline-flex;height:40px;padding:0 16px;position:relative;width:100%}.form-select:after{background-color:currentColor;content:'';height:10px;-webkit-mask-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj4KICA8cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiCiAgICBkPSJNNDQxLjkgMTY3LjNsLTE5LjgtMTkuOGMtNC43LTQuNy0xMi4zLTQuNy0xNyAwTDIyNCAzMjguMiA0Mi45IDE0Ny41Yy00LjctNC43LTEyLjMtNC43LTE3IDBMNi4xIDE2Ny4zYy00LjcgNC43LTQuNyAxMi4zIDAgMTdsMjA5LjQgMjA5LjRjNC43IDQuNyAxMi4zIDQuNyAxNyAwbDIwOS40LTIwOS40YzQuNy00LjcgNC43LTEyLjMgMC0xN3oiPgogIDwvcGF0aD4KPC9zdmc+Cg==);mask-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj4KICA8cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiCiAgICBkPSJNNDQxLjkgMTY3LjNsLTE5LjgtMTkuOGMtNC43LTQuNy0xMi4zLTQuNy0xNyAwTDIyNCAzMjguMiA0Mi45IDE0Ny41Yy00LjctNC43LTEyLjMtNC43LTE3IDBMNi4xIDE2Ny4zYy00LjcgNC43LTQuNyAxMi4zIDAgMTdsMjA5LjQgMjA5LjRjNC43IDQuNyAxMi4zIDQuNyAxNyAwbDIwOS40LTIwOS40YzQuNy00LjcgNC43LTEyLjMgMC0xN3oiPgogIDwvcGF0aD4KPC9zdmc+Cg==);-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;pointer-events:none;position:absolute;right:16px;top:calc(50% - 5px);width:10px}.form-select>select{font-family:Quicksand,Open Sans,sans-serif;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:none;color:currentColor;cursor:pointer;font-size:14px;font-weight:600;height:100%;margin:0;outline:none;padding:0;width:100%}.form-select>select option{color:#191d44;font-weight:400;padding:0}.form-select>select.is-transparent{left:0;opacity:0;position:absolute;top:0}.form-select>.form-inline-label{font-family:Quicksand,Open Sans,sans-serif;color:currentColor;font-weight:600}.form-select>.form-inline-label:after{content:':\00a0'}.form-select.is-disabled{background:rgba(133,136,159,.1);color:#85889f}.form-select.with-error{border:1px solid #fe5a59}.form-select.is-small{height:32px}.form-select:focus,.form-select:focus-within{border-color:rgba(44,122,255,.4)}.input{align-items:center;background:rgba(133,136,159,.1);border-radius:20px;border:1px solid transparent;box-sizing:border-box;display:flex;padding:0 16px;position:relative}.input>label{height:100%;margin:0 0 0 -16px}.input>input[type=text],.input>input[type=password],.input>input[type=datetime],.input>input[type=datetime-local],.input>input[type=date],.input>input[type=month],.input>input[type=time],.input>input[type=week],.input>input[type=number],.input>input[type=email],.input>input[type=url],.input>input[type=search],.input>input[type=tel],.input>input[type=color]{font-family:Montserrat,sans-serif;background:none;border:none;box-shadow:none;box-sizing:border-box;color:var(--text-color);font-size:14px;height:38px;line-height:17px;margin:0;outline:none;padding:0;width:100%}.input>input[type=text]:focus,.input>input[type=password]:focus,.input>input[type=datetime]:focus,.input>input[type=datetime-local]:focus,.input>input[type=date]:focus,.input>input[type=month]:focus,.input>input[type=time]:focus,.input>input[type=week]:focus,.input>input[type=number]:focus,.input>input[type=email]:focus,.input>input[type=url]:focus,.input>input[type=search]:focus,.input>input[type=tel]:focus,.input>input[type=color]:focus{outline:none;box-shadow:none}.input>input[type=text]::-moz-placeholder, .input>input[type=password]::-moz-placeholder, .input>input[type=datetime]::-moz-placeholder, .input>input[type=datetime-local]::-moz-placeholder, .input>input[type=date]::-moz-placeholder, .input>input[type=month]::-moz-placeholder, .input>input[type=time]::-moz-placeholder, .input>input[type=week]::-moz-placeholder, .input>input[type=number]::-moz-placeholder, .input>input[type=email]::-moz-placeholder, .input>input[type=url]::-moz-placeholder, .input>input[type=search]::-moz-placeholder, .input>input[type=tel]::-moz-placeholder, .input>input[type=color]::-moz-placeholder{color:#85889f;opacity:1}.input>input[type=text]:-ms-input-placeholder, .input>input[type=password]:-ms-input-placeholder, .input>input[type=datetime]:-ms-input-placeholder, .input>input[type=datetime-local]:-ms-input-placeholder, .input>input[type=date]:-ms-input-placeholder, .input>input[type=month]:-ms-input-placeholder, .input>input[type=time]:-ms-input-placeholder, .input>input[type=week]:-ms-input-placeholder, .input>input[type=number]:-ms-input-placeholder, .input>input[type=email]:-ms-input-placeholder, .input>input[type=url]:-ms-input-placeholder, .input>input[type=search]:-ms-input-placeholder, .input>input[type=tel]:-ms-input-placeholder, .input>input[type=color]:-ms-input-placeholder{color:#85889f;opacity:1}.input>input[type=text]::placeholder,.input>input[type=password]::placeholder,.input>input[type=datetime]::placeholder,.input>input[type=datetime-local]::placeholder,.input>input[type=date]::placeholder,.input>input[type=month]::placeholder,.input>input[type=time]::placeholder,.input>input[type=week]::placeholder,.input>input[type=number]::placeholder,.input>input[type=email]::placeholder,.input>input[type=url]::placeholder,.input>input[type=search]::placeholder,.input>input[type=tel]::placeholder,.input>input[type=color]::placeholder{color:#85889f;opacity:1}.input>.form-inline-label{padding:0 16px}.input.is-multiline{flex-direction:column}.input.is-multiline>textarea{font-family:Montserrat,sans-serif;background:none;border:none;box-shadow:none;box-sizing:border-box;color:var(--text-color);font-size:14px;line-height:20px;margin:0;min-height:38px;outline:none;padding:9px 0;resize:vertical;scrollbar-width:thin;width:100%}.input.is-multiline>textarea:focus{outline:none;box-shadow:none}.input.is-multiline>textarea::-moz-placeholder{color:#85889f;opacity:1}.input.is-multiline>textarea:-ms-input-placeholder{color:#85889f;opacity:1}.input.is-multiline>textarea::placeholder{color:#85889f;opacity:1}.input.is-multiline>.form-inline-label{align-self:flex-start;margin:16px 0 5px;line-height:15px;font-weight:500;padding:0}.input.is-small>input[type=text],.input.is-small>input[type=password],.input.is-small>input[type=datetime],.input.is-small>input[type=datetime-local],.input.is-small>input[type=date],.input.is-small>input[type=month],.input.is-small>input[type=time],.input.is-small>input[type=week],.input.is-small>input[type=number],.input.is-small>input[type=email],.input.is-small>input[type=url],.input.is-small>input[type=search],.input.is-small>input[type=tel],.input.is-small>input[type=color]{font-size:12px;height:30px}.input.is-small>textarea{font-size:12px;line-height:18px;padding:7px 0;min-height:32px}.input.is-small>.form-inline-label{font-size:12px}.input.with-error{border-color:#fe5a59}.input:focus,.input:focus-within{border-color:rgba(44,122,255,.4)}.input-error{color:#fe5a59;font-size:12px;line-height:16px;padding:4px 16px 0}.form-label{font-family:Montserrat,sans-serif;color:#85889f;font-size:12px;font-weight:500;line-height:18px;margin:0;padding:0 16px 8px}.form-control,.form-submit{margin:24px 0}.form-control.is-heading{margin-top:0}.form-check-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:8px;background:rgba(133,136,159,.1);border:.5px solid rgba(133,136,159,.4);box-sizing:border-box;height:15px;width:15px;outline:none}.form-check-input.is-white{background:rgba(255,255,255,.5);border:.5px solid #fff}.form-check-input:checked{border:none;background-color:#2c7aff;background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgOSA3IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik04LjA4NDEgMS4wOTM1MUM3LjkxMjUxIDAuOTIxOTQ5IDcuNjM0MjUgMC45MjE5NSA3LjQ2MjY2IDEuMDkzNTRMMy41ODIwMyA0Ljk3NDE3TDEuNTM5MjUgMi45MzEzOUMxLjM2NzY2IDIuNzU5OCAxLjA4OTQgMi43NTk4IDAuOTE3Nzc4IDIuOTMxMzlDMC43NDYxNTcgMy4xMDI5OCAwLjc0NjE1NyAzLjM4MTI0IDAuOTE3Nzc4IDMuNTUyODZMMy4yNzEyOCA1LjkwNjM2QzMuMzU3MDkgNS45OTIxNyAzLjQ2OTU2IDYuMDM1MDYgMy41ODIgNi4wMzUwNkMzLjY5NDQ0IDYuMDM1MDYgMy44MDY5NCA1Ljk5MjE0IDMuODkyNzIgNS45MDYzNkw4LjA4NDEgMS43MTQ5OUM4LjI1NTczIDEuNTQzMzkgOC4yNTU3MyAxLjI2NTEzIDguMDg0MSAxLjA5MzUxWiIgLz4KPC9zdmc+Cg==);background-repeat:no-repeat;background-size:9px 7px;background-position:center;box-shadow:0 0 15px rgba(44,122,255,.4)}.form-check{line-height:21px;margin:24px 0;padding:0 0 0 27px}.form-check.is-heading{margin-top:0}.form-check>.form-check-input{border-radius:50%;float:left;margin:2px 0 0 -27px}.form-check>.form-check-label{font-family:Montserrat,sans-serif;color:var(--text-color);display:initial;font-size:14px;line-height:21px;margin:0;padding:0}.form-inline-hint{align-items:center;display:flex;justify-content:center;background:rgba(133,136,159,.4);border-radius:50%;border:none;flex-shrink:0;height:22px;margin-right:-12px;outline:none;width:22px}.form-inline-hint:focus,.form-inline-hint:focus-within{box-shadow:0 0 0 4px rgba(133,136,159,.25)}.form-inline-hint>.icon{color:#fff;height:12px;width:12px}.form-select-value{font-family:Quicksand,Open Sans,sans-serif;font-size:14px;font-weight:600;line-height:17px;white-space:nowrap}input[disabled],textarea[disabled],input[readonly],textarea[readonly],select[disabled]{cursor:not-allowed}.popover{background:var(--popover-background-color);border-radius:6px;box-shadow:0 6px 10px var(--popover-shadow-color);color:var(--text-color);left:0;padding:24px;position:absolute;top:0;visibility:hidden;z-index:10}.popover.is-static{position:static}.popover.within-modal{z-index:1051}.popover.is-visible{visibility:visible}.popover-nav-items{display:flex;flex-direction:column;margin-top:-16px;white-space:nowrap}.popover-nav-items a:hover,.popover-nav-items a:focus{text-decoration:none!important}.popover-nav-item-icon{color:#85889f;height:16px;width:16px;margin-right:16px}button.popover-nav-item{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:none;padding:0}.popover-nav-item{font-family:Montserrat,sans-serif;align-items:center;cursor:pointer;display:flex;font-size:14px;line-height:20px;margin-top:16px;color:var(--text-color)}.popover-nav-item:hover{color:#2c7aff}.popover-nav-item:hover .popover-nav-item-icon{color:#2c7aff}.modal-opened{overflow:hidden}.modal{background:rgba(0,1,15,.6);bottom:0;display:none;left:0;overflow:hidden;position:fixed;right:0;top:0;z-index:1050}.modal-opened .modal{overflow-y:auto}.modal-dialog{font-family:Montserrat,sans-serif;box-sizing:border-box;color:var(--text-color);font-size:14px;line-height:170%;margin:50px auto;max-width:100%;opacity:0;position:relative;transform:translateY(-25%);transition:transform .2s ease-out,opacity .2s ease-out;width:480px}.modal-dialog.is-narrow{width:328px}.modal-dialog.is-wide{width:600px}.modal-opened .modal-dialog{opacity:1;transform:translateY(0)}.modal-content{background:var(--popover-background-color);border-radius:6px;box-shadow:6px 12px 23px rgba(var(--text-color),.2);padding:24px 32px 32px}.modal-header{font-family:Quicksand,Open Sans,sans-serif;align-items:center;display:flex;font-size:24px;font-weight:600;justify-content:space-between;line-height:30px;margin-bottom:32px}.modal-close{cursor:pointer}.modal-close>.icon{color:#85889f;height:16px;width:16px}.modal-actions{-moz-column-gap:8px;column-gap:8px;display:grid;grid-auto-flow:column;margin-top:32px}.options-search{margin-bottom:24px;padding-bottom:24px}.options-search .icon{color:#2c7aff;height:10px;padding:10px 9px 10px 15px;width:10px}.options-content{border-bottom:1px solid rgba(133,136,159,.2);border-top:1px solid rgba(133,136,159,.2);margin-top:-24px}.options.without-scroll .options-content{border-bottom:none;margin-bottom:-24px}.options.without-scroll .options-content:not(.with-top-separator){border-top:none}.options-content.with-top-separator{margin-top:24px}.options-list{display:flex;flex-direction:column;height:229px;overflow-x:hidden;overflow-y:auto;padding:12px 0;width:296px}.options.for-modal .options-list{margin-right:-32px}.options.for-popover .options-list{margin-right:-24px}.options.is-wide .options-list{width:448px}.options.without-scroll .options-list{height:auto}.options-item{align-items:center;box-sizing:border-box;display:flex;gap:12px;margin:-12px 0;padding:24px 0;width:296px}.options.for-modal .options-item{padding-right:32px}.options.for-popover .options-item{padding-right:24px}.options.is-wide .options-item{width:448px}.options-item.is-hidden{display:none}.options-item.is-active{order:-1}.options-item>label{font-family:Montserrat,sans-serif;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--text-color);flex:1 1 0%;font-size:14px;line-height:17px;margin-bottom:0}.options-item.is-new>label{color:#2c7aff}.tags-list{align-items:center;display:flex;flex-wrap:wrap;margin:-2px}.tags-item{--tags-item-background:rgba(133,136,159,.1);--tags-item-color:var(--theme-text-color,#85889f);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-family:Montserrat,sans-serif;background:var(--tags-item-background);border-radius:100px;color:var(--tags-item-color);display:flex;font-size:12px;font-weight:500;line-height:24px;margin:2px;padding:0 12px}.tags-item a{color:var(--tags-item-color)}.tags-item a:hover,.tags-item a:active,.tags-item a:focus,.tags-item a:focus-within{color:var(--tags-item-color);text-decoration:none}.tags-item:hover,.tags-item:active,.tags-item:focus,.tags-item:focus-within{color:var(--tags-item-color);text-decoration:none}.tags-item.is-turquoise{--tags-item-background:rgba(86,204,242,.1);--tags-item-color:#56ccf2}.tags-item.is-green{--tags-item-background:rgba(121,207,118,.1);--tags-item-color:#79cf76}.tags-item.is-orange{--tags-item-background:rgba(242,153,74,.1);--tags-item-color:#f2994a}.tags-item.is-pink{--tags-item-background:rgba(240,78,185,.1);--tags-item-color:#f04eb9}.tags-item.is-purple{--tags-item-background:rgba(172,151,255,.1);--tags-item-color:#ac97ff}.tags-item.is-red{--tags-item-background:rgba(254,90,89,.1);--tags-item-color:#fe5a59}.tags-item.is-yellow{--tags-item-background:rgba(242,201,76,.1);--tags-item-color:#f2c94c}.tags-item-remove{align-items:center;color:inherit;display:flex;height:24px;justify-content:center;margin:0 -8px 0 4px;padding:0 8px}.tags-item-remove:hover{color:inherit}.tags-item-remove>.icon{height:7px;width:7px}.toc-list{margin:16px 0}.toc-list.is-empty{font-family:Montserrat,sans-serif;font-size:14px;line-height:16px}.toc-item{color:inherit;cursor:pointer;display:block;font-size:16px;line-height:170%;padding-left:45px;text-decoration:none}.toc-item:hover{color:#2c7aff}.toc-item.is-current{color:#2c7aff}.toc-item.is-level-0{font-weight:600;margin-top:16px;padding-left:0}.toc-item.is-level-0:first-child{margin-top:0}.toc-item.is-level-1{padding-left:0}.toc-item.is-level-2{padding-left:15px}.toc-item.is-level-3{padding-left:30px}.toc-item.is-level-4{padding-left:45px}.bookmark{display:flex;justify-content:space-between}.bookmark+.bookmark{margin-top:16px}.bookmark:hover .bookmark-delete,.bookmark:focus-within .bookmark-delete{display:block}.bookmark.is-disabled{opacity:.5;pointer-events:none}.bookmark-list{font-size:16px;line-height:170%;margin:16px 0;max-width:540px}.bookmark-list.is-empty{font-family:Montserrat,sans-serif;font-size:14px;line-height:16px}.bookmark-title{color:inherit;cursor:pointer;display:block;overflow:hidden;text-decoration:none;text-overflow:ellipsis;white-space:nowrap}.bookmark-title:hover{color:#2c7aff}.bookmark-delete{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:none;display:none;color:#85889f}.bookmark-delete:hover,.bookmark-delete:focus{color:#2c7aff}.bookmark-delete .icon{height:10px;width:10px}.bookmark-add{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:none;fill:rgba(133,136,159,.2);height:40px;padding:0;width:16px}.bookmark-add:hover{cursor:pointer;fill:#2c7aff}.bookmark-add.is-active{fill:#fe5a59}.bookmark-add .icon{height:100%;width:100%}.highlight-main{align-items:start;display:grid;grid-template-areas:'quote actions' 'note actions';grid-template-columns:1fr auto}.highlight-tags{margin-bottom:12px}.highlight-quote{color:var(--text-color);font-family:Times,serif;font-size:16px;grid-area:quote;line-height:24px;margin-left:19px;position:relative}.highlight-quote:before{background:var(--highlight-color,#fed000);border-radius:3px;content:'';height:100%;left:-19px;position:absolute;width:3px}.highlight-quote.is-clickable{cursor:pointer}.highlight-quote-image{display:block;height:auto;max-width:100%}.highlight-quote-html p{margin:10px 0}.highlight-quote-html p:empty{margin:0}.highlight-quote-html ul,.highlight-quote-html ol{margin:0 0 10px 25px;padding:0}.highlight-quote-html h1,.highlight-quote-html h2,.highlight-quote-html h3,.highlight-quote-html h4,.highlight-quote-html h5,.highlight-quote-html h6{margin:10px 0}.highlight-quote-html h1{font-size:24px}.highlight-quote-html h2{font-size:20px}.highlight-quote-html h3{font-size:18px}.highlight-quote-html h4{font-size:16px}.highlight-quote-html h5,.highlight-quote-html h6{font-size:14px}.highlight-quote-html>:first-child{margin-top:0}.highlight-quote-html>:last-child{margin-bottom:0}.highlight-note{font-family:Montserrat,sans-serif;color:var(--theme-text-color,#9ea1c0);display:flex;font-size:14px;font-weight:500;grid-area:note;line-height:18px;margin-left:-5px;margin-top:12px}.highlight-note-icon{color:#2c7aff;flex-shrink:0;height:16px;width:16px;margin-right:8px}.highlight-note-text{word-break:break-word}.highlight-note-text>:first-child{margin-top:0}.highlight-note-text>:last-child{margin-bottom:0}.highlight-action-list{display:grid;grid-area:actions;margin-left:16px;row-gap:16px}.highlight-action{color:var(--theme-text-color,#85889f);cursor:pointer;height:16px;position:relative;width:16px}.highlight-action:focus,.highlight-action:focus-within,.highlight-action:active,.highlight-action:hover{color:#2c7aff;text-decoration:none}.highlight-action.has-comments:after{background:#fe5a59;border-radius:50%;content:'';height:6px;position:absolute;right:-1px;top:-1px;width:6px}.highlight-action .icon.is-vertical{transform:rotateZ(90deg)}.highlight-action-icon{width:16px;height:16px}.highlight-menu{position:absolute;transform:translateX(-50%);z-index:102}.highlight-menu-action-list{background:var(--popover-background-color);border-radius:6px;box-shadow:0 6px 10px rgba(25,29,68,.11);box-sizing:border-box;display:flex}.highlight-menu-action-list.is-hidden{display:none}.highlight-menu-action-list.is-disabled{pointer-events:none}.highlight-menu-action{align-items:center;color:var(--text-color);cursor:pointer;display:flex;padding:12px 0 12px 16px}.highlight-menu-action.is-disabled{opacity:.65;pointer-events:none}.highlight-menu-action.for-colors{cursor:auto;padding-bottom:0;padding-top:0}.highlight-menu-action .icon{height:24px;width:16px}.highlight-menu-action:not(.is-disabled):hover{color:#2c7aff}.highlight-menu-action:last-child{padding-right:16px}.highlight-menu-action:not(:last-child):after{background:rgba(133,136,159,.2);content:'';height:16px;margin-left:16px;width:1px}.highlight-menu-color{cursor:pointer;display:flex;align-items:center;height:48px;padding:4px;width:16px}.highlight-menu-color:before{background-color:var(--highlight-color);border-radius:8px;content:'';display:block;height:16px;width:16px}.highlight-list-guide{font-size:16px;line-height:170%;margin:16px 0}.highlight-list-guide-action{color:#2c7aff;cursor:pointer;font-weight:600}.highlight-list-overlay{bottom:0;box-sizing:border-box;left:0;position:fixed;right:0;top:0;background-color:var(--theme-paper-color);overflow-x:hidden;top:64px;z-index:99}.highlight-list-overlay.is-hidden{display:none}.highlight-list-header{background:var(--theme-paper-color);display:flex;height:32px;justify-content:space-between;left:0;padding:0 24px 16px;position:fixed;right:0;z-index:99}.highlight-list{margin:64px auto 16px;max-width:900px;padding:0 24px}.highlight-list-sort{display:flex;gap:8px}.highlight-list-sort-value{font-family:Quicksand,Open Sans,sans-serif;align-items:center;color:#2c7aff;cursor:pointer;display:flex;font-weight:600}.highlight-list-sort-value .icon{height:8px;margin-left:8px;transform:rotateZ(90deg);width:8px}.highlight-list-sort-option.is-asc:after{content:'\00a0↑'}.highlight-list-sort-option.is-desc:after{content:'\00a0↓'}.highlight{color:var(--theme-text-color);position:relative}.highlight+.highlight{margin-top:24px}.highlight-header{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:space-between;margin-bottom:8px}.highlight-list-header-group{align-items:center;display:flex;gap:32px}.highlight-list-header-label{font-family:Montserrat,sans-serif;font-weight:600}.highlight-chapter{font-family:Quicksand,Open Sans,sans-serif;cursor:pointer;font-size:18px;font-weight:600;line-height:22px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.highlight-timestamp{color:var(--theme-text-color,#85889f);font-size:12px;font-weight:500;text-align:right;white-space:nowrap}.highlight-modal-error{color:#cc1414}.highlight-export{cursor:pointer;line-height:29px}.highlight-export:hover{color:#2c7aff}.highlight-comments{margin:24px -10px -10px}.highlight-comments:before{border-top:1px solid rgba(133,136,159,.2);content:'';display:block;margin:0 10px 14px}.form-select.for-highlights-mode{height:32px;width:150px}.friend-highlight-quote{font-family:Times,serif;font-size:16px;grid-area:quote;line-height:24px;margin-left:6px;position:relative}.friend-highlight-quote.is-clickable{cursor:pointer}.friend-highlight-main{align-items:start;display:grid;grid-template-areas:'avatar quote actions' 'line quote actions' 'note note actions';grid-template-columns:24px 1fr auto;grid-template-rows:24px 1fr auto}.friend-highlight-avatar{border-radius:50%;grid-area:avatar;height:24px;overflow:hidden;width:24px}.friend-highlight-avatar>img{vertical-align:middle}.friend-highlight-line{background:var(--highlight-color,rgba(133,136,159,.2));border-radius:3px;grid-area:line;height:calc(100% - 4px);margin:4px auto 0;width:3px}.friend-highlight-note{font-family:Montserrat,sans-serif;color:#9ea1c0;display:flex;font-size:12px;font-weight:500;grid-area:note;line-height:18px;margin-left:5px;margin-top:12px}.highlight-list-color-filter-button{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:flex;gap:8px;line-height:0;margin:0;outline:none;padding:0}.highlight-list-color-filter-button>img{padding:2px;height:20px;width:20px}.highlight-list-color-filter-colors{display:grid;gap:4px;grid-auto-rows:24px;grid-template-columns:repeat(5,24px)}.highlight-list-color-filter-color{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:none;cursor:pointer;height:20px;line-height:0;margin:0;outline:none;padding:2px;width:20px}.highlight-list-color-filter-color:after{background-color:var(--highlight-color);border-radius:50%;content:'';display:block;height:20px;width:20px}.highlight-list-color-filter-clear{font-family:Quicksand,Open Sans,sans-serif;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:none;color:#2c7aff;cursor:pointer;font-size:14px;font-weight:500;margin-top:12px;outline:none;padding:0}.highlight-list-tags-filter{width:150px}.highlight-list-tags-filter-button{--btn-color-first:#2c7aff;--btn-color-second:rgba(44,122,255,.1)}.highlight-list-tags-filter-button:focus,.highlight-list-tags-filter-button:focus-within{border-color:rgba(44,122,255,.4)}.settings-overlay{bottom:0;box-sizing:border-box;left:0;position:fixed;right:0;top:0;background-color:var(--theme-paper-color);color:var(--theme-text-color);font-family:Quicksand,Open Sans UI,sans-serif;font-weight:500;left:auto;overflow-y:auto;padding:16px 24px;top:64px;width:248px;z-index:99}.settings-item{margin:24px 0}.settings-item:first-child{margin-top:0}.settings-picker{font-size:14px}.settings-picker-selected{align-items:center;background:rgba(44,122,255,.1);border-radius:32px;box-sizing:border-box;color:#2c7aff;cursor:pointer;display:flex;gap:12px;height:32px;justify-content:space-between;padding:8px 16px}.settings-picker-selected .icon{height:10px;width:10px;fill:currentColor;transform:rotateZ(90deg)}.settings-picker-selected-text{flex-shrink:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.settings-picker-option-list{background:var(--popover-background-color);border-radius:6px;box-shadow:0 6px 10px rgba(25,29,68,.1);box-sizing:border-box;color:var(--text-color);margin-top:8px;max-height:176px;overflow-x:hidden;position:absolute;width:200px;z-index:1}.settings-picker-option-list.is-hidden{display:none}.settings-picker-option-list-wrapper{margin:8px}.settings-picker-option{cursor:pointer;padding:8px}.settings-picker-option.is-selected,.settings-picker-option:hover{color:#2c7aff}.settings-row{align-items:center;box-sizing:border-box;display:flex;justify-content:space-evenly;padding:16px 0}.settings-row.is-separated{border-bottom:1px solid rgba(133,136,159,.2)}.settings-row.is-separated:first-child{border-top:1px solid rgba(133,136,159,.2)}.settings-row .icon{cursor:pointer;fill:var(--theme-text-color);height:24px;width:24px}.settings-row .icon:hover,.settings-row .icon.is-active{fill:#2c7aff}.settings-zoom-in,.settings-zoom-out{align-items:flex-end;display:flex;justify-content:center;height:32px;margin:-4px 0;width:24px}.settings-zoom-in:hover,.settings-zoom-out:hover{color:#2c7aff;cursor:pointer}.settings-zoom-in:after,.settings-zoom-out:after{content:'A'}.settings-zoom-in{font-size:28px;line-height:28px}.settings-zoom-out{font-size:18px;line-height:18px}.settings-property-checkbox{display:flex;justify-content:space-between}.settings-property-checkbox input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:16px;border:1px solid #85889f;display:inline-block;height:16px;outline:none;position:relative;width:32px;vertical-align:-2px}.settings-property-checkbox input[type=checkbox]:after{background:#85889f;border-radius:50%;content:'';display:block;height:12px;left:1px;position:absolute;top:1px;width:12px}.settings-property-checkbox input[type=checkbox]:checked{border-color:#2c7aff}.settings-property-checkbox input[type=checkbox]:checked:after{background:#2c7aff;left:auto;right:1px;box-shadow:0 0 15px rgba(44,122,255,.4)}.settings-margin-control{align-items:center;display:flex;gap:8px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.settings-margin-control .icon{cursor:auto}.settings-margin-control-button{cursor:pointer}.settings-margin-control-button .icon{cursor:pointer;height:12px;width:12px}.settings-switch{border:1px solid rgba(133,136,159,.2);border-radius:6px;display:flex}.settings-switch-option{cursor:pointer;font-size:12px;line-height:15px;padding:8px 20px}.settings-switch-option:not(:last-child):after{border-left:1px solid rgba(133,136,159,.2);content:'';display:inline-block;height:15px;margin-left:20px;position:absolute}.settings-switch-option.is-active{color:#2c7aff}.settings-preset-delete{color:#85889f;cursor:pointer}.settings-preset-delete>.icon{height:16px;width:16px}.settings-preset-delete:hover{color:#2c7aff}.settings-preset-update-hint{color:#85889f;font-size:12px;padding-right:24px}.settings-report-bug{display:flex;justify-content:flex-end;margin-top:32px}.settings-report-bug>.icon{cursor:pointer;fill:#85889f;height:16px;width:16px}.settings-report-bug>.icon:hover{fill:#2c7aff}.settings-expandable{border-bottom:1px solid rgba(133,136,159,.2)}.settings-expandable-header{cursor:pointer;display:flex;justify-content:space-between;margin-top:2px;padding:14px 0}.settings-expandable-header-icon>.icon{max-height:10px;max-width:10px}.settings-expandable-header-icon.is-plus{color:#2c7aff}.settings-expandable:not(.is-expanded) .settings-expandable-header-icon.is-minus{display:none}.settings-expandable.is-expanded .settings-expandable-header-icon.is-plus{display:none}.settings-expandable-content{padding:16px 0}.settings-expandable:not(.is-expanded) .settings-expandable-content{display:none}.settings-color-list{display:flex}.settings-color-list.for-schemes{justify-content:space-between}.settings-color-list.for-custom-colors{justify-content:space-around}.settings-color{cursor:pointer;text-align:center}.settings-color-value{border-radius:50%;border:1px solid transparent;height:30px;width:30px}.settings-color-value:before{content:'Aa';display:inline;font-size:12px;line-height:15px;vertical-align:-5px}.settings-color-value.is-link:before{text-decoration:underline}.settings-color-value.with-border{border-color:rgba(133,136,159,.2)}.settings-color-value.is-selected{border-color:#2c7aff}.settings-color-label{font-family:Montserrat,sans-serif;font-size:12px;line-height:15px;margin-top:7px}.settings-color-input{margin-top:16px}.settings-color-preset-list{display:grid;gap:16px;grid-template-columns:repeat(5,1fr);justify-items:center;margin-bottom:16px}.settings-color-preset{background:red;border-radius:50%;cursor:pointer;height:24px;width:24px}.search-overlay{bottom:0;box-sizing:border-box;position:fixed;right:0;top:0;background-color:var(--theme-paper-color);color:var(--theme-text-color);display:flex;flex-direction:column;left:0;padding-top:16px;top:64px;width:320px;z-index:99}.search-overlay.is-hidden{display:none}.search-form{border-bottom:1px solid rgba(133,136,159,.2);padding-bottom:15px;margin:0 24px}.search-input>input[type=text]{background:rgba(133,136,159,.1);border:none;border-radius:32px;box-sizing:border-box;color:var(--theme-text-color);font-size:14px;height:32px;line-height:32px;outline:none;padding:16px;width:100%}.search-input>input[type=text]::-moz-placeholder{color:#85889f}.search-input>input[type=text]:-ms-input-placeholder{color:#85889f}.search-input>input[type=text]::placeholder{color:#85889f}.search-input>.icon{fill:#2c7aff;height:32px;margin-left:16px;position:absolute;width:10px}.search-input>.icon+input{padding-left:38px}.search-empty{margin:0 24px;padding:15px 0}.search-results{overflow-x:hidden}.search-result{border-bottom:1px solid rgba(133,136,159,.2);cursor:pointer;margin:0 24px;padding:15px 0}.search-result:hover{color:#2c7aff}.search-result-chapter{font-family:Quicksand,Open Sans UI,sans-serif;font-size:12px;font-weight:500;margin-bottom:8px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.search-result-text{font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.search-result-text>em{font-style:normal;font-weight:700}.search-loader{min-height:8px}.sk-three-bounce{margin:40px auto;width:80px;text-align:center}.sk-three-bounce .sk-child{width:20px;height:20px;background-color:var(--theme-text-color);border-radius:100%;display:inline-block;-webkit-animation:sk-three-bounce 1.4s ease-in-out 0s infinite both;animation:sk-three-bounce 1.4s ease-in-out 0s infinite both}.sk-three-bounce .sk-bounce1{-webkit-animation-delay:-.32s;animation-delay:-.32s}.sk-three-bounce .sk-bounce2{-webkit-animation-delay:-.16s;animation-delay:-.16s}@-webkit-keyframes sk-three-bounce{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}@keyframes sk-three-bounce{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}@media print{.reader{display:none}}.reader-page-wrapper{padding:64px 0 78px;top:0;bottom:0;left:16px;right:16px;position:absolute}.reader-page-wrapper.is-scrolling-view{position:relative;left:0;right:0}:-webkit-full-screen .reader-page-wrapper{margin:16px 0}:-ms-fullscreen .reader-page-wrapper{margin:16px 0}:fullscreen .reader-page-wrapper{margin:16px 0}.reader-page-ghost{bottom:78px;left:48px;position:absolute;right:48px;top:64px}.epub-view>iframe{visibility:hidden;will-change:transform}.epub-view.is-visible>iframe{visibility:visible}.reader-page{position:relative;vertical-align:bottom;height:100%;width:100%}.reader-page.is-reflowable-layout.is-scrolling-view .epub-container{overflow:hidden!important}.reader-page.is-fixed-layout .epub-container{height:auto!important;overflow:visible!important;padding-bottom:78px}.reader-page.is-fixed-layout .epub-view{margin:0 auto}.reader-viewer{height:100%;margin:0 auto;max-width:100%;position:relative}.reader-viewer.is-loading{opacity:.2}.reader-nav{align-items:center;display:flex;justify-content:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:none;bottom:78px;box-sizing:border-box;position:fixed;top:64px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:48px}:-webkit-full-screen .reader-nav .icon{visibility:hidden}:-ms-fullscreen .reader-nav .icon{visibility:hidden}:fullscreen .reader-nav .icon{visibility:hidden}:-webkit-full-screen .reader-nav:hover .icon, :-webkit-full-screen .reader-nav.is-permanent .icon{visibility:visible}:-ms-fullscreen .reader-nav:hover .icon, :-ms-fullscreen .reader-nav.is-permanent .icon{visibility:visible}:fullscreen .reader-nav:hover .icon,:fullscreen .reader-nav.is-permanent .icon{visibility:visible}.reader-nav.is-left{justify-content:flex-start;left:0;padding-left:24px;margin-right:8px}.reader-nav.is-left .icon{transform:scaleX(-1)}.reader-nav.is-right{justify-content:flex-end;right:0;padding-right:24px;margin-left:8px}.reader-nav:not([disabled]){cursor:pointer}.reader-nav:not([disabled]):hover .icon{fill:#2c7aff}.reader-nav .icon{fill:#85889f;height:24px;width:14px}.reader-loader{align-items:center;display:flex;justify-content:center;bottom:78px;left:0;position:fixed;right:0;top:64px}.reader-progress{background:transparent;height:4px;overflow:hidden;position:absolute;width:100%}.reader-progress.is-top{top:64px}.reader-progress.is-bottom{margin-top:-82px}.reader-progress-indicator{background:#2c7aff}.reader-progress-indicator:before,.reader-progress-indicator:after{background-color:inherit;bottom:0;content:'';left:0;position:absolute;top:0;will-change:left,right}.reader-progress-indicator:before{-webkit-animation:progress-indicator 2.1s cubic-bezier(.65,.815,.735,.395) infinite;animation:progress-indicator 2.1s cubic-bezier(.65,.815,.735,.395) infinite}.reader-progress-indicator:after{-webkit-animation:progress-indicator-short 2.1s cubic-bezier(.165,.84,.44,1) infinite;animation:progress-indicator-short 2.1s cubic-bezier(.165,.84,.44,1) infinite;-webkit-animation-delay:1.15s;animation-delay:1.15s}@-webkit-keyframes progress-indicator{0%{left:-35%;right:100%}60%{left:100%;right:-90%}100%{left:100%;right:-90%}}@keyframes progress-indicator{0%{left:-35%;right:100%}60%{left:100%;right:-90%}100%{left:100%;right:-90%}}@-webkit-keyframes progress-indicator-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}100%{left:107%;right:-8%}}@keyframes progress-indicator-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}100%{left:107%;right:-8%}}.reader-pagination{--pagination-progress:var(--progress,0%);padding-top:11px;position:relative;width:100%}.reader-pagination-label{color:var(--theme-text-color);display:flex;font-family:Quicksand,Open Sans UI,sans-serif;font-size:12px;font-weight:400;line-height:15px}.reader-pagination-label:first-child{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-right:10px}.reader-pagination-tooltip{background:#2c7aff;border-radius:6px;color:#fff;display:none;font-size:12px;line-height:15px;padding:4px 8px;position:absolute}.reader-pagination-tooltip.is-visible{display:block}.reader-pagination-tooltip-arrow{border-left:3px solid transparent;border-right:3px solid transparent;border-top:6px solid #2c7aff;bottom:0;height:0;margin-bottom:-6px;width:0}.reader-pagination-tooltip-anchor-wrapper{position:absolute;left:8px;right:8px}.reader-pagination-tooltip-anchor{left:var(--pagination-progress);position:absolute}.reader-pagination-tooltip-anchor.is-rtl{left:auto;right:var(--pagination-progress)}.reader-pagination-chapter{flex-grow:1}.reader-pagination-history{display:flex;gap:10px;margin-right:10px}.reader-pagination-history-button{cursor:pointer;font-weight:600}.reader-pagination-history-button:hover{color:#2c7aff}.reader-pagination-pages-left{margin-right:10px}.pdf-reader{background:var(--theme-paper-color);bottom:78px;outline:none;overflow:auto;position:absolute;top:64px;width:100%}:-webkit-full-screen .pdf-reader{bottom:0;top:0}:-ms-fullscreen .pdf-reader{bottom:0;top:0}:fullscreen .pdf-reader{bottom:0;top:0}@media print{.pdf-reader{display:none}}.pdf-reader-highlights{mix-blend-mode:multiply}[color-scheme=night] .pdf-reader-highlights,[color-scheme=darkGrey] .pdf-reader-highlights{mix-blend-mode:screen}.pdf-reader-highlight-rect{background:rgba(255,255,0,.5);cursor:pointer;position:absolute}.pdf-reader .page{background:var(--color-theme-paper);border:1px solid rgba(133,136,159,.2)}[color-scheme=sepia] .pdf-reader canvas,[color-scheme=sepia] .pdf-reader .loadingIcon{filter:sepia(100%)}[color-scheme=night] .pdf-reader canvas,[color-scheme=night] .pdf-reader .loadingIcon{filter:invert(100%) contrast(90%) brightness(120%)}[color-scheme=darkGrey] .pdf-reader canvas,[color-scheme=darkGrey] .pdf-reader .loadingIcon{filter:invert(100%) contrast(70%) brightness(150%)}[color-scheme=lightGrey] .pdf-reader canvas,[color-scheme=lightGrey] .pdf-reader .loadingIcon{filter:brightness(70%)}.alert{background:#fff;box-shadow:0 0 12px 0 #a2a9ad;left:50%;position:fixed;top:100px;transform:translateX(-50%);min-width:320px;max-width:540px}.alert-close{color:#8d99a6;cursor:pointer;padding:10px;position:absolute;right:10px;top:10px}.alert-close:before{content:'×';display:block;font-size:32px;line-height:16px}.alert-close:hover{color:#788695}.alert-content{padding:30px}.alert-message{color:#363a40;font-size:14px}.alert-action-list{margin-top:20px}.alert-action-list>:not(:first-child){margin-left:15px}.book-action-list{left:50%;position:fixed;text-align:center;top:9px;transform:translateX(-50%)}.book-action-list>:not(:first-child){margin-left:15px}@media(max-width:720px){.book-action-list{left:0;top:58px;transform:none;width:100%}}@media(max-width:540px){.book-action-list{top:54px}}.navigation-overlay{bottom:0;box-sizing:border-box;left:0;position:fixed;right:0;top:0;background-color:var(--theme-paper-color);color:var(--theme-text-color);font-family:Quicksand,Open Sans UI,sans-serif;top:64px;z-index:99}.navigation-tabs{border-bottom:1px solid rgba(133,136,159,.2);display:flex;justify-content:space-between;margin:0 56px;position:relative}@media(max-width:540px){.navigation-tabs{justify-content:initial}}.navigation-tabs-group{display:flex;padding:8px 0 17px}@media(max-width:540px){.navigation-tabs-group{padding:0 0 8px}}.navigation-tab{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:none;color:#85889f;cursor:pointer;font-family:Quicksand,Open Sans UI,sans-serif;font-size:24px;font-weight:600;line-height:30px;margin-bottom:-19px;padding-bottom:15px}@media(max-width:540px){.navigation-tab{margin-bottom:-10px;padding-bottom:8px}}.navigation-tab.is-active{color:inherit}@media(min-width:540px){.navigation-tab+.navigation-tab{margin-left:45px}}@media(max-width:540px){.navigation-tab{font-size:16px;line-height:20px;flex-grow:1;text-align:center}}.navigation-content{height:calc(100% - 55px);overflow-x:hidden;padding:0 56px}.navigation-cursor{background-color:#2c7aff;border-radius:3px;bottom:-2px;content:'';height:3px;position:absolute;transition:all .25s ease-in-out}.playback-control{align-items:center;justify-content:center;display:flex;gap:8px}.playback-control-button{align-items:center;display:flex;justify-content:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#2c7aff;border-radius:6px;border:0;box-sizing:border-box;color:#fff;cursor:pointer;height:40px;width:40px}.playback-control-button>.icon{height:20px;width:20px}.playback-control-button:disabled{background:rgba(133,136,159,.4);pointer-events:none}.playback-control-button.is-secondary{background:none;border:1px solid rgba(133,136,159,.2);color:var(--theme-text-color);height:32px;padding:0;width:32px}.playback-control-button.is-secondary>.icon{height:16px;width:16px}.playback-control-button.is-secondary:disabled>.icon{opacity:.5}.image-overlay{bottom:0;box-sizing:border-box;left:0;position:fixed;right:0;top:0;align-items:center;display:flex;justify-content:center;background-color:rgba(0,0,0,.9);z-index:103}.image-overlay img{display:block;background:white}.image-overlay-content{width:100%;height:100%;overflow:auto;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.image-overlay-content.is-dragging{cursor:-webkit-grabbing;cursor:grabbing}.image-overlay-close{align-items:center;display:flex;justify-content:center;position:absolute;right:20px;top:20px;background:#f3f4f7;border-radius:20px;box-sizing:border-box;box-shadow:0 6px 15px rgba(0,0,0,.4);cursor:pointer;height:40px;width:40px}.image-overlay-close.is-hidden{display:none}.image-overlay-close>.icon{fill:#191d44;stroke:#191d44;height:14px;width:14px}.image-overlay-controls{bottom:20px;display:flex;left:auto;position:absolute;right:auto;box-shadow:0 6px 15px rgba(0,0,0,.4);border-radius:16px}.image-overlay-controls.is-hidden{display:none}.image-overlay-control{align-items:center;background:#fff;border-top:1px solid #e7e7ec;border-bottom:1px solid #e7e7ec;box-sizing:border-box;color:#191d44;cursor:pointer;display:flex;height:32px;padding:7px 24px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.image-overlay-control.is-disabled{cursor:not-allowed}.image-overlay-control:first-child{border-bottom-left-radius:16px;border-left:1px solid #e7e7ec;border-top-left-radius:16px}.image-overlay-control:last-child{border-bottom-right-radius:16px;border-right:1px solid #e7e7ec;border-top-right-radius:16px}.image-overlay-control+.image-overlay-control{padding-left:0}.image-overlay-control+.image-overlay-control:before{border-right:1px solid #e7e7ec;content:'';margin-right:24px}.image-overlay-control>.icon{margin-right:8px;fill:#2c7aff;stroke:#2c7aff;width:12px;height:12px}.area-select-overlay{bottom:0;left:0;position:fixed;right:0;top:0;z-index:101}.area-select-selection{box-shadow:0 0 0 9999px rgba(0,1,15,.6);cursor:move;position:absolute;z-index:101}.area-select-selection-inner{bottom:0;left:0;position:absolute;right:0;top:0}.area-select-selection-corner{background:#2c7aff;background-clip:padding-box;border:4px solid transparent;height:7px;position:absolute;width:7px}.area-select-selection-corner.is-top-left,.area-select-selection-corner.is-top-right{top:-7px}.area-select-selection-corner.is-top-left,.area-select-selection-corner.is-bottom-left{left:-7px}.area-select-selection-corner.is-bottom-left,.area-select-selection-corner.is-bottom-right{bottom:-7px}.area-select-selection-corner.is-top-right,.area-select-selection-corner.is-bottom-right{right:-7px}.area-select-selection-corner.is-top-left,.area-select-selection-corner.is-bottom-right{cursor:nwse-resize}.area-select-selection-corner.is-top-right,.area-select-selection-corner.is-bottom-left{cursor:nesw-resize}.embed-comments{border:none;height:calc(var(--comments-height,auto) + 400px);outline:none;width:100%;margin-bottom:-400px}.iframe-modal-container{bottom:0;box-sizing:border-box;left:0;position:fixed;right:0;top:0;background:rgba(0,1,15,.6);z-index:103}.iframe-modal{border:none;height:100%;position:absolute;top:0;width:100%}.iframe-loader{align-items:center;display:flex;justify-content:center;height:100%;width:100%}.slider{--progress:var(--progress,0%);position:relative}.settings-item .slider{margin:24px 0;line-height:0}.slider-track{background-image:linear-gradient(to right,#2c7aff var(--progress),rgba(133,136,159,.2) var(--progress));border-radius:5px;height:5px;margin-top:5px;position:absolute;width:100%}.slider-track.is-rtl{background-image:linear-gradient(to left,#2c7aff var(--progress),rgba(133,136,159,.2) var(--progress))}input.slider-input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:15px;position:relative;width:100%}input.slider-input[type=range]:focus{outline:none}input.slider-input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;background:#2c7aff;border-radius:50%;border:0;box-shadow:0 0 15px rgba(44,122,255,.4);cursor:pointer;height:15px;width:15px}input.slider-input[type=range]::-moz-range-thumb{-moz-appearance:none;appearance:none;background:#2c7aff;border-radius:50%;border:0;box-shadow:0 0 15px rgba(44,122,255,.4);cursor:pointer;height:15px;width:15px}input.slider-input[type=range].is-rtl{direction:rtl}

/*# sourceMappingURL=app-273d003664f0056f94c4.css.map*/