* {
	position: relative;
	box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	padding: 4em 0 2em 0;
}

header {
	position: absolute;
	width: 100%;
	height: 4em;
	top: 0;
	left: 0;
	/*border-bottom: 1px solid #333;*/
	padding: 1em;
	background-color: #0074D9;
	color: white;
}

small {
	position: absolute;
	bottom: 1.1rem;
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 1;
	display: none;
}

nav {
	position: absolute;
	right: 1rem;
	bottom: 1.1rem;
	/*float: right;*/
	font-weight: 400;
	font-size: 1.2rem;
	margin: 0;
	line-height: 1rem;
}

footer {
	padding: 0.4em 1em;
	/*border-top: 1px solid #333;*/
	text-align: center;
	line-height: 1;
	height: 2em;
	background-color: #0074D9;
	color: white;
}

footer span {
	font-size: 0.8em;
	color: rgba(255,255,255,0.5);
	line-height: 1;
}

.gt-600 {
	display: none;
}

@media (min-width: 600px) {
	.gt-600 {
		display: inline-block;
	}
}

.gt-768 {
	display: none;
}

@media (min-width: 768px) {
	.gt-768 {
		display: inline-block;
	}

	main {
		width: 100%;
		height: 100%;
	}
}

.CodeMirror {
	font-family: 'Inconsolata';
}

.CodeMirror {
	height: auto;
}

.input .CodeMirror-scroll, .output .CodeMirror-scroll {
	/*padding: 0.5em;*/
	box-sizing: border-box;
	overflow-x: hidden !important;
	margin-bottom: 0;
	min-height: 5em;
	/*max-height: 80vh;*/
}

.CodeMirror span {
	color: #333;
}

@font-face{
	font-family: 'Inconsolata';
	src: url('fonts/Inconsolata/Inconsolata-Regular.ttf') format('truetype');
}

@font-face{
	font-family: 'Inconsolata';
	src: url('fonts/Inconsolata/Inconsolata-Bold.ttf') format('truetype');
	font-weight: 500;
}

@font-face {
	font-family: 'Typo Round';
	src: url('fonts/typo_round/typo_round_regular_demo-webfont.eot');
	src: url('fonts/typo_round/typo_round_regular_demo-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/typo_round/typo_round_regular_demo-webfont.woff2') format('woff2'),
         url('fonts/typo_round/typo_round_regular_demo-webfont.woff') format('woff'),
         url('fonts/typo_round/typo_round_regular_demo-webfont.ttf') format('truetype'),
         url('fonts/typo_round/typo_round_regular_demo-webfont.svg#typo_round_regular_demoRg') format('svg');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Typo Round';
	src: url('fonts/typo_round/typo_round_light_demo-webfont.eot');
	src: url('fonts/typo_round/typo_round_light_demo-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/typo_round/typo_round_light_demo-webfont.woff2') format('woff2'),
         url('fonts/typo_round/typo_round_light_demo-webfont.woff') format('woff'),
         url('fonts/typo_round/typo_round_light_demo-webfont.ttf') format('truetype'),
         url('fonts/typo_round/typo_round_light_demo-webfont.svg#typo_round_light_demoRg') format('svg');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Typo Round';
	src: url('fonts/typo_round/typo_round_thin_demo-webfont.eot');
	src: url('fonts/typo_round/typo_round_thin_demo-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/typo_round/typo_round_thin_demo-webfont.woff2') format('woff2'),
         url('fonts/typo_round/typo_round_thin_demo-webfont.woff') format('woff'),
         url('fonts/typo_round/typo_round_thin_demo-webfont.ttf') format('truetype'),
         url('fonts/typo_round/typo_round_thin_demo-webfont.svg#typo_round_thin_demoRg') format('svg');
	font-weight: 200;
	font-style: normal;
}

@font-face{
	font-family: 'Source Sans Pro';
	src: url('fonts/Source_Sans_Pro/SourceSansPro-Regular.ttf') format('truetype');
}

