#modal { 
    display:none; 
    z-index:10000; 
    /* styling */ 
    background-color:#333; 
    width:325px;     
    min-height:200px; 
    border:1px solid #666; 
    /* CSS3 styling for latest browsers */ 
    -moz-box-shadow:0 0 90px 5px #000; 
    -webkit-box-shadow: 0 0 90px #000;} 
 
#modal div { 
    padding:5px;  
    background-color:#333; 
    font-family:"lucida grande",tahoma,verdana,arial,sans-serif 
} 
 
#modal h2 { 
    margin:-11px; 
    margin-bottom:0px; 
    color:#fff; 
    background-color:#6D84B4; 
    padding:5px 10px; 
    border:1px solid #3B5998; 
    font-size:20px; 
}

#modal .close { 
	background:transparent url(/img/close.png) no-repeat scroll 0 0;
    position:absolute; 
    right:-25px; 
    top:-20px; 
    cursor:pointer; 
    height:35px; 
    width:35px;
    -moz-background-clip:border;
	-moz-background-inline-policy:continuous;
	-moz-background-origin:padding;
}
