<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">div.overlay {
	
	/* growing background image */
	/*background-image:url(img/white.png);*/
	
	/* dimensions after the growing animation finishes  */
	/*width:600px;
	height:550px;*/
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	/*padding:50px 25px 10px 35px;*/
	z-index:101;
    background-color: #fff;
    border: 1px solid #8f8f8f;
    box-shadow: 0 0 20px rgba(0,0,0,0.75);
    padding: 15px;
    border-radius: 10px;
}



/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(img/close.png);
	position:absolute;
	right:-17px;
	top:-17px;
	cursor:pointer;
	height:35px;
	width:35px;
}

div.overlay img
{
    margin:0px;
}</pre></body></html>