<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* the overlayed element */
.apple_overlay {
	/* initially overlay is hidden */
	display:none;
	/* growing background image */
	background-image:url(overlay/white.png);
	/*
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:440px;
	/* some padding to layout nested elements nicely  */
	padding:35px;
	/* a little styling */
	font-size:11px;
}

/* default close button positioned on upper right corner */
.apple_overlay .close {
	background: url("overlay/close.png") no-repeat scroll 0 0 transparent;
    cursor: pointer;
    height: 20px;
    opacity: 1;
    position: absolute;
    right: 15px;
    top: 45px;
    width: 20px;
}


/* use a semi-transparent image for the overlay */
  	#overlay {
        background:url(/css/overlay/transp.png);
  		/*color:#efefef;*/
              color:#000;
  		height:auto;
        left:50% !important;
        width:440px;
        margin-left:-260px;
  	}

  	/* container for external content. uses vertical scrollbar, if needed */
  	div.contentWrap {
      width: 425px;
      /*background-image:url(/css/overlay/background.png);*/
      background: #ffffff;
  		height:auto;
  		overflow:hidden;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      border-radius: 10px;
      padding:5px 20px 20px 20px;
      /*-webkit-box-shadow: 0px 0px 11px #000;
      -moz-box-shadow: 0px 0px 11px #000;
      box-shadow: 0px 0px 11px #000;*/
  	}


    .textoCentrado
    {
        text-align:center;
    }

    #resultados
    {
        margin:0px 0px 15px 0px;
        color:#efefef;
        font-style:italic;
    }

    #loginButton
    {
    padding:3px;
    }


.overlayMask
{
    background: #01141F;
    height: 100%;
    opacity: 0.95;
    position: absolute;
    top: 0;
    width: 100%;
    display: none;
    z-index: 3;
}</pre></body></html>