/* http://prismjs.com/download.html?themes=prism&languages=markup+css+clike+javascript+php+python+sql */
/**
 * 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:        black;
	direction:    ltr;
	font-family:  Consolas, Monaco, 'Andale Mono', monospace;
	line-height:  1.5;
	text-align:   left;
	/*text-shadow:  0 1px white;*/
	white-space:  pre;
	word-break:   normal;
	word-spacing: normal;

	-moz-tab-size: 2;
	-o-tab-size:   2;
	tab-size:      2;

	-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
{
	background:  #b3d4fc;
	text-shadow: none;
}



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



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



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



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



/* Inline code */
:not(pre) > code[class*="language-"]
{
	border-radius: 0.3em;
	padding:       0.1em;
}



div.code_block > pre[class*="language-"]
{
	background: #f2f2f2;
	margin:     0.5em 0em 0em 0em;
	padding:    1em;
}



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



.token.punctuation
{
	color: #999;
}



.namespace
{
	opacity: 0.7;
}



.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol
{
	/*color: #905;*/
	color: #851c1c;
}



.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin
{
	/*color: #690;*/
	color: #229966;
}



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



.token.atrule,
.token.attr-value,
.token.keyword
{
	/*color: #07a;*/
	color: #229966;
}



.token.function
{
	/*color: #DD4A68;*/
	color: #ffb300;
}



.token.regex,
.token.important
{
	/*color: #e90;*/
	color: #536895;
}



.token.important
{
	font-weight: bold;
}



.token.entity
{
	cursor: help;
}






