/* STATISTICHE OVERLAY */ 
.simple_overlay { 
     
    /* must be initially hidden */ 
    display:none; 
   /* standard decorations */ 
    background-image:url(images/bianco.png);
	/*background: #ffffff;*/
	width:495px;
	height:212px;
    /*border:10px solid #ffffff; */
 
    /* 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(images/close_3.png); 
    position:absolute; 
    right:-11px; 
    top:-11px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
}

/* styling for elements inside overlay */ 
.details { 
    position:absolute; 
    top:13px; 
    left:32px; 
    font-family: Verdana, Arial, Helvetica;
	font-size:11px; 
    color:#000000; 
    /*width:50px;*/
	padding: 0px;		/* 15px 0px 0px 15px */ 
} 
 
.details h3 { 
    color:#aba; 
    font-size:15px; 
    margin:0 0 -10px 0; 
}


