/* 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: #080 }  /* string content */
  .kwd { color: #008 }  /* a keyword */
  .com { color: #800 }  /* a comment */
  .typ { color: #7f0055 }  /* a type name */
  .lit { color: #066 }  /* a literal value */
  /* punctuation, lisp open bracket, lisp close bracket */
  .pun, .opn, .clo { color: #660 }
  .tag { color: #008 }  /* a markup tag name */
  .atn { color: #7f0055 }  /* a markup attribute name */
  .atv { color: #080 }  /* a markup attribute value */
  .dec, .var { color: #7f0055 }  /* a declaration; a variable name */
  .fun { color: #FF0000 }  /* a function name */
}

/* 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 }
}

/* Put a border around prettyprinted code snippets. */
pre.prettyprint { 
    border: 1px solid #eee;
    border-left: 4px solid #53bfe2;
    background: white;
	
 /* border:1px solid #d6d6d6;
   background-color:#F4F4F4;
   padding:5px;
   margin:0px;
   margin-bottom:10px;
font-family: "source-code-pro", Consolas, monospace !important;
font-weight: normal !important;
font-style: normal !important;
font-size: 1em !important;
min-height: auto !important;
*/
}
.prettyprint { 
//  border:1px solid #d6d6d6 !important;
//  background-color:#eee;
//   padding:5px;
//   margin:0px;
//   margin-bottom:10px;
//  font-size: 120%;
}

pre.result { 
   border:1px solid #d6d6d6;
   background-color:#f1f1f1;
//   width: 98%;
   padding:5px;
   margin:0px;
   margin-bottom:10px;
   font-size: 120%;
//   white-space: pre-wrap;
}

.result { 
   border:1px solid #d6d6d6;
   background-color:#f1f1f1;
//   width: 98%;
   padding:5px;
   margin:0px;
   margin-bottom:10px;
   font-size: 120%;
//   white-space: pre-wrap;
}
pre.box {
   border:1px solid #d6d6d6;
   background-color:#f1f1f1;
//   width: 98%;
   padding:5px;
   margin:0px;
   margin-bottom:10px;
 font-size: 120%;
 //  white-space: pre-wrap;
}
.box {
   border:1px solid #d6d6d6;
   background-color:#f1f1f1;
  // width: 98%;
   padding:5px;
   margin:0px;
   margin-bottom:10px;
   font-size: 120%;
//   white-space: pre-wrap;
}

/* Specify class=linenums on a pre to get line numbering */
ol.linenums { margin-top: 0; margin-bottom: 0 } /* IE indents via margin-left */
ol.linenums{
margin: 0%;
padding: 1% !important;
list-style:none;

}
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: #eeeeee42; }