<!-- BODY -->

<style>
.center {max-width: 950px; margin: auto; }

.prev { grid-area: left; }
.pdf { grid-area: center; }
.next { grid-area: right; }
.vol { grid-area: across; }
.toc { grid-area: left2;}

.container {
  display: grid;
  grid-template-areas:
    '. center .'
    'left across right';
  background-color: FFF;
  text-align: center;
}

body {
    background-color: rgb(252,248,240);
}

</style>
