<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* the overlayed element */
#voverlay {
	
	/* dimensions after the growing animation finishes  */
	width:640px;
	height:360px;
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:40px;
}

/* default close button positioned on upper right corner */
#voverlay .close {
	background-image: url(close.png);
	background-position: 0 0;
	position: absolute;
	right: -3px;
	top: 6px;
	cursor: pointer;
	height: 44px;
	width: 44px;
	opacity: 0.8;
	border-radius: 24px;
}

#voverlay .close:hover {
	opacity: 1;
	box-shadow: 0px 0px 5px 5px #AAA;
}

#voverlay .vcontainer{
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(loading.gif) no-repeat 50% 50%;
	border: 5px solid #000000;
	box-shadow: 0px 0px 12px 24px rgba(0, 0, 0, 1);
	-moz-box-shadow: 0px 0px 12px 24px rgba(0, 0, 0, 1);
	-webkit-box-shadow: 0px 0px 12px 24px rgba(0, 0, 0, 1);
}
</pre></body></html>