body {
  font-weight: normal;
  font-style: normal;
  max-width: 1000px;
  padding-left: 1.5em;
  padding-right: 1.5em;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4em; }
  body h1 {
    font-weight: bold;
    font-size: 2em;
    margin-top: 0.2em;
    margin-bottom: 0.5em; }
  body h2 {
    font-weight: 600;
    font-size: 1.4em;
    margin-top: 0.2em;
    margin-bottom: 0.5em; }
  body strong {
    font-weight: bold; }
  body em {
    font-style: italic; }

header {
  width: 100%;
  height: 8px;
  background: #3c78d8;
  margin-top: 8px; }

footer {
  width: 100%;
  height: 8px;
  background: #3c78d8;
  margin-bottom: 8px; }

@media only print {
  body {
    font-size: 0.8em; }
  header {
    position: fixed;
    margin: 0;
    top: 0; }
  footer {
    position: fixed;
    margin: 0;
    bottom: 0; } }

a {
  transition: 0.2s color;
  color: #3c78d8; }
  a:visited {
    color: #3c78d8; }
  a:hover {
    color: #1e5dc2; }

ul,
ol {
  list-style-position: outside;
  list-style-type: disc;
  padding-left: 1em; }

.date {
  display: inline-flex; }
  .date::before {
    content: "("; }
  .date .end-date {
    padding-left: 0.3em; }
  .date .start-date::after {
    padding-left: 0.3em;
    content: "\2013"; }
  .date::after {
    content: ")"; }

.keyword {
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  padding-left: 0.4em;
  padding-right: 0.4em;
  border-radius: 0.5em;
  border-color: #3c78d8;
  border-style: solid;
  border-width: 0.05em;
  color: #1e5dc2;
  line-height: 2em; }

.collapsible {
  display: flex;
  flex-direction: row;
  margin-bottom: 1em; }
  .collapsible .sidebar {
    flex: 1 1 30%;
    display: inline-flex;
    flex-direction: column;
    padding-right: 2em;
    word-break: break-word; }
    .collapsible .sidebar .sidebar-item:first-child {
      font-weight: 600; }
    .collapsible .sidebar .sidebar-item:nth-child(2) {
      font-style: italic; }
    .collapsible .sidebar .sidebar-item:last-child {
      font-weight: normal;
      font-style: italic;
      flex-direction: row; }
    .collapsible .sidebar .sidebar-keywords {
      float: right;
      transform: translateY(-0.3em); }
  .collapsible .main {
    flex: 1 1 70%; }

@media only screen and (max-width: 800px) {
  .collapsible {
    flex-direction: column; }
    .collapsible .sidebar {
      display: inline;
      padding-right: 0; }
      .collapsible .sidebar > .sidebar-item:not(:last-child)::after {
        content: "."; } }

.basics {
  text-align: center; }
  .basics .information > * {
    color: #666;
    font-style: italic; }
  .basics .information .information-part {
    display: inline-block; }
    .basics .information .information-part svg {
      width: 1em;
      display: inline;
      margin-right: 0.5em;
      position: relative;
      top: 0.15em; }
  .basics .information .information-part + .information-part:before {
    content: ", "; }
  .basics .summary {
    margin-top: 1em;
    width: 80%;
    margin-left: auto;
    margin-right: auto; }

.inline-svg svg {
  width: 1em;
  display: inline;
  margin-right: 0.5em;
  position: relative;
  top: 0.15em; }

section {
  margin-top: 1em;
  margin-bottom: 1em;
  padding-top: 1em;
  break-inside: avoid;
  animation-name: slideIn;
  animation-duration: 0.4s;
  animation-fill-mode: backwards; }
  section:nth-child(0n) {
    animation-delay: 0s; }
  section:nth-child(1n) {
    animation-delay: 0.1s; }
  section:nth-child(2n) {
    animation-delay: 0.2s; }
  section:nth-child(3n) {
    animation-delay: 0.3s; }
  section:nth-child(4n) {
    animation-delay: 0.4s; }
  section:nth-child(5n) {
    animation-delay: 0.5s; }
  section:nth-child(6n) {
    animation-delay: 0.6s; }
  section:nth-child(7n) {
    animation-delay: 0.7s; }
  section:nth-child(8n) {
    animation-delay: 0.8s; }
  section:nth-child(9n) {
    animation-delay: 0.9s; }
  section:nth-child(10n) {
    animation-delay: 1s; }
  section:not(:first-child) {
    border-top: 1px solid #ddd; }
  section .header {
    font-variant: small-caps;
    color: #3c78d8; }

@keyframes slideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0; }
  100% {
    transform: translateX(0);
    opacity: 1; } }

@media only screen {
  body {
    margin-top: 4em;
    margin-bottom: 4em; }
  .fadeout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(#ffff 0%, #0000 5%, #0000 95%, #ffff 100%);
    pointer-events: none; } }

@media only screen and (max-width: 800px) {
  .basics {
    text-align: left; }
    .basics .summary {
      width: 100%; } }

.collapsible-minimal .sidebar {
  display: inline;
  margin-right: 1em; }

.collapsible-minimal .main {
  display: inline; }

@media only screen and (max-width: 800px) {
  .collapsible-minimal .sidebar {
    display: block; }
  .collapsible-minimal .main {
    display: block; } }

.grid {
  font-size: 0.9em;
  display: grid;
  grid-template-columns: repeat(3, 1fr); }
  .grid .grid-item {
    margin: 0.6em;
    border: 1px solid #ddd;
    padding: 1em; }
    .grid .grid-item .top {
      display: flex;
      flex-direction: column; }
      .grid .grid-item .top .top-item:first-child {
        font-weight: 600; }
      .grid .grid-item .top .top-item:nth-child(2) {
        font-style: italic; }
      .grid .grid-item .top .top-item:last-child {
        font-weight: normal;
        font-style: normal; }
    .grid .grid-item .main {
      padding-top: 0.6em; }

@media only screen and (max-width: 800px) {
  .grid {
    grid-template-columns: 1fr; }
    .grid .award .top {
      display: inline; }
      .grid .award .top > *:not(:last-child)::after {
        content: "."; } }
