/* estilo para lo q este dentro de la ventana modal */
    .modal {
        display: none;
        position: absolute;
        top: 15%;
        left: 25%;
        width: 42%;
        height: 82%;
        padding: 10px;
        background: #000;
	color: #333;
        z-index:1002;
        overflow: auto;
    }

/* base semi-transparente */
    .overlay{
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
        z-index:1001;
	opacity:.75;
        -moz-opacity: 0.75;
        filter: alpha(opacity=75);
    }

