/* the overlayed element */ 
div.overlay
{      
    /* growing background image */ 
    background-image:url(../images/white.png); 
     
    /* dimensions after the growing animation finishes  */ 
    width:656px; 
    height:526px;         
     
    /* initially overlay is hidden */ 
    display:none; 
     
    /* some padding to layout nested elements nicely  */ 
	padding:55px;
	
	text-align:left;
}
 
/* default close button positioned on upper right corner */ 
div.overlay div.close { 
    background-image:url(../images/close.gif); 
    position:absolute; 
    right:30px; 
    top:30px; 
    cursor:pointer; 
    height:16px; 
    width:16px; 
}
.overlay .header
{
font-size:8pt;
color:#444444;
margin-bottom:8px;
}
.overlay label
{
	width:200px;
	text-align:right;
	display:inline-block;
}
.overlay .txt
{
	width:300px;
	font-family:Verdana,Arial;
	font-size:9pt;
}
.overlay #addr-matches
{
	overflow:auto;
	height:250px;
}

.overlay .address-match
{
	background-color:#eeeeee;
	padding:4px;
	margin:2px;
	border:solid 1px #aaaaaa;
}