.photoContainer {
	position:relative;
	overflow:hidden;
	width:100%;
	height:300px;
}

.photoGallery {
	position:relative;
	float:left;
	margin-top:44px;
	height:212px;
	width:999999px;
}

.photoGallery img {
	height:212px;
	margin:0px;
	padding:0px;
}

.photoGallery img:hover {
	-webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    cursor: pointer;
    -webkit-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
    box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
}