/* the overlayed element */ 
.apple_overlay { 

    
     
    /* initially overlay is hidden */ 
    display:none; 
     
    /* growing background image */ 
    background-image:url(../images/overlay_white.png); 
     
    /*  
        width after the growing animation finishes 
        height is automatically calculated 
    */ 
    width:330px;   
	    
     
    /* some padding to layout nested elements nicely  */ 
    padding:5px; 
 
    /* a little styling */     
    font-size:11px; 
	
	
} 
 
/* default close button positioned on upper right corner */ 
.apple_overlay div.close { 
    background-image:url(../images/overlay_close.gif); 
    cursor:pointer; 
    height:18px; 
    width:18px; 
	position: absolute;
	top: 12px;
	right: 12px;
}

/* black version of the overlay. simply uses a different background image */ 

div.apple_overlay.black,
div.apple_overlay.vir,
div.apple_overlay.enc { 
    background:#535353;         
    color:#eee;
	padding: 12px;
	width: 300px;
}

h4 {
	margin: 0 0 3px 0;
}

.details {
	float: left;
	clear: both;
	width: 278px;
}

#mies3 .details {
	height: 200px;
	overflow-y:auto;
}
