/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background-image:url(../images/overlay.gif);
	
	/* dimensions after the growing animation finishes  */
	width:600px;
	height:526px;		
	
	/* 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(../images/close.gif);
	background-repeat:no-repeat;
	position:absolute;
	right:-5px;
	top:2px;
	cursor:pointer;
	height:35px;
	width:35px;
}


div.overlay h4{
	padding:10px 0;
	}


/* black */
div.overlay.black { color:#fff; 
}

/* petrol */
div.overlay.petrol { color:#fff; 
}

div.black h2, div.petrol h2 {
	color:#ddd;		
}

div.wrap {
	height:441px;
	overflow-y:auto;
}

