/* Général */

* {
 border: none;
 margin: 0;
 padding: 0;
 font-size: 100%;
 font-weight: normal;
 }
 
html {
 background-color: #1b4e77;
 font-family: sans-serif;
 text-align: center;
 font-size: 15px;
 }
 
body {
 display: block;
 width: 600px;
 padding: 20px;
 margin-top: 20px;
 margin-left: auto;
 margin-right: auto;
 background-color: white;
 }
 
h1 {
 font-weight: bold;
 font-size: 120%;
 color: #1b4e77;
 margin-bottom: 1em;
 }
 
a {
 font-size: 60%;
 color: #1b4e77;
 }
 
/* Affichage de la carte */
 
map {
 margin-bottom: 20px;
 }

map h2 {
 display: inline;
 font-weight: bold;
 font-size: 70%;
 }
 
map ul {
 list-style-type: none;
 display: inline;
 }
 
map ul li {
 display: inline;
 }
 
 /* Affichage du résultat */
 
div.resultat {
 display: none;
 }
 
div.resultat:target {
 display: block;
 width: 550px;
 height: 2em;
 padding-top: 1em;
 background-color: #f1f1f1;
 margin-top: 10px;
 margin-left: auto;
 margin-right: auto;
 margin-bottom: 30px;
 font-weight: bold;
 }