/* overlay styles */
/* the overlayed element */ 
div.overlay { 
	position:absolute;top:0;left:0;
	
    /* growing background image */ 
    background-image:url(images/overlay/petrol.png); 
     
    /* dimensions after the growing animation finishes  */ 
    width:580px; 
    height:450px;         
     
    /* initially overlay is hidden */ 
    display:none; 
     
    /* some padding to layout nested elements nicely  */ 
    margin:0;
	padding:80px 0 0px 75px; 
	font-size:12px;
	font-family:verdana,arial,sans-serif;
} 
 
/* default close button positioned on upper right corner */ 
div.overlay div.close { 
    background-image:url(images/overlay/close.gif); 
    position:absolute; 
    right:60px; 
    top:50px; 
    cursor:pointer; 
    height:19px; 
    width:67px; 
} 

/* black */ 
div.overlay.black { 
    background:url(images/overlay/transparent.png) no-repeat !important; 
    color:#fff;
} 
 
/* petrol */ 
div.overlay.petrol { 
    background:url(images/overlay/gray.png) no-repeat !important; 
    color:#fff; 
} 
 
 
div.overlay h2 { 
    color:#fff; 
	font-size:20px !important; 
	font-weight:normal !important;  
	margin:0 0 10px 0 !important;
	padding:0 !important;
	width:500px; 
	font-family:Arial, sans-serif !important;
}

div.overlay p { 
    color:#fff; 
	font-size:12px; 
	margin:10px 0;
	padding:0;
	width:500px; 
}

	div.overlay a:link,div.overlay a:visited {color:#ddd721; text-decoration:none ;}
	div.overlay a:focus, div.overlay a:hover, div.overlay a:active {color: #fff;text-decoration:underline;}
		
/* END overlay styles */
