@charset "utf-8";
/* CSS Document */




body, html{
    height:100%;
}
body{
    padding:0;
    margin:0;
}
h1, p, li{
	color: #fc7763;
	margin: - 0 0 0em;
}
section li{
	margin: 0 0 0px;
}
h1{
    font-size:2.5em;
    font-weight:300;
}
p{
    font-size:1em;
    line-height:1.5em;
}
.wrapper{
	overflow: hidden;
}
nav{
	position: fixed;
	left: 0px;
	width: 180px;
	height: 100%;
	-moz-transition: all 200ms ease-in;
	-webkit-transition: all 200ms ease-in;
	-o-transition: all 200ms ease-in;
	transition: all 200ms ease-in;
	margin-bottom: 0;
	margin-left: -335px;
}
nav ul{
	width: 180px;
	height: 100%;
	list-style: none;
	background: #fc7763;
	overflow: hidden;
	padding-top: 5px;
	padding-right: 40px;
	padding-bottom: 5px;
	margin-top: -2px;
}
nav li{
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
}
nav a:hover{
	padding-left: 20px;
}
label{
	display: block;
	width: 80px;
	height: 102px;
	text-align: center;
	position: fixed;
	top: 10px;
	left: 20px;
	-moz-transition: all 200ms ease-in;
	-webkit-transition: all 200ms ease-in;
	-o-transition: all 200ms ease-in;
	transition: all 200ms ease-in;
	z-index: 500;
}
input[type="checkbox"]{
    display:none;
}
input[type="checkbox"]:checked ~ nav{
    margin:0;
}
input[type="checkbox"]:checked ~ label{
    left:260px;
}
input[type="checkbox"]:checked ~ section{
    -webkit-transform:translate3d(260px, 0, 0);
    -moz-transform:translate3d(260px, 0, 0);
    -o-transform:translate3d(260px, 0, 0);
    transform:translate3d(260px, 0, 0);
}

nav a{
	color: #fff;
	font-size: medium;
	text-decoration: none;
	display: block;
	font-weight: 300;
	letter-spacing: 2px;
	border-bottom: 1px solid #fff;
	padding-top: 5px;
	padding-right: 50px;
	padding-bottom: 10px;
	padding-left: 20px;
	border-top-color: #fff;
	border-right-color: #fff;
	border-left-color: #fff;
}
