
/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background-image:url(../js/images/white-eflora.png);
	
	/* dimensions after the growing animation finishes  */
	width:600px;
	height:470px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:15px;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(../js/images/close-eflora.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}


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

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

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

/* use a semi-transparent image for the overlay */
#overlay {
	background-image:url(../js/images/white-eflora.png);
	color:#efefef;
	height:470px;
	
    /* CSS3 styling for latest browsers  
    -moz-box-shadow:0 0 90px 5px #000; 
    -webkit-box-shadow: 0 0 90px #000; 	*/
}

/* container for external content. uses vertical scrollbar, if needed */
div.contentWrap {
	height:470px;
	overflow-y:auto;
	text-align:left;
}
div.contentWrap h1 {
	color:#fff;
}
div.contentWrap p {
	color:#2F6923;
}

/* the overlayed element */ 
.simple_overlay {
	/* must be initially hidden */ 
    display:none;
	/* place overlay on top of other elements */ 
    z-index:10000;
	/* styling */ 
    background-color:#fff;
	width:675px;
	min-height:200px;
	/* CSS3 styling for latest browsers  
    -moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;*/
	text-align: left;
	padding:15px;
	border: 2px solid #2F6923;
} 
 
/* close button positioned on upper right corner */ 
.simple_overlay .close { 
    background-image:url(../js/images/close-eflora.png); 
    position:absolute; 
    right:-15px; 
    top:-15px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
}
/* styling for elements inside overlay */ 
.simple_overlay .details { 
    position:absolute; 
    top:15px; 
    right:15px; 
    font-size:11px; 
    color:#000; 
    width:230px; 
} 
