/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
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: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* DEMO */

body {
	font-family: 'Lato', sans-serif;
	letter-spacing: 5px;
	font-size: 35px;
}

header {
	background: #000;
	width: 100%;
	height: 198px;
	font-family: 'Lato', sans-serif;
	position: relative;
}

header h1 {
	width: 94px;
	height: 94px;
	
	color: #a9b4b3;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -47px;
	margin-left: -47px;
}

header h1 > img {
	display: block;
}

header h1 span {
	position: absolute;
	top: 25px;
}

header h1 .first {
	text-align: right;
	right: 135%;
}

header h1 .second {
	text-align: left;
	left: 135%;
}

header #arrow {
	position: fixed;
	top : 90px;
	left : 64px;
	display: block;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

header #arrow.visible {
	opacity: 1;
}

section {
	padding-top: 55px;
	letter-spacing: 6px;
	line-height: 47px;
}

section h2, p {
	color: #000;
	text-align: center;
	margin-bottom: 27px;
}

section p {
	margin-top: 30px;
}

.thumb_img {
	display: block;
	margin: 20px auto;
}

pre {
	font-family: monospace;
	padding: 5px;
	font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
	margin-bottom: 10px;
	background-color: #eeeeee;
	overflow: auto;
	
	width: 80%;
	margin: 50px auto;
	padding-bottom: 20px;

	letter-spacing: 0px;
	font-size: 23px;
	line-height: 24px

}

code {
	width: 500px;
	margin: 0 auto;
	display: block;		
}
.content {
	width: 1150px;
	margin: 0 auto;
	text-align: center;
}

.content .box {
	width: 250px;
	height: 200px;
	display: inline-block;
	margin: 44px;
	border-radius: 10px;
}

.black{ background: #242424; }
.green{ background: #17aa56; }
.blue{ background: #006ecc; }
.orange{ background: #ffae00; }