@charset "utf-8";

/*** the overlayed element ***/
div.overlay {
/* growing background image */
background-image:url("/logos/white.gif");
/* dimensions after the growing animation finishes */
width:638px;
height:380px;
/* initially overlay is hidden */
display:none;
/* some padding to layout nested elements nicely */
padding:20px;
overflow:hidden;
}

#overlay_contacto {
/* growing background image */
background-image:url("/logos/white.png");
/* dimensions after the growing animation finishes */
width:380px;
height:320px;
overflow:hidden;
}

/* default close button positioned on upper right corner */
div.overlay div.close, #overlay_contacto div.close  {
background:url("/logos/ico_close.gif") no-repeat;
position:absolute;
right:5px;
top:10px;
cursor:pointer;
height:27px;
width:27px;
}

/* container for external content. uses vertical scrollbar, if needed */
div.contentWrap {
height:380px;
overflow-y:auto;
overflow-x:hidden;
/*background-color:yellow;*/
}
