
    .wrap {
      overflow: hidden;
      margin: 10px;
	  margin-left: 5%;
	  position: relative;
	  display: block;
    }
    .box {
      float: left;
      position: relative;
      width: 20%;
      padding-bottom: 20%; 
	  margin-right: 4%;
	  margin-bottom: 3%;
    }
    .boxInner {
      position: absolute;
      left: 10px;
      right: 10px;
      top: 10px;
      bottom: 10px;
      overflow: hidden;
	  /* border: 5px solid #333333; */
	  box-shadow: 3px 3px 8px #777777;
    }
    .boxInner img {
	  height: 100%;
	  border: none;
    }
    .boxInner .titleBox {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin-bottom: -75px;
      background: #000;
      background: rgba(0, 0, 0, 0.5);
      color: #FFF;
      padding: 10px;
      text-align: center;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
    }
	img.soldsticker {
		display: none;
		position: absolute;
		bottom: 10px;
		right: 10px;
		z-index: 99;
	}	
	.sold img.soldsticker {
		display: inline-block;
	}
	.soldlabel {display: none;}
	.sold .soldlabel {display: inline-block; color: #bbbb77;}
	
    body.no-touch .boxInner:hover .titleBox, body.touch .boxInner.touchFocus .titleBox {
      margin-bottom: 0;
    }
    @media only screen and (max-width : 500px) {
      /* Smartphone view: 1 tile */
      .box {
        width: 45%;
        padding-bottom: 45%;
      }
	  .titleBox {
		visibility: hidden;
	  }
    }
    @media only screen and (max-width : 700px) and (min-width : 501px) {
      /* Tablet view: 2 tiles */
      .box {
        width: 45%;
        padding-bottom: 45%;
      }
    }
    @media only screen and (max-width : 1050px) and (min-width : 701px) {
      /* Small desktop / ipad view: 3 tiles */
      .box {
        width: 25%;
        padding-bottom: 25%;
      }
    }
    @media only screen and (max-width : 1290px) and (min-width : 1051px) {
      /* Medium desktop: 4 tiles */
      .box {
        width: 20%;
        padding-bottom: 20%;
      }
    }
	