/* the overlayed element */
.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background:#fff;
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width: 450px;
	
	/* some padding to layout nested elements nicely  */
	padding:0px;

	/* a little styling */	
	font-size:11px;
	
	border: 1px solid #ccc;
	-moz-border-radius: 5px; -webkit-border-radius: 5px; 
}

/* default close button positioned on upper right corner */
.apple_overlay .close {
	background-image:url(close.png);
	behavior: url(pngfix/iepngfix.htc);
	position:absolute; 
	right:-20px; top:-20px;
	cursor:pointer;
	height:35px;
	width:35px;
	z-index: 3;
}

#triggers {
		margin-top:10px;
		text-align:left;
	}
	
	#triggers img {
		background-color:#000;
		cursor:pointer;
		-moz-border-radius:4px;
		-webkit-border-radius:4px;
	}
.label_txt {
	font-family: Arial;
	font-size: 11px;
	color: #000;
	width:180px
}