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

#mobNAV{
	display:block;
	width:100%;
	margin:1em auto;
	overflow: hidden;
}
#mobNAV li{
	width:33.3%;
	float:left;
	background-color:#333;
	overflow:hidden;
}
#mobNAV li a{
	display:block;
	width:100%;
	box-sizing:border-box;
	line-height:2em;
	border:1px solid #fff;
	color:#fff;
	text-align:center;
}
#mobNAV li a:hover{
	background-color:#FFF;
	color:#333;
	border:1px solid #333;
}
@media screen and (min-width:781px){
	#mobNAV{
		display:none;
	}

}