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

/* default close button positioned on upper right corner */ 
.apple_overlay .close { 
    background:url(/images/close.png) no-repeat;
    position:absolute; right:10px; top:8px; 
    cursor:pointer; 
    height:15px;
    width:15px;
}

/* use a semi-transparent image for the overlay */ 
.apple_overlay { 
    width:700px;
    padding:30px 42px;
    color:#000;
    background-color: #FFF;
    background-image: url('/img/blank.gif');
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -moz-box-shadow: 0px 0px 17px rgba(44,106,189,1);
    -webkit-box-shadow: 0px 0px 17px rgba(44,106,189,1);
    box-shadow: 0px 0px 17px rgba(44,106,189,1);
}

/* container for external content. uses vertical scrollbar, if needed */ 
.contentWrap { 
    overflow-y:auto; 
}
/* the overlayed element */ 
.apple_overlay { 
    /* initially overlay is hidden */ 
    display:none; 
    /* growing background image */ 
    /*  
        width after the growing animation finishes 
        height is automatically calculated 
    */ 
    /* some padding to layout nested elements nicely  */ 
    padding:0; 
} 

/* default close button positioned on upper right corner */ 
.apple_overlay .close { 
    background:url(/images/close.png) no-repeat;
    position:absolute; right:10px; top:8px; 
    cursor:pointer; 
    height:15px;
    width:15px;
}

/* use a semi-transparent image for the overlay */ 
.apple_overlay { 
    width:700px;
    padding:30px 42px;
    color:#000;
    background-color: #FFF;
    background-image: url('/img/blank.gif');
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -moz-box-shadow: 0px 0px 17px rgba(44,106,189,1);
    -webkit-box-shadow: 0px 0px 17px rgba(44,106,189,1);
    box-shadow: 0px 0px 17px rgba(44,106,189,1);
}

/* container for external content. uses vertical scrollbar, if needed */ 
.contentWrap { 
    overflow-y:auto; 
}