.overlay-container {
        z-index: 1000;
        display: none;
        content: " ";
        height: 100%;
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background: -moz-radial-gradient(center, ellipse cover,  rgba(127,127,127,0) 0%, rgba(127,127,127,0.9) 100%);
        background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(127,127,127,0)), color-stop(100%,rgba(127,127,127,0.9)));
        background: -webkit-radial-gradient(center, ellipse cover,  rgba(127,127,127,0) 0%,rgba(127,127,127,0.9) 100%);
        background: -o-radial-gradient(center, ellipse cover,  rgba(127,127,127,0) 0%,rgba(127,127,127,0.9) 100%);
        background: -ms-radial-gradient(center, ellipse cover,  rgba(127,127,127,0) 0%,rgba(127,127,127,0.9) 100%);
        background: radial-gradient(center, ellipse cover,  rgba(127,127,127,0) 0%,rgba(127,127,127,0.9) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007f7f7f', endColorstr='#e67f7f7f',GradientType=1 );
}

.window-container {
        display: block;
        background: #fcfcfc;
        margin: 8em auto;
        width: 500px;
        padding: 10px 0px 20px;
        text-align: left;
        z-index: 3;
        border-radius: 3px;
        box-shadow: 0px 0px 30px rgba(0,0,0,0.2);
        -webkit-transition: 0.4s ease-out;
        -moz-transition: 0.4s ease-out;
        -ms-transition: 0.4s ease-out;
        -o-transition: 0.4s ease-out;
        transition: 0.4s ease-out;
        opacity: 0;
}

.zoomin {
        -webkit-transform:  scale(1.2);
        -moz-transform:  scale(1.2);
        -ms-transform:  scale(1.2);
        transform:  scale(1.2);
}

.zoomout {
        -webkit-transform:  scale(0.7);
        -moz-transform:  scale(0.7);
        -ms-transform:  scale(0.7);
        transform:  scale(0.7);
}

.window-container-visible {
        -webkit-transform:  scale(1);
        -moz-transform:  scale(1);
        -ms-transform:  scale(1);
        transform:  scale(1);
        opacity: 1;
}

.window-container h3 {
        margin: 1em 0 0.5em;            
        font-weight: normal;
        font-size: 25px;
        text-align: center;
}

.close {
    display: block;
    width: 52px;
    color: #ccc;
    font-size: 2.4rem;
    position: absolute;
    cursor: pointer;
    right: -20px;
    top: 13px;
}

.window-container h2{
    margin: 0px 0px 10px 0px;
    padding-bottom: 9px;
    border-bottom: 2px solid #ccc;
    padding-left: 20px;  
    font-size: 2.4rem;
}

.window-container .contenido{
    padding: 0px 20px;
    width: 100%;
    display: table;
    font-size: 1.4rem;
    line-height: 2.9rem;
}

.window-container .contenido div{
    text-align: center;
    float:left;
    width: 45%;
    margin-right: 5px;
}

