﻿
/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#f3f6c4;
	
	width:675px;	
	min-height:195px;
	border:1px solid #1a1a1a;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}



	/* some styling for triggers */
	#triggers {
		text-align:center;
	}
	
	#triggers img {
		cursor:pointer;

	}
	
	/* styling for elements inside overlay */
	.details {
		position:absolute;
		top:15px;
		right:15px;
		font-size:12px;
		color:#1a1a1a;
		width:150px;
	}
	
	.details h3 {
		color:#1a1a1a;
		font-size:15px;
		font-weight:bold;
		margin:0 0 -10px 0;
	}


	/* use a semi-transparent image for the overlay */
	#overlay {
		background-image:url(transparent3.png);
		color:#efefef;
 height: 250px;
	}
	
	
/* the overlayed element */
.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	background-image:url(white.png); /* growing background image */
	/* width after the growing animation finishes height is automatically calculated 	*/
	width:310px;		
	padding:0px;
	font-size:11px;
}

/* default close button positioned on upper right corner */
.apple_overlay .close {
	background-image:url(close.png);
	position:absolute; left:-10px; top:-10px;
	cursor:pointer;
	height:35px;
	width:35px;
}
