﻿/*pad*/
img { max-width: 100%;}

#gh {
	float: right;
	height: 50px;
	width: 50px;
	position: absolute;
	transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;
	-webkit-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;
	-ms-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;
	cursor: pointer;
	z-index: 9999;
	
	display: block;
	left: auto;
	margin: 0;
	right: 40px;
	top: 25px;
		
}
.selected #gh { transform: rotate(90deg);}
#gh a {
	background-color: #38b34b;
	display: block;
	height: 4px;
	margin-top: -1px;
	position: relative;
	top: 50%;
	transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
	-webkit-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
	-ms-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
	width: 100%;
	border-radius: 2px;
}
#gh a:after, #gh a:before {
	background-color: #38b34b;
	content: "";
	display: block;
	height: 4px;
	left: 0;
	position: absolute;
	transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
	-webkit-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
	-ms-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
	width: 100%;
	border-radius: 2px;
}

#gh a:after { top: 13px;}
#gh a:before { top: -13px;}
.selected #gh a:after, .selected #gh a:before { top: 0;}

.selected #gh a:before {
	transform: translateY(0px) rotate(-45deg);
	-webkit-transform: translateY(0px) rotate(-45deg);
	-ms-transform: translateY(0px) rotate(-45deg);
	background: #38b34b;
}

.selected #gh a:after {
	transform: translateY(0px) rotate(45deg);
	-webkit-transform: translateY(0px) rotate(45deg);
	-ms-transform: translateY(0px) rotate(45deg);
	background: #38b34b;
}

.selected #gh a { background-color: transparent !important;}
.selected .header .nav { display: block; z-index: 111; position: absolute; left: 0; top: 80px; right: 0; margin: 0;}
.selected .header .nav li a {
	text-align: center;
	width: auto;
	display: block;
	background: rgba(255, 255, 255, 0.9);
	margin: auto;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	line-height: 50px;
	padding: 0;
}
.selected .header .nav li a { color: #000000;}
.selected .header .nav .selected a { border-bottom-color: #73e5b1;}