/**
 * EasyZoom core styles
 */

.easyzoom {
	display: block;
	zoom: 1;
}

.easyzoom.is-loading img {
	cursor: progress;
}

.easyzoom.is-ready img {
	cursor: crosshair;
}

.easyzoom.is-error  img {
	cursor: not-allowed;
}

.easyzoom-notice {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 150;
	width: 10em;
	margin: -1em 0 0 -5em;
	line-height: 2em;
	text-align: center;
	background: #FFFFFF;
	box-shadow: 0 0 5px #888888;
}

.easyzoom-flyout {
	position: absolute;
	/*width: 250px; height: 250px;
	left: 0; top: 0;
	border-radius: 99em;
	box-shadow: 0 0 5px #888888;*/
	width: 100%; height: 100%;
	left: 0; top: 0;
	overflow: hidden;
}

.easyzoom-flyout img { 
	position: absolute; 
	width: auto; 
	top: 0; 
	left: 0; 
}

/**
 * EasyZoom layout variations
 */
.easyzoom--overlay .easyzoom-flyout {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.easyzoom--adjacent .easyzoom-flyout {
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	margin-left: 20px;
}
