/* the overlayed element */
.apple_overlay {
    display: none;
	background: #fff;
    width: 640px;
	min-height: 480px;
    padding: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background-image:url('../images/blank.png');
}
/* default close button positioned on upper right corner */
.apple_overlay .close {
    background-image: url('../images/close.gif');
	background-position: 0 0;
    position: absolute;
	right: 10px;
	top: 10px;
    cursor: pointer;
    height: 36px;
    width: 36px;
}
.apple_overlay .close:hover {
	background-position: -36px 0;
}
.apple_overlay h2 {
    color: #01325F;
    font-family: 'mx1925';
    font-size: 33px;
    font-weight: 500;
	margin: 0 0 10px 0;
	text-transform: uppercase;
}