/**
 * Images Fancified (stylesheet)
 *
 * This is essentially the stylesheet from Cleaner Gallery plugin by
 * Justin Tadlock {@link http://wordpress.org/extend/plugins/cleaner-gallery/}
 * since the syntax is compatible. I've only altered it slightly for now.
 *
 * @author Julius Juurmaa
 * @version 0.2
 * @license http://www.gnu.org/licenses/gpl.html
 */

.gallery {
  overflow: hidden;
  display: block;
  clear: both;
  margin: 0 auto;
}

.gallery-row {
  overflow: hidden;
  display: block;
  clear: both;
  margin: 0;
}

.gallery .gallery-item {
  overflow: hidden;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
  list-style: none;
}

.gallery .gallery-item img {
  max-width: 89%;
  height: auto;
  padding: 1%;
  margin: 0 auto;
}

.gallery-caption {
  margin-left: 0;
}

.col-0 { width: 100%; }
.col-1 { width: 100%; }
.col-2 { width: 50%; }
.col-3 { width: 33%; }
.col-4 { width: 25%; }
.col-5 { width: 20%; }
.col-6 { width: 16.5%; }
.col-7 { width: 14%; }
.col-8 { width: 12.4%; }
.col-9 { width: 11%; }
.col-10 { width: 10%; }
.col-11 { width: 9%; }
.col-12 { width: 8.33%; }
.col-13 { width: 7.6%; }
.col-14 { width: 7.1%; }
.col-15 { width: 6.66%; }
.col-16 { width: 6.25%; }
.col-17 { width: 5.83%; }
.col-18 { width: 5.55%; }
.col-19 { width: 5.25%; }
.col-20 { width: 4.95%; }
