
/* the overlayed element */
div.overlay {
	/* growing background image */
	background-image:url(../images/web_graphics/overlay_black.png);
	
	/* dimensions after the growing animation finishes  */
	width:1000px;
	height:563px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:27px;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(../images/web_graphics/overlay_close.png);
	position:absolute; 
	right:0px;
	top:0px;
	cursor:pointer;
	height:35px;
	width:35px;
	z-index:1020;
}

#overlay {
	display:none;
}
#overlay .wrap {
	z-index:9999;
}

#overlayShare {
	background-image:url(../images/web_graphics/overlay_transparent.png);
	width:350px;
	font-family:"Trebuchet MS", Helvetica, Verdana;
	font-size:12px;
	color:#FFFFFF;
	font-weight:bold;
}

