/*

Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>

*/

.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  background: transparent;
  color: #788EA5;
  -webkit-text-size-adjust: none;
}

.hljs-comment,
.hljs-template_comment,
.diff .hljs-header,
.hljs-doctype,
.hljs-pi,
.lisp .hljs-string,
.hljs-javadoc {
  color: #93a1a1;
}

/* Solarized Green */
.hljs-keyword,
.hljs-winutils,
.method,
.hljs-addition,
.css .hljs-tag,
.hljs-request,
.hljs-status,
.nginx .hljs-title,
.hljs .k {
  color: #DAC322;
}

/* Solarized Cyan */
.hljs-number,
.hljs-command,
.hljs-string,
.hljs-tag .hljs-value,
.hljs-rules .hljs-value,
.hljs-phpdoc,
.tex .hljs-formula,
.hljs-regexp,
.hljs-hexcolor,
.hljs-link_url {
  color: #F4BC87;
}

/* Solarized Blue */
.hljs-title,
.hljs-localvars,
.hljs-chunk,
.hljs-decorator,
.hljs-built_in,
.hljs-identifier,
.vhdl .hljs-literal,
.hljs-id,
.css .hljs-function {
  color: #69B69F;
}

/* Solarized Yellow */
.hljs-attribute,
.hljs-variable,
.lisp .hljs-body,
.smalltalk .hljs-number,
.hljs-constant,
.hljs-class .hljs-title,
.hljs-parent,
.hljs-type,
.hljs-link_reference {
  color: #D28B71;
}

/* Solarized Orange */
.hljs-preprocessor,
.hljs-preprocessor .hljs-keyword,
.hljs-pragma,
.hljs-shebang,
.hljs-symbol,
.hljs-symbol .hljs-string,
.diff .hljs-change,
.hljs-special,
.hljs-attr_selector,
.hljs-subst,
.hljs-cdata,
.clojure .hljs-title,
.css .hljs-pseudo,
.hljs-header {
  color: #cb4b16;
}

/* Solarized Red */
.hljs-deletion,
.hljs-important {
  color: #dc322f;
}

/* Solarized Violet */
.hljs-link_label {
  color: #6c71c4;
}

.tex .hljs-formula {
  background: #eee8d5;
}


.hljs-string {
    color: #59B6CF;
}

.hljs-class .hljs-title {
    color: #69B69F;
    font-weight: 400;
}

.hljs-number { color: #E9767F }
.hljs-keyword, .hljs .k { color: #579ED1; font-weight: normal; } /* Keyword */
.hljs-function .hljs-title, .hljs .nf { color: #8986BF; font-weight: normal; } /* Name.Function */
.hljs .bp { color: #579ED1 } /* Name.Builtin.Pseudo */
.hljs-decorator { color: #879ED1; font-weight: normal; } /* Name.Decorator */
.hljs .o { color: #788EA5 } /* Operator */
.hljs .n { color: #788EA5 }
.hljs .c, .hljs-comment { color: #A8AFC2; font-style: normal; }
.hljs .nl { color: #E9767F } /* Name.Label */
.hljs .nn { color: #E9767F } /* Name.Namespace */
.hljs .nx { color: #E9767F } /* Name.Other */
.hljs .py { color: #E9767F } /* Name.Property */

.hljs .n .hljs-class .hljs-params {
    color: #A89BB9;
}

.hljs-class + .hljs-string:first-child { /* Docstring */
    color: #A8AFC2;
}

.hljs .n .hljs-function .hljs-params {
    color: #A976CF;
}

.hljs .sd .hljs-string {
    color: #B8AFAD;
    font-style: normal;
}


/* http://prismjs.com/download.html?themes=prism&languages=markup+css+clike+javascript+bash+python */
/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */

code[class*="language-"],
pre[class*="language-"] {
	color: #788EA5;
	/*text-shadow: 0 1px white;*/
	font-family: "Source Code Pro", "Consolas", "Menlo", "Monaco", "Courier New", Courier, monospace;
	direction: ltr;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;

	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
	text-shadow: none;
	background: #b3d4fc;
}

pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
	text-shadow: none;
	background: #b3d4fc;
}

@media print {
	code[class*="language-"],
	pre[class*="language-"] {
		text-shadow: none;
	}
}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	background: transparent;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: .1em;
	border-radius: .3em;
	white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #A8AFC2;
}

.token.punctuation {
	color: #98AEC5;
}

.namespace {
	opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
	color: #E9767F;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: #59B6CF;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
	color: #a67f59;
	background: hsla(0, 0%, 100%, .5);
}

.token.atrule,
.token.attr-value,
.token.keyword {
	color: #579ED1;
}

.token.function {
	color: #8986BF;
}

.token.class-name {
	color: #69B69F;
}

.token.decorator {
    color: #879ED1;
}

.token.boolean {
    color: #69B69F;
}

.token.regex,
.token.important,
.token.variable {
	color: #e90;
}

.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}

.token.operator {
    color: #98AEC5;
}

.token.string.triple-quoted-string {
    color: #A8AFC2;
}

/*
     FILE ARCHIVED ON 05:01:10 Nov 17, 2020 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 20:58:15 Apr 27, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  capture_cache.get: 3.509
  load_resource: 577.65 (2)
  PetaboxLoader3.resolve: 465.131 (2)
  PetaboxLoader3.datanode: 79.016 (2)
*/