/* Scale image on hover */
.thumbnail img:hover {
	transform: scale(1.075);
}
.thumbnail img {
	transition: all 0.3s ease 0s;
	max-width: 100%;
}
.thumbnail {
	overflow: hidden;
}

/* Scale image on hover */
.scale {
	display: block;
	padding: 8px;
  -webkit-transition: all .2s ease-in-out;
       -o-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
	margin-left: 20px;
	margin-right: 10px;
	overflow: hidden;
}
.scale img:hover {
	transform: scale(1.05);
}
.scale img {
	transition: all 0.3s ease 0s;
	max-width: 100%;
	overflow: hidden;
}

/* Adds vertical space between half-page columns */
  [class*="col-"] {
      margin-bottom: 15px;
}

/* Shrinks 240px responsive image more */
.img-responsive1,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
}