@charset "UTF-8";
/* CSS Hamburger */

nav > ul {
	left: -240px;
    list-style-type: none;
	margin: 0;
	position: absolute;
	top: 50px;
	}

nav > .close, 
a#nav:target {
	height: 210px;
	display: none;
}

a:target ~ ul, 
a:target ~ .close {
    display: inline-block;
}

a:target ~ ul {
	left: -35px;
}