/*
 * Images with captions
 */
.left-img-caption,
.right-img-caption {
  padding: 5px;
  border: 1px solid #a1a1b9;
  text-align: center;
  font-size: 12px;
  font-style: italic;
  display: block; /* redundant if containers are divs, handy if they're spans */
}

.left-img-caption {
  float: left;
  margin: 0 20px 20px 0;
}
.right-img-caption {
  float: right;
  margin: 0 0 20px 20px;
}
.left-img-caption em,
.right-img-caption em {
  font-style: normal;
}
