@charset "utf-8";
/* CSS Document */
.grid {
	width: 100%;
	max-width: 900px;
	clear: both;
	display: block;
	position: relative;
	padding: 0px;
	margin: 0px auto;
}

.item {
	display: block;
	padding: 0px;
	margin: 1% 0.5%;
	width: calc(100% / 4 - 2%);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-image: url(../img/item_bg.jpg);
	background-repeat: repeat;
	background-color: #FFFFFF;
	border: 5px solid #FFF;
	position: relative;
}
.item img {
max-width: 200px;
}



.grid-sizer {
	width: calc(100% / 4);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #FFFFFF;
}

@media screen and (max-width:779px) {
	.item {
	margin: 1.5% 1%;
	width: calc(100% / 3 - 2%);
	}
	.grid-sizer {
	width: calc(100% / 3);
	}
.item img {
	max-width: none;
	width: 100%;

}

}
@media screen and (max-width:480px) {
	.item {
	margin: 1.5% 1%;
	width: calc(47.5%);
	}
	.grid-sizer {
	width: calc(50%);
	}
.item img {
max-width: 200px;
}

}



/* end ************/
/******************/
/******************/
