.no-js .top-bar {
  display: none;
}

.documentviewer {
	width:100%; height:600px;
}

@media only screen and (max-width:600px) {
  .mobileadjust {margin-left:-9%;}
}

@media screen and (min-width: 40em) {
  .no-js .top-bar {
    display: block;
  }

  .no-js .title-bar {
    display: none;
  }
}

@media screen and (max-width: 450px) {
	.documentviewer {
		width:100%; height:400px;
	}
}

@media (prefers-color-scheme: light) {
  .page-wrapper {
      background-color: white;
  }
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
  .page-wrapper {
      background-color: #212121;
      color: white;
  }
  .page-wrapper p {
      color:#e0e0e0;
  }
  .page-wrapper blockquote {
      background-color: #424242;
  }
  .page-wrapper table tbody tr:nth-child(even) {
      background-color:#424242 !important;
  }
  .page-wrapper table tbody tr:nth-child(odd) {
      background-color:#616161 !important;
  }
  table > thead:first-child, table > tbody:first-child tr:first-child {
      background-color: #212121 !important;
  }
  .page-content h2 {
      color:#bdbdbd;
  }
  .page-content h3 {
      color:#bdbdbd;
  }
  .page-content ul li {
      color:#e0e0e0;
  }
  .page-content h4 {
      color:#bdbdbd;
  }
}