/* jquery Overlay */
/* the overlayed element */
.apple_overlay {

    /* initially overlay is hidden */
    display:none;

    /* growing background image */
    background-color: #fff;
	background-image:url(./images/overlay_hell.png);

    /*
      width after the growing animation finishes
      height is automatically calculated
      */
    width:630px; 
	height: 400px;

    /* some padding to layout nested elements nicely  */
    padding:20px;

    /* a little styling */
    font-size:13px;
	border: 1px solid #666;
}

/* default close button positioned on upper right corner */
.apple_overlay .close {
    background-image:url(./images/close.png);
    position:absolute; right:-5px; top:-5px;
    cursor:pointer;
    height:25px;
    width:25px;
}

#legende {
    color:#444;
	background-image:url(./images/overlay_hell.png);
	background-color; #777;
}