/* Pretty printing styles. Used with prettify.js. */

/* SPAN elements with the classes below are added by prettyprint. */
.pln { color: #000 }  /* plain text */

@media screen {
  .str { color: #6ed730 }  /* string content */
  .kwd { color: #93C763; font-weight:bold }  /* a keyword */
  .com { color: #8fa3ad }  /* a comment */
  .typ { color: #678CB1 }  /* a type name */
  .lit { color: #FACD22; font-weight:bold }  /* a literal value */
  /* punctuation, lisp open bracket, lisp close bracket */
  .pun, .opn, .clo { color: #F1F2F3 }
  .tag { color: #8AC763 }  /* a markup tag name */
  .atn { color: #E0E2E4 }  /* a markup attribute name */
  .atv { color: #EC7600 }  /* a markup attribute value */
  .dec, .var { color: #06718b }  /* a declaration; a variable name */
  .fun { color: #06718B }  /* a function name */
  .pln { color: #459318 } /* everything else */
}

/* Use higher contrast and text-weight for printable form. */
@media print, projection {
  .str { color: #060 }
  .kwd { color: #006; font-weight: bold }
  .com { color: #600; font-style: italic }
  .typ { color: #404; font-weight: bold }
  .lit { color: #044 }
  .pun, .opn, .clo { color: #440 }
  .tag { color: #006; font-weight: bold }
  .atn { color: #404 }
  .atv { color: #060 }
}

/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
	padding: 5px 0;
	background-color: #333;
	margin-top: 0;
	margin-bottom: 0;
	list-style: none
}