
/* masonry */
* {
	box-sizing:border-box;
}

.grid-item {
  float: left;
  width: 400px;
  padding:10px;
}

.grid-item--width2 { width: 160px; }
.grid-item--height2 { height: 400px; }
.grid-item--height3 {height:260px; }

.grid-item--width4 { width: 160px; }
.grid-item--height4 { height: 140px; }

.grid-item--width6 { width: 400px; }
.grid-item--height6 { height: 400px; }

#wrapper {
	max-width:1280px;
	margin:0 auto;
	border:1px solid #efefef;
}

#main .inside {
	margin:0 10px;
}

.box1 {
	background-color:blue;
}

.box2 {
	background-color:lime;
}

.box3 {
	background-color:purple;
}

.box4 {
	background-color:orange;
}

.box5 {
	background-color:red;
}

.box6 {
	background-color:yellow;
}

.ce_image {
	padding:0;
}

/* clearfix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

@media only screen and (max-width: 960px) {
	
.grid-item {
  float: none;
  width: 100%;
  padding:10px;
}

.ce_image {
	padding:0;
}

.ce_image img {
	width:100%;
	height: auto;
}	

.grid-item--height2 {
	height:auto;
}

}