@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,300');

html {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.9em;
}
div {
	margin: 0;
	padding: 0;
}
input {
	display: none;
}
#container {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#left {
	position: absolute;
	left: 0;
	width: 50%;
	height: 100%;
	background-color: #ffffff;
	transition: all 1s 1.5s;
	-ms-transition: all 1s 1.5s; /* IE 9 */
	-moz-transition: all 1s 1.5s; /* Firefox 4 */
	-webkit-transition: all 1s 1.5s; /* Safari and Chrome */
	-o-transition: all 1s 1.5s; /* Opera */
	z-index: 50000;
}
#right {
	position: absolute;
	right: 0;
	width: 50%;
	height: 100%;
	background-color: #ffffff;
	transition: all 1s 1.5s;
	-ms-transition: all 1s 1.5s; /* IE 9 */
	-moz-transition: all 1s 1.5s; /* Firefox 4 */
	-webkit-transition: all 1s 1.5s; /* Safari and Chrome */
	-o-transition: all 1s 1.5s; /* Opera */
	z-index: 50000;
}
#nav {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0 20px;
	list-style-type: none;
	opacity: 0;
	z-index: 1;
	transition: opacity 1.5s 0.2s, z-index 0s 2s;
	-ms-transition: opacity 1.5s 0.2s, z-index 0s 2s; /* IE 9 */
	-moz-transition: opacity 1.5s 0.2s, z-index 0s 2s; /* Firefox 4 */
	-webkit-transition: opacity 1.5s 0.2s, z-index 0s 2s; /* Safari and Chrome */
	-o-transition: opacity 1.5s 0.2s, z-index 0s 2s; /* Opera */
}
#nav > li {
	display: inline-block;
	margin-right: 25px;
}
#nav > li > a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 4px 5px;
	text-decoration: none;
	text-align: center;
	color: #ffffff;
}
#nav > li > a:hover {
	background-color: rgba( 255, 255, 255, 0.5 );
}
#content {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba( 0, 0, 0, 0.2 );
	overflow: auto;
	z-index: 2;
}
#content > h1 {
	margin-left: 10px;
	font-size: 4em;
	font-weight: 300;
	opacity: 0;
	transition: all 1s 0.2s;
	-ms-transition: all 1s 0.2s; /* IE 9 */
	-moz-transition: all 1s 0.2s; /* Firefox 4 */
	-webkit-transition: all 1s 0.2s; /* Safari and Chrome */
	-o-transition: all 1s 0.2s; /* Opera */
}
#content > p {
	max-width: 830px;
	margin: 0 0 10px 10px;
	opacity: 0;
	transition: all 1.2s;
	-ms-transition: all 1.2s; /* IE 9 */
	-moz-transition: all 1.2s; /* Firefox 4 */
	-webkit-transition: all 1.2s; /* Safari and Chrome */
	-o-transition: all 1.2s; /* Opera */
}
#openbutton {
	display: block;
	position: absolute;
	top: 48%;
	left: 48%;
	width: 5em;
	height: 5em;
	background-color: rgba( 0, 0, 0, 0.8 );
	text-align: center;
	text-decoration: none;
	color: #ffffff;
	line-height: 5em;
	vertical-align: center;
	cursor: pointer;
	z-index: 100000;
	opacity: 1;
	border-radius: 45px;
	transition: top 0.6s 2.2s, left 0.6s 2.2s, width 0.6s 2.2s, height 0.6s 2.2s, opacity 1s 2.2s, z-index 1s 2.2s;
	-ms-transition: top 0.6s 2.2s, left 0.6s 2.2s, width 0.6s 2.2s, height 0.6s 2.2s, opacity 1s 2.2s, z-index 1s 2.2s; /* IE 9 */
	-moz-transition: top 0.6s 2.2s, left 0.6s 2.2s, width 0.6s 2.2s, height 0.6s 2.2s, opacity 1s 2.2s, z-index 1s 2.2s; /* Firefox 4 */
	-webkit-transition: top 0.6s 2.2s, left 0.6s 2.2s, width 0.6s 2.2s, height 0.6s 2.2s, opacity 1s 2.2s, z-index 1s 2.2s; /* Safari and Chrome */
	-o-transition: top 0.6s 2.2s, left 0.6s 2.2s, width 0.6s 2.2s, height 0.6s 2.2s, opacity 1s 2.2s, z-index 1s 2.2s; /* Opera */
}
#closebutton {
	position: absolute;
	top: 0;
	right: 0;
	width: 1em;
	height: 1.3em;
	margin: 4px 12px;
	text-align: right;
	text-decoration: none;
	color: #ffffff;
	cursor: pointer;
	z-index: 3;
	opacity: 0;
	transition: opacity 1s 1.8s;
	-ms-transition: opacity 1s 1.8s; /* IE 9 */
	-moz-transition: opacity 1s 1.8s; /* Firefox 4 */
	-webkit-transition: opacity 1s 1.8s; /* Safari and Chrome */
	-o-transition: opacity 1s 1.8s; /* Opera */
}
#backbar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: rgba( 0, 0, 0, 0.7 );
	z-index: 89999;
	transition: all 1s 0.9s;
	-ms-transition: all 1s 0.9s; /* IE 9 */
	-moz-transition: all 1s 0.9s; /* Firefox 4 */
	-webkit-transition: all 1s 0.9s; /* Safari and Chrome */
	-o-transition: all 1s 0.9s; /* Opera */
}
#open:checked ~ #openbutton {
	top: 52%;
	left: 50%;
	width: 0;
	height: 0;
	color: transparent;
	overflow: hidden;
	opacity: 0;
	z-index: -1;
	transition: top 0.6s, left 0.6s, width 0.6s, height 0.6s, opacity 1s, z-index 1s;
	-ms-transition: top 1s, left 1s, width 1s, height 1s, opacity 1s, z-index 1s; /* IE 9 */
	-moz-transition: top 0.6s, left 0.6s, width 0.6s, height 0.6s, opacity 1s, z-index 1s; /* Firefox 4 */
	-webkit-transition: top 1s, left 1s, width 1s, height 1s, opacity 1s, z-index 1s; /* Safari and Chrome */
	-o-transition: top 1s, left 1s, width 1s, height 1s, opacity 1s, z-index 1s; /* Opera */
}
#open:checked ~ #closebutton {
	opacity: 1;
	z-index: 100001;
}
#open:checked ~ #backbar {
	height: 2em;
	transition: all 1s 1.2s;
	-ms-transition: all 1s 1.2s; /* IE 9 */
	-moz-transition: all 1s 1.2s; /* Firefox 4 */
	-webkit-transition: all 1s 1.2s; /* Safari and Chrome */
	-o-transition: all 1s 1.2s; /* Opera */
}
#open:checked ~ #container > #left {
	left: -50%;
	transition: all 1s 0.4s;
	-ms-transition: all 1s 0.4s; /* IE 9 */
	-moz-transition: all 1s 0.4s; /* Firefox 4 */
	-webkit-transition: all 1s 0.4s; /* Safari and Chrome */
	-o-transition: all 1s 0.4s; /* Opera */
}
#open:checked ~ #container > #right {
	right: -50%;
	transition: all 1s 0.4s;
	-ms-transition: all 1s 0.4s; /* IE 9 */
	-moz-transition: all 1s 0.4s; /* Firefox 4 */
	-webkit-transition: all 1s 0.4s; /* Safari and Chrome */
	-o-transition: all 1s 0.4s; /* Opera */
}
#open:checked ~ #nav {
	opacity: 1;
	z-index: 90000;
	transition: opacity 1.5s 1.8s;
	-ms-transition: opacity 1.5s 1.8s; /* IE 9 */
	-moz-transition: opacity 1.5s 1.8s; /* Firefox 4 */
	-webkit-transition: opacity 1.5s 1.8s; /* Safari and Chrome */
	-o-transition: opacity 1.5s 1.8s; /* Opera */
}
#open:checked ~ #container > #content > h1 {
	margin-left: 40px;
	opacity: 1;
	transition: all 1s 2s;
	-ms-transition: all 1s 2s; /* IE 9 */
	-moz-transition: all 1s 2s; /* Firefox 4 */
	-webkit-transition: all 1s 2s; /* Safari and Chrome */
	-o-transition: all 1s 2s; /* Opera */
}
#open:checked ~ #container > #content > p {
	margin-left: 80px;
	opacity: 1;
	transition: all 1.2s 2.2s;
	-ms-transition: all 1.2s 2.2s; /* IE 9 */
	-moz-transition: all 1.2s 2.2s; /* Firefox 4 */
	-webkit-transition: all 1.2s 2.2s; /* Safari and Chrome */
	-o-transition: all 1.2s 2.2s; /* Opera */
}
