.zoomup {
    cursor: url(img/zoomin.cur), default;
}

/* the overlayed element */
.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background-image:url(img/overlay/white.png);

	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
/* 	width:400px;		 */
	
	/* some padding to layout nested elements nicely  */
	padding:35px;

	/* a little styling */	
	font-size:12px;
	font-family: Helvetica,Arial,sans-serif;
}

.apple_overlay h3 {font-weight: bolder;font-size: 13px;text-align: left!important;}

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

/* the overlayed element */
.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(img/overlay/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}

/* the overlayed element */
.clean_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;
	border:1px solid #ccc;
	
	/* CSS3 styling for latest browsers */

	-webkit-box-shadow: 5px 5px 20px 0px #707070;
	-moz-box-shadow: 5px 5px 20px 0px #707070;
	box-shadow: 5px 5px 20px 0px #707070;

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

	/* a little styling */	
	font-size:12px;
	font-family: Helvetica,Arial,sans-serif;
	padding:10px;
}

.clean_overlay h3 {font-weight: bolder;font-size: 14px;text-align: left!important;}


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