/* 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;
}

/*
	Site Specific Styles
 */
body {
	font-family: 'Open Sans', sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
	background: #f0f0f0;
}
a {
	color: #005b9a;
	font-weight: bold;
	text-decoration: none;
	padding: 0 3px;
	border-radius: 4px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}
a:hover{
	color: #FFF;
	background: #005b9a;
}
header {
	margin: 0 auto;
	padding: 50px;
	max-width: 960px;
	text-align: center;
}
header h1 {
	padding-top: 300px;
	position: relative;
	font-weight: 800;
	font-size: 60px;
	line-height: 1em;
	color: #333;
	text-transform: uppercase;
}
header h1:before {
	content: '';
	background: url('../img/logo.png') no-repeat 50% 0;
	-webkit-background-size: auto 100%;
	background-size: auto 100%;
	position: absolute;
	top: 50px;
	right: 0;
	left: 0;
	width: 100%;
	height: 200px;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
}
header h1:hover:before {
	-moz-transform: rotatey(180deg);
    -ms-transform: rotatey(180deg);
    -o-transform: rotatey(180deg);
    -webkit-transform: rotatey(180deg);
    transform: rotatey(180deg)
}
header h2 {
	font-weight: 100;
	font-size: 30px;
	line-height: 1.5em;
	color: #333;
	text-transform: lowercase;
}
header p {
	font-weight: 100;
	padding-top: 40px;
	font-size: 24px;
	line-height: 1.5em;
	color: #555;
	position: relative;
}
header p:before {
	content: '';
	background: #ddd;
	height: 1px;
	width: 80%;
	margin-left: 10%;
	position: absolute;
	top: 20px;
	left: 0;
}

ul {
	position: relative;
	padding-top: 20px;
}
ul + ul {
	padding-top: 0px;
}
/*ul:before {
	content: '';
	background: #ddd;
	height: 1px;
	width: 80%;
	margin-left: 10%;
	position: absolute;
	top: 20px;
	left: 0;
}*/
ul li {
	margin: 10px 0;
	display: inline-block;
}
ul li + li:before {
	content: "|";
	color: #aaa;
	margin: 0 10px;
}

@media (max-width: 500px) {
	header {
		padding: 20px;
	}
	header h1 {
		font-size: 36px;
	}
	header h2 {
		font-size: 24px;
	}
	header p {
		font-size: 18px;
	}
	ul li  {
		display: block;
	}
	ul li + li:before {
		content: "";
	}
}
