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

/* SPAN elements with the classes below are added by prettyprint. */
.pln { color: #333 }  /* plain text */
/*
@media screen
{*/
  .str { color: #090 }  /* string content */
  .kwd { color: #03C }  /* a keyword */
  .com { color: #777; }  /* a comment */
  .typ { color: #D8297B }  /* a type name */
  .lit { color: #090 }  /* a literal value */
  /* punctuation, lisp open bracket, lisp close bracket */
  .opn, .clo, .pun { color: #333 }
  .tag { color: #036 }  /* a markup tag name */
  .atn { color: #D8297B; }  /* a markup attribute name */
  .atv { color: #090 }  /* a markup attribute value */
  .dec { color: #03C }  /* a declaration */
  .var { color: #F47825 }  /* a variable name */
  .fun { color: #333 }  /* a function name */
/*
}
*/

/* Use higher contrast and text-weight for printable form. */
/*
@media print, projection {
  .str { color: #090 }
  .kwd { color: #03C; font-weight: bold }
  .com { color: #999; font-style: italic }
  .typ { color: #D8297B; font-weight: bold }
  .lit { color: #090 }
  .pun, .opn, .clo { color: #333 }
  .tag { color: #03C; font-weight: bold }
  .atn { color: #D8297B }
  .atv { color: #090 }
}
*/

/* Put a border around prettyprinted code snippets. */
pre.prettyprint {
	padding: 10px;
	border: 1px solid #ccc;
	font: normal 12px "Open Sans", Arial, sans-serif;
	overflow-y:auto;
	max-height:300px;
}

/* Specify class=linenums on a pre to get line numbering */
ol.linenums { margin-top: 0; margin-bottom: 0 } /* IE indents via margin-left */
li.L0,
li.L1,
li.L2,
li.L3,
li.L5,
li.L6,
li.L7,
li.L8 { list-style-type: none }
/* Alternate shading for lines */
li.L1,
li.L3,
li.L5,
li.L7,
li.L9 { background: #eee }
