/* CSS Document */

/* the overlayed element */ 
.simple_overlay { 
     
    /* must be initially hidden */ 
    display:none; 
     
    /* place overlay on top of other elements */ 
    z-index:10000; 
     
    /* styling */ 
    background-color:#fff; 
     
    width:300px;     
    min-height:375px; 
    border:4px solid #005581; 
     
    /* 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-overlay.png); 
    position:absolute; 
    right:-15px; 
    top:-15px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
}

/* styling for elements inside overlay */ 
.details { 
    /*position:absolute; 
    top:15px; 
    right:15px; 
    font-size:11px; */
    color:#000; 
    width:250px; 
	text-align: left;
	margin: 0px 0px 20px 20px;
	
} 
 
.details h3 { 
    color:#000; 
    font-size:15px; 
    /*margin:0; 
	padding-top: 20px;*/
	margin-top: 10px;
	margin-bottom: 5px;
}

td.choices
{
   font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
   line-height: 1.3em;
   font-size: 0.75em;
}

