:root {
  --minvh: 100vh;
  --sbarheight: 0px;
}

#canvas {
  min-height: 100vh;
}

#content {
  margin-top: 0;
}

.c-idxpg {
  --margin: 12px;
  --hmargin: calc(var(--margin) / 2);
  --sbarmargin: max(var(--sbarheight) + var(--hmargin), var(--margin));
  --margintop: calc(var(--sbarmargin) + 100vh - var(--minvh));
  --height: calc(var(--minvh) - var(--menubarheight) - var(--margin) - var(--sbarmargin));
  margin-top: 0;
  padding: var(--margintop) var(--hmargin) 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse;
  justify-content: center;
}
.c-idxpg__item {
  margin: 0 var(--hmargin);
  min-width: 320px;
  width: 100%;
  flex: 3 0 0%;
}

.c-index {
  --framew: 18px;
  --itemiso: 0.125em;
  --framewv: calc(var(--framew) - var(--itemiso));
  position: relative;
  max-width: 440px;
  order: 1;
  height: var(--height);
  overflow: hidden;
  margin-bottom: var(--margin);
  padding: var(--itemiso) 0 var(--framewv);
  font-family: var(--sans-serif);
  border: 1px solid var(--sapphire);
  background-image: linear-gradient(to bottom right, var(--silver) 30%, var(--lightgold));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.c-index__item {
  margin: var(--itemiso) var(--framew);
}
.c-index__container {
  position: relative;
  display: block;
  flex: 1;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--sapphire);
  background-color: #f8f8f8;
}
.c-index__container::after {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.4);
}
.c-index__citations {
  --citescrollbarW: 17px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  font-size: 1.1em;
}

.c-seek {
  display: flex;
  flex-flow: row-reverse wrap-reverse;
  font-size: 1.2em;
}
.c-seek__item {
  flex: 50% 0 0;
  display: flex;
  justify-content: center;
  align-self: center;
  text-align: center;
  margin: var(--itemiso) 0;
}
.c-seek__last {
  order: -2;
}
.c-seek__move {
  order: -1;
}

