/* DMXzone HTML5 3D Flip Gallary */

/* Gallery Container */
.dmx3DFlipGallery {
    margin-bottom: 50px;
    margin-top: 10px;
    position: relative;
}

/* Loading Screen */
.dmx3DFlipGalleryLoading {
	background-image: url(../images/dmx3DFlipGalleryLoader.gif);
	background-position: center center;
	background-repeat: no-repeat;
}

/* Hide all photos on loading */
.dmx3DFlipGalleryLoading .dmx3DFlipPhoto {
	visibility: hidden;
}

/* Fixes mozilla anti-aliasing bug */
.dmx3DFlipPhotoFront, .dmx3DFlipPhotoBack {
	outline: 1px solid transparent;
}

/* Remove outlines from links */
.dmx3DFlipPhoto a {
	outline: none;
}

/* Remove border from images with link */
.dmx3DFlipPhoto a img {
	border: none;
}

/* The photo container */
.dmx3DFlipPhoto {
	display: inline-block;
	margin: 10px;
}

/* The photo front and back */
.dmx3DFlipPhotoFront, .dmx3DFlipPhotoBack {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	background-color: #fff;
	padding: 10px;
}

/* The back of the photo will get absolute positioning */
.dmx3DFlipPhotoBack {
	position: absolute;
	width: 100%; height: 100%;
	left: 0; top: 0;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
}

.dmx3DFlipPhotoFront img {
	width: 190px;
}

.dmx3DFlipPhotoFront img:scale {
	width: 325px;
}