/* overlay css */

/* the overlayed element */
.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background-image: url(../images/jqueryTools/white.png);
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:600px;
	
	
	/* some padding to layout nested elements nicely  */
	padding:35px;

	/* a little styling */	
	font-size:11px;
  	text-align:	center; 
}

/* default close button positioned on upper right corner */


/* white version of the overlay. simply uses a different background image */ 
div.apple_overlay.white { 
    background-image: url(../images/jqueryTools/white.png);         
    color:#231f20; 
}

.apple_overlay div.close {
	background-image: url(../images/jqueryTools/close.png);
	position:absolute; right:13px; top:13px;
	cursor:pointer;
	height:35px;
	width:35px;
}

/* black version of the overlay. simply uses a different background image */ 
div.apple_overlay.black { 
    background-image: url(../images/jqueryTools/transparent.png);         
    color:#fff; 
}



.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#333;
	
	width:675px;	
	min-height:200px;
	border:1px solid #666;
	
	/* 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(../images/jqueryTools/close.png);
	position:absolute;
	top:-10px;
	left: -10px;
	cursor:pointer;
	height:35px;
	width:35px;
}


/*
<!--[if lt IE 7]> */
  
div.apple_overlay { 
    background-image: url(../images/jqueryTools/overlay_IE6.gif); 
    color:#fff; 
} 
 
default close button positioned on upper right corner 
div.apple_overlay div.close { 
    background-image: url(../images/jqueryTools/overlay_close_IE6.gif); 
 
}     

/*[endif]*/


