/**
* prism.js default theme for JavaScript, CSS and HTML
* Based on dabblet (http://dabblet.com)
* @author Lea Verou
*/
	code,
	pre {
		color: black;
		font-family: Monospace;
		font-size: 16px;
		line-height: 24px;
		direction: ltr;
		text-align: left;
		white-space: pre;
		word-spacing: normal;

		-moz-tab-size: 4;
		-o-tab-size: 4;
		tab-size: 4;

		-webkit-hyphens: none;
		-moz-hyphens: none;
		-ms-hyphens: none;
		hyphens: none;
	}
	pre {
		overflow-x: auto;
		padding: 1em;
		overflow: auto;
	}
	:not(pre) > code,
	pre {
		background: hsla(0,0%,100%,.5);
	}
	:not(pre) > code {
		padding: .1em;
		border-radius: .3em;
		white-space: normal;
	}

	.token.comment,
	.token.prolog,
	.token.doctype,
	.token.cdata {
		color: #008000;
	}
	.token.punctuation {
		color: #999;
	}
	.token.property,
	.token.number {
		color: #ff0000;
	}
	.token.tag {
		color: #000080;
	}
	.token.selector,
	.token.attr-name,
	.token.string {
		color: #808080;
	}
	.token.operator,
	.token.entity,
	.token.url,
	.token.string {
		color: #a67f59;
	}
	.token.boolean,
	.token.atrule,
	.token.attr-value,
	.token.keyword {
		color: #000080;
		font-style: italic;
		font-weight: bold;
	}
	.token.regex,
	.token.important {
		color: #e90;
	}
	.token.important {
		font-weight: bold;
	}
