@charset "utf-8";
/* CSS Document */

nav {
	height:0;
	overflow:hidden;
	transition:height .7s ease-in;
	background-color: rgba(255, 255, 255, 0.8);
}
.nav-toggle {position: absolute;
right: 0;
top: 18px;
	cursor:pointer;
}	
#nav-open:target .nav-closed {
	display:block;
}
.nav-closed,
#nav-closed:target .nav-closed,
#nav-open:target .nav-open {
	display:none;
}
#nav-open:target nav {
		height: 165px;
    border-bottom: 1px solid #999;
	}
	.hamburger{
		font-size: 36px;
		color: #000;
		display: inline-block;
		padding: 0 18px 4px;
	}
	.cross{
		font-size: 60px;
		color: #000;
	}
.cross a:hover{
	text-decoration: none;
}
.right a:hover{
	border-bottom: none;
}