/* PrismJS 1.15.0
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript+bash+http+json+sql+python&plugins=line-numbers+command-line */
/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */

body.light-scheme code[class*="language-"],
body.light-scheme pre[class*="language-"] {
	color: black;
	background: none;
	text-shadow: 0 1px white;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	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;
}

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

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

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

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

body.light-scheme :not(pre) > code[class*="language-"],
body.light-scheme pre[class*="language-"] {
	background: #f5f2f0;
}

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

body.light-scheme .token.comment,
body.light-scheme .token.prolog,
body.light-scheme .token.doctype,
body.light-scheme .token.cdata {
	color: slategray;
}

body.light-scheme .token.punctuation {
	color: #999;
}

body.light-scheme .namespace {
	opacity: .7;
}

body.light-scheme .token.property,
body.light-scheme .token.tag,
body.light-scheme .token.boolean,
body.light-scheme .token.number,
body.light-scheme .token.constant,
body.light-scheme .token.symbol,
body.light-scheme .token.deleted {
	color: #905;
}

body.light-scheme .token.selector,
body.light-scheme .token.attr-name,
body.light-scheme .token.string,
body.light-scheme .token.char,
body.light-scheme .token.builtin,
body.light-scheme .token.inserted {
	color: #690;
}

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

body.light-scheme .token.atrule,
body.light-scheme .token.attr-value,
body.light-scheme .token.keyword {
	color: #07a;
}

body.light-scheme .token.function,
body.light-scheme .token.class-name {
	color: #DD4A68;
}

body.light-scheme .token.regex,
body.light-scheme .token.important,
body.light-scheme .token.variable {
	color: #e90;
}

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

body.light-scheme .token.entity {
	cursor: help;
}

body.light-scheme pre[class*="language-"].line-numbers {
	position: relative;
	padding-left: 3.8em;
	counter-reset: linenumber;
}

body.light-scheme pre[class*="language-"].line-numbers > code {
	position: relative;
	white-space: inherit;
}

body.light-scheme .line-numbers .line-numbers-rows {
	position: absolute;
	pointer-events: none;
	top: 0;
	font-size: 100%;
	left: -3.8em;
	width: 3em; /* works for line-numbers below 1000 lines */
	letter-spacing: -1px;
	border-right: 1px solid #999;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

}

body.light-scheme .line-numbers-rows > span {
	pointer-events: none;
	display: block;
	counter-increment: linenumber;
}

body.light-scheme .line-numbers-rows > span:before {
	content: counter(linenumber);
	color: #999;
	display: block;
	padding-right: 0.8em;
	text-align: right;
}

body.light-scheme .command-line-prompt {
	border-right: 1px solid #999;
	display: block;
	float: left;
	font-size: 100%;
	letter-spacing: -1px;
	margin-right: 1em;
	pointer-events: none;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

body.light-scheme .command-line-prompt > span:before {
	color: #999;
	content: ' ';
	display: block;
	padding-right: 0.8em;
}

body.light-scheme .command-line-prompt > span[data-user]:before {
	content: "[" attr(data-user) "@" attr(data-host) "] $";
}

body.light-scheme .command-line-prompt > span[data-user="root"]:before {
	content: "[" attr(data-user) "@" attr(data-host) "] #";
}

body.light-scheme .command-line-prompt > span[data-prompt]:before {
	content: attr(data-prompt);
}

