/* erstmal reset */
*{
margin: 0;
padding: 0;
}

/* Micha: gesamtes Window und Mittelteil */
.wcontent {
	width: 98%;
	border: 0;
	padding : 8px;
	background-color:#f5f5f5;
	color:#333;
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
}
.zoom-section {
	width: 100%;
	background-color:#fff;
	color:#333;
}
.linkbox {
	width: 99%;
	left: -1px;
	background-color:#eee;
	padding:12px 0px;
	border: 2px solid #ccc;
	text-align: middle;
}
 /* Pfeil */
.pfeil {
	position: absolute;
	border:none;
	overflow:hidden;
	width: 60px;
	height: 60px;
	z-index:200;
}


/* This is the moving lens square underneath the mouse pointer. */
.cloud-zoom-lens {
	border: 4px solid #888;
	margin:-4px;	/* Set this to minus the border thickness. */
	background-color:#fff;	
	cursor:move;		
}
/* This is for the title text. */
.cloud-zoom-title {
	font-family:Arial, Helvetica, sans-serif;
	position:absolute !important;
	background-color:#000;
	color:#fff;
	padding:3px;
	width:100%;
	text-align:center;	
	font-weight:bold;
	font-size:10px;
	top:0px;
}

/* This is the zoom window. */
.cloud-zoom-big {
	border:4px solid #ccc;
	overflow:hidden;
	position: absolute;
	left: 0px;
	top: 0px; 
}

/* This is the loading message. */
.cloud-zoom-loading {
	color:white;	
	background:#222;
	padding:5px;
	font-size:20px;
	border:1px solid #000;
}


