@charset "utf-8";
/* CSS Document */
#menu{
	width: 100%;
	max-width: 960px;
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
	padding: 0;
}
#menu li{
	display: block;
	float: left;
	width: 14.2%;
	margin: 0;
	padding: 0;
}
#menu li a{
	display: block;
	padding: 12px 0 10px;
	background-color: #666666;
	color: #FFFFFF;
	text-align: center;
	text-decoration: none;
}
#menu li a:hover{
  background: #444;
}
#toggle{
	display: none;
}
#menu-box {
	position: relative;
}
#menu-box :after  {content: "";
	display: block;
	clear: both}


@media only screen and (max-width: 480px) {
  #menu{
    display: none;
  }
  #menu li{
    width: 100%;
  }
  #toggle{
	display: block;
	position: relative;
	width: 100%;
	background-color: #FFFFFF;
  }
  #toggle a{
    display: block;
    position: relative;
    padding: 12px 0 40px;
    border-bottom: 1px solid #444;
    color: #fff;
    text-align: center;
    text-decoration: none;
  }
  #toggle:before{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 10px;
	width: 20px;
	height: 10px;
	background: #fff;
  }
  #toggle a:before, #toggle a:after{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 10px;
	width: 20px;
	background: #222;
	height: 4px;
  }
  #toggle a:before{
    margin-top: -6px;
  }
  #toggle a:after{
    margin-top: 2px;
  }
}
