/* the overlayed element */ 
.simpleOverlay { 
    /* must be initially hidden */ 
    display:none; 
     
    /* place overlay on top of other elements */ 
    position: absolute;
     
    /* styling */ 
    background-color: white;
    width: 360px; 
    min-height:240px;
	border: 1px solid #000;
}
 

