
.artGroup {
  display: block;
  width: 214px;
  height: 300px;
  position: relative;
  margin: 20px;
  float: left;
  padding: 5px;
  background: #fff;
  border: 1px solid #333;
}

.artwork {
  display: block;
  width: 100%;
  height: 100%;
}

.artGroup img {
  width: 214px;
  height: 300px;
  position: absolute;
  display: block;

}

.artGroup .detail {
  display: block;
  background: #fff;
  width: 214px;
  height: 305px;
  position: absolute;
  background: #fff;
}


/* Older Browsers */

.artGroup.slide { overflow: hidden; }

.artGroup.slide .detail { bottom: -364px; }

/* Newer Browsers */

.artGroup.flip {
  -webkit-perspective: 800px;
  perspective: 800px;
}

.artGroup.flip .artwork {
  -webkit-transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.artGroup.flip .detail,
.artGroup.flip .theFlip {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.artGroup.flip img,
.artGroup.flip .detail {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
