/* AnythingZoomer */
.az-wrap, .az-small, .az-large {
	position: absolute;
	top:0px;
	left:0px;
}
.az-wrap-inner {
}
/* This wraps the large image and hides it */
.az-zoom {
	background: #fff;
	border: #333 5px solid;
	position: relative;
	top: 0px;
	left: 0px;
	width: 150px; /*Größe der Lupe*/
	height: 150px; /*Größe der Lupe*/
	overflow: hidden;
	z-index: 100;
	display: none;
	-moz-box-shadow: inset 0px 0px 4px #000;
	-webkit-box-shadow: inset 0px 0px 4px #000;
	box-shadow: inset 0px 0px 4px #000;
	border-radius: 100px;

	
}
/* Class applied to az-mover when large image is windowed */
.az-windowed {
	overflow: hidden;
	position: absolute;
}
/* Class applied to az-mover when large image is fully shown */
.az-expanded {
	height: auto;
	width: auto;
	position: static;
	overflow: visible;
};