
	#image-zoom-wrapper {
		position: relative;
		text-align: left;
		width: 1200px;
		height: 800px;
		overflow: auto;
		margin: 10px auto;
		border: 1px solid #000;
		background: #AAA url("./loader.gif") no-repeat 50% 50%;
		-moz-user-select: none;
		-khtml-user-select: none;
		-webkit-user-select: none;
		user-select: none;
	}

	#image-zoom-wrapper.js-active {
		cursor: move;
		background-image: none;
	}

	.js-enabled #image-zoom-wrapper {
		overflow: hidden;
		position: relative;
	}

	.js-enabled #image-zoom-wrapper #image-zoom {
		visibility: hidden;
		position: relative;
	}

	#image-zoom-wrapper div.zoom-control {
		width: 26px;
		height: 26px;
	}

	#image-zoom-wrapper div.zoom-in,
	#image-zoom-wrapper div.zoom-out,
	#image-zoom-wrapper div.close {
		background: url("./zoom-in.png") no-repeat 0 0;
		position: absolute;
		left: 10px;
		top: 10px;
	}

	#image-zoom-wrapper div.zoom-out {
		background-image: url("./zoom-out.png");
		top: 46px;
	}

	#image-zoom-wrapper div.close {
		background-image: url("./close.png");
		background-size: 100% 100%;
		top: 82px;
		width: 26px;
		height: 26px;
	}

	#image-zoom-wrapper div.zoom-off {
		background-position: 0 100%;
	}

	@media(max-device-width: 480px) {

		#image-zoom-wrapper {
			border-width: 5px;
		}

		#image-zoom-wrapper div.zoom-in,
		#image-zoom-wrapper div.zoom-out {
			background-image: url("./zoom-in-104.png");
			width: 104px;
			height: 104px;
		}

		#image-zoom-wrapper div.zoom-out {
			background-image: url("./zoom-out-104.png");
			left: auto;
			right: 10px;
			top: 10px;
		}

	}
