.Collage
 {
	/*This is where you set the padding you want between the images*/
	padding: 7px;
}
.Collage img
 {
	margin: 0;
	padding: 0;
	display: inline-block;
	vertical-align: bottom;
	opacity: 1;
	/*This is where you set the border you want for the image border:6px solid #FFF;*/
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: all 400ms ease-in-out;
	-webkit-transform: scale(1);
	-ms-transition: all 400ms ease-in-out;
	-ms-transform: scale(1);
	-moz-transition: all 400ms ease-in-out;
	-moz-transform: scale(1);
	transition: all 400ms ease-in-out;
	transform: scale(1);
}
.Collage img:hover
 {
 *z-index: 200;
	-webkit-transition: all 400ms ease-in-out;
	-webkit-transform: scale(1.2);
	-ms-transition: all 400ms ease-in-out;
	-ms-transform: scale(1.2);
	-moz-transition: all 400ms ease-in-out;
	-moz-transform: scale(1.2);
	transition: all 400ms ease-in-out;
	transform: scale(1.1);
}
.Caption {
	font-size: 0.8rem;
	font-weight: normal;
 font-family: Arial, Helvetica, sans-serif;
}
.Caption_Content {
 font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8rem;
	color: #FFF;
	padding: 5px;
}
