/* the overlayed element */
#voverlay {
	
	/* growing background image */
	background-image:url(back.png);
	
	/* dimensions after the growing animation finishes  */
	width:55%;
	height:75%;
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:6px 6px 9px 6px;
}

/* default close button positioned on upper right corner */
#voverlay .close {
	background-image:url(close.png);
	position:absolute;
	right:-12px;
	top:-13px;
	cursor:pointer;
	height:35px;
	width:32px;
}
#voverlay div.close:hover{
	background-position:0 100%;
}

#voverlay .vcontainer{
	left:0;
	top:0;
	width:100%;
	height:85%;	
	background:url(loading.gif) no-repeat 50% 50%;
}
