.Collage {

    /*This is where you set the padding you want between the images*/
    padding:5px;

}

.Collage img {
    margin:0;
    padding:0;
    display:inline-block;
    vertical-align:bottom;
    opacity:1;
    -webkit-transition: all 1s ease; /* Safari and Chrome */
    -moz-transition: all 1s ease; /* Firefox */
    -ms-transition: all 1s ease; /* IE 9 */
    -o-transition: all 1s ease; /* Opera */
    transition: all 1s ease;
    /*This is where you set the border you want for the image*/
    /*border:6px solid #FFF;*/
}

.Collage img:hover { -webkit-transform:rotateZ(3deg) scale(1.05); /* Safari and Chrome */
    -moz-transform:rotateZ(3deg) scale(1.05); /* Firefox */
    -ms-transform:rotateZ(3deg) scale(1.05); /* IE 9 */
    -o-transform:rotateZ(3deg) scale(1.05); /* Opera */
     transform: rotateZ(3deg) scale(1.05); 
 }


/* In this example, this is the main item being resized */
.Image_Wrapper{
    /* to get the fade in effect, set opacity to 0 on the first element within the gallery area */
    opacity:0;
    -moz-box-shadow:0px 2px 4px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow:0px 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow:0px 2px 4px rgba(0, 0, 0, 0.1);
}

.Caption{
    font-size:140%;
    font-weight:normal;
    font-family:Roboto;
    text-align:center;
}
.Caption_Content{
    color:#FFF;
    padding:20px 5px 20px 5px;
}