/* the overlayed element */
#voverlay {
	
	/* growing background image */
	background-image:url(white.png);
	
	/* dimensions after the growing animation finishes  */
	width:70%;
	height:70%;
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:0px 0px 0px 0px; /*top=arriba, derecha, botton=abajo, izquierda*/
}

/* default close button positioned on upper right corner */
#voverlay .close {
	background-image:url(close.png);
	background-color:transparent;
	position:absolute;
	right:-20px;
	/*left:10px;*/
	top:-2px;
	cursor:pointer;
	height:27px;
	width:27px;
}

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