
#ventana-flotante {
    top: 80px;
    left: 30%;
    width: auto;/*auto;   */
    height: auto;/*auto;  */
    background-color: #fff;
/*    top: 5%;
    left: 0%;*/
    border: 1px solid #004370;
    box-shadow: 0 5px 25px rgba(0,0,0,.1);
    z-index:999; 
    position: absolute;
    padding: 5px;
}

#ventana-flotante #contenedor {
    padding: 25px 10px 10px 10px;
}
#ventana-flotante .cerrar {
    float: right;
    border-bottom: 1px solid #bbb;
    border-left: 1px solid #bbb;
    color: #999;
    background: white;
    line-height: 17px;
    text-decoration: none;
    padding: 0px 14px;
    font-family: Arial;
    border-radius: 0 0 0 5px;
    box-shadow: -1px 1px white;
    font-size: 18px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
}
#ventana-flotante .cerrar:hover {
    background: #004370;
    color: white;
    text-decoration: none;
    text-shadow: -1px -1px red;
    border-bottom: 1px solid red;
    border-left: 1px solid red;
}
#ventana-flotante #contenedor .contenido {
    padding: 15px;
    box-shadow: inset 1px 1px white;
/*    background: #deffc4;   Fondo del mensaje */
    border: 1px solid #004370;  /* Borde del mensaje */
    font-size: 11px;  /* TamaÃ±o del texto del mensaje */
    color: #555;  /* Color del texto del mensaje */
    text-shadow: 1px 1px white;
    margin: 0 auto;
    border-radius: 4px;
}
.oculto {-webkit-transition:1s;-moz-transition:1s;-o-transition:1s;-ms-transition:1s;opacity:0;-ms-opacity:0;-moz-opacity:0;visibility:hidden;}

/* tooltip para desplegar al hacer click en un punto del mapa */
#tooltip {
    width: auto;   
    height: auto;   
    background: #ceffad;   
    top: 80px;
    left: 30%;
    border: 1px solid #004370;
    box-shadow: 0 5px 25px rgba(0,0,0,.1);
    z-index:999;
    position: absolute;
    padding: 5px;
}
#tooltip #contenedor {
    padding: 25px 10px 10px 10px;
}
#tooltip #contenedor .contenido {
    padding: 15px;
    box-shadow: inset 1px 1px white;
/*    background: #deffc4;   Fondo del mensaje */
    border: 1px solid #004370;  /* Borde del mensaje */
    font-size: 11px;  /* TamaÃ±o del texto del mensaje */
    color: #555;  /* Color del texto del mensaje */
    text-shadow: 1px 1px white;
    margin: 0 auto;
    border-radius: 4px;
}
#tooltip .cerrar {
    cursor: pointer;
    float: right;
    border-bottom: 1px solid #bbb;
    border-left: 1px solid #bbb;
    color: #999;
    background: white;
    line-height: 17px;
    text-decoration: none;
    padding: 0px 14px;
    font-family: Arial;
    border-radius: 0 0 0 5px;
    box-shadow: -1px 1px white;
    font-size: 18px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
}