/* Eric Meyer's Reset CSS v2.0 */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}

@font-face {
	font-family: 'Open Sans';
	src: local("Open Sans"), url("../fonts/Open_Sans/OpenSans-Regular.ttf");
}
@font-face {
	font-family: 'Oswald';
	src: local("Oswald"), url("../fonts/Oswald/Oswald-Regular.ttf");
}

body {
	font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
	font-size: 16px;
}

header {
	background: #2C3F49;
	padding: 10px;
}

.logo {
	font-family: Oswald, sans-serif;
	font-size: 24px;
	margin-right: 5px;
	color: #DDD;
}

.afterlogo {
	font-size: 12px;
	text-transform: uppercase;
	position: relative;
	top: -3px;
	color: #999;
}

#input,
#output {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	padding: 15px;
	height: 80%;
	float: left;
	overflow: auto;
}

#input {
	border: 0;
	font: 300 18px/1.5em 'Open Sans';
	resize: none;
	outline: none;
	width: 50%;
}

#output {
	width: 50%;
	display: inline-block;
	background: #F0F0F0;
	font: 14px/1.25em 'Menlo', 'Monaco', 'Courier New', monospace;
	border-left: 1px solid #CCC;
	white-space: pre-wrap;
}