body {
  background-color: #151515;
  font-family: Lucida Console,Lucida Sans Typewriter,monaco,Bitstream Vera Sans Mono,monospace;
  font-size: 16px;
  color: #FFF;
}
::selection {
  color: #151515;
  background: #FFF;
}
.colored {
  color: #a1ffed;
}
.colored::selection {
  color: #151515;
  background: #a1ffed;
}
a,
a:visited,
a:active {
  color: #a1ffed;
}
header {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 80px;
}
footer {
  margin-top: 100px;
  padding: 1px 0;
  background-color: #111;
}
footer div.creator {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 700px;
  margin: 80px auto;
}
footer div.creator div.made-by {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  width: 160px;
}
@keyframes rotate360 {
  to {
    transform: rotate(360deg);
  }
}
footer div.creator div.made-by img.loading {
  animation: 30s rotate360 infinite linear;
}
footer div.creator div.made-by img {
  width: 160px;
  /* Need a specific value to work */
  max-width: 51%;
  z-index: 99999;
  opacity: 0.95;
  position: absolute;
}
footer div.creator div.made-by img.loading {
  width: 160px;
  max-width: 100%;
  z-index: 1;
}
body div.content_block {
  display: flex;
  position: relative;
  margin-bottom: 60px;
  min-height: calc(100vh - 311px);
}
body div.content_block button.show_or_hide {
  position: absolute;
  left: 260px;
  transition: 1s;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  font-size: 22px;
  border: none;
  padding: 0;
  color: #a1ffed;
  background: #000;
  border: solid 1px #172d24;
}
body div.content_block div.doc_contents {
  width: 260px;
  overflow: hidden;
  transition: 1s;
}
body div.content_block div.doc_contents.hidden {
  width: 0px;
}
body div.content_block div.doc_contents div.doc_contents_node {
  padding: 3px 0;
  padding-left: 20px;
  width: 200px;
}
body div.content_block div.doc_contents div.doc_contents_node h4 {
  font-size: 16px;
  margin: 0;
  margin-top: 3px;
  padding: 0;
}
body div.content_block div.doc_contents div.doc_contents_node a {
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  font-family: Arial, sans-serif;
}
body div.content_block div.doc_text_wrap {
  line-height: 30px;
  width: calc(100% - 260px);
  overflow-x: auto;
  padding: 20px;
  padding-top: 60px;
}
body div.content_block div.doc_text_wrap div.doc_text {
  width: 960px;
  margin: 0 auto;
  background-color: #111;
  padding: 50px 100px;
}
body div.content_block div.doc_text_wrap div.doc_text.expanded {
  width: 100%;
}
body div.content_block div.doc_text_wrap div.doc_text p {
  font-family: Arial, sans-serif;
}
body div.content_block div.doc_text_wrap div.doc_text p a {
  text-decoration: underline;
}
body div.content_block div.doc_text_wrap div.doc_text pre {
  border-radius: 4px;
  background-color: #000;
  border: solid 1px #172d24;
  padding: 10px;
  overflow-x: scroll;
}
body div.content_block div.doc_text_wrap div.doc_text code {
  background-color: #000;
  color: #6bd2ab;
  font-size: 16px;
  word-break: break-all;
  border-radius: 4px;
  padding: 2px 4px;
}
body div.content_block div.doc_text_wrap div.doc_text code::selection {
  background-color: #FFF;
  color: #000;
}
body div.content_block div.doc_text_wrap div.doc_text ul li {
  padding: 8px 12px;
}
body div.content_block div.doc_text_wrap div.doc_text h1,
body div.content_block div.doc_text_wrap div.doc_text h2,
body div.content_block div.doc_text_wrap div.doc_text h3,
body div.content_block div.doc_text_wrap div.doc_text h4,
body div.content_block div.doc_text_wrap div.doc_text h5,
body div.content_block div.doc_text_wrap div.doc_text h6 {
  position: relative;
  padding-left: 40px;
}
body div.content_block div.doc_text_wrap div.doc_text h1 a.head-link,
body div.content_block div.doc_text_wrap div.doc_text h2 a.head-link,
body div.content_block div.doc_text_wrap div.doc_text h3 a.head-link,
body div.content_block div.doc_text_wrap div.doc_text h4 a.head-link,
body div.content_block div.doc_text_wrap div.doc_text h5 a.head-link,
body div.content_block div.doc_text_wrap div.doc_text h6 a.head-link {
  position: absolute;
  left: 20px;
  text-decoration: none;
  font-size: 30px;
  height: 100%;
  line-height: 20px;
}
body div.content_block div.doc_text_wrap div.doc_text h1 {
  font-size: 22px;
}
body div.content_block div.doc_text_wrap div.doc_text h2 {
  font-size: 20px;
}
body div.content_block div.doc_text_wrap div.doc_text h3 {
  font-size: 18px;
}
body div.content_block div.doc_text_wrap div.doc_text h4 {
  font-size: 16px;
}
body div.content_block div.doc_text_wrap div.doc_text h5 {
  font-size: 14px;
}
body div.content_block div.doc_text_wrap div.doc_text h6 {
  font-size: 12px;
}
body div.content_block div.doc_text_wrap div.doc_text hr {
  margin: 50px 0;
}
@media only screen and (max-width: 1500px) {
  body div.content_block div.doc_text_wrap.expanded {
    width: calc(100vw - 40px);
  }
  body div.content_block div.doc_text_wrap div.doc_text {
    width: calc(100% - 80px);
    padding: 20px 40px;
  }
}
@media only screen and (max-width: 700px) {
  body div.content_block div.doc_text_wrap {
    width: 0vw;
    padding: 20px 0;
  }
  body div.content_block div.doc_text_wrap.expanded {
    width: 100vw;
  }
  body div.content_block div.doc_text_wrap div.doc_text {
    width: calc(100% - 16px);
    padding: 20px 8px;
  }
}
