/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#0077d4;
	
	width:925px;	
	min-height:200px;
	border:10px solid #0077d4 ;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../img/overlay/closesgm.gif);
	position:absolute;
	right:-5px;
	top:-5px;
	cursor:pointer;
	height:30px;
	width:30px;
}

.simple_overlay_klienci {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#ff6c00;
	
	width:925px;	
	min-height:200px;
	border:10px solid #ff6c00;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../img/overlay/closesgm.gif);
	position:absolute;
	right:-5px;
	top:-5px;
	cursor:pointer;
	height:30px;
	width:30px;
}


/* styling for elements inside overlay */
.details {
	/*position:absolute;
	top:15px;
	right:15px;*/
	font:12px verdana; 
    line-height:18px;
	color:#fff;
    padding:10px 0px;
}

.details h3 {
	color:#fff;
    font:normal 24px Verdana;
}
