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

#menu-box {
	width: 100%;
	height: 48px;
	background: #003300;
}
#menu {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 0;
	z-index: 999;
}
#menu li {
	display:block;
	float: left;
	width: 20%;
	height: 42px;
	margin: 0;
	padding: 0;
}
#menu li a {
	display: block;
	padding: 15px 0 10px;
	background: #003300;
	color: #fff;
	text-align: center;
	text-decoration: none;
}
#menu li a:hover {
	background: #339933;
}
#toggle {
	display: none;
}
.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}
@media only screen and (max-width: 768px) {
	#menu { display: none;}
	#menu li { width: 100%; }
	#toggle {
		display: block;
		position: relative;
		width: 100%;
		background: #003300;
	}
	#toggle a {
		display: block;
		position: relative;
		padding: 12px 0 10px;
		border-bottom: 1px solid #fff;
		color: #fff;
		text-align: center;
		text-decoration: none;
	}
	#toggle:before {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		right: 10px;
		width: 20px;
		height: 20px;
		margin-top: -10px;
		background: #fff;
	}
	#toggle a:before, #toggle a:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		right: 10px;
		width: 20px;
		height: 4px;
		background: #003300;
	}
	#toggle a:before { margin-top: -6px; }
	#toggle a:after { margin-top: 2px; }
}