/**
 * EasyZoom core styles
 */
.easyzoom {
	position: relative;
	/* 'Shrink-wrap' the element */
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

.easyzoom img {
	vertical-align: bottom;
}

.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: 9em;
	margin: -1.5em 0 0 -4.5em;
	text-align: center;
 	font: bold 11px/3em Tahoma, Geneva, sans-serif;
	background: #fff;
 	border-radius: 2px;
	box-shadow: 0 0 10px #888;
	opacity: 0.5;
}

.easyzoom-flyout {
	position:absolute;
	z-index: 9999;
	overflow: hidden;
	background: #ddd;
 	top: 0; 
	left: 0;
	width: 100%; 
	height: 100%;
}

/**
 * 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;
}
