/* the overlayed element */
.apple_overlay
{
    /* initially overlay is hidden */
    display: none; /* growing background image */
    background-image: url(../images/transparent_16x9.png); /*  		width after the growing animation finishes 		height is automatically calculated 	*/
    width: 640px; /* some padding to layout nested elements nicely (was 640px) */
    padding: 35px; /* a little styling */
    font-size: 11px;
    color: #fff;
}

/* default close button positioned on upper right corner */
.close
{
	background: url(../images/close.png) no-repeat;
	position: absolute;
	top: 2px;
	right: 5px; 
	display: block;
	width: 35px;
	height: 35px;
	cursor: pointer;
}
.apple_overlay h2
{
    margin: 10px 0px -9px 0px;
    font-weight: bold;
    font-size: 14px;
}
#triggers img
{
    cursor: pointer;
}

