body{
	padding-top:100px;
}
.left{
	float:left;
}
.right{
	float:right;
}
.clear{
	clear:both;
}
#wrapper{
	width:890px;
	margin:0 auto;
}
#footer{
	height:50px;
}

h1{
	margin:0 auto;
	width:540px;
	height:100px;
	background:url(../img/photobook_title.png) no-repeat top center;
	text-indent:-9999px;
}

#wrapper img{
	vertical-align:bottom;
}

#wrapper a{
	display:block;
	background-color:#fff;
	margin-bottom:20px
}

#wrapper a img{
	border:solid 5px #ef012e;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);;
}
#wrapper a img.blue{
	border:solid 5px #039;
}
#wrapper a img.white{
	border:solid 5px #fff;
}

#wrapper a img:hover{
	border:solid 5px #fff;
	opacity:0.6;
	filter:alpha (opacity=60); /* IE */
}

.caption{
	text-align:right;
	color:#000;
	font-size:10px;
}


@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity:0;
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
    opacity:1;
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity:0;
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
    opacity:1;
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
h1{
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
  -webkit-animation-fill-mode:backwards;
  -webkit-animation-delay: 0.5s;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
  animation-fill-mode:backwards;
  animation-delay: 0.5s;
  animation-duration: 1s;
  animation-iteration-count: 1;
}