/* the overlayed element */
.simple_overlay {
	/* must be initially hidden */
	display:none;
	/* place overlay on top of other elements */
	z-index:19999;
	/* styling */
	width:675px;
	max-width:90%;
	max-height:90%;
	min-height:200px;
	border:1px solid #666;
	background-color:#333;
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}
/* MSc 2009-12-02: In der dra.net Definition sind die Bilder mit einer margin ausgestattet. Muß überschrieben werden. */
.simple_overlay img {
		margin: 0px;
}
/* close button positioned on upper right corner */
.simple_overlay .close {
	position:absolute;
	width:35px;
	height:35px;
	top:-15px;
	right:-15px;
	cursor:pointer;
	border:10px;
	background-image:url("../../img/overlay/close.png");
}
