body {
background: #000000;
}

#banner {
  font-family: monospace;
  position: fixed;
  margin: 0 auto;
  width: 90%;
  height: 90%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #003b00;
  text-align: center;
  color: #cccccc;
  z-index: 2;
  cursor: alias;
}

.overlay_box {
  position: fixed;
  display: block;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 20px;
  margin: 8%;
  bottom: auto;
  background-color: rgba(32,32,32,0.95);
  z-index: 3;
  color: #ffffff;
  cursor: auto;
 
}

#output {
  font-family: monospace;
  max-width: 600px;
  max-height: 40vh;
  width: 80%;
  border: 1px solid #008f11;
  border-radius: 2px;
  padding: 20px 30px;
  margin: 0 auto;
  color: #008f11;
  word-wrap: break-word;
  word-break: break-all;
  background: #000000;
  text-indent: -1em;
  text-align: left;
  text-decoration: none;
  overflow: auto;
}

b {
  color: #00ff41;
}


.cursor {
  text-decoration: none;
  color: #008f11;
  animation: blink 0.8s linear infinite;
}

@keyframes blink {
 0% { opacity: 0.1; }
 50% { opacity: 1; }
 100% { opacity: 0.1; }

}

.arrow {
  text-decoration: none;
  color: #cc8833;
}
.link {
  text-decoration: none;
  color: #3388cc;
  cursor: pointer;
}

.topright {
 position: absolute;
 top: 8px;
 right: 16px;
}

.close_button {
  text-decoration: none;
  cursor: pointer;
}

ul.child_list {
  list-style: none;
}

ul.child_list li:before{
  vertical-align: text-center;
  font-size: 1.5em;
  font-weight: bold;
  text-shadow: 2px 2px 8px #3388cc;
  content: '\2937'; /* code Hex notation */
  padding-right: 8px;
  color:#eee;
  text-decoration: none;
}

li.child_list {
  font-size: 1.2em;
}

