#downloadPopup { 
     
    /* must be initially hidden */ 
    display:none; 
     
    /* place overlay on top of other elements */ 
    z-index:10000; 
     
    /* styling */  
     
    width:392px;     
    height:200px; 
    left:-400px;
     
    /* CSS3 styling for latest browsers */ 
    
} 

#downloadPopup .close {
	position:absolute;
	top:-35px;
	right:-35px;
	cursor:pointer;
}