@font-face {
	font-family: 'opensans';
	src:
		url('/fonts/opensans/opensans-bold.eot') format('embedded-opentype'),
		url('/fonts/opensans/opensans-bold.woff') format('woff'),
		url('/fonts/opensans/opensans-bold.ttf') format('truetype'),
		url('/fonts/opensans/opensans-bold.svg') format('svg');
	font-style: normal;
	font-weight: 700;
	font-display: fallback;
}
@font-face {
	font-family: 'opensans';
	src:
		url('/fonts/opensans/opensans-boldItalic.eot') format('embedded-opentype'),
		url('/fonts/opensans/opensans-boldItalic.woff') format('woff'),
		url('/fonts/opensans/opensans-boldItalic.ttf') format('truetype'),
		url('/fonts/opensans/opensans-boldItalic.svg') format('svg');
	font-style: italic;
	font-weight: 700;
	font-display: fallback;
}
@font-face {
	font-family: 'opensans';
	src:
		url('/fonts/opensans/opensans-italic.eot') format('embedded-opentype'),
		url('/fonts/opensans/opensans-italic.woff') format('woff'),
		url('/fonts/opensans/opensans-italic.ttf') format('truetype'),
		url('/fonts/opensans/opensans-italic.svg') format('svg');
	font-style: italic;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
	font-family: 'opensans';
	src:
		url('/fonts/opensans/opensans-regular.eot') format('embedded-opentype'),
		url('/fonts/opensans/opensans-regular.woff') format('woff'),
		url('/fonts/opensans/opensans-regular.ttf') format('truetype'),
		url('/fonts/opensans/opensans-regular.svg') format('svg');
	font-style: normal;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
	font-family: 'opensans';
	src:
		url('/fonts/opensans/opensans-light.eot') format('embedded-opentype'),
/*		url('/fonts/opensans/opensans-light.woff2') format('woff2'),*/
		url('/fonts/opensans/opensans-light.woff') format('woff'),
		url('/fonts/opensans/opensans-light.ttf') format('truetype'),
		url('/fonts/opensans/opensans-light.svg') format('svg');
	font-style: normal;
	font-weight: 300;
	font-display: fallback;
}
@font-face {
	font-family: 'opensans';
	src:
		url('/fonts/opensans/opensans-lightitalic.eot') format('embedded-opentype'),
		url('/fonts/opensans/opensans-lightitalic.woff') format('woff'),
		url('/fonts/opensans/opensans-lightitalic.ttf') format('truetype'),
		url('/fonts/opensans/opensans-lightitalic.svg') format('svg');
	font-style: italic;
	font-weight: 300;
	font-display: fallback;
}


html {
	font-size:100%;
}
body {
	font-family: 'opensans';
	background-color: #f0f0f0;
	margin:0;
	padding:0;
	line-height: 150%;
	color:#333;
}
header {
	background-color: #fff;
	padding:20px;
}
header nav, main {
	width:100%;
	max-width: 1400px;
	padding:0 20px;
	box-sizing: border-box;
	margin:0 auto;
	display:block;
}
header nav a {
	display: inline-block;
	padding: 2rem;
	text-decoration: none;
	color: red;
	vertical-align: top;
}
header nav a#home {
	background-image: url(/pics/tools.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	width:1.5rem;
	height:1.5rem;
	margin-right: 1rem;
}
footer {
	background-color: #333;
	color:#fff;
	padding:20px;
	text-align: center;
}
footer a {
	color:#fff;
	text-decoration:none;
	font-size: 0.8rem;
}
main {
	text-align: center;
}
h1 {
	font-size: 2rem;
	font-weight: 300;
}
h3 {
	font-size:1.5rem;
	font-weight: 300;
}
input:not([type="checkbox"]):not([type="radio"]), textarea, button {
	font-size: 1.2rem;
	padding:8px;
	border:1px solid #999;
	min-width:20rem;
	box-sizing: border-box;
	text-align: center;
}
button, input[type="submit"] {
	background-color: #666;
	color:#fff;
	cursor: pointer;
	font-weight: 300;
	text-transform: uppercase;
}
textarea, .CodeMirror {
	width:100%;
	min-height:20rem;
	text-align: left;
}