@font-face{
	font-family: 'Source Sans Pro';
	src: url('fonts/Source_Sans_Pro/SourceSansPro-Light.ttf') format('truetype');
	font-weight: 200;
}

@font-face{
	font-family: 'Source Sans Pro';
	src: url('fonts/Source_Sans_Pro/SourceSansPro-Semibold.ttf') format('truetype');
	font-weight: 500;
}

body {
	font-family: 'Source Sans Pro', arial, sans-serif;
	font-weight: 400;
	color: #555;
	-webkit-font-smoothing: antialiased;
}

header {
	font-family: 'Typo Round';
}

h1, h2, h3, h4, h5, h6 {
	color: #333;
}

h1 {
	font-weight: 500;
	margin: 0 0.3em 0 0;
	text-transform: lowercase;
	font-size: 2em;
	line-height: 2rem;
	display: inline;
	text-decoration: none;
	color: white;
}

a, a:visited {
	text-decoration: none;
	color: rgba(0,0,0,0.9);
}

h1 a, h1 a:visited, footer a, footer a:visited {
	color: white;
}

nav a, nav a:visited {
	display: inline-block;
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	line-height: 1;
	padding: 0 0 0 0.5em;
}

nav a:hover {
	color: rgba(255,255,255,1);
	text-decoration: underline;
}

li {
	margin: 0 0 0.5em 0;
}

/* guide */

.sidebar {
	margin: 0;
	padding: 1em;
}

@media (min-width: 45rem) {

	.sidebar {
		position: fixed;
		float: left;
		width: 14em;
		border-right: 1px solid #eee;
		height: calc(100% - 6em);
		z-index: 2;
		overflow-y: scroll;
	}
}

.sidebar a {
	color: #666;
}

.sidebar li {
	list-style: none;
	padding: 0.2em 0.2em 0.2em 1em;
	margin: 0;
}

.sidebar li::before {
	position: absolute;
	left: 0.2em;
	top: 0.1em;
	content: '»';
	color: #ccc;
}

.sidebar .highlighted {
	background-color: #eee;
}

.sidebar .highlighted a {
	color: #333;
}

.content {
	width: 100%;
	padding: 0 1em;
}

@media (min-width: 45rem) {

	.content {
		padding-left: 15em;
	}
}

.content h2 {
	padding: 1rem 0 0 0;
	margin: 0 0 1rem 0;
	font-size: 1.8em;
	font-weight: 400;
}

.content p {
	margin: 0 0 1em 0;
	line-height: 1.5;
}

.content code {
	background-color: #f9f9f9;
	padding: 0.2em 0.4em;
	border-radius: 3px;
	white-space: pre;
	font-family: Inconsolata;
}

.content section:first-child h3 {
	border: none;
}

.content section {
	border-bottom: 1px solid #eee;
	max-width: 64em;
	margin: 0 auto 2em auto;
	padding: 0 0 2em 0;
}

.content section:last-child {
	border: none;
}

.content section > pre, .content .CodeMirror {
	background-color: #f9f9f9;
	border-left: 2px solid #eee;
	padding: 8px;
	margin: 0 0 1em 0;
	font-family: Inconsolata;
}

.content section > pre {
	padding: 12px 10px 12px 12px;
	font-size: 16px;
}

.content section > pre code {
	padding: 0;
	font-family: Inconsolata;
}

/*section > pre {
		padding: 12px 8px 12px 12px;
		border-radius: 3px;
	}*/

.content p, .content ul {
	max-width: 48em;
}

.content li {
	margin: 0;
	line-height: 1.5;
}

@keyframes pulse {
	0%   { opacity: 1; }
	50%  { opacity: 0; }
	100% { opacity: 1; }
}

@-webkit-keyframes pulse {
	0%   { opacity: 1; }
	50%  { opacity: 0; }
	100% { opacity: 1; }
}
/*# sourceMappingURL=min.css.map */
