.contenedor {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

ul {
  list-style-type: none;
}

li{
  display: inline;
  
}

.lado-derecho {
  margin: 0 auto;
  margin-top: 110px;
  margin-bottom: auto;
}

.titulo{
  padding-bottom: 30px;
}

.lado-izquierdo {
  margin: 0 auto;
  margin-top: auto;
  margin-bottom: auto;
}

.deslizadorActual {
  -webkit-appearance: none;
    width: 100%;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
  }

  .deslizadorActual:hover {
    opacity: 1;
  }

  .deslizadorActual::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #5D95D7;
    cursor: pointer;
  }

  .deslizadorActual::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #5D95D7;
    cursor: pointer;
  }

.deslizadorAnterior {
  -webkit-appearance: none;
    width: 100%;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
  }

  .deslizadorAnterior:hover {
    opacity: 1;
  }

  .deslizadorAnterior::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #FF6483;
    cursor: pointer;
  }

  .deslizadorAnterior::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #FF6483;
    cursor: pointer;
  }

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

.fondoTitular{
  background-color: #e6f2ff;

}

tr:nth-child(even) {
  background-color: #fff2e6;
}
