@charset "utf-8";
/* CSS Document */

#toggle {
	display: none;
}

@media only screen and (max-width: 1024px) {

#menu {
	display: none;
	background-color: #fff;
	border: 1px solid #999;
}

#toggle {
	width: 100%;
	position: relative;
	display: block;
	background-color: #000;
}

#toggle a {
	padding: 12px 0 10px;
	/* position: relative; */
	display: block;
	border-bottom: 1px solid #000;
	color: #FFF;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}

#toggle:before {
	width: 20px;
	height: 20px;
	margin-top: -10px;
	position: absolute;
	top: 50%;
	left: 12px;
	display: block;
	background: #FFF;
	content: '';
}

#toggle a:before,
#toggle a:after {
	width: 20px;
	height: 4px;
	position: absolute;
	top: 50%;
	left: 12px;
	display: block;
	background-color: #000;
	content: '';
}

#toggle a:before {
	margin-top: -6px;
}

#toggle a:after {
	margin-top: 2px;
}
}