html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{ margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent}body{ line-height:1}article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary{ display:block}nav ul{ list-style:none}blockquote,q{ quotes:none}blockquote:before,blockquote:after,q:before,q:after{ content:''; content:none}a{ margin:0; padding:0; border:0; font-size:100%; vertical-align:baseline; background:transparent}ins{ background-color:#ff9; color:#000; text-decoration:none}mark{ background-color:#ff9; color:#000; font-style:italic; font-weight:bold}del{ text-decoration:line-through}abbr[title],dfn[title]{ border-bottom:1px dotted #000; cursor:help}table{ border-collapse:collapse; border-spacing:0}hr{ display:block; height:1px; border:0;  border-top:1px solid #ccc; margin:1em 0; padding:0}input,select{ vertical-align:middle}

html, body {
	height: 100%;
	overflow: hidden;
}

body {
	font: 100%/20px 'Myriad Pro', helvetica, arial, sans-serif;	
}

a {
	text-decoration: none;	
}

header {
	background: rgba(0,0,0,.65);
	height: 40px;
	line-height: 40px;
	min-width: 700px;
	position: fixed;
	width: 100%;
	z-index: 2;
}

header h1 a {
	color: #fff;
	display: block;
	float: left;
	font-size: 14px;
	margin: 0 0 0 40px;
}

nav {
	float: left;
	margin: 0 0 0 40px;
}

nav li {
	float: left;	
}

nav a {
	color: #ccc;
	display: block;
	height: 40px;
	font-size: 12px;
	padding: 0 15px;
	-webkit-transition: all 300ms;
}

nav a.current {
	background: #000;
	color: #fff;
}

nav a:hover {
	background: rgba(0,0,0,.25);
	color: #fff;
}

#prev-slide, #next-slide {
	background: rgba(0,0,0,.25);
	color: #fff;	
	display: block;
	font-size: 12px;
	height: 30px;
	line-height: 30px;
	margin: -15px 0 0 0;
	position: fixed;
	text-align: center;
	top: 50%;
	width: 50px;
	-webkit-transition: all 300ms;
}

#prev-slide {
	left: 10px;
}

#next-slide {
	right: 10px;	
}

#prev-slide:hover, #next-slide:hover {
	background: rgba(0,0,0,.65);
}

#horizontal-slider {
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
}

.slide {
	float: left;
	height: 100%;
	position: relative;
}

.slide:nth-of-type(1) { background-color: #eee; }
.slide:nth-of-type(2) { background-color: #ddd; }
.slide:nth-of-type(3) { background-color: #ccc; }
.slide:nth-of-type(4) { background-color: #bbb; }
.slide:nth-of-type(5) { background-color: #aaa; }
.slide:nth-of-type(6) { background-color: #999; }

.slide .content {
	background: #fff;
	height: 600px;
	left: 50%;
	margin: -300px 0 0 -480px;
	position: absolute;	
	top: 50%;
	width: 960px;
}

.slide .content h2 {
	color: #444;
	font-size: 40px;
	padding: 30px;
}