﻿/* the overlayed element */
div.overlay {
	
	/* growing background image*/
	 background-image:url(/static/pix/overlay/bgTransparent.png);
	
	/* dimensions after the growing animation finishes  */
	width:1000px;
	height:541px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:55px;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
    background-image:url(/static/pix/overlay/close_big.png); */
	position:absolute;
	left:0px;
	top:0px;
	cursor:pointer;
	height:1035px;
	width:1035px;
}

/* custom */
#custom { 
    background-image:url(/static/pix/overlay/box-512.png); 
    width:707px; 
    height:451px; 
    padding:0px; 
} 
 
#custom div.close { 
    right:-15px; 
    top:-10px; 
}

/* black */
div.overlay.black {
	background:url(/static/pix/overlay/transparent.png) no-repeat !important;
	color:#fff;
}

/* petrol */
div.overlay.petrol {
	background:url(/static/pix/overlay/petrol.png) no-repeat !important;
	color:#fff;
}

div.black h2, div.petrol h2 {
	color:#ddd;		
}


