/*titulo página*/
#tituloListado {
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: solid 1px #f5f5f5;
    color: #615f5f;
}

/*titulos de los datos */
#divTitulosLista {
    background-color: #e6e5e5;
    width: 100%;
    overflow: hidden;
    height: 40px;
}

.celdaTitulo {
    float: left;
    padding: 11px 0;
    padding-left: 5px;
    padding-right: 2px;
    border-left: solid 2px #f5f5f5;
}

/*Datos*/
#divDatosLista {
    background-color: #fbfbfb;
    width: 100%;
    overflow: hidden;
}
/*columnas*/
.columnasDatos {
    float: left;
    padding: 11px 0;
    padding-left: 5px;
    padding-right: 2px;
    border-left: solid 2px #f5f5f5;
    border-bottom: solid 2px #f5f5f5;
}

/*botones de eliminar y modificar*/
.botonDatos {
    background-color: #49929d;
    border: solid 1px #49929d;
    font-size: 15px;
    color: white;
    cursor: pointer;
    border-radius: 3px;
}

.botonDatos:hover {
    background-color: #57b9c4;
    border: solid 1px #57b9c4;
}