
/* the overlayed element */
.apple_overlay {

    /* initially overlay is hidden */
    display:none;

	background-image: url(overlay/transparent.png);

    /*
      width after the growing animation finishes
      height is automatically calculated
      */
    width:80%;

    /* some padding to layout nested elements nicely  */
	padding-top:0px;
    /* a little styling */
    font-size:11px;
}

/* default close button positioned on upper right corner */
.apple_overlay .close {
    background-image: url(img/close.png);
	background-repeat:no-repeat;
    position:absolute;
	left:95%;
    cursor:pointer;
    height:35px;
    width:35px;
}

.apple_overlay_vert {
    display:none;
	background-image: url(overlay/transparent.png);
	background-position:top;
	color:#fff;
    font-size:11px;
	top:-50px;
	width:90%;
	height:80%;
	margin:0px 0px;
	padding-top:25px;
}
.apple_overlay_vert img{
height:90%;
}

.apple_overlay_vert .close {
    background-image: url(img/close.png);
	position:absolute;
	background-repeat:no-repeat;
	left: 70%;
    cursor:pointer;
    height:35px;
    width:35px;
}
