List modules in the download pages.
Minor editions.
diff --git a/source/downloads.md b/source/downloads.md
index e619a03..8598435 100644
--- a/source/downloads.md
+++ b/source/downloads.md
@@ -50,7 +50,7 @@
 pgpv apache-sis-X.Y.Z.zip.asc
 {{< / highlight >}}
 
-# Download as a Maven dependency    {#maven}
+# Download as Maven dependencies    {#maven}
 
 An easy approach to integrate Apache {{% SIS %}} into a Java project uses the [Apache Maven][maven]
 dependency management tool to automatically obtain the required Java Archives (JAR) files from the network.
@@ -67,17 +67,37 @@
     <artifactId>sis-referencing</artifactId>
     <version>${sis.version}</version>
   </dependency>
-</dependencies>
 
-<!-- The following dependency can be omitted if XML support is not desired. -->
-<dependency>
-  <groupId>org.glassfish.jaxb</groupId>
-  <artifactId>jaxb-runtime</artifactId>
-  <version>2.3.3</version>
-  <scope>runtime</scope>
-</dependency>
+  <!-- The following dependency can be omitted if XML support is not desired. -->
+  <dependency>
+    <groupId>org.glassfish.jaxb</groupId>
+    <artifactId>jaxb-runtime</artifactId>
+    <version>2.3.6</version>
+    <scope>runtime</scope>
+  </dependency>
+</dependencies>
 {{< / highlight >}}
 
+The `sis-referencing` module in above example can be replaced by one or many of the following modules:
+
+<table>
+  <tr><th>Service</th>                          <th>Group</th>                                   <th>Artifact</th></tr>
+  <tr><td>ISO 19115 metadata</td>               <td><code>org.apache.sis.core</code></td>        <td><code>sis-metadata</code></td></tr>
+  <tr><td>Referencing by coordinates</td>       <td><code>org.apache.sis.core</code></td>        <td><code>sis-referencing</code></td></tr>
+  <tr><td>Referencing by identifiers</td>       <td><code>org.apache.sis.core</code></td>        <td><code>sis-referencing-by-identifiers</code></td></tr>
+  <tr><td>Features and coverages</td>           <td><code>org.apache.sis.core</code></td>        <td><code>sis-feature</code></td></tr>
+  <tr><td>Feature data from SQL database</td>   <td><code>org.apache.sis.storage</code></td>     <td><code>sis-sqlstore</code></td></tr>
+  <tr><td>Feature data from GPX files</td>      <td><code>org.apache.sis.storage</code></td>     <td><code>sis-xmlstore</code></td></tr>
+  <tr><td>Features and rasters from NetCDF</td> <td><code>org.apache.sis.storage</code></td>     <td><code>sis-netcdf</code></td></tr>
+  <tr><td>Raster data from GeoTIFF</td>         <td><code>org.apache.sis.storage</code></td>     <td><code>sis-geotiff</code></td></tr>
+  <tr><td>Raster data from Landsat</td>         <td><code>org.apache.sis.storage</code></td>     <td><code>sis-earth-observation</code></td></tr>
+  <tr><td>Raster data from GCOM (JAXA)</td>     <td><code>org.apache.sis.profile</code></td>     <td><code>sis-japan-profile</code></td></tr>
+  <tr><td>Connection to storages on cloud</td>  <td><code>org.apache.sis.cloud</code></td>       <td><code>sis-cloud-aws</code></td></tr>
+  <tr><td>Console application</td>              <td><code>org.apache.sis.application</code></td> <td><code>sis-console</code></td></tr>
+  <tr><td>Graphical application</td>            <td><code>org.apache.sis.application</code></td> <td><code>sis-javafx</code></td></tr>
+</table>
+
+
 ## Include non-free resources    {#non-free}
 
 The [EPSG geodetic dataset][EPSG] is optional but strongly recommended.
diff --git a/source/release-management.md b/source/release-management.md
index 502ac15..95d8bfd 100644
--- a/source/release-management.md
+++ b/source/release-management.md
@@ -471,7 +471,9 @@
 
 * `source/index.md`
 * `source/command-line.md`
-* `source/epsg.md`
+* `source/epsg.md` for EPSG dataset version
+* `source/download.md` for SIS version and JAXB dependency
+* `source/developer-guide/introduction/Installation.html`
 
 Commit:
 
diff --git a/static/book/book.css b/static/book/book.css
index ede9701..b0ad692 100644
--- a/static/book/book.css
+++ b/static/book/book.css
@@ -32,6 +32,13 @@
   right:    0;
   bottom:   0;
   overflow: auto;
+  font-size: 18px;
+  /*
+   * Firefox has a monospace font size different than the proportional font size.
+   * By setting a font size in the main block, we force the same size for both fonts.
+   *
+   * https://bugzilla.mozilla.org/show_bug.cgi?id=328621
+   */
 }
 
 nav a {
@@ -75,6 +82,7 @@
 /*
  * For the main body, we put a margin for almost everything except the elements to be centered.
  */
+section > header > h1,
 section > header > h2,
 section > h3,
 section > h4,
@@ -151,13 +159,7 @@
 section > header > h1 {
   font-family:         sans-serif;
   margin-top:          160px;
-  text-align:          center;
-  background-color:    #99AAFF;
-  border-top-color:    #0000CC;
-  border-bottom-color: #0000CC;
-  border-top-style:    solid;
   border-bottom-style: solid;
-  border-top-width:    3px;
   border-bottom-width: 3px;
   padding-top:         6px;
   padding-bottom:      0px;