#gHeader #menu_button{
	display: none;
	text-align: center;
	color: #000;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 2px;
	z-index: 9999;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

#gHeader #menu_button span{
	display: block;
	background: #000;
	width: 34px;
	height: 1px;
	left: 50%;
	margin-left: -17px;
	position: absolute;
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
}
#gHeader #menu_button span:first-child{
top: 35%;
}
#gHeader #menu_button span:nth-child(2){
top: 50%;
margin-top: -1px;
}
#gHeader #menu_button span:last-child{
bottom: 35%;
}
#gHeader #menu_button.active span:first-child{
-webkit-transform: translateY(11px) rotate(45deg);
-ms-transform: translateY(11px) rotate(45deg);
transform: translateY(11px) rotate(45deg);
}
#gHeader #menu_button.active span:nth-child(2){
opacity: 0;
}
#gHeader #menu_button.active span:last-child{
-webkit-transform: translateY(-11px) rotate(-45deg);
-ms-transform: translateY(-11px) rotate(-45deg);
transform: translateY(-11px) rotate(-45deg);
}


@media screen and (max-width: 820px){

}

@media screen and (max-width: 820px){
	#gHeader #menu_button{
		position: fixed;
		top: 0;
		right: 0;
		display: block;
		width: 75px;
		height: 75px;
	}
}