@media (hover) {
  .c-seek:hover .c-select__button {
    border-color: gray;
  }
  .c-seek:hover .c-cv:not(:hover) .c-select__button {
    border-color: lightgray;
  }
  .c-seek:hover .c-cv:hover ~ .c-seek__item .c-select__button {
    border-color: lightgray;
  }
}
.c-cite__cvlist {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.c-cite__cv {
  font-weight: bold;
  color: darkgray;
  order: -1;
  display: flex;
}
.c-cite__cvitem {
  padding: 0.5em 0 0.5em 0.75ch;
  display: flex;
  flex-direction: column;
}
.c-cite__cvitem-sel {
  background-color: var(--silver);
}
.c-cite__cvitem-sel .c-cite__cv {
  color: black;
}
.c-cite__reflist {
  padding: 0 0 0 1ch;
  list-style-type: none;
}
.c-cite__refitem {
  display: flex;
  cursor: pointer;
}
.c-cite__refitem.is-selected {
  font-weight: bold;
}
.c-cite__refitem-sel {
  color: var(--hover);
}
.c-cite__yada {
  width: 2.75em;
}
.c-cite__ref {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  white-space: pre;
  margin-left: -0.25em;
}
.c-cite__part {
  margin-left: 0.25em;
}

.c-cite__refitem:hover {
  color: var(--hover);
}

.c-cite__reflist:hover + .c-cite__cv {
  color: black;
}

.c-select {
  position: relative;
  cursor: pointer;
}
.c-select__hide {
  display: none;
}
.c-select__ghost {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  opacity: 0;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: inherit;
  line-height: inherit;
  cursor: inherit;
  font-size: 1em;
}
.c-select__button {
  position: relative;
  border: 2px solid darkgray;
  border-radius: 0.25em;
  padding: 0.05em 0.25em;
  background-color: var(--silver);
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
.c-select__button-fixed {
  width: 6ch;
}

.c-select-left .c-select__button {
  justify-content: flex-start;
}
.c-select-left .c-select__content {
  margin: 0;
}

.c-select-right .c-select__button {
  justify-content: flex-end;
}
.c-select-right .c-select__content {
  margin: 0;
}

.c-select.js-paren .c-select__content::before {
  content: "(";
}
.c-select.js-paren .c-select__content::after {
  content: ")";
}

.c-select.is-empty .c-select__button {
  width: 2ch;
}
.c-select.is-empty .c-select__button::after {
  position: absolute;
  display: block;
  content: "";
  right: 0.25em;
  width: 0.5em;
  height: 0.3em;
  background-color: darkgray;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  top: 50%;
  transform: translateY(-50%);
}

@media (hover) {
  .c-select__button {
    border-color: lightgray;
  }
  .c-select__button::before {
    border-color: lightgray;
  }
  .c-select__button::after {
    background-color: lightgray;
  }
  .c-index__subject:hover .c-select__button, .c-index__ref:hover .c-select__button {
    border-color: gray;
  }
  .c-index__subject:hover .c-select__button::before, .c-index__ref:hover .c-select__button::before {
    border-color: darkgray;
  }
  .c-index__subject:hover .c-select__button::after, .c-index__ref:hover .c-select__button::after {
    background-color: darkgray;
  }
  .c-select:hover {
    color: var(--hover);
  }
  .c-select:hover .c-select__button::after {
    background-color: var(--hover);
  }
}
.c-bblb__tlr {
  font-weight: bold;
  font-style: italic;
}
.c-bblb__com {
  font-weight: lighter;
}
.c-bblb__com-only {
  margin-top: 0;
  font-weight: bold;
}

.c-cv {
  display: flex;
  justify-content: center;
}
.c-cv__sep {
  padding: 0.05em 0.25em;
  font-weight: bold;
}

.c-PView {
  --allow: 1;
  --between: calc((var(--allow) - 1) * var(--margin));
  --PVh: calc((var(--height) - var(--between)) / var(--allow));
  --menuh: 26.4px;
  --PVimgp: 10px;
  --PVimgh: calc(var(--PVh) - var(--menuh) - 2 * var(--PVimgp));
  --PVimgw: calc(var(--PVimgh) * 2 / 3);
  --PVcoverw: calc(var(--PVimgw) + 2 * var(--PVimgp));
  position: relative;
  display: flex;
  flex-direction: column;
}
.c-PView__this {
  position: relative;
  height: var(--PVh);
  display: none;
  border: 1px solid var(--sapphire);
  box-shadow: var(--shadow);
  margin-bottom: var(--margin);
}
.c-PView__this.is-bright {
  box-shadow: 3px 3px 5px var(--hover);
  border-color: var(--hover);
}
.c-PView div.c-PView__this:nth-last-child(-n+1) {
  display: flex;
}
.c-PView__side {
  border-right: 2px solid var(--sapphire);
  display: none;
  flex-direction: column;
  align-items: center;
  font-family: var(--sans-serif);
}
.c-PView__chap {
  height: var(--menuh);
  color: var(--menutxt);
  background-color: var(--menuhov);
  flex: 0 0 auto;
  align-self: stretch;
  text-align: center;
}
.c-PView__cover {
  flex: 1;
  width: -moz-fit-content;
  width: fit-content;
  padding: var(--PVimgp);
  min-height: 0px;
}
.c-PView__img {
  width: auto;
  height: 100%;
  max-width: var(--PVimgw);
  max-height: var(--PVimgh);
  border: 1px solid var(--sapphire);
}
.c-PView__scroll {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.c-PView__menu {
  position: sticky;
  top: 0;
  width: 100%;
  color: var(--menutxt);
  background-color: var(--menuhov);
  font-family: var(--sans-serif);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.c-PView__icon {
  padding: 2px;
}
.c-PView__read {
  color: currentColor;
  text-decoration: none;
}
.c-PView__ptr {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-PView__sname {
  font-weight: bold;
}
.c-PView__tlr {
  font-style: italic;
}
.c-PView__iframe {
  width: 100%;
}

@media (hover) {
  .c-PView__mitem:hover {
    color: var(--hover);
  }
}
@media (min-width: 1200px) {
  .c-PView__side {
    display: flex;
  }
  .c-PView__sname, .c-PView__vnum, .c-PView__cnum {
    display: none;
  }
}
@media (min-height: 501px) {
  .c-idxpg {
    --margin: 24px;
  }
  .c-idxpg__item {
    min-width: 305px;
  }
  .c-index {
    flex: 2 0 0%;
  }
  .c-seek__item {
    flex: 100% 0 0;
  }
  .c-seek__move {
    margin: 0 0 calc(2 * var(--itemiso));
    order: 0;
  }
}
@media (min-width: 700px) and (min-height: 700px) {
  .c-PView {
    --allow: 2;
  }
  .c-PView div.c-PView__this:nth-last-child(-n+2) {
    display: flex;
  }
}
@media (min-width: 700px) and (min-height: 1100px) {
  .c-PView {
    --allow: 3;
  }
  .c-PView div.c-PView__this:nth-last-child(-n+3) {
    display: flex;
  }
}
@media (min-width: 950px) and (min-height: 550px) {
  .c-PView {
    --allow: 2;
  }
  .c-PView div.c-PView__this:nth-last-child(-n+2) {
    display: flex;
  }
}
@media (min-width: 950px) and (min-height: 950px) {
  .c-PView {
    --allow: 3;
  }
  .c-PView div.c-PView__this:nth-last-child(-n+3) {
    display: flex;
  }
}/*# sourceMappingURL=indexstyle.css.map */