/* the overlayed element */ 
.apple_overlay { 
     
    /* initially overlay is hidden */ 
    display:none; 
     
    /* growing background image */ 
    background-image:url(images/white.png); 
     
    /*  
        width after the growing animation finishes 
        height is automatically calculated 
    */ 
    width:350px;         
     
    /* some padding to layout nested elements nicely  */ 
    padding:35px; 
 
	color:#3f3f3f;
} 
 
/* default close button positioned on upper right corner */ 
.apple_overlay div.close { 
    background-image:url(images/close.png); 
    position:absolute; right:10px; top:10px; 
    cursor:pointer; 
    height:64px; 
    width:64px; 
}

/* black version of the overlay. simply uses a different background image */ 
div.apple_overlay.black { 
    background-image:url(images/transparent.png);         
    color:#fff; 
}

.apple_overlay h2{font-family:Arial, Helvetica, sans-serif;margin-top:10px;font-size:20px;color:#3f3f3f;}
.txtResumo{width:350px;float:left;clear:both;margin-bottom:15px;color:#3f3f3f;font-size:11px;}

/*--- boxTooltipCidades ---*/
.lineCidade{width:350px;float:left;clear:both;margin-top:5px;}
.lineCidade a{width:142px;float:left;background:url(images/bg-item-cidade.jpg) no-repeat 0 0;padding:0 0 0 30px;margin-right:3px;color:#3f3f3f;text-decoration:none;font-weight:normal;font-family:tahoma, arial;line-height:28px;font-size:11px;}
.lineCidade a:firstChild{margin-right:0;}
.lineCidade a:hover{background:url(images/bg-item-cidade.jpg) no-repeat 0 -28px;text-decoration:none;color:#000;}