
/* the overlayed element */
.overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#333;
	
	width:620px;	
	min-height:240px;
	border:1px solid #666;
	overflow:visible;
position:fixed;
left:290px;
top:130px;
color:#ddd;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 70px 5px #000;
	-webkit-box-shadow: 0 0 70px #000;	
}

.overlay p{
color:#ddd;
}

/* close button positioned on upper right corner  */
.close {
	background-image:url(/graphics/overlay/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
z-index:10001;
}


/* styling for elements inside overlay */
.details {
	position:relative;
	padding:15px;
	font: 12px Arial, Helvetica, sans-serif;
	color:#eee;
	line-height: 18px;
}

.details input {
margin-bottom:5px;
}

.details p, .details table {
font: 12px Arial, Helvetica, sans-serif;
	color:#eee;
	line-height: 18px;
margin-top:8px;
text-align:left;
}

.details p {
text-align:center;
}

.details h3 {
	color:#cc8800;
	font-size:15px;
	margin:0px;
}

.details h4 {
	color:#E7A324;
	font-size:13px;
	font-weight:bold;
	margin:0px;
}

/* use a semi-transparent image for the overlay */
	#overlay {
		/*background-image:url(http://static.flowplayer.org/img/overlay/transparent.png);*/
		height:550px;
	}
	
	/* container for external content. uses vertical scrollbar, if needed */
	div.contentWrap {
		height:540px;
		overflow-y:auto;
		text-align:left;
	}

/* the overlayed element */
.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background-image:url(/graphics/overlay/white2.png);
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:700px;		
	
	/* some padding to layout nested elements nicely  */
	padding:35px;
}

/* default close button positioned on upper right corner */
.apple_overlay .close {
	background-image:url(/graphics/overlay/close.png);
	position:absolute; right:5px; top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}

