﻿/* the overlayed element */
#voverlay {
	
	/* dimensions after the growing animation finishes  */
	width:480px;
	height:360px;
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:50px;
}

/* default close button positioned on upper right corner */
#voverlay .close {
	background-image:url(close.png);
	background-position: 0 0;
	position:absolute;
	left:7px;
	top:50px;
	cursor:pointer;
	width:48px;
	height:34px;	
}

#voverlay .vcontainer{
	left:0;
	top:0;
	width:100%;
	height:100%;	
	background:url(loading.gif) no-repeat 50% 50%;
	border: 9px solid #ffe2ab;
	border-radius: 0 5px 5px 5px;
	-moz-border-radius: 0 5px 5px 5px;
	-webkit-border-radius: 0 5px 5px 5px;
}

#voverlay .vcontainer > div{
	height:100%;
}