.simple_overlay { 
     
     /* overlay is hidden before loading */ 
    display:none; 
 
    /* standard decorations */ 
    width:300px; 
    background-color:#fff; 
    border:10px solid #666; 
 
    /* for modern browsers use semi-transparent color on the border. nice! */ 
    border:10px solid rgba(82, 82, 82, 0.698); 
 
    /* hot CSS3 features for mozilla and webkit-based browsers (rounded borders) */ 
    -moz-border-radius:8px; 
    -webkit-border-radius:8px; 
} 
 
/* close button positioned on upper right corner */ 
.simple_overlay .close { 
    background-image:url(http://tpl.ff-axberg.at/images/overlay/close_darkgrey.png); 
    position:absolute; 
    right:-15px; 
    top:-15px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
}

.simple_overlay a { 
	color:#06C;
}

.simple_overlay a:hover { 
	color:#06C;
}