/********************************************
 * VENTANA
 ********************************************/

.ventana {
    display: block;
    position: relative;
    z-index: 500;
    width: auto;
    pointer-events: all;
}

.ventana-fondo {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    z-index: 499;
}

.ventana .titulo {
    background-color: #369;
    border-radius: 5px 5px 0 0;
    border: 3px solid #306090;
    border-bottom: 0;
    color: #fff;
    font-weight: bold;
    cursor: default;
    text-align: center;
    padding: 2px;
    width: auto;
    border-bottom: 0;
}

.ventana .titulo img {
    margin: 1px;
    float: right;
    cursor: pointer;
}

.ventana .contenido {
    border: 3px solid #abc;
    border-top: 0;
    padding: 5px;
    background-color: #bcd;
    overflow: auto;
}

