/* the overlayed element */
.simple_overlay {
	/* must be initially hidden */
	display:none;
	/* place overlay on top of other elements */
	z-index:10000;
	/* styling */
	background-color:#333;
	width:540px;
	/*min-height:200px;*/
	border-top:20px solid #fff;
	border-bottom:60px solid #fff;
	border-right:50px solid #fff;
	border-left:25px solid #fff;
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../imgs/btn-close.gif);
	position:absolute;
	right:-35px;
	top:0px;
	cursor:pointer;
	height:29px;
	width:29px;
}
.simple_overlay div#loupe {
	position:absolute;
	right:-35px;
	top:40px;
	cursor:pointer;
	height:31px;
	width:29px;
}
.simple_overlay div.loupe-on{
	background-image:url(../imgs/btn-loupe-on.gif);
}
.simple_overlay div.loupe-off{
	background-image:url(../imgs/btn-loupe-off.gif);
}
