
/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background-image: url(/imgfiles/2010/Images/white.png);
	_background-color:#FFF;
	_border:#CCCCCC solid 4px;
	
	/* dimensions after the growing animation finishes  */
	width:303px;
	height:243px;
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:30px;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(/imgfiles/2010/Images/close-trans.png);
	position:absolute;
	right:-5px;
	top:-5px;
	_right:-12px;
	_top:-12px;
	cursor:pointer;
	height:30px;
	width:30px;
}


/* black */
div.overlay.black {
	background:url(/imgfiles/2010/Images/transparent.png) no-repeat    !important;
	color:#fff;
}

/* petrol */
div.overlay.petrol {
	background:url(/imgfiles/2010/Images/petrol.png) no-repeat    !important;
	color:#fff;
}

div.black h2, div.petrol h2 {
	color:#ddd;		
}
