/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	/* place overlay on top of other elements */
	z-index:10000;
	padding: 10px;
	background-color: #fff;
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../media/images/close.png);
	position:absolute;
	right:10px;
	top:10px;
	cursor:pointer;
	height:35px;
	width:35px;
}
 
/* progress indicator (animated gif). should be initially hidden */ 
#gallery .progress { 
    position:absolute; 
    top:45%; 
    left:50%; 
    display:none; 
}