/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background-image:url(../images/white.png);

	/* dimensions after the growing animation finishes  */
	width:700px;
	height:700px;
	
	/* initially overlay is hidden */
	display:none;
	padding:0px;
	margin:0px;
	/* some padding to layout nested elements nicely  */
	/*padding:55px;*/
	/*margin-top:50px;
	margin-left:50px;*/
	/*margin-top:30px;
	padding-left:50px;*/
}
#overlaycontent{
	position:relative;
	top:50px;
	left:50px;
}
/* default close button positioned on upper right corner */
div.overlay div.close {
	/*background-image:url(../images/close.png);*/
	background-image:url(../images/apple-close.png);
	position:absolute;
	right:10px; 
	top:10px;
	cursor:pointer;
	height:28px;
	width:28px;
}


/* black */
div.overlay.black {
	background:url(../images/transparent.png) no-repeat !important;
	color:#fff;
}

/* petrol */
div.overlay.petrol {
	background:url(../images/petrol.png) no-repeat !important;
	color:#fff;
}

div.black h2, div.petrol h2 {
	color:#ddd;		
}
