/*Some CSS*/
.vergroessern {
	width: 56px;
	max-width: 56px;
	margin: 0; 
 	padding: 0;
	position: relative;
	float: left;
	margin-right: 30px;

	display: block;
}

/*Lets create the magnifying glass*/
.meingross {
	margin: 0; padding: 0;
	width: 175px;
	max-width: 175px;
	min-width: 175px;
	height: 175px;
	position: absolute;
	border-radius: 100%;
	
	/*Multiple box shadows to achieve the glass effect*/
	box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85), 
	0 0 7px 7px rgba(0, 0, 0, 0.25), 
	inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
	
	/*Lets load up the large image first*/
/*	background: url('/versuch/../piktos/K01_EN397.png') no-repeat; */
		
	/*hide the glass by default*/
	display: none;
	z-index: 2;
}

/*To solve overlap bug at the edges during magnification*/
.meinklein {
 margin: 0; padding: 0;
 display: inline-block;
 width: 140%;
}
