/* image boxes */
.album {
  width: 228px;
  min-height: 250px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ccc;
  float: left;
  margin: 10px 10px;
  padding: 5px;
  position: relative;
  z-index: 5;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-shadow: 0 0 3px #ccc;
  -moz-box-shadow: 0 0 3px #ccc;
  -webkit-box-shadow: 0 0 3px #ccc;
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transition: background-color 0.5s, box-shadow 0.5s, transform 0.5s;
  -moz-transition: background-color 0.5s, -moz-box-shadow 0.5s, -moz-transform 0.5s;
  -webkit-transition: background-color 0.5s, -webkit-box-shadow 0.5s, -webkit-transform 0.5s;
  -o-transition: background-color 0.5s, -o-box-shadow 0.5s, -o-transform 0.5s;
  /* title holder */

  /* image holder */

  /* description text holder */

}
.album:hover {
  text-decoration: none;
  background-color: #fff;
  z-index: 10;
  box-shadow: 0 0 15px #333;
  -moz-box-shadow: 0 0 15px #333;
  -webkit-box-shadow: 0 0 15px #333;
  transform: scale(1.01);
  -moz-transform: scale(1.01);
  -webkit-transform: scale(1.01);
}
.album h3 {
  font-size: 18px;
  color: #777;
  margin: 5px 10px;
  padding: 5px 10px;
  font-family: 'Arial Narrow', Arial;
  letter-spacing: 1px;
  text-shadow: 0 1px 1px #ccc;
  border-bottom: 0 solid #fff;
  transition: color 0.5s, text-shadow 0.5s, border-bottom 0.5s;
  -moz-transition: color 0.5s, text-shadow 0.5s, border-bottom 0.5s;
  -webkit-transition: color 0.5s, text-shadow 0.5s, border-bottom 0.5s;
  -o-transition: color 0.5s, text-shadow 0.5s, border-bottom 0.5s;
}
.album:hover h3 {
  color: #333;
  border-bottom: 1px solid #aaa;
  text-shadow: 1px 1px 1px #fff, 2px 2px 1px #888;
}
.album .image {
  margin: 10px;
  opacity: 0.8;
  filter: alpha(opacity=80);
  transition: opacity .5s;
  -moz-transition: opacity .5s;
  -webkit-transition: opacity 1s;
  -o-transition: opacity .5s;
}
.album:hover .image {
  opacity: 1;
  filter: alpha(opacity=100);
}
.album .image img {
  width: 100%;
  padding: 5px;
  background: #000;
}
.album .image img:hover {
  background: #333;
}
.album .description,
.album .description a {
  color: #999999;
  color: rgba(153, 153, 153, 0);
  text-shadow: 0 0 5px #aaa;
  text-align: left;
  font-size: 14px;
  transition: text-shadow 0.5s ease 0.5s, color 0.5s ease 0.5s, outline 0.5s ease 0.5s;
  -moz-transition: text-shadow 0.5s ease 0.5s, color 0.5s ease 0.5s, outline 0.5s ease 0.5s;
  -webkit-transition: text-shadow 0.5s ease 0.5s, color 0.5s ease 0.5s, outline 0.5s ease 0.5s;
  -o-transition: text-shadow 0.5s ease 0.5s, color 0.5s ease 0.5s, outline 0.5s ease 0.5s;
}
.album:hover .description,
.album:hover .description a {
  text-shadow: 0 0 0 #fff;
  color: #646464;
}
.album:hover .description a {
  outline: 1px dotted #777;
}
