@charset "utf-8";
/* CSS Document */
.image_menu_panel{
	width:auto;
	overflow:hidden;
	height:auto;
}
.image_menu_box{
	position:relative;
	width:29.333%;
	height:200px;
	display:block;
	float:left;
	overflow:hidden;
	margin-left:2%;
	margin-right:2%;
	margin-bottom:2%;
	z-index:2;
}
.image_menu_img{
	position:absolute;
	display:block;
	width:100%;
	height:100%;
	top:0%;
	left:0px;
	z-index:1;
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center center;
	transition: top 0.3s ease-in-out;
	-webkit-transition: top 0.3s ease-in-out;
	-moz-transition: top 0.3s ease-in-out;
}
.image_menu_links{
	width:100%;
	height:100%;
	position:relative;
	display:table;
	z-index:0;
}
.links_center{
	display:table-cell;
	width:100%;
	text-align:center;
	vertical-align:middle;
}
.links_center a{
	display:block;
}
@media only screen and (min-width:480px) and (max-width:768px){
	.image_menu_box{
		width:46%;
	}
}
@media only screen and (max-width:480px){
	.image_menu_box{
		width:96%;
	}
}
