* {
	box-sizing: border-box;
}
html, body {
	min-height: 100%;
	margin:0;
	overflow-x:hidden;
}
a {
	text-decoration: none;
}
.main-header {
  color: #FFFFFF;
    height: 50px;
    left: 0;
    padding: 5px;
    position: fixed;
    text-align: center;
    text-shadow: 0 -1px 1px #222222;
    top: 0;
    transition: all 0.3s ease 0s;
    width: 55px;
    z-index: 100;
}
.main-header a {
	position: absolute;
	left: 10px;
	top:15px;
	color: #fff;
	width:26px;
	height:23px;
}
.page-wrap {
	float: right;
	width: 100%;
	transition: width 0.1s ease;
}
.main-nav {
	position: fixed;
	top: 0;
	width: 0;
	height: 100%;
	background: #3B3B3B;
	overflow-y: auto;
	transition: width 0.3s ease;
}
.main-nav a {
	text-align:right;
	display: block;
	background: linear-gradient(#3e3e3e, #383838);
	border-top: 1px solid #484848;
	border-bottom: 1px solid #2E2E2E;
	color: white;
	padding: 10px;
}
.main-nav a:hover, .main-nav a:focus {
	background: linear-gradient(#484848, #383838);
}
.main-nav:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	height: 150%;
	width: 14px;
	background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}
.close-menu {
	display: none;
}
.register {
	background:#F60;
	padding:10px 0;
}
.register h2 {
	color:#fff;
	text-align:right;
	margin-right:10px;
}
.register a, .register a:hover {
	background:#F60;
	text-align:right;
	border:none;
	text-align:center;
}
.register input {
	display:block;
	width:90%;
	margin:5px auto;
	outline:none;
	line-height:20px;
	border:none;
	border-radius:3px;
}
