﻿
/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background-image:url(white.png);
	color:#465;
	
	/* dimensions after the growing animation finishes  */
	width:600px;
	height:515px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:55px;
}
/* container for external content. uses vertical scrollbar if needed */ 
div.wrap {     height:441px;     overflow-y:auto; }

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(img/overlay/close.png);
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}
 
#custom {
	background-image:url(img/overlay/jana.jpg);
	width:512px;
	height:531px;
	padding:0px;
	top:5px;

}
 
#custom div.close {
	right:-15px;
	top:-10px;
}
 
#petrol {
	background-image:url(img/overlay/petrol.png);
	color:#fff;		
}
 
#apple {
	background-image:url(img/overlay/apple.png);
	color:#FFFFFF;
	font-size:medium;
	font-family:Cambria;	
}

