/* the overlayed element */ 
.simple_overlay { 
     
    /* must be initially hidden */ 
    display:none; 
     
    /* place overlay on top of other elements */ 
    z-index:10000; 
     
    /* styling */ 
    background-color:#333; 
     
    width:850px;     
    min-height:750px; 
    border:3px solid #333;
	padding-top: 23px;
	padding-left: 25px;
     
    /* 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.png); 
    position:absolute; 
    right:-20px; 
    top:-20px; 
    cursor:pointer; 
    height:50px; 
    width:50px; 
}

/* styling for elements inside overlay */ 
.details { 
    position:absolute; 
    top:10px; 
    right:20px; 
    font-size:11px; 
    color:#fff; 
    width:160px; 
} 
 
.details h3 { 
    color:#993; 
    font-size:15px; 
    margin: 15px 0 -5px 0; 
}

#trigger {
	width: 120px;
	height: 120px;
	background-color: #993;
	cursor: pointer;
	margin-top: 3px;
}

.details p {
	margin: -10px 0 -15px 0;
	text-align: justify;
}