/* the overlayed element */ 
.simple_overlay { 
     
    /* must be initially hidden */ 
    display:none; 
     
    /* place overlay on top of other elements */ 
    z-index:10000; 
     
    /* styling */ 
    background-color:#000000; 
    border:1px solid #666; 
     
    /* CSS3 styling for latest browsers */ 
    -moz-box-shadow:0 0 90px 5px #000; 
    -webkit-box-shadow: 0 0 90px #000;     
} 
 
/* close button positioned on upper right corner */ 
.simple_overlay .close { 
    background-image:url(../images/close.jpg);
	background-repeat:no-repeat; 
    position:absolute; 
    right:10px; 
    top:10px; 
    cursor:pointer; 
    height:13px; 
    width:13px; 
}

/* styling for elements inside overlay */ 
.title { 
    font-size:14px; 
    color:#ffffff;
	font-family:"MS Reference Sans Serif", "MS Sans Serif";
	padding-left:20px;
}

.details{
	color:#b4b4b4;
	padding-left:20px;
	font-size:12px;
	font-family:"MS Reference Sans Serif", "MS Sans Serif";
}
