.simple_overlay { 
     
    /* must be initially hidden */ 
    display:none; 
     
    /* place overlay on top of other elements */ 
    z-index:10000; 
     
    /* styling */ 
    background-color:#242424; 
     
    width:675px;     
    min-height:200px; 
    border:5px solid #FCBB19; 
     
    /* CSS3 styling for latest browsers */ 
    -moz-box-shadow:0 0 50px 5px #000; 
    -webkit-box-shadow: 0 0 50px #000;     
} 
 
/* close button positioned on upper right corner */ 
.simple_overlay .close { 
    background-image:url(../assets/close.png); 
    position:absolute; 
    right:-12px; 
    top:-12px; 
    cursor:pointer; 
    height:28px; 
    width:28px; 
}

.details {padding:10px;}
.details p {color:#FFFFFF;font-size:12px;}
#outerContent .details a {color:#EA0101;}
#outerContent .details a:hover {color:#EA0101;}
.spelerInfo {cursor:pointer;}

