/* the overlayed element */
.apple_overlay {
	
	/* must be initially hidden */
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#333;
	
	border:1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
	-moz-border-radius-bottomleft:5px;
	-moz-border-radius-bottomright:5px;
	-moz-border-radius-topleft:5px;
	-moz-border-radius-topright:5px;
	border:1px solid #666666;
	color:#FFFFFF;
	font-size:11px;
	top: 40%;
	position: absolute;
	padding:10px 10px;
	display:none;
}

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