IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

JavaScript Discussion :

Changer de langue


Sujet :

JavaScript

  1. #61
    Membre expert
    Homme Profil pro
    Inscrit en
    Octobre 2011
    Messages
    2 872
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations forums :
    Inscription : Octobre 2011
    Messages : 2 872
    Points : 3 716
    Points
    3 716
    Par défaut
    Je n'ai pas de iframe dans les codes postés...
    Bref je vais regarder des cours/articles sur ça...

  2. #62
    Membre expert
    Homme Profil pro
    Inscrit en
    Octobre 2011
    Messages
    2 872
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations forums :
    Inscription : Octobre 2011
    Messages : 2 872
    Points : 3 716
    Points
    3 716
    Par défaut
    Sinon as-tu remarqué que c'est toujours le nom en français qui est affiché lorsque tu places la souris au-dessus d'une région ?

    Est-ce voulu ?

  3. #63
    Membre du Club
    Inscrit en
    Septembre 2008
    Messages
    629
    Détails du profil
    Informations forums :
    Inscription : Septembre 2008
    Messages : 629
    Points : 47
    Points
    47
    Par défaut
    Re,

    Regarde mon code en entier.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    <!DOCTYPE html>
    <html lang="fr">
     
    <head>
      <meta charset="UTF-8">
                             <title>XXXXXXXXX</title>
     
                                               <!-- Carte-->
                          <meta name="viewport" content="width=device-width, initial-scale=1">
     
                                                      <style>
                     Body{ background: #000;}
     
                             /*  //////////////////////////Titre de la carte///////////////////////////   */
     
                     #titre {   /* Titre de la carte */
                            position: absolute;top: 10px;left: 150px;       
    	                    text-shadow: -1px -1px 0px rgba(255,255,255,0.3), 1px 1px 0px rgba(0,0,0,0.8);
    	                    color: #333;          
    	                    opacity: 0.4;
    	                    font: 700 70px 'Bitter';font-style: italic;
                            border: 0px solid #ff00f5;width: 60%;text-align: center;}
     
                     sup{      /* Titre du pays en sup */
                            font-size: 24px;color: #fff;}        
                               /* Fin Titre de la carte*/
     
                     sub{
                            color: #fa0808;}
     
                         /*  ////////////////////////Fin Titre de la carte/////////////////////////////   */    
     
                     .map__image {                          /* Carte*/
                            position: absolute;
                            top: 120px;
                            left: -90px;
                            right:0px;
                            bottom: 0;
                            border:0px solid red;
                            width: 1100px;
                            height: 800px;
                            margin-left:100px;}
     
                     .map__image path {
                            fill: #0e0e14 ;       
                            stroke: #4a4747;     
                            stroke-width: 1px;
                            transition: fill 0.1s;}
     
                     .map__image path:hover{
                            fill:#0000FF; 
                            stroke: #0000FF;}
     
                     .map__image svg {
                            height: 900px; width: auto;}
     
                     .map{
                            overflow: hidden;}
     
                     #ligne_x5F_rouge{  /* Ligne rouge sur carte */
                            fill-rule:evenodd;
                            clip-rule:evenodd;
                            fill:#D41216;
                            stroke:#D41216;
                            stroke-miterlimit:22.9256;}
     
                     path ~ text{        /*texte couleur blanc au passage de la souris*/
                            fill: #e8e809;
                            font-size: 12px;}
     
                     path:hover ~ text {
                            fill:  #fdfefe ;
                            font-weight: bold;
                            font-size: 13px;} /*Fin texte couleur blanc au passage de la souris*/ 
     
                     .texte {
                            visibility: hidden;}
                                                                /* Fin carte*/
                                            /*  /////////////////////////////////////////////////////   */
     
     
                                                /* Bouton afficher/masquer le texte sur la carte*/
     
                     .bt_afficher {
                            margin-top: 90px;
                            margin-left: 10px;
                            padding-left: -100px;border: 0px solid #ff00f5;}
     
                     .bt_texte:hover {
                            font-size: 18px;
                            color: #1af508;}
     
                     .bt_texte {
                            margin-left: 10px;
                            color: #eb1a1a;
                            cursor: pointer;}
                                                /* Fin Bouton afficher/masquer le texte sur la carte*/
     
                                                      /* style pour le selecteur de langue */
     
                     #tableSelectLangue {
                            position: absolute;top: 70px;left: 230px;
                            display:none; 
                            font-family: Verdana, Geneva, Tahoma, sans-serif;
                            font-size: 13px;
                            margin: 8px;
                            border: 0px solid #ff00f5;
                            margin-left: 40px;}
     
                     #selectLangue {
                            font-family: Courier New, Courier, monospace;
                            font-size: 11px;
                            color: white;
                            margin: 10px;
                            padding: 10px;width: 250px;}
     
                     #selectLangue>td {
                            /* display: inline-block; */
                            vertical-align: middle;
                            align-content: center;
                            height: 20px;
                            padding: 3px}
     
                     #selectLangue>td:hover {
                            cursor: pointer;}
     
                     #selectLangue>td>img {
                            width: 30px;
                            height: 20px;
                            margin-right: 13px;
                            margin-left: 20px;}
     
                     caption{
                            color: #fff;}  
     
                                                    /* Tableau drapeaux*/ 
                     .tabl_info{ 
                            position: absolute;
                            left: 1120px;
                            top: 25px; 
                            width: 260px; 
                            height: 700px; 
                            color: #fff;
                            border: 0px solid #ff00f5;}
     
                     .retour{
                            color: #dd0af8;
                            font-size: 18px;}
     
                     .retour:hover{
                            color: #25f80a;
                            font-size: 19px;}
                                                 /* Fin tableau drapeaux*/
     
                                                     /* Heure Gmt*/                   
                     #tabl_Gmt{  }                
                     p:before { 
                            content: "(GMT " attr(data-gmt) ") ";
                            font-size: .8em;
                            color: #888;}
                     p span {
                            text-indent: 1em;}
     
                     .date:before {
                            content: " ";
                            display: block;}
     
                     .heure {
                            font-style: italic;
                            font-size: 22px;
                            color: #ff0000;}
     
                     img {
                            vertical-align:middle;}   /* Fin Heure Gmt*/
     
                     sup.Fuseau{
                            font-size: 14px;color:#f28417;}
     
                     a{
                            cursor: pointer;}
     
                     #districts{
                            position: absolute;
                            top:720px; 
                            left: 1140px; 
                            color: #fff;
                            font-size: 18px;}
     
                     #districts:hover{
                            position: absolute;
                            top:720px; 
                            left: 1120px;
                            font-size: 24px;}
     
                     a:link {
    	                    color: #999;
    	                    text-decoration: none;}
     
                     a:visited {
    	                    text-decoration: none;
                            color: #999; }
     
                     a:hover {
    	                    text-decoration: none;
                            color: #25f80a;}
     
                     a:active {
    	                    text-decoration: none;
    	                    color: #999;}
     
     
     
     
                                                       </style>
     
        <body>
     
                                                           <!-- Titre de la page -->                                           
     
                                           <div id="titre">Titre de la page <sup> (Districts) </sup>  </div>
     
                                                          <!-- Fin Titre de la page -->
     
     
                      <!-- ///////////////////////////////////////  Tableau drapeaux /////////////////////////////////////////////////  --> 
     
     
                                                    <table class="tabl_info" border="0">
     
                                         <!-- /////////  Afficher l'heure et la date du pays /////////  -->
              <tr><td align="center" >
                                                             <div id="tabl_Gmt"> 
     
                                           Heure local de Greenwich <sup class="Fuseau"> (UTC/GMT) </sup>
     
                                                             <p data-gmt="+1">
                            <b>Brême </b> :&nbsp; <img src="../../../dossier_drapeaux/flags/Breme.gif" width="32" height="26" alt="Drapeau">
                                                      <span class="date"></span>
                                                         <br><span class="heure"></span>
                                                                    </p>       
     
                                                                   </div>  
                                             <script src='../../../dossier_carte/js/heure_gmt.js'></script>
     
                                     <!-- ///////// Fin  Afficher l'heure et la date du pays /////////  -->
     
                </td></tr>
     
     
                <tr><td align="center">Drapeau Représentant</td></tr>
                <tr><td align="center"><sub>***&nbsp; </sub> Drapeau du pays  <sub>&nbsp; ***</sub></td></tr>
                <tr><td align="center"><img src="../../../dossier_drapeaux/flags/Breme.gif" width="160" height="100" alt="Drapeau"></td></tr>
                <tr><td align="center">Armoirie Représentant</td></tr>
                <tr><td align="center"><sub>**&nbsp;</sub> Brême <sub>&nbsp;**</sub></td></tr>
                <tr><td align="center"><img src="../../../armoiries/Breme.png" width="140" height="210" alt="Armoirie" ></td></tr>
     
                <tr><td align="center"><a href="../../carte_index.html"><img src="../../images/index.png" width="50" height="50" alt="icône"></a></td></tr>
                <tr><td class="retour" align="center"> Retour à l'index </td></tr>
     
                                                                   </table>  
     
           <!-- ///////////////////////////////////////////// Fin Tableau drapeaux //////////////////////////////////////////////  --> 
     
     
     
            <!-- //////////////////////////////////  Afficher ou maquer le texte sur la Carte ////////////////////////////////////  --> 
     
                                             <table class="bt_afficher" border="0" width="20%" >
                         <tr><td ><span class="bt_texte" onclick="afficher_cacher(this);">Afficher le nom des régions</span></td> </tr>
                   </table> 
                                             <script src='../../js/afficher_cacher.js'></script> 
     
            <!-- //////////////////////////////////  Fin Afficher et masquer nom sur la carte //////////////////////////////////////-->
     
                                 <table id="tableSelectLangue">
        <caption>Sélectionnez la langue d'affichage :</caption>
        <tbody>
          <tr id="selectLangue">
            <td id="fr" class="langueSelectionne">
              <img src="https://img15.hostingpics.net/pics/95570555fr.png">Français</td>
            <td id="en">
              <img src="https://img15.hostingpics.net/thumbs/mini_90987313gb.png">Anglais</td>
            <td id="de">
              <img src="https://img15.hostingpics.net/pics/97861746de.png">Allemand</td>
          </tr>
        </tbody>
                                        </table>
     
             <div class="map" id="map">
        <div class="map__image">
     
          <svg version="1.1" viewBox="-320 -30 1000 820" class="svg-states">
     
     
     
            <g id="states">
              <a xlink:href="Anvers.html" target="myFrame" onmouseover="afficher_image('img1');" onmouseout="cacher_image('img1');">
                <path id="01" title="Anvers" d="M421.1,61.1c-0.1,0-0.2,0.1-0.3,0.1c0-0.1,0.2-0.2,0.1-0.4c0-0.1-0.5-0.2-0.6-0.2c-0.1,0.1,0.2,0.7,0.2,0.9c0,0.3-0.3,0.5-0.2,0.8c0,0.2,0.1,0.6,0,0.8c-0.1,0.2-0.3,0.1-0.5,0.1c-0.2,0.1-0.3,0.3,0,0.2c0.3,0,0.5,0.2,0.8,0.3c0.2,0.1,0.5,0.1,0.7,0.2c0.2,0.1,0.2,0.4,0.3,0.5c0.2,0.3,0.7,0,1.1,0.2c0.2,0.2,0.6-0.2,0.7-0.4c0.2-0.5-0.2-0.4-0.3-0.8c-0.1-0.4,0.4-0.1,0.5-0.2c0.1-0.2-0.2-0.2-0.1-0.5c0.3-0.6-0.3,0-0.7-0.3c-0.3-0.2-0.2-0.5,0.1-0.6c0.1-0.1,0-0.2,0.2-0.3c0.2-0.1,0.1-0.4,0-0.6c-0.1-0.2-0.3-0.1-0.5-0.1c0,0.3-0.8,0.3-0.8,0.7c0,0.2-0.2,0.6-0.4,0.5c-0.4,0-0.1-0.8-0.1-1L421.1,61.1L421.1,61.1z M422.4,59.8c0.3,0,0.6-0.1,0.9-0.1l1.3-0.2c0.1,0,0.3-0.1,0.4-0.1c0.2-0.1-0.2-0.4-0.1-0.5c0,0,0.3-0.1,0.3-0.1c0,0,0,0.2,0,0.3c0,0.1,0.1,0.2,0.1,0.3c0,0.1-0.1,0.1-0.1,0.2c-0.1,0.1,0.2,0.2,0,0.4c-0.1,0.1-0.3,0-0.4,0.1c-0.1,0.1,0,0.3-0.2,0.4c-0.4,0.2-0.3-0.4-0.5-0.2c-0.1,0.2-0.1,0.3-0.3,0.3c-0.1,0-0.2,0.2-0.3,0.2c-0.2,0-0.3-0.2-0.5-0.2c-0.3,0-0.5,0.1-0.7-0.2L422.4,59.8L422.4,59.8z M314.1,164.4L314.1,164.4l-2.2-1c-1.3,0.1-2.4,2.5-3.6,2.2c-0.8-0.3-1.7-1.8-1.9-2.7c-0.2-0.8-0.6-1.9-0.8-2.7c-0.2-1.3,1-1.7,1.1-2.7c0-0.2-1.2-1.2-1.4-1.5c0-0.9,0.4-2.9,0.1-3.7c-0.4-0.9-2-1.5-2.5-2.4c-1-1.6,3-3.5,4-4.5c0.6-0.6,2.1-3.2,2.9-2.9c0.8,0.3,1.5,0.3,2.4,0.2c1.1-0.2,1.7,0.9,2.7,1.3c0.9,0.3,2.4-0.3,3.1-0.9c1.5-0.4,3.3-0.7,4.9-0.5c1,0.1,2.4-0.2,3.2-0.8c1.3-1.1,2.4-3.7,2.4-5.4c0.1-1.2-0.1-3.3,0.2-4.4c0-1.6,0.6-5.2-1.4-5.8c-3.1-0.9,0-2.1-0.9-3.9c-0.3-0.7-3,1-3.1-1c0-1.3,0.4-2.9,0.2-4c-0.2-1.1-0.7-1.8-0.9-2.8l-0.8-3.1l-0.4-3.2l0,0c0.7,1.6,2.4,2.1,4,2.7c1.2,0.4,1.9,1.3,2.9,2c1.3,0.8,3.1,1.2,4.6,1.2c1.5,0,3,0.3,4.3,0.3c0-1.2-3.1-1.3-3.9-1.1c-3.2,0.8-4.6-2.1-7-3.3c-0.9-0.4-2.7-0.5-3.3-1.3c-1-1.2,0.9-2.2,1.6-3.4c0.2-0.2,0.3-0.4,0.4-0.6c0.2-0.4,0.3-0.8,0.9-0.8c0.2,0,0.4,0.2,0.5,0.3c0.2,0.3,0.4,0.5,0.7,0.7l-0.5,2.8l0.7,0.3l0.7-2.1l2.1,2.6l0.4,3.2l6.2,0.1l-0.2-0.5l-5.4-0.2l0-1l3.4,0.1l-0.1-0.6l-3.3-0.1l0-0.8l3.6-0.1l-0.1-0.7l-4,0.1l-2.3-2.4l0.9-1.2l3,2.3l0.4-0.2l-2.7-2.5h5.1l0-0.8l-5.7-0.2l-4.6-8.7l-0.8-2.2l4.7,0.1l-0.1-0.9l-5.3-0.3l-1.3-5.1l-1.1-3.1h-0.9l0.7,3.2l0.8,2.2l2.2,5.5l2.1,4.2l2.9,5.2l-1.1,1.4l-1.2-0.9l-0.3-1.5c-1.4-2.3-3.1-2.7-5.2-4.1c-3.6-2.5-0.3-6.7-2.5-9.1c-0.5-0.5-1.1-1-0.8-1.7c0.4-0.9-1.7-2.1-2.3-2.6c-1.7-1.3-2-1.1-2.5-3.5c0-0.6,0-1.2-0.1-1.8l0,0L322,79c0.8,0.1,4.9-0.3,5.2,0c0.3,0.3,1,3,1.4,3.8c0.6,1.1,6.4,1.8,7.6,1.2l5.6-2.6c3.7-1.7-7.1-10.3-5.8-13.7c0.4-0.7,1.7-4,1.5-4.8c-0.3-1.1-2.6-1.6-2.6-2.3c0.5-0.5,2.8-1.2,3.6-1.6l6.8-3.5c1.5-0.8,3-2,4.7-2.2l7.2-0.8c2.4-0.3,1.9,1,3.6,1.5c0.2,1-1.1,2.9-1.5,3.7c-1.3,2.4-0.9,4.7-0.9,7.4c0,4,2.7,1.2,5,0c2.5-0.4,3.7-0.8,6.2,0.2c1.4,0.6,3.5,0.4,4.7,1c2.1,1,0.7,0.4,2.6,0c3.1-0.6,3.1,1.3,2.9-2.4c-0.1-2.4-0.5-2.5,1.8-3c3.4-0.8,1.8-4.1,3.6-4.7c2.9-1,2.9-3.9,5.6-5.1c1.9-0.9,1.2-0.7,1.8-2.4c0.4-0.9,4.2-2.7,4.8-1.7c0.6,1,2.9,0.9,4.1,1.3c1.2,0.5,1.6,0.8,1.8,2.1c0.4,2.6,2.4,0.7,3.6,2c0.9,0.9-0.7,3.5-0.7,4.7c0.3,1-1.4,2.5-1.6,4.1c-0.2,2,0.1,2.7,0.8,4.4c1.6,3.8-0.7,2.3-2.9,0.5c-0.3-0.2-1.8-0.9-2.1-0.8c-1.4,0.5-3.3-1.5-4.7,0c-0.5,0.5,2,4.3,2.7,4.7c2.1,1,4.5-0.2,6.5-0.6c0.8-0.1,1.4-1.2,2-0.9l3.3,1.6c1.2,0.6,1.7-1.5,3-1.7c1.7-0.3,3.8,0.8,4.1,2.4c0.1,0.8,1.2,0.9,1.5,1.5c0.6,1,0.6,2.9,2.3,1.3c0.6-0.6,0.7-2.3,1.1-2.2c1.2,0.3,8.4-7.8,9.8-9.1c0.8-0.2,2.2-2,2.2-2.8c0.1-1.1,0.1-1.7-0.3-2.9c-0.3-0.9,2.1-4.5,2.7-5.2c1.1-1,3.2,1.5,4.4,2.3c1.2,0.8,2.7,0.8,3.4,2.1l2.4,4.8c1,2.1,1,3.3,1,5.5l-4.7,8.5l6.9,8c0.7,0.6,0.6,1.5,1.6,1.9c1.6,0.8,1,1.6,1,3.2c0,1.9-0.4,4.2,0.3,6c0.7,1.7,3.2,1.9,4.6,1.2c1.6-0.7,3.3-2,4.8-2.6c1.2-0.5,4.2,1.1,5.5,1.4c1.4,0.4,1.7,2.5,1.7,3.7c-0.3,1.4-2.2,7.7-1.8,8.6c0.7,0.4,1.6,1.9,2.4,1.9l0,0c-0.3,0.7-0.6,2.6-1,3.3c-0.3,0.5-0.7,0.9-1,1.4c-0.5,0.8-1,2.1-1.1,3c-0.1,0.7,0,1.5-0.1,2.3c0,1.7-0.2,3.3,1.2,4.5c0.8,0.7,2,1.3,3,1.7c2.5,1,2.8,2.6,3.1,5c0.2,1.4,0.4,3.4,0.3,4.8c-0.3,2.6,0.1,2.6-2.1,4.5c-1.2,1-3,3.7-4.7,1.6c-1.2-1.6-1.3-0.2-1.8,0.7c-0.9,1.6-2.1,2.7-3.9,3.3c-1.5,0.5-6.4,1.4-7.8,1c-1.1-0.4-1.6,1.7-2,2.3c-0.4,0.7-1.2,0.9-1.8,1.4c-2.2,0.9-2.3,4.2-4.4,4.6c-2.7,0.5-4,0.6-6.6,2c-1.6,0.9-3.2-0.2-4.7,0.4c-0.8,1.8-0.1,3.2-1.8,4.6c-1.4,1.2-1.4,3.4-2.9,4.6l0,0c-1.1-0.2-2.7-1.2-3.9-0.7c-1.5,0.7-2.8,2.4-4.7,1.8c-1.3-0.4-2.3,0.4-3.5,0.6c-1.2,1.1-1.8,2.4-3.5,2.1c-1.3-1.1-2.9,0-4,0.9c-1.4,1.3-2.7,0.6-4.5,0.7c-2.7,0.2-3.5-3.8-5.2-5.3c-1.6,0-3.7,0.9-5,1.8c-1.5,1.1-4.2,1.2-6,2c-0.8,0.6-3.6,4.3-3.9,4.3c-2.1-0.1,0.2-3.2-0.5-3.5c-1-0.4-2.2-1.2-3.3-1.2c-1.6,0-3.3,0.7-5,0.7c-0.8,0-1.8,1.4-2.7,1.7c-1.2,0.3-2.4-0.7-3,0.7c-0.7,1.9-0.2,2.2-2.1,3.2c-0.7,0.4-3.7-0.1-4.3-0.6c-1-0.8-1-1-2.3-1.6c-1.3-0.2-2.3,0.2-3,1.2c-0.5,0.7-1.4,1.1-2.2,0.5l-4.2-3.4c-1-0.8-1.2,1.8-1.2,2.5c0.1,2.2-0.7,2.1-2.6,1.6c-2.4-0.6-3.7-3.4-5.8-1.9c-1.3,0.9-1.9,2.1-3.3,0.8c-1.4-1.4-1.3,1.7-3.1-1.3c-0.5-1.3-2.4-2.2-2.6-3.2c-0.2-1.1,0.3-2.5,0.1-3.7c-1.9-1-2.8,6.4-4.9,1.6c-0.6-1.3-2-0.5-2.8-1.3c-1.4-1.4-3.5-1.2-4.9-2.1c-0.6-0.4-1.6-1.2-2.4-1.2c-1.2,0-1.6,1.2-2.7,1.6C315.8,164.9,315.7,164.3,314.1,164.4z"
                />
                <text transform="matrix(1 0 0 1 364.3696 125.7813)">
                  <tspan x="6.7" y="0" class="texte">Anvers</tspan>
                </text>
              </a>
            </g>
           <g id="states">
              <a xlink:href="Flandre_Occidentale.html" target="myFrame" onmouseover="afficher_image('img2');" onmouseout="cacher_image('img2');">
                <path id="02" title="Flandre Occidentale" d="M179.8,107.3l0.6,2.4c0.2,1.6,0.8,2.9,0.2,4.6c-0.2,0.7-1.7,1.5-2.3,1.9c-1.7,1.3-0.3,2.7-0.2,4.6c0,1.3,0.2,3.7-1.6,3.9c-0.3,0.5-1.2,1-0.9,1.7c0.9,0.2,1.9-0.6,2.7-0.3c0.7,0.3,1.4,1.9,1.4,2.5c0.4,0.8,2.5,3.4,2.5,4.1c0,1-0.8,2.6-1,3.8c-0.5,2.7-1.1,3.9-2.8,6c-0.7,0.8-0.8,1.5-1.8,2.2l-2.9,2c-0.4,0.3-1.4,1.2-1.9,1.3c0,0.1-0.1,0.1-0.1,0.2c0.7,0.6,1.1,1.3,1.7,2c1.3,1.6,3,0.7,4.4,2.4c1.8,2,4.2,4.1,6.4,5.7c1.1,0.8,4.8,2.2,4.8,3.6c-0.7,0.9-1.8,0.8-2.7,1.4c-1.6,1-0.3,2,0.2,3.2c1.7,2.4,2.7,2.6,2.9,5.8c0.1,1.9-0.7,2.6-2.2,3.5c-1.2,0.7-1,2.4-0.2,3.3c1.4,1.6-0.7,2.7-1.8,3.7c-2.4,2.4,1,2.4,2.9,2.4c1.1-0.2,2.6-0.4,2.8,1c0.2,1.4-4,1.3-3.2,2c0.6,0.6,1.5,0.5,2.1,1.2c0.4,0.5,0.1,1-0.5,1c-1.1,0-1.8-1.2-2.9-0.9c-1.1,0.3-0.6,0.9-0.4,1.8c0.4,1.1,0.2,1.7-0.8,2.4c-1.1,0.9-0.7,2.7-0.6,4c0.2,1.3,3.6-0.9,4-1c1.8-0.5,4.4,1.6,4.6,3.4c0.2,2.3-2.1,2.6-2.7,4.7c0.4,1,0.3,2.5,1.2,3.3c1.4,1.2,1-0.2,2.4-0.2c0.4,1.2,1.2,2.8,2,3.7c0.5,0.5,2,1.7,2,2.4c0.1,0.5-0.7,1.1-0.8,1.7c-0.2,0.7,1.3,2.2,1.7,2.9c0.8,1.2,0.8,2.1,0.7,3.6c0,1.1-0.5,1.6-1.4,2.2c-0.7,0.5-1.3,0.8-1.8,1.5c-0.5,0.9-1,2-1.9,2.5c-1,0.6-2.6,0.9-3.1,2l-1.3,1.2l0,0c-1.1-0.3-1.5,1.1-2.4,1.6c-1.6,0.8-1.9,1.6-3.3,2.9c-0.8,0.3-1.5,0.7-2.4,0.6c-0.3,0-1.4-0.3-1.6-0.1c-0.5,0.5-0.1,2.4-0.9,3.3c-1.5,1.7-5.2,1.7-7.3,2c-1,0.1-1.8,0.8-2.6,1.5c-0.9-0.9-1.9-2.3-1.9-3.6c0-1.6-0.6-4.4-2.4-5c-1.5-0.5-3.9,0.6-5.5,0.6c-1.7,0-1.4-1.1-2.7-1.5c-0.8-0.3-1.8,0.9-2.5-0.3c-2.1-3.2-7.4,0.1-9.5,1.9l0,0l-0.3-1c-0.4-0.7-0.7-0.8-1.2-1.4c-0.4-0.5-0.2-1-0.5-1.5c-0.6-1.2-1.5-2.2-2-3.4c-0.3-0.6-0.3-1.5-0.5-2.2c-0.3-0.9-2.8,0.1-3.4,0.4l-1.3-0.9c-0.9,0.3-1.7,0.7-2.5,1.2c-1.6,1-1.2,4-4,3.3c-1.7-0.4-3.6-3.9-5.7-0.9c-1.4,2.1-2.2,1-3.7,1l0,0c0.3-0.8,1.7-2.4,0.1-2.7c-1.8-0.4-0.6-1-1.3-2.3c-0.4-0.6-0.6-1.4-0.2-2c1-1.6,0.4-1-0.8-1.9c-1.3-1-2.2,0.3-3.8,0.6c-2.3,0.4-3.9,2.4-6.1,3c-0.2,0.9,4.8,4,1.6,4.8c-1.2,0.6-5.5,1.5-5.6,3.3c0,0.4,0.6,1.3-0.1,1.4c-0.9,0.1-1.8,0.4-2.7,0.5c-1.6,0.2-1.8-0.1-2.8-1.3c-1.3-1.6-1,1.7-1.9,1c-0.4-0.3-1-1.4-1.6-1l-2.5,1.6c-0.9,0.6,0.4,1.8,0.7,2.5c0.6,1.2-1,1.5-1,2c0,0.5,1.7,1.9,2.1,2.4c0.8,1.2,1.8,1.9,2.7,3l-1.2,1.5l0,0c-0.7-1-1.5-2.8-2.4-3.7c-1-1-3.6,0.5-4.8,0.7c-2.6,0.5-4.9-2.8-5.9-4.6c-0.9-1.6,0.7-4.1-1.6-4.3c-0.4,0-1.1-0.3-1.4-0.5c0-0.4,0.2-1.2-0.1-1.4c0-0.2-0.4-0.4-0.6-0.6c0,0,0-0.1-0.1-0.1c0-2.4-0.2-2.8-2.7-4c-1.5-0.7-2.9-2.9-3.4-4.5c-0.5-1.6,1.6-2.2,0.5-3.7c-1.8-0.5-7,0.4-8-1c-1.9-2.5-2.9,2.3-5.7,0.5c-0.9-0.5-2.1-3.1-2-4.1c0-1.5-0.4-1.3-1.3-2c-0.7-0.5,0.4-2.3-0.6-2.4c-0.6,0-1.6,0.3-1.6-0.5c0-1.4,0.5-1.8,1.2-2.9c0.9-1.6-1-2-0.6-3.1c0.2-0.7,0.9-1.1,0.7-1.8c-0.2-0.7-0.8-1.3-0.9-2.1c0-0.6,0.9-2.2,0.8-2.3c-0.8-1-1.3-1-0.5-2.6c0.6-2.5-2.3-0.3-2.3-1.7c0-0.4,1.9-2.9,2.4-3.3c0.9-0.8,1.6-1,1.9-2.3c0.3-1.6,2-1.4,1.5-2.7l-0.8-2.2c-0.6-1.6-2.5-3.9-2.5-5.6c0-0.8,0-2.1-0.4-2.8c-0.3-0.6-1.7-0.2-2.3-0.5c-0.9-0.5-2.8-2.5-3.2-3.5c-0.3-1.1,0.4-1.9,0.3-3c-0.1-1.7-0.9-3.2-1.1-4.8l-1-6.7l-2.1-5.1c-0.1-0.2-0.2-0.3-0.4-0.5l0,0c0.9-0.5,1.7-1,2.4-1.5c2.2-1.6,5-2.4,7.1-4.1c3.6-2.8,8.1-4.4,12.2-6.4c2.2-1.1,4.9-2.8,6.8-4.3c2.6-2.1,6.1-3.6,9.1-5.2c4.1-1.7,8.1-5.5,11.8-8.1l14.9-10.2c4-1,10.2-6,13.4-8.7l5.9-4.9l10-4.5c1.4-0.7,4.5-1.2,5.5-2.3c1.4-1.5,0.4-2.6,0-4.4c-0.4-1.8,1.5-3.1,3.1-2.7c0,1-1.4,1.3-1.7,2c-0.7,1.8,1.1,0.3,1.6,0c0.3-0.2,1.9-0.6,1.8,0.1c-0.1,0.9-1.9,1.5-1.9,3c0,1.2,2.2-0.4,2.8-0.5l2.1-0.6c1.4-0.4,0.1-4-1.5-4.3c-0.2-1.7,0-0.9,1.9-0.1c0.6,0.2,0.8,2,0.9,2.6c0.6,3.1,9.3-1.8,10.8-2.3c3-1.1,6.6-1.4,9.5-2.8c0.3-0.2,0.7-0.3,1-0.6l0,0l1.3,2.7c-0.1,0.5-0.4,1.9-0.1,2.3c2.7,3.7,1.2,4.5-1.2,7.5c-1.5,1.9,1,2.5,1.3,3.9c0.1,0.5-0.8,0.9-0.9,1.3c-0.3,0.9,0.6,1.6,1,2.4c1,1.4,1,1,1.3,2.7C177.3,104.1,178.7,106.2,179.8,107.3L179.8,107.3z"
                />
                <text transform="matrix(1 0 0 1 78.6563 179.2368)">
                  <tspan x="-10" y="0" class="texte">Flandre Occidentale</tspan>
                </text>
              </a>
            </g>
           <g id="states">
              <a xlink:href="Flandre_Orientale.html" target="myFrame" onmouseover="afficher_image('img3');" onmouseout="cacher_image('img3');">
                <path id="03" title="Flandre Orientale" d="M179.8,107.3c0.3,0.3,0.5,0.5,0.7,0.6c0.9,0.5,1.9,0.4,2.7,1.1c1.4,1.1,0,2.6,2.8,3.2c3.6,0.7,7.8,0.4,11.5,0c2.8-0.3,3,0.2,2.4-3c-0.2-0.9-1.6-8.1-0.1-8.1c0.5,0,0.8,0.8,1.2,1c1.1,0.3,1.1-2,2-1.7c2.3,0.8,0.6,0.8,2.6-0.9c0.7,0.3,2.9,2.2,3.4,1.2c0.5-1-0.7-1.2,0.3-2.5c1.4-1.8,3,0.6,4.9,0.9c1.1,0.2,3.1,2.3,4,1.6c2-1.7,4.4,2,6.3,2.5c1.5,0.4,2,1,3.3,1.7c1.4,0.8,3.3,0.5,4.8,0.2c1.8,0.5,4-0.3,4,2.2c0,1.7,2.2-0.1,2.8,0.2c0.7,0.4,0.9,1.2,1.7,1.5c1.8,0.7,0,1.5,0,2.9c-0.1,1.5-0.1,3.3,0.2,4.8c-0.1,1.1,0.5,3.5,1.9,3.4c1.6-0.2,1.9,0,3.4,0.5c1.4,0.5,1.9-0.1,3.2-0.1c2-0.1,3.1-0.1,4.7-1.5c0.4-0.3,1.9-1.7,2.4-0.9c0.4,0.6,0.2,1.5-0.4,2c-1.4,1.1-0.5,2.1,1.1,2.7c2.2,0.8,3.2-1.1,3.8-2.7c2.1-1,0.8-2.1,3.1-0.5c1.1,0.7,2.2,1.9,3.2,0c1.2-2.1,2.8-2,4.2-3.9c0.9-1.3,2.2-1.7,3.3-2.7c0.8-0.8,1.7-1.4,2.7-0.6c1,0.7,1.1-0.4,2-0.3c1.4,0.1,1.3,1.2,3.1,0c1.3-0.9,3.2-2.3,4.6-2.9l13-9.1l11.1-14l0,0c0.8,0.5,4.1,3.8,4.2,4.7c0.5,3.3-0.1,6.6,3.2,8.5c2.2,1.3,7.4,2,3.8,5.2c-0.5,1.1-0.5,3.2-2.1,3.1c-0.6,0-1.2-0.2-1.9-0.2c-0.8,0-1.5,0.1-2.3-0.1l-2.2-1l0.8-1.1l-0.9-0.6l-1.1,1.1l-3.1-2l3.7-4.5l-0.9-0.7l-6.5,9.4l0.5,0.6l2.7-3.9l2.5,1.4l-1.9,3.7l0.7,0.4l2.4-3.4l1.1,0.4l-0.6,1.4l0.7,0.3l0.8-0.8l5.5-0.1c0,0.2,0.1,0.3,0.2,0.4l0,0l0.4,3.2l0.8,3.1c0.3,1,0.8,1.7,0.9,2.8c0.2,1.1-0.2,2.8-0.2,4c0.1,2,2.8,0.3,3.1,1c0.9,1.9-2.2,3.1,0.9,3.9c1.9,0.5,1.4,4.2,1.4,5.8c-0.4,1.1-0.2,3.2-0.2,4.4c-0.1,1.7-1.1,4.3-2.4,5.4c-0.7,0.6-2.2,0.9-3.2,0.8c-1.6-0.2-3.3,0.2-4.9,0.5c-0.7,0.7-2.2,1.3-3.1,0.9c-1-0.4-1.6-1.5-2.7-1.3c-0.8,0.1-1.6,0.1-2.4-0.2c-0.8-0.3-2.3,2.3-2.9,2.9c-1,1-5,2.9-4,4.5c0.6,0.9,2.1,1.4,2.5,2.4c0.3,0.7-0.1,2.7-0.1,3.7c0.2,0.2,1.4,1.3,1.4,1.5c-0.1,1-1.3,1.4-1.1,2.7c0.1,0.8,0.5,1.9,0.8,2.7c0.2,0.9,1.1,2.4,1.9,2.7c1.2,0.4,2.3-2.1,3.6-2.2l2.2,1l0,0c-0.3,1.3-0.4,2.3-0.4,3.5c0,1.6-2.8,1.6-2.7,2.6c0.1,0.8,1.2,1.2,1.4,2.1c0.1,0.6-2,1.8-2.5,2.2c-1.7,1.4-3.3,2.7-5.7,2.5c-0.4,0-2.3-0.6-2.5-0.5c-0.8,0.4-1.5,2.1-2.3,2.8c-1.6,3.4,1.7,5,1.7,8.1c0,2.6-2.4,7.1-5.5,5.1c-0.7-0.5-4.1-2.9-4.7-2.6c0,0.9-0.3,1.7-0.3,2.6c0,0.9,0.9,2.6,0.3,3.2c-0.7,0.7-1.8,1.2-2.6,1.8c-0.2,1.4,1.3,2.7,1.2,4.1c-0.1,1.2-1.2,2.8-2.1,3.5c-2.2,1.9-1.5,5.6-4.1,7.1c-2.1,1.2,1.2,1.5,2.3,1.8c0.8,0.2,0.6,2.2,0.8,2.8c0,3,0.7,4.9-1.6,7.3c-1.2,1.2-5.8,4.7-7.5,4.6c-0.5,0-0.7-0.6-1.2-0.7c-1.2-0.3-2.7,2.1-4.4,1.8c-1.4-0.2-0.9-1.6-1.5-2c-0.4-0.3-2.9,1.6-3.5,1.8c-0.5,0.7-0.7,1.1-0.8,1.9c-0.1,0.7-0.4,1.3-0.5,2.1c-0.3,2,2.3,1.4,2.6,2.2c0.1,0.4,0.3,2.2,0.1,2.6c-0.4,0.9-2.7,0.5-3.5,0.6c-1,0.1-2.1,0.3-3.1,0.2l-3.1-0.2l0,0c0.5-3.1-3.6-2.8-6-3.3c-2.1-0.5-3.9,3.1-5.7,0.8c-0.9-1.1-3.9-0.4-5.2-0.4c-2.6,0-1.7-1.2-3.4-2.6c-0.8-1-1.8-1.7-2.4-2.8c-0.5-1,0.7-1.2,0.5-2.2c-2.6,0-6.4,5.8-7.3-0.1c-0.2-1.3-1.7,0.4-2.3,0.8c-0.8,0.5-3.8,2.1-4.1,2.7c-0.6,1.4,0.6,1.7-1.1,2.7c-0.7,0.4-1,2.3-1.7,3c-1.2,1.3-2.2,2.1-1.7,4.1c0.5,1.6-2.4,1.1-2.8,0.5c-2.4-3-2.7-1.6-6.1-1.6c-1,0-2.3,0.6-3.2,0.1c-0.9-0.5-1-1-2.2-0.9c-1.6,0.1-1.2-2.4-1.2-3.6c0-1-0.7-1.9-0.7-3c0-2.3-2.2-0.8-3.4-0.4c-2.7,0.9-5.1,0.7-7.6-0.8c-0.2-0.1-0.4-0.2-0.5-0.2l0,0l1.3-1.2c0.5-1.1,2.1-1.5,3.1-2c0.9-0.5,1.4-1.6,1.9-2.5c0.4-0.8,1.1-1.1,1.8-1.5c0.9-0.6,1.4-1.1,1.4-2.2c0.1-1.5,0.1-2.3-0.7-3.6c-0.4-0.7-1.9-2.1-1.7-2.9c0.1-0.6,0.9-1.2,0.8-1.7c-0.1-0.7-1.6-1.8-2-2.4c-0.8-1-1.7-2.6-2-3.7c-1.4,0-1,1.4-2.4,0.2c-0.9-0.8-0.8-2.2-1.2-3.3c0.5-2.1,2.8-2.4,2.7-4.7c-0.1-1.8-2.8-3.9-4.6-3.4c-0.3,0.1-3.8,2.3-4,1c-0.2-1.3-0.5-3.1,0.6-4c0.9-0.7,1.1-1.2,0.8-2.4c-0.3-0.9-0.7-1.4,0.4-1.8c1.1-0.4,1.8,0.8,2.9,0.9c0.6,0,1-0.5,0.5-1c-0.6-0.7-1.5-0.6-2.1-1.2c-0.7-0.8,3.5-0.6,3.2-2c-0.2-1.4-1.7-1.2-2.8-1c-1.9,0-5.3,0-2.9-2.4c1-1,3.2-2.1,1.8-3.7c-0.8-0.9-1.1-2.6,0.2-3.3c1.5-0.9,2.4-1.6,2.2-3.5c-0.2-3.1-1.2-3.4-2.9-5.8c-0.5-1.2-1.8-2.2-0.2-3.2c1-0.6,2-0.5,2.7-1.4c0-1.5-3.8-2.8-4.8-3.6c-2.2-1.6-4.6-3.7-6.4-5.7c-1.5-1.6-3.1-0.8-4.4-2.4c-0.6-0.7-0.9-1.5-1.7-2c0-0.1,0-0.1,0.1-0.2c0.5-0.1,1.5-1,1.9-1.3l2.9-2c1-0.7,1.1-1.4,1.8-2.2c1.7-2.1,2.3-3.3,2.8-6c0.2-1.1,1-2.7,1-3.8c0-0.7-2.1-3.3-2.5-4.1c0-0.7-0.7-2.3-1.4-2.5c-0.8-0.3-1.8,0.5-2.7,0.3c-0.3-0.7,0.6-1.2,0.9-1.7c1.8-0.3,1.6-2.6,1.6-3.9c0-1.9-1.5-3.3,0.2-4.6c0.6-0.4,2-1.2,2.3-1.9c0.6-1.7,0-2.9-0.2-4.6L179.8,107.3L179.8,107.3z"
                />
                <text transform="matrix(1 0 0 1 207.2158 171.8135)">
                  <tspan x="-7" y="0" class="texte">Flandre Orientale</tspan>
                </text>
              </a>
            </g>
           <g id="states">
              <a xlink:href="Luxembourg.html" target="myFrame" onmouseover="afficher_image('img4');" onmouseout="cacher_image('img4');">
                <path id="04" title="Luxembourg" d="M495.4,325.8c0.9-0.8,1.6-1.7,2.6-2.3c3.6-2,3.1-3.6,0.4-6.2c-0.5-0.5-0.5-1.7-0.3-2.3c0.8-2.4,4.2,0.6,5.2,1.8c1.1,1.3,2.7,2.8,4.4,1.9c1.2-0.7,5.3-2.8,6.4-1.2c0.5,0.8,0.5,2,0.5,3c0,1.5,2.2,0.1,2.8,0.8c1.3,2.2,2.3,4.2,4.7,2.3c5-4.1,5.5,0.7,9.4,3c2.9,1.7,3.2,3.8,6.5,3.9c2.5,0.1,0.4,2.2,2.6,2.6c1.5,0.3,2.5-1.8,4-1.3c0.7,0.2,4.6,0.2,3.2,1.6c-1.9,1.8-2.2,1-2.2,3.9c0.4,2.3-2.6,0.4-1.3,3.1c0.5,1.1,0.7,2.2,1.2,3.3c0.7,1.5,1.8,0.9,3.1,0.7c0.2,0,1.9,1.1,2.1,1.3c0.5,0.6-2.5,6.7-3,7.6c-0.3,0.5-1,1-0.3,1.3c1.1,0.6,2.6,1.9,3.9,0.9c1.7-1.3,3.3-0.9,5.3-0.9c1.7,0.3,2,0.1,3.2,1.5c1.3,1.6,1.4,0.1,2.4-0.6c2-1.5,4.4,0.8,6.7-0.2c1-0.4,5-4.4,2.4-4.4c-1.2,0-3,0.4-4.1-0.1c-1.1-0.5,0.4-2.3,0.9-2.9c1.1-1.5,2.4-3.5,2.7-5.3c0.2-1.3-1.6-2-2.4-2.9c-0.6-0.6,0.5-2.9,0.9-3.5c1-1.5,1.1-0.6,2.7-0.1c1.5,0.5,3.7,0.1,4.9,1c0.9,0.7,1.7,1.7,2.9,1.2c2.7-1.1,3.1,0.4,5.4,1c1.6,0.4,6.3,3.1,6.7,4.7c0.7,2.9,0.5,5.5,0.9,8.4c-0.1,0.8,0.1,2.3,0.1,3.2c0,1.9-0.3,3.5-0.5,5.3c-0.1,1.3,0.1,2.5,0.2,3.8c0,1.2-0.4,3.3,0.5,4.2c1,0.9,3-0.8,3,1.5l-2.1,5.7l0,0c-0.1,0-0.2,0-0.3,0c-2.2,0.1-4.2,2-6.6,1.5c-2-0.4-2.1,0.7-2.8,2.3c-0.3,1.3,0.7,1.7,0.6,2.5c0,0.8-1.4,1.1-1.4,1.9c0,1.3,0.6,3-0.6,4.1c-1.6,1.6-10.1,3.2-9.6,6.2c0.1,0.9,0.5,1.8-0.6,2.3c-0.9,0.4-0.4,2.1-0.3,3c0.2,2.9-1.3,1.7-3,2.7c-0.3,0.2-2,3.8-2,4.2c0,0.7,1.2,1.6,1.7,2.2c1.1,1.1-1.3,2-1.5,2.7c-0.1,0.6,0.6,1.2,0.4,1.7c-0.3,0.6-1.1,1.3-1.6,1.7c-1.6,1.6-4.7,1-4.5,3.9c-0.1,1,0.1,3.1,1.1,3.8c0.4,0.3,1.9,0.8,2,1.2c0.2,1-2.9,3.7-3.8,3.8c-1.6,0.2-0.4,1.9-1.4,2.1c-1.9,0.3-2-2-4.1,0.5c-0.6,0.7-0.9,2.1-1.3,2.5c-0.9,0.9-1.3,1.4-0.6,2.7c0.8,1.4-0.6,1.2-0.9,2.5c-0.1,1,0,2-0.1,3c-0.1,0.8-1.4,0.6-1.7,1.1c-0.4,0.6-0.5,1-1,1.4c-0.4,0.3-1.9,1.1-1.7,1.7c1,2.5,7,2.5,6.9,5.5c-0.1,2.5-1.4,1.5-3.2,1.7c-0.8,0.1-0.4,1.6-0.4,2.2c0.3,1.6-0.7,0.9-1,2.3c0.3,1.7,0.8,1.3-0.4,2.5c-0.5,0.5,0,1.8,0.1,2.4c0.1,1.4,0,3.5,0.5,4.7c0.4,0.9,0.7,2.3,0.5,3.3c-0.5,2.1,0.6,2.1,2.1,1.3c0.6-0.1,1.3,0,1.9,0c0.6,0,0.8-0.4,1.2-0.5c1-0.2,0.8,1.5,0.8,2c0,0.6,0.3,0.8,0.5,1.3c1.2,2.1,2.8,4.7,3.4,7.1c0.4,1.6,3,1.9,2.3,3.3c-0.6,1.3-1.1,0.7-1.1,2.4c0.2,2.4,1,0.8,2,1.4c1.4,0.8,2,0.2,3.5-0.4c2-0.8,3.6,2.9,4.3,4.4c0.7,1.4-2.6,2-3,3.2c-0.3,0.9-0.2,1.6-0.6,2.6c-0.5,1.2,0,1.8,1,2.4c2.2,1.4,5.8,1.2,5.3,4.5c-0.1,0.8-0.1,1.5-0.2,2.3c-0.1,0.6-0.4,1.2-0.5,1.8c-0.2,1.1-0.1,2.6-0.9,3.5c-0.5,0.6-1.7,0.8-2.3,1.5c-0.7,0.9-0.4,1.7-1,2.6c-1.1,1.5-2,1.5-3.2,2.5c-0.4,0.3-0.2,1.4-0.2,2c0,2.5,3.3-0.1,3.1,1.2c-0.1,0.9-0.4,1.5-0.5,2.4c-0.1,1.4-2.2,2.3-3.3,2.9c-0.6,0.3-1,1.3-1.3,1.9c-0.9,1.4-1,1.3-2.6,1.4c-0.4,0-1.1,1-1.4,1.2l0,0c-0.7-1.3-2.4-1.1-3.6-1.2c-1.7-0.1-1.6-1.8-2.9-2.5c-1.4-0.7-1.5,0.5-2.4,1c-1.7,0.9-0.5,1.7-1.1,3.2c-1.1,2.4-2.6-0.8-3.6-0.4c-1.1,0.4-1.2,1.5-2.7,1.1c-1.3-0.4-1.5-0.8-2.5-1.4c-1.2-0.8-3-0.7-4.4-1.6l-1.1-0.1c-0.9,0-1.7,0.3-2.5,0.8c-0.8,0.5-1.3,1.3-2.1,1.6c-0.3,0.8-0.8,1.6-1.5,2.1c-0.3,0.2-1.4,0.7-1.3,1.1c0.5,1.4,1.8,1.7,0.9,3.3c-0.2,0.4-1.3,2.2-1.8,2.1c-0.3-0.1-0.7-1.8-1-2.2c-0.6-0.9-3-2.6-4-3c-1-0.3-2.4-0.1-3.4,0.3c-1.5,1-2.3,2.7-3.9,3.6c-1.1,0.6-2.6,1.4-4,1.4c-0.7,0-1.5-0.6-2.2-0.4c-1.9,0.5-0.5,1.9-1.7,2.6c-1.3,0.7-2.2-1.2-2.2-2.2c0-1.9-4.1-1.5-2-3.3c0.8-0.7,1.4-1.6,2.1-2.3c0.5-2.4-1.3-3.5-2.9-4.8c-1.6-1.3,1.1-2.7,0.7-4.2c-0.1-0.6-2.1,0.1-2.5-0.6c-0.8-1.2-1-3.9-1-5.3c0-1.4-1.3-1.2-1.8-2c-0.8-1.1-0.1-1.6-1.7-2.2c-1.1-0.3-0.9-0.6-1.4-1.3c-0.4-0.6-1.1-0.3-1.6-0.5c-1.2-0.4-1.5-1.3-3.1-1.7c-1.1-0.2-1.3-1-2.1-1.6c-1.3-1-1.9,1.1-2.1,2c-0.5,2.1-2.4,0.8-3.9,2.1c-0.7,0.6-1.2-0.3-1.2-1c0-2.7-1.6-3.6,0.8-5.7c0.5-0.5,0.3-0.8,0.6-1.3c0.5-0.8,2.2-2.1,1.4-2.9c-1.1-1.1-2.7-3.7-4.1-4.1c-1.9-1.4-3.3-2.6-4.4-4.7c-1.6-3-3.5,3.4-4.7,1.6c-0.9-1.4-1.3-1.7-3-0.6c-1.6,1.1-1.9-2.2-3.8-1.1c-1.5,0.9-0.9,0-2.3,0c-1.3,0-2.3,1-3.2-0.6c-1.3-2.1,1-6.9-3.3-4c-3.6,2.5-4.2-7.2-5.7-8.7c-3-2.8-1.4-4.9-6.4-5.1c-5-0.1-7.3-1.4-10.2-5.3c-1.4-1.9-2.6-2.9-5.1-2.2c-0.6,0.2-1.1,0.1-1.5,0l0,0c0.2-0.9,1.1-3,1.8-3.5c0.5-0.4,1.1-0.6,1.5-1c1.3-1.3,2-2.2,1.7-4.2c0.1-2.5,0.3-3.5,1.4-5.7c0.8-1.5,3.1-0.8,4.2-1.9c0.9-0.9,0.1-2.2,0.7-2.8c0.7-0.7,2.3-0.3,3.3-1.3c1.8-1.9-1.2-4,0.6-4.9c0.9-0.5,2.7-0.5,2.9-1.7c2.2-2.4,4.2-2.4,6.8-3.5c1.1-0.5-1.4-3.8-1.7-4.5c-0.4-1.2-0.1-2.7,0.1-3.9c0.2-1.3-3.2-2.7-4.1-3.8c-0.4-0.4-1.9-2.7-2.2-2.7c-1.7,0-3.7,1-5.5,1c-2.5,0.1-2.3-2-3.2-3.7c0-2.2-1.6-2.3-1.9-4.1c-0.3-1.8-2.4-3.1-2.8-4.7c-0.1-0.3,1.8-0.6,2.1-0.7c1.7-0.1,1.2-2.6,3.2-2.8c2.6-0.4,3.6-2.4,5.1-4.1c1.6-2.1,0.5-2.2,0.6-4.3c0.1-1.3,0.8-2.5,0.8-4c0-1,1.3-6.1,2.9-5.2c0.2,1.2-0.4,4.9,1,4.7c1.8-0.3,7.2-1.8,8.4-1.1c2.8,1.5,2.5,0.2,5.1-0.5c0.8-0.2,2.2,0.1,3.1,0.1c2.5,0,4.2,2.2,5.8-0.9c2.1-1.6,3.6-0.8,6.1-0.9c2.6-0.1,0.4-2.9-0.2-3.9c-2.8-4.9,5.4-3.7,3-8.5c-1.4-2.9-3.8-4.3-4.6-7.9c0-1.5-1.8-1.1-1.8-2.5c0-0.5-0.4-2.2-0.8-2.5c-0.8-0.7-2.3-0.2-3.1-0.6c-0.8-0.5,0.4-2,0.8-2.5c0.8-1.1,2.9-0.3,4-0.3c3.4,0,2.1-2.9,3.8-4.3c0.9-0.8,2-0.7,3-1c1.6-0.5,1.8,0.9,2.9,0.9c0.5,0,3.1-1.7,3.4-2.2c1.7-1.2,2.6-3.1,4.2-4.5c1.2-1.1,3.1-2.1,4.6-2.7c0.7-0.3,1.5-0.6,1.7-1.3c0.3-1.3,0.1-2.9,0.2-4.2c0.1-0.7,0.4-2.6-0.6-2.6c-1.5,0.1-3.1-0.6-4.6,0.1c-0.9,0.4-2.3,0.3-2.1-1c0.2-1.5,1.4-1.2,2.6-1.6c1.8-0.6,2.9-1.6,4.1-3c2.2-2.4-2.4-2.4-0.5-4.6c0.8-0.9,1.3-1.1,1.3-2.4C495,328.8,495.2,327.3,495.4,325.8L495.4,325.8z"
                />
                <text transform="matrix(1 0 0 1 477.7188 430.2979)">
                  <tspan x="-10" y="0" class="texte">Luxembourg</tspan>
                </text>
              </a>
            </g>
          <g id="states">
              <a xlink:href="Liege.html" target="myFrame" onmouseover="afficher_image('img5');" onmouseout="cacher_image('img5');">>
                <path id="05" title="Liège" d="M495.4,325.8c0.9-0.8,1.6-1.7,2.6-2.3c3.6-2,3.1-3.6,0.4-6.2c-0.5-0.5-0.5-1.7-0.3-2.3c0.8-2.4,4.2,0.6,5.2,1.8c1.1,1.3,2.7,2.8,4.4,1.9c1.2-0.7,5.3-2.8,6.4-1.2c0.5,0.8,0.5,2,0.5,3c0,1.5,2.2,0.1,2.8,0.8c1.3,2.2,2.3,4.2,4.7,2.3c5-4.1,5.5,0.7,9.4,3c2.9,1.7,3.2,3.8,6.5,3.9c2.5,0.1,0.4,2.2,2.6,2.6c1.5,0.3,2.5-1.8,4-1.3c0.7,0.2,4.6,0.2,3.2,1.6c-1.9,1.8-2.2,1-2.2,3.9c0.4,2.3-2.6,0.4-1.3,3.1c0.5,1.1,0.7,2.2,1.2,3.3c0.7,1.5,1.8,0.9,3.1,0.7c0.2,0,1.9,1.1,2.1,1.3c0.5,0.6-2.5,6.7-3,7.6c-0.3,0.5-1,1-0.3,1.3c1.1,0.6,2.6,1.9,3.9,0.9c1.7-1.3,3.3-0.9,5.3-0.9c1.7,0.3,2,0.1,3.2,1.5c1.3,1.6,1.4,0.1,2.4-0.6c2-1.5,4.4,0.8,6.7-0.2c1-0.4,5-4.4,2.4-4.4c-1.2,0-3,0.4-4.1-0.1c-1.1-0.5,0.4-2.3,0.9-2.9c1.1-1.5,2.4-3.5,2.7-5.3c0.2-1.3-1.6-2-2.4-2.9c-0.6-0.6,0.5-2.9,0.9-3.5c1-1.5,1.1-0.6,2.7-0.1c1.5,0.5,3.7,0.1,4.9,1c0.9,0.7,1.7,1.7,2.9,1.2c2.7-1.1,3.1,0.4,5.4,1c1.6,0.4,6.3,3.1,6.7,4.7c0.7,2.9,0.5,5.5,0.9,8.4c-0.1,0.8,0.1,2.3,0.1,3.2c0,1.9-0.3,3.5-0.5,5.3c-0.1,1.3,0.1,2.5,0.2,3.8c0,1.2-0.4,3.3,0.5,4.2c1,0.9,3-0.8,3,1.5l-2.1,5.7l0,0c0.6,0.2,0.4,0.9,0.4,1.6c0,1.1,0.1,2.7,1.1,3.3l1.4,0.6c1.1,0.5,2.1,1.6,3.5,1.1c0.8-0.3,1.6-0.1,1.8-1c0.5-1.9,0.7-4.2,2.9-2.8c1,0.6,2.5,0.6,3.3,1.4c0.8,0.7-0.6,1.4-0.1,2c1.2,1.6,1,1.3-0.1,3c-1.1,1.7,0,2.1,1.3,3.1l1.7,0.5l0-0.1c0-0.2,0-0.3,0.1-0.4c1.1-0.9,4.4-3.4,2.1-4c-0.8-0.2-1.5-0.2-2-0.9c-0.9-1.1,2.6-1.3,1.7-2.2c-0.8-0.8-1.4-1.8-0.8-2.8c0.5-0.9,1.2-0.7,1.7-1.3c0.6,0.2,0.5,0.2,0.8,0.6c0.4,0.7,0.7-0.2,1.1-0.5c0.9-0.7,2.3,0,3.3-0.4c1.2-0.5,0.7-1.2,0.2-2c-0.7-1.3-0.2-2.1-0.1-3.3c0.1-1.6-0.6-2-1.2-3.3l-1.5-1.7c0.3-1.5,0.3-2.6,1.5-4c1.5-1.8,3.8-2.8,5-4.7c1.8-0.4,3.2-0.8,4.8-1.8c2.2-1.5,4.5,0.1,6.6-2c0.5-0.5,1.6-1,1.3-1.9c-0.4-1.2-1.1-1.2-0.7-2.7l0.1-1.3c0.5-0.2,0.9-0.5,1.2-0.9c0.6-0.6-0.5-2,0.4-2.3c0.7-0.3,1.7,0.4,1.8-0.6c0.1-0.5-0.4-1.7-0.4-2.2c0.7-0.4,1.2-0.4,2-0.4c1,0,1.9-1.5,2.4-0.3c0.6,1.4,1.5,1,2.6,1.9c0.3,0.3,1.3,2.1,1.8,1.6c0.8-0.8,0.5-1.5,1.9-2.1c1.6-0.7,3.6-0.3,4.2-2.4c0.7-2.3,0.4-4.1-1.5-5.6c-1-0.8-1.9-1.3-3-2c-0.9-0.5-1.3-2.5-2-3.4c-0.5-0.7-2.7-2-2.2-3c0.2-0.4,1.1-0.6,1.5-0.9c0.9-0.8,0-1.9,0.9-2.8c1.4-1.3,1.7-2.2,1.3-4c-0.2-0.9-0.5-1.4,0.1-2.2c0.9-1.2,0.7-1.6,0.9-3c-0.2-1.3,0-2.7-0.2-4c-0.1-0.8-1.4-0.5-2-0.8c-0.8-0.3-1-0.9-1.7-1.3c-0.6-0.3-1.2-0.4-1.4-1.1c-0.1-0.5,0.3-0.9,0.1-1.5c-0.3-1.3-0.5-1.1,0-2.5c0.3-0.7,2.3-2.2,0.7-2.5c-0.8-0.1-2,0.3-2.7-0.2c-0.9-0.6-1.3-1.5-2.4-1.9c-1-1.8-1,0.1-2.4,0.1c-1.7,0.1-1.3-1.5-2.7-1.3c-1,0.2-2-0.4-2.5,0.5c-0.8,1.7-1.3-1.8-3.3,0c-0.5,0.5-2.9,2.1-3.5,1.4c-0.7-0.8-0.3-1.8-0.6-2.7c-0.2-0.5-0.6-1.1-0.9-1.5c-0.7-0.8,0-1.7-1.3-1.9c-1.5-0.2-2.6-0.6-2.3-2.4c0.3-0.3,0.6-0.5,0.8-0.8c0.2-0.3,0.2-0.6-0.1-0.8c-0.5-0.3-1-0.4-1.6-0.6c-0.3-0.2-0.6-0.4-0.8-0.8c0-0.1,0.1-0.3,0.2-0.4c0.2-0.9-0.6-1.6-0.6-2.4c-0.3-2.1,1-2.5,2.6-3.2c1.1-0.5,1.7-0.8,1.6-2.1c-0.2-1.8,2.4-1.3,3.1-2.5c0.3-0.6-0.2-1.8,0.9-1.7c1.1,0,1.4,0.5,2.2-0.6c0.1-0.6,0.5-1.7,0.9-2.1c0.7-1,2.1-1.4,2.6-2.6c0.3-0.7,0.7-1.8,0.7-2.6c0-1.3-2.4-0.5-3.1-0.3c-0.7,0.1-1.6,0.4-2.3,0.2c-1-0.4-1.6-1.1-2.5-1.6c-1.1,0.1-1.7-1-3.1-0.2c-0.9,0.5-1.9,1.6-3,1.5c-1.2-0.2,0.4-1.4,0.4-1.9c-0.1-0.9-3.4-1.6-0.7-2.6c2.4-0.9-1.4-3-1.8-4.3c-0.4-1,0-1.9-1-2.6c-1.5-1-2.2-1.2-2.5-3.3c-0.5-1-1-2.2-1.7-3.1c-1.1-1.4-1.2-3.7-3.1-4.6c-2-1-5.6-1.3-7.7-1.3c-0.7-0.5-1.8-0.9-2.6-0.9c-0.9-0.1-1.2,0.3-1.8-0.5c-0.6-1,0.4-3,0.8-3.9c0.4-0.9-1.2-1.2-1.7-1.6c-0.6-0.4-1-1-1.6-1.3l0,0c-0.4,0.6-3,0.5-3.8,0.6c-0.9,0.1-2.1-0.2-2.9-0.8c-0.7-0.4-1.1-1.2-1.8-1.6c-1-0.7-1.5,0.4-2.5,0.5c-1.4,0.1-2.3,1.1-3.6,1.4c-0.8,0.1-2.2,0.6-3.5,0.7l0,0c0,1.7,1.4,3.5,0.2,5.1c-0.8,1.2-2.7,4.1-3.7,4.7c-1,0.6-2.2-1.1-3.2-1.5c-1.7-0.8-3.9,0.1-5.6,0.3c-3.7,0.6-2.3-2.5-4.4-3.8c-0.2-1.1,0-1.4-0.9-2.1c-0.4-0.3-0.9-1-1.3-1.5c-1.1-1.4-3-0.9-4.4-0.3c-1.7,0.7-1.2,0-1.2-1.1c0-0.7-2.8-0.3-3.3-0.1c-0.7,0.3-0.8,1.2-1.4,1.5c-0.8,0.5-2.1-0.5-2.8-0.7l-0.2-1.6l0,0c-0.2,0.1-0.3,0.1-0.5,0.2l-1.7-0.6l0.4-1.7l1.1-1.6l0.7-1.3l0-1.4l-0.9-1.6l-0.1-1l0.9-3.8l0,0c-0.9,0.3-2.7,0.8-3.7,0.9c-0.8,0.1-1.5-0.4-2.3-0.4c-2.2-0.1-2.1,2.2-2.8,3.7c-0.4,0.9-2,2.6-3.1,2.5c-0.5,0-1-0.3-1.5-0.2c-1,0.3-1,1.4-1.9,1.7c-2.4,1.7-4.6,3.9-7.6,4.5c-1.9,0.4-4.9-1-5.5,1.3c-0.4,1.8,1.9,1.7-0.2,3.1c-1.5,1-4,3.2-5.8,3.4c-1.1,0.1-0.6-1.7-0.8-2.3c-0.1-0.4-1.8-1-2-0.9c-0.1,0.9-0.3,1.8-0.8,2.6c-1.7,2.1-1,1.7-3.9,1.8c-2.1,0-3.8,0-4.8-2.3c-0.8-1.7-0.3-1.1-1.8-1.9c-1.5-0.7,0.4-2.3-2.7-2c-1.8,0.2-5-0.4-6.2,1.3c-0.8,1.2-0.7,1.9-2.2,2.4c-2.1,0.7-1.1,1.5-2.3,2.6c-0.9,0.9-1.5-1-2.8-1c-2.1,0-2.2-1-3.6,1.1c-0.9,1.3-1,1.1-2.4,1.2c-2-0.1-1.6-2.6-2.2-2.5c-1.1,1.6-0.9,1.5-2.8,1.1c-1.6-0.4-3.3,1.4-4.7,0.7c-0.4-0.2-2.1-2-2.3-1.1c-0.2,0.8-1.5,1.3-0.9,2.1c0.5,0.7,2.2,2.7,1.8,3.4c-0.6,0.2-2.1-0.1-2.8-0.1c-1.1,0.1-2.3,0.7-3.4,0.7c-1.8,0-3.5-1.1-5.5-1.6l0,0c-0.5-0.1-1-0.2-1.5-0.2c-2.5,0-2.7-0.4-4.7-1.8c-1.3-0.9-3.5-2.2-3.1-4.1c0-3-0.3-2.9-2.7-4.4c-0.3-0.2-0.6-0.4-0.9-0.7l0,0l0.1,2.4c-0.8,0.4-1.7,0.9-2.5,1.4c-0.5,0.3-1.6,0.6-1.1,1.3c0.9,1.1,2.7,2.6,2.8,4.1c0.1,1.2-0.7,2.1-1.8,2.6c-1.6,0.8-1.5,3.2-1.5,4.8c0,1,0.8,1.3,1.2,2.1c0.6,1.2-0.5,2.1-1.3,2.8l-0.9,1.8l-0.4,2.1l0,0c0,1.3-0.3,4.8,0.3,6c0.7,1.2,1.8,0.7,2,2.6c0.2,2.1,3.5,3.2,4.7,5c1.5,2.2,1.6,4.6,2.7,6.9c1.2,1.9,1.9,3.4,0.1,5.1c-0.6,0.6-1.7,2.2-1.9,3c-0.3,1.7,7.2-1,8.4-0.6c1.8,0.5,1.5,4.5,3.4,5.4c2.3,1.1,3.1-1.2,4.8-0.8c3.6,1-1.8,1.3-1.1,3.3c1.1,2.9,4.2,1,4.2,3.9c0,0.8,0.6,2.9,1.4,3.2c1,0.3,4.1-3.2,5-2c0.6,0.8,0.6,1.8,0.9,2.7c0.4,1.2,1,2.5,1.7,3.6c0.9,0.9,1.9,2.1,2.6,3.1c0.6,0.8-0.7,2.7-1,3.5c-0.6,2,0.4,3.5,1.7,5c0.7,0.1,1.5,0.2,2.1,0.4c0.4,0.1,0.8,0.2,1.2,0.3c0.5,0.1,1.2,0.4,1.7,0.6c0.8,0.5,0.7,0.8,1.8,0.8l0.8,0.3c0.2,1-1.4,1.6-1.3,2.6c0.1,0.9,2.3,3.5,3.2,3.7c1.3,0.3,3.3-1.6,4.5-2c1.3-0.5,2.7-0.9,3.9-1.6c0.3-0.2,1.5-1,1.6-0.4c0.3,1.2,0.5,1.9,1.7,1.2C493.7,325.4,493.7,325.8,495.4,325.8L495.4,325.8z"
                />
                <text transform="matrix(1 0 0 1 537.8711 292.2129)">
                  <tspan x="-20" y="0" class="texte">Liège</tspan>
                </text>
              </a>
            </g>
            <g>
              <a xlink:href="Namur.html" target="myFrame" onmouseover="afficher_image('img6');" onmouseout="cacher_image('img6');">
                <path id="06" title="Namur" d="M430.9,261.5c0,1.3-0.3,4.8,0.3,6c0.7,1.2,1.8,0.7,2,2.6c0.2,2.1,3.5,3.2,4.7,5c1.5,2.2,1.6,4.6,2.7,6.9c1.2,1.9,1.9,3.4,0.1,5.1c-0.6,0.6-1.7,2.2-1.9,3c-0.3,1.7,7.2-1,8.4-0.6c1.8,0.5,1.5,4.5,3.4,5.4c2.3,1.1,3.1-1.2,4.8-0.8c3.6,1-1.8,1.3-1.1,3.3c1.1,2.9,4.2,1,4.2,3.9c0,0.8,0.6,2.9,1.4,3.2c1,0.3,4.1-3.2,5-2c0.6,0.8,0.6,1.8,0.9,2.7c0.4,1.2,1,2.5,1.7,3.6c0.9,0.9,1.9,2.1,2.6,3.1c0.6,0.8-0.7,2.7-1,3.5c-0.6,2,0.4,3.5,1.7,5c0.7,0.1,1.5,0.2,2.1,0.4c0.4,0.1,0.8,0.2,1.2,0.3c0.5,0.1,1.2,0.4,1.7,0.6c0.8,0.5,0.7,0.8,1.8,0.8l0.8,0.3c0.2,1-1.4,1.6-1.3,2.6c0.1,0.9,2.3,3.5,3.2,3.7c1.3,0.3,3.3-1.6,4.5-2c1.3-0.5,2.7-0.9,3.9-1.6c0.3-0.2,1.5-1,1.6-0.4c0.3,1.2,0.5,1.9,1.7,1.2c1.7-0.8,1.6-0.4,3.3-0.4l0,0c-0.2,1.4-0.4,3-0.4,4.4c0,1.3-0.5,1.6-1.3,2.4c-1.9,2.1,2.7,2.2,0.5,4.6c-1.2,1.3-2.3,2.4-4.1,3c-1.2,0.4-2.4,0.1-2.6,1.6c-0.2,1.3,1.3,1.3,2.1,1c1.4-0.6,3,0,4.6-0.1c1,0,0.7,1.8,0.6,2.6c-0.1,1.3,0.2,3-0.2,4.2c-0.2,0.7-1,1-1.7,1.3c-1.5,0.6-3.4,1.6-4.6,2.7c-1.5,1.3-2.5,3.2-4.2,4.5c-0.3,0.4-2.9,2.2-3.4,2.2c-1.1,0-1.3-1.4-2.9-0.9c-1.1,0.3-2.2,0.3-3,1c-1.6,1.5-0.4,4.3-3.8,4.3c-1.2,0-3.2-0.9-4,0.3c-0.4,0.5-1.6,2-0.8,2.5c0.8,0.5,2.3,0,3.1,0.6c0.4,0.3,0.8,2,0.8,2.5c0,1.4,1.8,0.9,1.8,2.5c0.7,3.5,3.1,5,4.6,7.9c2.4,4.8-5.8,3.7-3,8.5c0.5,1,2.8,3.7,0.2,3.9c-2.5,0.1-4-0.7-6.1,0.9c-1.6,3.1-3.3,0.9-5.8,0.9c-0.9,0-2.2-0.3-3.1-0.1c-2.6,0.7-2.3,2-5.1,0.5c-1.3-0.7-6.6,0.8-8.4,1.1c-1.4,0.2-0.9-3.5-1-4.7c-1.6-0.9-2.9,4.1-2.9,5.2c0,1.6-0.7,2.7-0.8,4c-0.1,2.1,1,2.2-0.6,4.3c-1.5,1.7-2.6,3.7-5.1,4.1c-2,0.3-1.5,2.7-3.2,2.8c-0.3,0-2.2,0.4-2.1,0.7c0.4,1.6,2.5,2.9,2.8,4.7c0.3,1.8,1.9,1.9,1.9,4.1c0.9,1.7,0.8,3.8,3.2,3.7c1.8-0.1,3.7-1,5.5-1c0.2,0,1.8,2.3,2.2,2.7c0.9,1,4.3,2.5,4.1,3.8c-0.2,1.2-0.5,2.8-0.1,3.9c0.2,0.7,2.8,4,1.7,4.5c-2.7,1.1-4.6,1.2-6.8,3.5c-0.3,1.2-2,1.3-2.9,1.7c-1.8,1,1.2,3-0.6,4.9c-1,1.1-2.6,0.6-3.3,1.3c-0.5,0.6,0.3,1.9-0.7,2.8c-1.1,1.1-3.4,0.4-4.2,1.9c-1.1,2.2-1.3,3.2-1.4,5.7c0.3,2-0.4,2.9-1.7,4.2c-0.5,0.5-1,0.7-1.5,1c-0.8,0.6-1.7,2.6-1.8,3.5l0,0c-0.5-0.1-0.9-0.3-1.2-0.2c-1.1,0.3-2,2.2-3.2,2.5l-3.9,0.9c-0.9,0.2-1.4-0.5-2.5-0.6c-1.2,0.1-1.5-0.8-2.4-0.8c-1.2,0-1.3,1.3-2.6,0.8c-0.4-0.1-1-0.2-1-0.7c0-1.3,1.4-3,1.6-4.5c0.2-1.7,2.9-1.8,1-3.6c-0.6-0.6-0.6-1.7-0.5-2.5c0.2-2.1-0.1-0.9-1.2-1.8c-1.1-0.9-0.5-2.1-0.6-3.2c-0.1-0.6-1.9-3.3-1.1-3.1c0.5,0.1,0.9,0.8,1.4,0.5c0.3-0.2,1.4-3.4,1.6-4c0.2-2.6,1-2,2.5-3.4c1.2-1.1-2.4-2.2-0.8-2.4c1.1-0.2,1.9-0.3,1.1-1.5c-1-1.3-1.2-2.5-2.8-3.2c-2.6-1.3-2.7-2.7-2.9-5.3c-0.1-1-3-1.1-3.8-0.9c-1.4-0.3-5.9-0.9-5.8-3c0-0.6,0.7-4.8,0.8-4.9c1.5-0.7,2.3,0.4,3.1-1.7c0.6-1.5-0.1-3,0.6-4.6c0.3-0.7-0.4-1.2-0.4-1.7c0-0.3,0.5-0.3,0.4-0.7c-0.2-1-0.5-1.2,0.3-2.2c0.9-0.9,3.4-2,3.1-3.4c-0.3-1.6-2.3-1.2-2.3-2.6c0-1.2,1-1.2-0.3-1.8c-1.4-0.8-0.9-2,0.7-2c2.1,0,1.1-2.2,2.2-3.6c0.7-0.9,0-1.6-0.4-2.5c-0.2-0.4,1.4-1.4,1.8-1.6c1.1-0.7,1.3,2,1.7,2.4c0.4,0.4,1.3-0.1,1.4-0.6c0.1-0.7-0.5-1-0.6-1.5c0-0.5,0.4-1.1,0.6-1.5c0.3-0.8-0.1-1.9-0.3-2.8c0-1.5,1-2.6,2.1-3.4c0.6-0.4,3.1-2,1.2-2.6c-1.2-0.4-2.1,0.3-2.1-1.3c0-1.8-1-1.9-2.6-1.7c-0.8,0.1-4.5-0.1-5.1-0.7c-0.6-0.6-0.6-1.7-1.2-2.4h-0.1c-1.4,1.4-2.5,3-4.2,4.1c-1.6,1.1-5.4,2-5.2,4.4c0.2,2-2.5,2.1-2.3,2.8c0.2,0.7,1,1.2,0.9,1.8c-0.7,0.5-1.1,0.7-1.9,0.9c-1.2,0.6-2.2,1.3-3.2,2.1c-0.6,0.5-1.5,0.3-2.1,0.9c-1.6,1.5-1.3,3.3-2.2,5.1c-0.6,1.2-2.4,0.9-1.7,2.2c0.3,0.5,0.1,1.2,0.5,1.6c0.4,0.5,1.3,0.4,1.9,0.7c0.6,0.3-0.1,4.1-0.5,4.8c-1,2-1.5,2.8-1.2,5.1c0.2,1,0.9,3.9-0.1,4.5c-1.1,0.6-2.6,0.7-3.8,1l-6.7,2c-3.1,0.5-6.6-0.7-7.2,2.8c-0.6,3.2-4,0.9-5.6,1.9c-1.2,0.8-1.3,2.9-2.6,3.9c-2.4,2-4.5,0.4-7.1,1.1c-1.3,0.4-2.8,1.9-3.8,2c-0.6,0.1-1.3-0.4-2.1-0.8l0,0l1.8-2.9c1.6-1.7,0.6-3-0.3-4.5c-1.1-2-2.4-4.9-2.8-7.3c-0.4-3-1.7-6.3-1.2-9.4c0.1-0.8,0.1-1.7,0-2.4c-0.4-0.4-1.9,0.1-2.5-0.6c0.3-2.5-0.2-5.6-0.8-8c-0.3-1.4-0.3-3.2-0.2-4.6c0.2-1.9,1.2-3.5,1.6-5.3c-0.3-0.8-1.5-1.5-2.1-2c-1-0.9-0.6-1-0.1-2c1.6-3.3-4.8-3.7-3.6-7.1c0.6-1.6,2.9-2.2,4-3.4c1.1-1.3-0.2-3.5-0.2-5c0-0.8-0.2-2.2,0.1-3c0.5-1.2,1.4-2.1,1-3.5c-0.4-1.2-2.8-2.7-4-2.7c-2.6-0.1-2.8,3.9-6,2.2c-2-0.7-3.9-3.3-5.9-4.4c-2.1-1.1,1.3-3.1,2.5-4c1.4-1.2,3.1-2.4,5-2.6c1.1-0.2,2.7,0.1,3.6-0.7c0.7-0.6,0.1-1.4,0.5-2.1c1.2-1.9,6.6,0.7,5.1-4.4c0.9-1.4,1.3-0.1,2.6-0.3c0.9-0.1,1.5-0.5,2.6-0.2c1.5,0.5,2.7,1.3,3.9-0.2c1.1-1.4,3.1-5,5.1-5.1c0.6,0,2,0.9,2.4,1.3c1.4,1.3,2.9,1.7,4.7,1.5c2.3,0.1,3.6-1.8,6.1-0.9c1.1,0.4,2.3,0.1,2.2-1.1c-0.1-0.8,0.3-1.7,0.1-2.5c-0.6-1.5-0.9-2.6-0.8-4.2c0.2-1.8-0.2-3.5,0.4-5.3c0.7-0.4,1.4-1.2,1.9-1.7c0.6-0.6-1.2-1.5-1.3-2.5c-0.1-1.1,1-1.8,1.5-2.8c0.4-0.8,0.4-1.8,0.9-2.6c0.7-1,1.2-2.3,1.2-3.6c0-1.5-1.2-0.4-2-0.2c-1.3,0.3-2.7-1-3.6-1.8c-1.5-1.5,0.5-2.2,0.2-4.2c0.9-1.4,3-5.3,2.4-7c-0.2-0.6-0.6-0.9-0.7-1.6c-0.1-0.4-0.1-3.6-1.1-2.8c-0.8,0.7-3.6,2.1-3.5,0.2c0-1-0.4-2,0.2-2.9c0.9-1.3,2.2-2.5,2.8-4l-0.5-5.1l0,0c0.5-1.5-0.1-4.5,1.6-5.2c1-0.4,3.5-1.6,4.4-0.9c1.3,1.1,3.1,1.2,4.7,0.9c2-0.4,5.9,0.1,3.4-2.6c-1.9-2-1.5-6.4,0.9-8c1.1-0.7,2.5,1,3.6,1.5c2.8,1.2,1.9-0.3,3.7-1.7c5.2-2.1,2.6,2.2,4.7,3.7c1.2,0.9,3.8-3.2,5.3-0.2c0.9,1.7,2,0.9,2.1-0.7c0.1-3.9,3.9-1.7,6.6-2.7c1.5-0.6,2.6-1.5,4.1-2.2c1.4-0.7,3-0.5,4.5-0.7c1.1,0,0.9-0.7,1.2-1.5c0.3-0.8,2.7-0.4,3.6-0.6c2.3-0.5,3.1-3.2,4.8-4.6c0.7-0.6,1.4-0.3,2.1,0.2C428.9,261,429.8,261.3,430.9,261.5L430.9,261.5z"
                />
                <text transform="matrix(1 0 0 1 397.3247 347.0195)">
                  <tspan x="7.2" y="0" class="texte">Namur</tspan>
                </text>
              </a>
            </g>
          <g id="states">
              <a xlink:href="Brabant_Flamand.html" target="myFrame" onmouseover="afficher_image('img7');" onmouseout="cacher_image('img7');">
                <path id="07" title="Brabant Flamand" d="M343,199.8c-0.9,1.8-0.2,1.7,0.3,3.3c0.4,1.3-0.5,1.7-0.9,2.8c-1,2.7,3.4,2.1,3.7,3.9c0.2,1.2,1.8,0.1,1.9,1.9c0,0.9,0.9,1.7,0.5,2.6c0,1.6,1.3,2,2,3.3c0.4,0.7-2.6,1-3,1c-2.3,0-1.5,3.3-0.3,4.2c1.6,1.2,0.8,1,1.5,2.4c0.4,0.8,0.5,0.5-0.4,1.1c-1.9,1.2-4.4,2.1-6.5,3l-5.3,2.4c-1.2,0.5-2.5-2.5-3.9-0.9c-0.1,0.2-2.1-1.1-2.8-1.1c-3.5-0.1-2.9-2.9-4.3-5.1c-1.3-2.1-2.2,0-2.2-3.2c0-3.2-2.1,0.7-4-0.9c-0.9-0.7-2.3,0-2.8-0.8c-0.3-0.5-0.8-0.6-1.4-0.5c-1.9,0.2,0.3-2.7,0.1-3c0.4-0.4,0-1.8,1-1.6c3.2,0.7,5-3.2,3.9-5.7c-1.5-3.3,1.6-3.3,2.1-5.8c0.8-4,6.9-5.7,10.4-4.7c2.3,0.7,2,0.2,3.2-1.8c0.4-0.7,3.5-1.3,4.2-1.1c0,0.8-0.1,0.7,0.6,1.3l2,2L343,199.8L343,199.8z M290.5,246.3L290.5,246.3c0.8-0.8,0.4-2.1,1.9-1.7c0.4,0.1,0.8,0.1,1.2,0l0,0c0.6-0.1,1.2-0.5,1.7-0.9c1.9-1.6,0.1-3.2,3.1-2.4c1.6,0.4,2,0.3,2.9,1.7c1.7,2.5,1.8,2.8,4.8,3.1c2.6,0.3,4.1,1.2,5.6,3.3c1.5,2.5,1.4,0.8,3.1-0.4c3.2-2.3,7.1,2.9,8.2-3.2c0.5-2.6,1.1-1.3,1.9-2.5c0.7-1.1,0.1-1.8,1.6-2.8c1.4-1,2.2,2.4,3.2,3.1c0.4,0.3,2.7,0.7,2.7,0c0.2-3.1,0.4-2.5,2.9-3.4c1.2-0.4,2.1-0.2,3.2-0.2c1.6,0,2.9-1,4.3-1.6c1.4-0.7,2.2-1.7,3.3-2.8c0.8-0.8,2-0.3,3.1-0.5c1.1-0.2,2.5-0.6,3.7-0.6c0.7,0-0.5,1.3-0.6,1.4c-1,1.2,3.7,5.3,5.1,5.6c0.8,0.1-0.9-3.2,1.4-3.4c1.1-0.1,1.2,0.4,2.2-0.4c0.8-0.7,1.9-1,2.9-1.6c2.3-1.3,1.4-3.3,4.3-3.6c0.6-0.1,1,3.9,1.4,4.4c0.9,1.5,2.2,0,3.6,0.3c2.1,0.4,2.2-0.8,3.4-1.9c2.8-2.4-2.5-2.1-2.1-5.2c0.1-0.9,1.5-1.2,1.6-2.2c0-1.2-1.1-2.5,0.4-3.6c0.8-0.6,1.7,1.2,2.9,1c1.1-0.2,1.7-0.5,2.9-0.2c2.1,0.6,1.6,0.3,3.5-0.3c0.6-0.2,1.1,0.4,1.7,0.3c0.7-0.2,1-1.6,1.4-2.2c1.2-0.2,1.8-0.1,3-0.5c2.4-0.9,3.3-0.9,5.5,0.3c2.8,1.6,3.8,1.9,4.8,5.1c0.3,1.1,0,1.6,1.3,1.5c0.8,0,1.7-0.2,2.4,0.2c0,0.4-1,3.7,1.1,2.4c1.4-0.9,1.9,0.3,3.4,0.5c1.2-0.1,1.1-0.9,2.6-0.2c1.1,0.5,3.9-2.6,4.4-0.7c0.5,1.9-0.5,1.6,1.2,2.9c0.7,0.5-0.4,2.3,1.1,2.4c1.5,0.2,2.5-0.5,4.2,0c4.5,1.4,2-9.1,8.1-4.7c1.4,1,2.6,2.8,3.9,4l0,0c0.3,0.3,0.6,0.5,0.9,0.7c2.5,1.5,2.7,1.3,2.7,4.4c-0.5,1.9,1.8,3.3,3.1,4.1c2,1.3,2.2,1.8,4.7,1.8c0.5,0,1,0.1,1.5,0.2l0,0c0-1.5,0.5-3.9,0.9-5.3c0.3-1,1.6-3.1,1.2-4.1c-0.3-0.8-1.7-1.2-1.7-2c0-1.3,1.2-2,1.4-3.4c0.2-1.9-0.2-4,0.1-5.9c0.5-1.5,2.8-1.3,3.9-1.8c1.3-0.6,1-2.9,1.6-3.9c1-1.5-0.2-0.9-1.1-1.5c-0.7-0.4,0.1-3.1,0-3.9c-0.2-1.2,0.1-4.4,0.8-5.3c1-1.3,1.7-1.4,1.4-3.3c0.4-1,1.1-2,2.3-1.9c1,0.1,1.9-0.6,1.9-1.6c0-1.9,1.1-3.3,1.1-5.2c0-1.4,0.4-2.2-1.3-2.2c-2-0.1-5-0.2-6.1-1.9c-0.8-1.2-0.8-0.7-2.3-0.4c-0.6,0.1-1.1,0.1-1.7,0.1c-1.2,0-2.9,2.3-3.9,1c-0.7-0.9-1.2-1.1-2.2-1.5c-1.1-0.5-2.7,0.1-3.5-0.8c-0.5-0.5-1.1-1.9-1.2-2.6c-0.1-0.6-0.2-1.3-0.4-1.8c-0.2-0.8,0.8-1.2,1.4-1.5c1.2-0.6,1.8-1.1,2.3-2.4c0.8-0.3,3.1-0.2,2.6-1.5c-0.4-1-0.2-1.5,0.2-2.5c0.2-0.5-0.3-1.5-0.4-2c-0.3-1.4,0.3-0.8,1-0.9c0.4-0.1,1.3-0.7,1.7-1c1.1-0.8,2-1.7,2.8-2.7c1-1.2,0.6-3.4,0.8-4.9c1.9-1,1.6,2.4,4.2,0.4c2.5-1.9,0.4-3.8-1.5-5.3c-2.4-1.6-3.5-0.6-6-1.1c-3.1-0.6-1.7,0.1-2.6,2.3c-0.6,1.3,0.6,2,0.5,3.2c-0.2,1.4-3,2.2-4.2,1.6c-1-0.5-1.1-1.3-2.4-1.5c-0.9-0.1-2.8,0.2-3.5-0.4c-0.8-0.7-0.6-2.1-1.4-2.7c-0.9-0.7-2.6,1-3.5,1.1l-1.3-1.2l0,0c-1.1-0.2-2.7-1.2-3.9-0.7c-1.5,0.7-2.8,2.4-4.7,1.8c-1.3-0.4-2.3,0.4-3.5,0.6c-1.2,1.1-1.8,2.4-3.5,2.1c-1.3-1.1-2.9,0-4,0.9c-1.4,1.3-2.7,0.6-4.5,0.7c-2.7,0.2-3.5-3.8-5.2-5.3c-1.6,0-3.7,0.9-5,1.8c-1.5,1.1-4.2,1.2-6,2c-0.8,0.6-3.6,4.3-3.9,4.3c-2.1-0.1,0.2-3.2-0.5-3.5c-1-0.4-2.2-1.2-3.3-1.2c-1.6,0-3.3,0.7-5,0.7c-0.8,0-1.8,1.4-2.7,1.7c-1.2,0.3-2.4-0.7-3,0.7c-0.7,1.9-0.2,2.2-2.1,3.2c-0.7,0.4-3.7-0.1-4.3-0.6c-1-0.8-1-1-2.3-1.6c-1.3-0.2-2.3,0.2-3,1.2c-0.5,0.7-1.4,1.1-2.2,0.5l-4.2-3.4c-1-0.8-1.2,1.8-1.2,2.5c0.1,2.2-0.7,2.1-2.6,1.6c-2.4-0.6-3.7-3.4-5.8-1.9c-1.3,0.9-1.9,2.1-3.3,0.8c-1.4-1.4-1.3,1.7-3.1-1.3c-0.5-1.3-2.4-2.2-2.6-3.2c-0.2-1.1,0.3-2.5,0.1-3.7c-1.9-1-2.8,6.4-4.9,1.6c-0.6-1.3-2-0.5-2.8-1.3c-1.4-1.4-3.5-1.2-4.9-2.1c-0.6-0.4-1.6-1.2-2.4-1.2c-1.2,0-1.6,1.2-2.7,1.6c-1.7,0.8-1.7,0.1-3.3,0.2l0,0c-0.3,1.3-0.4,2.3-0.4,3.5c0,1.6-2.8,1.6-2.7,2.6c0.1,0.8,1.2,1.2,1.4,2.1c0.1,0.6-2,1.8-2.5,2.2c-1.7,1.4-3.3,2.7-5.7,2.5c-0.4,0-2.3-0.6-2.5-0.5c-0.8,0.4-1.5,2.1-2.3,2.8c-1.6,3.4,1.7,5,1.7,8.1c0,2.6-2.4,7.1-5.5,5.1c-0.7-0.5-4.1-2.9-4.7-2.6c0,0.9-0.3,1.7-0.3,2.6c0,0.9,0.9,2.6,0.3,3.2c-0.7,0.7-1.8,1.2-2.6,1.8c-0.2,1.4,1.3,2.7,1.2,4.1c-0.1,1.2-1.2,2.8-2.1,3.5c-2.2,1.9-1.5,5.6-4.1,7.1c-2.1,1.2,1.2,1.5,2.3,1.8c0.8,0.2,0.6,2.2,0.8,2.8c0,3,0.7,4.9-1.6,7.3c-1.2,1.2-5.8,4.7-7.5,4.6c-0.5,0-0.7-0.6-1.2-0.7c-1.2-0.3-2.7,2.1-4.4,1.8c-1.4-0.2-0.9-1.6-1.5-2c-0.4-0.3-2.9,1.6-3.5,1.8c-0.5,0.7-0.7,1.1-0.8,1.9c-0.1,0.7-0.4,1.3-0.5,2.1c-0.3,2,2.3,1.4,2.6,2.2c0.1,0.4,0.3,2.2,0.1,2.6c-0.4,0.9-2.7,0.5-3.5,0.6c-1,0.1-2.1,0.3-3.1,0.2l-3.1-0.2l0,0c-0.1,0.3-0.2,0.7-0.3,1.1c-0.7,1.6-0.4,2.6-0.7,4.2c-0.3,1.7,1.3,1.2,2.1,2.7c1.2,0.4,2,2,2.9,2.9c1.4,1.4,5.9,0.4,8,0.9c3.6,0.8,5.9-0.1,9.4-0.5c1-0.1,3.1-0.7,3.8-1.5c0.8-0.9,1.1-2.5,2-3.3l0.8-0.1C287.4,245.4,290.1,246.6,290.5,246.3z"
                />
                <text transform="matrix(1 0 0 1 355.2734 201.1597)">
                  <tspan x="-5" y="0" class="texte">Brabant-Flamand</tspan>
                </text>
              </a>
            </g>
            <g>
              <a xlink:href="Brabant_Wallon.html" target="myFrame" onmouseover="afficher_image('img8');" onmouseout="cacher_image('img8');">
                <path id="08" title="Brabant Wallon" d="M436.1,236c-1.2-1.1-2.4-3-3.9-4c-6.1-4.3-3.6,6.1-8.1,4.7c-1.7-0.5-2.8,0.2-4.2,0c-1.5-0.2-0.4-1.9-1.1-2.4c-1.7-1.3-0.7-1-1.2-2.9c-0.5-1.9-3.3,1.2-4.4,0.7c-1.4-0.7-1.3,0.1-2.6,0.2c-1.5-0.2-2-1.4-3.4-0.5c-2.1,1.4-1.1-1.9-1.1-2.4c-0.8-0.3-1.6-0.2-2.4-0.2c-1.4,0.1-1-0.5-1.3-1.5c-1-3.2-2-3.5-4.8-5.1c-2.2-1.3-3.1-1.2-5.5-0.3c-1.2,0.5-1.8,0.4-3,0.5c-0.4,0.5-0.8,2-1.4,2.2c-0.6,0.2-1-0.4-1.7-0.3c-1.9,0.6-1.4,0.9-3.5,0.3c-1.1-0.3-1.8-0.1-2.9,0.2c-1.2,0.2-2.1-1.5-2.9-1c-1.5,1.1-0.4,2.3-0.4,3.6c0,1.1-1.4,1.3-1.6,2.2c-0.4,3.1,4.9,2.8,2.1,5.2c-1.3,1.1-1.4,2.4-3.4,1.9c-1.4-0.3-2.7,1.2-3.6-0.3c-0.3-0.5-0.8-4.5-1.4-4.4c-2.9,0.3-2,2.3-4.3,3.6c-0.9,0.6-2.1,0.9-2.9,1.6c-1,0.9-1.1,0.3-2.2,0.4c-2.3,0.2-0.6,3.5-1.4,3.4c-1.5-0.3-6.1-4.4-5.1-5.6c0.1-0.1,1.3-1.4,0.6-1.4c-1.2,0-2.6,0.4-3.7,0.6c-1.1,0.2-2.3-0.2-3.1,0.5c-1.1,1.1-1.9,2.1-3.3,2.8c-1.4,0.6-2.8,1.7-4.3,1.6c-1.2,0-2.1-0.3-3.2,0.2c-2.5,0.9-2.7,0.4-2.9,3.4c-0.1,0.7-2.4,0.3-2.7,0c-0.9-0.7-1.8-4.1-3.2-3.1c-1.5,1.1-0.9,1.7-1.6,2.8c-0.8,1.3-1.5-0.1-1.9,2.5c-1.1,6.1-5,0.9-8.2,3.2c-1.7,1.2-1.6,2.9-3.1,0.4c-1.5-2-3-2.9-5.6-3.3c-3-0.4-3.2-0.6-4.8-3.1c-0.9-1.4-1.3-1.3-2.9-1.7c-3-0.8-1.2,0.8-3.1,2.4c-0.5,0.4-1.1,0.8-1.7,0.9l0,0c-0.4,0.1-0.8,0.1-1.2,0c-1.6-0.4-1.2,0.9-1.9,1.7l0,0l0.3,3.8c0.2,1.4-0.2,3.4,0.5,4.7c1,1.9-1,2.1-0.8,3.8c0.1,1.1,1,2.6,1.4,3.7c0.5,1.3,2.6,0.9,3.8,1.2c2.4,0.5,4.1-2,5.4-3.8c0.4-0.6,2.6-3.2,3.3-2.7c2.3,1.6,3.1,2.1,3,4.8c-0.1,3.7,0,4.9,4.2,3.8c2.7,0,2.6,1.4,3.3,3.6c0.6,1.7-0.3,3,1.9,3.4c1.2,0.2,2.5-0.1,3.3,1.1c0.9,1.4,1.8,3.2,2.8,4.5c1.2,1.6,3.3,0.2,4.8,0.6c0.7,0.6,0.2,1.9,0.1,2.7c-0.2,1,0.4,1.1,0.7,1.8c0.2,0.5-0.3,1.7,0.4,1.8c0.7,0.1,3.1-3.1,4.1-3.5c2.1-1,7.3-2,9.1-0.3c0.9,0.9,5.7,1.3,7,1.2c2.1-0.2,2.3,0.7,1.1,2.1c-0.5,0.6-2.2,4.1-1,4.6c0.3,0.1,2.1-1.4,3-1.4c0.8,0,2.1-0.1,2.8,0.2c0.2,1.3-0.4,1.5,1.6,1.6c1.8-0.6,3.9-1.2,5.6-2c1.3-0.7,3.1-1.5,4.5-1.6l0,0c0.5-1.5-0.1-4.5,1.6-5.2c1-0.4,3.5-1.6,4.4-0.9c1.3,1.1,3.1,1.2,4.7,0.9c2-0.4,5.9,0.1,3.4-2.6c-1.9-2-1.5-6.4,0.9-8c1.1-0.7,2.5,1,3.6,1.5c2.8,1.2,1.9-0.3,3.7-1.7c5.2-2.1,2.6,2.2,4.7,3.7c1.2,0.9,3.8-3.2,5.3-0.2c0.9,1.7,2,0.9,2.1-0.7c0.1-3.9,3.9-1.7,6.6-2.7c1.5-0.6,2.6-1.5,4.1-2.2c1.4-0.7,3-0.5,4.5-0.7c1.1,0,0.9-0.7,1.2-1.5c0.3-0.8,2.7-0.4,3.6-0.6c2.3-0.5,3.1-3.2,4.8-4.6c0.7-0.6,1.4-0.3,2.1,0.2c0.9,0.6,1.8,0.9,2.9,1.1l0,0l0.4-2.1l0.9-1.8c0.8-0.7,1.9-1.6,1.3-2.8c-0.4-0.8-1.2-1.1-1.2-2.1c0-1.6-0.1-4,1.5-4.8c1.1-0.5,1.9-1.4,1.8-2.6c-0.2-1.5-1.9-3-2.8-4.1c-0.5-0.7,0.6-1,1.1-1.3c0.8-0.5,1.6-1,2.5-1.4L436.1,236L436.1,236z"
                />
                <text transform="matrix(1 0 0 1 343.2905 259.5259)">
                  <tspan x="-5" y="0" class="texte">Brabant Wallon</tspan>
                </text>
              </a>
            </g>
            <g>
              <a xlink:href="Limbourg.html" target="myFrame" onmouseover="afficher_image('img9');" onmouseout="cacher_image('img9');">
                <path id="09" title="Limbourg" d="M542.6,234.2c1.1-0.5,2-1.7,3.2-1.7c0.9,0,1.4,1.6,2.5,1.1c0.9-0.4,0.7-1.4,0.6-2.2c-0.1-0.6,2.4-2.2,3-2.7c0.7-0.7,1.8-1.2,2.8-1c0.9,0.2,0.2,4.1,2.4,3c0.5-0.3,1.7,2.6,3.3,2.6c1.3-0.4,2.1-0.8,3.3-1.4c2.4-1.2,1.2,2.2,2.6,1.7c1-0.3,2.7-1.2,3.6-1.8c2.4-1.6,2.1,0.4,2.7,2.3c0.3,0.9,1.3,1.1,2.4,1l0,0c0,1.7,1.4,3.5,0.2,5.1c-0.8,1.2-2.7,4.1-3.7,4.7c-1,0.6-2.2-1.1-3.2-1.5c-1.7-0.8-3.9,0.1-5.6,0.3c-3.7,0.6-2.3-2.5-4.4-3.8c-0.2-1.1,0-1.4-0.9-2.1c-0.4-0.3-0.9-1-1.3-1.5c-1.1-1.4-3-0.9-4.4-0.3c-1.7,0.7-1.2,0-1.2-1.1c0-0.7-2.8-0.3-3.3-0.1c-0.7,0.3-0.8,1.2-1.4,1.5c-0.8,0.5-2.1-0.5-2.8-0.7L542.6,234.2L542.6,234.2L542.6,234.2z M542.5,221.3L542.5,221.3l-1.8-1.2c-0.8-0.4-1.3-0.7-2.3-0.8c-0.7-0.1-1.4-0.4-2.1-0.6c-1.3-0.5-1.5-2.7-1.7-3.9c-0.1-1.1-1.2-1.5-1.2-2.5c-0.3-1.9-0.1-6.2,1.7-7.4c2.2-1.4,4.1-2.3,5.5-4.7c1.1-1.8,2.2-1,2.1-3.4c-0.1-2.8,2.2-0.1,3.4-0.3l1.8-5.7l1.8-2.2l1-1.8l0.2-2.2l-2.9-3.6c0.2-2,0.6-2.4,2.1-3.5c1-0.7,2-1.5,2.5-2.8c0.9-2.6-0.1-5.2,1.8-7.4c0.6-0.7-2.3-2.3-1.9-3.8c0.5-0.9,1.2-2.1,1.4-3.1c0.2-0.7,0-1.4,0.2-2c0.4-1.3,3.8,2.4,3.8-0.8c0-1.5-0.6-2.1,0.8-3.3c1.7-1.6-2-3.2-1.3-4c0.1-0.2,1.7-0.4,2.1-0.7c1.8-1.3,5.2,0.4,3.6-2.9c-2-0.9-5-0.6-2.9-3.5c1.2-1.7,3.1-2.5,4.9-3.2c1.5-0.6,2.9-0.7,1.6-2.3c-1.4-1.7-2.7-2.6-3.7-4.7c-0.4-0.9-0.8-2.3-1.8-0.4c-0.9,1.9-1.5,0.1-3.2,1.2c-0.6,0.4-2.1,2.3-2.8,1.8c-0.7-0.4-0.3-2.2-0.5-3c-0.3-0.8-1.2-0.3-1.5-0.8c-0.6-1,0.6-1.9,0.6-2.7c-0.1-1.4-2.7-1.6-3.6-2c-2.9-1.3-3.8-1.6-6.6,0.2c-1.5,1-3,0-4.4-0.7c-1.7-0.8-3.4,0.6-3.9-1.8c-0.3-1.2-0.5-1-1.4-1.7l-13.6-5.4l-0.3-3.2c-0.7-1.9,0.5-4.8,0.5-6.8c0-3.3-1.3-2.4-3.4-4c-1.5-1.1-1.6-2.6-2.7-3.8c-0.8-0.8-4.3-1.7-5.5-1.7c-1.4,1.8-1.7,3.1-3.9,4.4c-2.5,1.4-3.5,0.9-5.4,3.4c-1.6,2.1-2,0.3-3.9,0.7c-2.4-0.2-4.7-1.7-7-2.1c-3-0.6-1.1,1.3-3.1,2.5c-3.2,1.9-8.8-0.2-12.3,0c-0.9,0.1-2,0.9-2.7,0.9l0,0c-0.3,0.7-0.6,2.6-1,3.3c-0.3,0.5-0.7,0.9-1,1.4c-0.5,0.8-1,2.1-1.1,3c-0.1,0.7,0,1.5-0.1,2.3c0,1.7-0.2,3.3,1.2,4.5c0.8,0.7,2,1.3,3,1.7c2.5,1,2.8,2.6,3.1,5c0.2,1.4,0.4,3.4,0.3,4.8c-0.3,2.6,0.1,2.6-2.1,4.5c-1.2,1-3,3.7-4.7,1.6c-1.2-1.6-1.3-0.2-1.8,0.7c-0.9,1.6-2.1,2.7-3.9,3.3c-1.5,0.5-6.4,1.4-7.8,1c-1.1-0.4-1.6,1.7-2,2.3c-0.4,0.7-1.2,0.9-1.8,1.4c-2.2,0.9-2.3,4.2-4.4,4.6c-2.7,0.5-4,0.6-6.6,2c-1.6,0.9-3.2-0.2-4.7,0.4c-0.8,1.8-0.1,3.2-1.8,4.6c-1.4,1.2-1.4,3.4-2.9,4.6l0,0l1.3,1.2c0.9-0.1,2.6-1.8,3.5-1.1c0.9,0.6,0.7,2.1,1.4,2.7c0.7,0.6,2.6,0.3,3.5,0.4c1.3,0.1,1.4,0.9,2.4,1.5c1.2,0.6,4-0.2,4.2-1.6c0.1-1.2-1-1.9-0.5-3.2c0.9-2.2-0.5-2.9,2.6-2.3c2.5,0.5,3.6-0.6,6,1.1c1.9,1.5,4,3.4,1.5,5.3c-2.6,2-2.3-1.4-4.2-0.4c-0.2,1.5,0.2,3.6-0.8,4.9c-0.8,1-1.8,2-2.8,2.7c-0.4,0.3-1.3,0.9-1.7,1c-0.7,0.2-1.3-0.5-1,0.9c0.1,0.5,0.6,1.5,0.4,2c-0.3,1-0.6,1.5-0.2,2.5c0.5,1.4-1.8,1.3-2.6,1.5c-0.5,1.3-1.1,1.9-2.3,2.4c-0.6,0.3-1.6,0.7-1.4,1.5c0.1,0.6,0.3,1.3,0.4,1.8c0.1,0.7,0.7,2.1,1.2,2.6c0.9,0.9,2.5,0.2,3.5,0.8c1.1,0.4,1.5,0.6,2.2,1.5c1,1.3,2.7-0.9,3.9-1c0.6,0,1.1,0.1,1.7-0.1c1.5-0.3,1.6-0.8,2.3,0.4c1.1,1.7,4.1,1.8,6.1,1.9c1.7,0,1.3,0.8,1.3,2.2c0,1.8-1.1,3.3-1.1,5.2c0,1-0.9,1.7-1.9,1.6c-1.2-0.2-1.9,0.8-2.3,1.9c0.2,1.9-0.5,2-1.4,3.3c-0.7,0.9-0.9,4.1-0.8,5.3c0.1,0.9-0.6,3.5,0,3.9c0.9,0.6,2.1,0,1.1,1.5c-0.6,1-0.3,3.2-1.6,3.9c-1.1,0.5-3.4,0.3-3.9,1.8c-0.3,1.9,0.1,3.9-0.1,5.9c-0.1,1.4-1.4,2-1.4,3.4c0,0.8,1.4,1.3,1.7,2c0.4,1-0.9,3.1-1.2,4.1c-0.4,1.4-0.9,3.8-0.9,5.3l0,0c2,0.5,3.7,1.6,5.5,1.6c1.1,0,2.2-0.6,3.4-0.7c0.7-0.1,2.2,0.3,2.8,0.1c0.4-0.7-1.4-2.8-1.8-3.4c-0.5-0.8,0.7-1.3,0.9-2.1c0.2-0.9,1.9,0.8,2.3,1.1c1.4,0.8,3.1-1,4.7-0.7c2,0.5,1.7,0.5,2.8-1.1c0.6-0.1,0.2,2.4,2.2,2.5c1.4-0.2,1.6,0,2.4-1.2c1.5-2.2,1.6-1.1,3.6-1.1c1.3,0,1.9,1.9,2.8,1c1.1-1.1,0.1-1.9,2.3-2.6c1.6-0.5,1.4-1.2,2.2-2.4c1.2-1.7,4.3-1.1,6.2-1.3c3.2-0.3,1.2,1.2,2.7,2c1.5,0.7,1,0.2,1.8,1.9c1,2.3,2.7,2.3,4.8,2.3c2.9-0.1,2.2,0.3,3.9-1.8c0.5-0.8,0.7-1.7,0.8-2.6c0.2-0.1,1.9,0.5,2,0.9c0.2,0.5-0.3,2.4,0.8,2.3c1.8-0.2,4.3-2.5,5.8-3.4c2-1.3-0.3-1.3,0.2-3.1c0.6-2.4,3.6-0.9,5.5-1.3c3-0.6,5.2-2.8,7.6-4.5c0.9-0.3,0.9-1.4,1.9-1.7c0.5-0.1,1,0.1,1.5,0.2c1.1,0.1,2.7-1.6,3.1-2.5c0.7-1.5,0.7-3.7,2.8-3.7c0.8,0,1.5,0.5,2.3,0.4C539.7,222.1,541.5,221.6,542.5,221.3z"
                />
                <text transform="matrix(1 0 0 1 479.8516 175.1753)">
                  <tspan x="0" y="0" class="texte">Limbourg</tspan>
                </text>
              </a>
            </g>
            <g>
              <a xlink:href="Hainaut.html" target="myFrame" onmouseover="afficher_image('img10');" onmouseout="cacher_image('img10');">
                <path id="10" title="Hainaut" d="M95.8,246.7l1.2-1.5c-1-1.1-1.9-1.8-2.7-3c-0.3-0.5-2-1.9-2.1-2.4c-0.1-0.5,1.6-0.8,1-2c-0.3-0.7-1.6-1.9-0.7-2.5l2.5-1.6c0.6-0.4,1.2,0.7,1.6,1c0.9,0.7,0.6-2.7,1.9-1c0.9,1.2,1.2,1.5,2.8,1.3c0.9-0.1,1.8-0.4,2.7-0.5c0.7-0.1,0.1-1,0.1-1.4c0.1-1.8,4.4-2.7,5.6-3.3c3.2-0.8-1.8-3.9-1.6-4.8c2.2-0.5,3.8-2.6,6.1-3c1.6-0.3,2.4-1.6,3.8-0.6c1.2,0.9,1.8,0.3,0.8,1.9c-0.4,0.6-0.2,1.4,0.2,2c0.8,1.2-0.5,1.9,1.3,2.3c1.6,0.3,0.1,2-0.1,2.7l0,0c-0.2,0-0.3,0-0.5,0c-1.2,0.2-1.4,1.1-2.2,1.7c-1.2,1-4.8,4.4-6.3,3.4c-1.6-1-2.7,0.4-3.6,1.5c-1.2,1.5,0,1.7,0.4,3c0.3,0.7-1.7,1.2-2,1.7c-0.7,1.2,0.6,3.3-0.5,4.9c-0.8,1.1-2.8,0.7-2.9,1.7c-0.1,0.6-0.3,1.5-1.1,1.5c-1.7,0-2-4-4-1.8L95.8,246.7L95.8,246.7L95.8,246.7z M258.5,239.1c0.5-3.1-3.6-2.8-6-3.3c-2.1-0.5-3.9,3.1-5.7,0.8c-0.9-1.1-3.9-0.4-5.2-0.4c-2.6,0-1.7-1.2-3.4-2.6c-0.8-1-1.8-1.7-2.4-2.8c-0.5-1,0.7-1.2,0.5-2.2c-2.6,0-6.4,5.8-7.3-0.1c-0.2-1.3-1.7,0.4-2.3,0.8c-0.8,0.5-3.8,2.1-4.1,2.7c-0.6,1.4,0.6,1.7-1.1,2.7c-0.7,0.4-1,2.3-1.7,3c-1.2,1.3-2.2,2.1-1.7,4.1c0.5,1.6-2.4,1.1-2.8,0.5c-2.4-3-2.7-1.6-6.1-1.6c-1,0-2.3,0.6-3.2,0.1c-0.9-0.5-1-1-2.2-0.9c-1.6,0.1-1.2-2.4-1.2-3.6c0-1-0.7-1.9-0.7-3c0-2.3-2.2-0.8-3.4-0.4c-2.7,0.9-5.1,0.7-7.6-0.8c-0.2-0.1-0.4-0.2-0.5-0.2l0,0c-1.1-0.3-1.5,1.1-2.4,1.6c-1.6,0.8-1.9,1.6-3.3,2.9c-0.8,0.3-1.5,0.7-2.4,0.6c-0.3,0-1.4-0.3-1.6-0.1c-0.5,0.5-0.1,2.4-0.9,3.3c-1.5,1.7-5.2,1.7-7.3,2c-1,0.1-1.8,0.8-2.6,1.5c-0.9-0.9-1.9-2.3-1.9-3.6c0-1.6-0.6-4.4-2.4-5c-1.5-0.5-3.9,0.6-5.5,0.6c-1.7,0-1.4-1.1-2.7-1.5c-0.8-0.3-1.8,0.9-2.5-0.3c-2.1-3.2-7.4,0.1-9.5,1.9l0,0l0.2,0.6c0.6,1.6,1.6,1.6,2.5,2.7c0.3,0.4-0.6,1.9-0.8,2.4c-0.4,1.4,2.5,0.6,2.3,2.8c-0.2,1.8,3,0.7,3.9,0.6c2.5-0.2,3,1,4.3,2.8c0.5,0.7,0,1.5-0.4,2.1c-0.7,1.1,0.2,1.7,0.4,2.7c1.9,2.4-1.5,1.3-2.5,3.2c-1.1,2-0.2,2.8,0.7,4.5c0.4,0.7-0.5,2.1-0.5,2.9c-0.1,1,1.1,1.5,1.3,2.5c0.2,0.6,0,1.4,0.4,1.9c0.8,0.9,1.4,1.3,1.9,2.5c0.1,1.2,0.8,1.9,0.8,3.2c-0.1,1.9,0.2,3,0.6,4.8c0.2,0.9-0.7,2.3-0.5,2.8c0.2,0.5,1.5,1.1,1.3,1.6c-0.1,0.4-1.1,0.3-1.3,1.1c-0.2,0.8,1.6,0.6,1,1.4c-0.8,1.2-0.6,2.3-0.5,3.6l1.6,2.8c0.7,1.2,2.5,1.1,3.9,1.5c1.8,0.5,1.2,1.4,2.1,2.5c1.3,1.5,4.5-0.3,6.2,2.5c0.9,1.5,1.9,2.9,3.5,1.2c1.2-1.2,1.3-1.1,3-1.1c1.2,0,1.3-0.8,2.2-1.3c0.9-0.5,2.6-0.4,3.7-0.8c0.6-0.2,1.6-3.1,1.9-3.8c0.7-0.4,1.2-0.5,1.5-1.3c0.2-0.5,0.4-1.4,1-1.5c0.4,0,0.8,0.7,1.1,1c0.8,0.7,2.4,0,3.4,0.2c1.5,0.2,2.6,1.4,2.2,3c-0.4,1.6-2.3,2.5-2.7,4.3c0.1,0.7,0,2.5,0.5,3c0.6,0.7,2.2-0.9,2.7-1.4c0.9-0.8,2.2-0.9,3.4-0.9c1.5,0,5-1.4,5.9-0.1c0.9,1.3,0.7,2.9,2.9,1.4c2.7-1.8,2.5-0.1,4.2,1.8c1.7,1.9,2.1,2.8,3.1,5.1c0.4,1.2,2,0.6,2.5,1.5c0.4,0.6-0.1,1.3,0.1,1.9c0.4,1.2,1.4,1.9,1.3,3.3c-0.2,2.2,0.9,3.7,0.9,5.8c0,1.5,0.6,5-0.2,6.3c-0.4,0.6-0.4,1.4-0.8,1.9c-0.4,0.5-1.1,0.9-1.3,1.6c-0.2,0.8,1.5,1.3,1.5,2.7c0,1-0.3,1.9-0.3,3c0,1.5,1.9,1.7,1.4,3.2c-0.4,1.5,1.1,2.6,1.9,3.7c1,1.1,2.4,4.5,3.8,4.8c1.9,0.5,0-2.9,0-3.8c0.9,0,1,1,1.2,1.6c0.3,0.7,1,1,1.7,0.4c0.4-0.3-0.3-3.1-0.2-3.9c0.2-0.9,1-1.6,1.2-2.6c0.3-1.9,1.1-4.1,3.2-3c1.6,0.9,1.1-0.2,1.9-0.9c0.6-0.5,2.1-0.1,2.9-0.2c1.2,0.5,2.8-0.2,4.2-0.2c0.7,0.5-0.7,2.4,0.9,2c1.2-0.3,1.3-2.1,2.9-1.7c0.7,0.2,2.6,0.3,3.1,0.7c1.8,1.4,0.6,3.2,3.9,2.5c1.4-0.3,1.2,0.9,1.1,1.9c-0.3,2.4,5.3-0.3,6.2-0.9c0.9-0.6,5.5-3.8,6.5-3.3c0.1,0.4-0.5,0.9-0.2,1.2c0.6,0,1.1-0.4,1.8-0.2c0.5,0.1,0.6,0.6,1.2,0.5c0.3-0.3,1.1-1.1,1.5-1.3c0.8-0.2,2.4-0.3,2.9-0.9c0.9-1,1.6-3.1,2.5-0.7c0.3,0.8,0.5,2.4,1.2,2.9c0.7,0.5,1.8,0.1,2.4,0.6c0.9,0.6-0.3,1.7,1.4,2.2c1.3,0.4,1.8,1.6,2.2,2.7c0.3,0.7,0.2,2.2,1.3,2.2c1.1,0,1.9-1,3.1-0.2c0.4,0.3,0.9,1.3,1.4,1.8c1.4,1.5,2.3,1.4,2.2,4c0,1.1-0.9,3.1,0.7,3.4c2.4,0.5-0.1,4,2.8,4.4c2,0.2,4.2-0.4,2.4-2.6c-0.6-0.7-2.8-1.9-1-2.7c0.7-0.3,1.7-2.5,2.5-1.6c1.4,1.4-0.1,3.2,2.9,3.2c2.8,0,3-0.6,4.2,1.9c0,1.1,1.3,1.8,0.9,2.8c-0.3,0.8-1.4,1.8-2.2,2.1c-0.7,0.2-2.1-0.2-2.1,1c0,2.3-3.6,5.5-5.7,6.3c-2,0.7-1.6,1.6-0.3,2.8c0.8,0.7,0.1,2.8-0.1,3.7c-0.3,0.8-0.2,1.4-0.9,2c-0.8,0.6-0.3,1.1,0.2,1.6c1.7,1.3-2.2,4.8-2.8,6.5c-0.3,0.9-0.3,1.8-0.9,2.6c-0.8,1,2.4,2.9,3.3,2.9c0.7,0,0.5-1.5,0.8-1.9c0.3-0.3,6.8-0.2,7.2,0.3c0.5,0.6-0.9,1.6,0.1,2.3c0.9,0.6,0,1.8-0.1,2.7l-0.3,0.1c-0.1,0.5-0.5,1.1-0.2,1.6c0.2,0.4,0.8,0,1,0.8c0.3,2,2.8,3.2,3.4,5.4c0.4,1.6,0.7,3.8-0.9,4.7c-1.1,0.6-2.9-0.2-3.3,1.3c-0.7,2.2-2.4,2.7-4.5,1.6c-1.7-0.9-3.2,2.8-3.6,3.9c-0.8,1.6-1.8,2.4-1.5,4.3c0.2,1.2,0.8,2.9,1.9,3.4c1.4,0.6,1.9,0.4,1,2.2c-0.5,0.9-3.4,4.1-0.8,4.1c1,0,2.1-0.6,3.1-0.3c0.9,0.3,2,1.6,3.1,2.2c2.1,1-1,3.7,2.6,2.7c1.2-0.3,1.8-0.1,2.9,0.2c1.4,0.3,2.1-0.7,3.3-1.3c1.2-0.1,2.3-0.9,3.6-0.9c0.9,0.1,1.7,0.8,2.7,0.8c1.3,0,2.9-2.7,4.1-1c0.8,1.1,2.5,1.1,3.7,1.5c1.2,0.3,2,1.1,3.2,1.5c3.5,1.3,7.6,0.6,11.2,2.4c0.6,0,1.3,0.3,1.9,0.7l0,0l1.8-2.9c1.6-1.7,0.6-3-0.3-4.5c-1.1-2-2.4-4.9-2.8-7.3c-0.4-3-1.7-6.3-1.2-9.4c0.1-0.8,0.1-1.7,0-2.4c-0.4-0.4-1.9,0.1-2.5-0.6c0.3-2.5-0.2-5.6-0.8-8c-0.3-1.4-0.3-3.2-0.2-4.6c0.2-1.9,1.2-3.5,1.6-5.3c-0.3-0.8-1.5-1.5-2.1-2c-1-0.9-0.6-1-0.1-2c1.6-3.3-4.8-3.7-3.6-7.1c0.6-1.6,2.9-2.2,4-3.4c1.1-1.3-0.2-3.5-0.2-5c0-0.8-0.2-2.2,0.1-3c0.5-1.2,1.4-2.1,1-3.5c-0.4-1.2-2.8-2.7-4-2.7c-2.6-0.1-2.8,3.9-6,2.2c-2-0.7-3.9-3.3-5.9-4.4c-2.1-1.1,1.3-3.1,2.5-4c1.4-1.2,3.1-2.4,5-2.6c1.1-0.2,2.7,0.1,3.6-0.7c0.7-0.6,0.1-1.4,0.5-2.1c1.2-1.9,6.6,0.7,5.1-4.4c0.9-1.4,1.3-0.1,2.6-0.3c0.9-0.1,1.5-0.5,2.6-0.2c1.5,0.5,2.7,1.3,3.9-0.2c1.1-1.4,3.1-5,5.1-5.1c0.6,0,2,0.9,2.4,1.3c1.4,1.3,2.9,1.7,4.7,1.5c2.3,0.1,3.6-1.8,6.1-0.9c1.1,0.4,2.3,0.1,2.2-1.1c-0.1-0.8,0.3-1.7,0.1-2.5c-0.6-1.5-0.9-2.6-0.8-4.2c0.2-1.8-0.2-3.5,0.4-5.3c0.7-0.4,1.4-1.2,1.9-1.7c0.6-0.6-1.2-1.5-1.3-2.5c-0.1-1.1,1-1.8,1.5-2.8c0.4-0.8,0.4-1.8,0.9-2.6c0.7-1,1.2-2.3,1.2-3.6c0-1.5-1.2-0.4-2-0.2c-1.3,0.3-2.7-1-3.6-1.8c-1.5-1.5,0.5-2.2,0.2-4.2c0.9-1.4,3-5.3,2.4-7c-0.2-0.6-0.6-0.9-0.7-1.6c-0.1-0.4-0.1-3.6-1.1-2.8c-0.8,0.7-3.6,2.1-3.5,0.2c0-1-0.4-2,0.2-2.9c0.9-1.3,2.2-2.5,2.8-4l-0.5-5.1l0,0c-1.5,0.1-3.2,1-4.5,1.6c-1.7,0.9-3.7,1.5-5.6,2c-2-0.1-1.4-0.4-1.6-1.6c-0.7-0.4-1.9-0.2-2.8-0.2c-0.9,0-2.8,1.5-3,1.4c-1.2-0.5,0.5-4,1-4.6c1.2-1.4,1-2.3-1.1-2.1c-1.3,0.1-6.1-0.3-7-1.2c-1.8-1.7-7.1-0.7-9.1,0.3c-1,0.5-3.4,3.7-4.1,3.5c-0.6-0.1-0.2-1.3-0.4-1.8c-0.3-0.7-1-0.8-0.7-1.8c0.2-0.8,0.6-2.1-0.1-2.7c-1.6-0.5-3.6,0.9-4.8-0.6c-1-1.3-1.9-3.1-2.8-4.5c-0.8-1.2-2.1-0.8-3.3-1.1c-2.2-0.5-1.3-1.7-1.9-3.4c-0.7-2.2-0.7-3.6-3.3-3.6c-4.3,1.1-4.3-0.1-4.2-3.8c0.1-2.8-0.7-3.3-3-4.8c-0.7-0.5-2.9,2.2-3.3,2.7c-1.2,1.8-2.9,4.4-5.4,3.8c-1.2-0.3-3.3,0.1-3.8-1.2c-0.4-1-1.3-2.6-1.4-3.7c-0.2-1.7,1.8-1.9,0.8-3.8c-0.7-1.2-0.2-3.3-0.5-4.7l-0.3-3.8l0,0c-0.4,0.4-3.2-0.9-4.1-0.9l-0.8,0.1c-0.8,0.8-1.2,2.4-2,3.3c-0.7,0.8-2.8,1.4-3.8,1.5c-3.5,0.4-5.8,1.3-9.4,0.5c-2.1-0.4-6.6,0.6-8-0.9c-0.9-0.9-1.7-2.6-2.9-2.9c-0.9-1.5-2.5-1-2.1-2.7c0.3-1.6,0-2.6,0.7-4.2C258.3,239.8,258.4,239.4,258.5,239.1L258.5,239.1z"
                />
                <text transform="matrix(1 0 0 1 243.1992 297.9365)">
                  <tspan x="7.2" y="0" class="texte">Hainaut</tspan>
                </text>
              </a>
            </g>
            <g>
              <a xlink:href="Bruxelles.html" target="myFrame" onmouseover="afficher_image('img11');" onmouseout="cacher_image('img11');">>
                <path id="11" title="Bruxelles" d="M343,199.8c-0.9,1.8-0.2,1.7,0.3,3.3c0.4,1.3-0.5,1.7-0.9,2.8c-1,2.7,3.4,2.1,3.7,3.9c0.2,1.2,1.8,0.1,1.9,1.9c0,0.9,0.9,1.7,0.5,2.6c0,1.6,1.3,2,2,3.3c0.4,0.7-2.6,1-3,1c-2.3,0-1.5,3.3-0.3,4.2c1.6,1.2,0.8,1,1.5,2.4c0.4,0.8,0.5,0.5-0.4,1.1c-1.9,1.2-4.4,2.1-6.5,3l-5.3,2.4c-1.2,0.5-2.5-2.5-3.9-0.9c-0.1,0.2-2.1-1.1-2.8-1.1c-3.5-0.1-2.9-2.9-4.3-5.1c-1.3-2.1-2.2,0-2.2-3.2c0-3.2-2.1,0.7-4-0.9c-0.9-0.7-2.3,0-2.8-0.8c-0.3-0.5-0.8-0.6-1.4-0.5c-1.9,0.2,0.3-2.7,0.1-3c0.4-0.4,0-1.8,1-1.6c3.2,0.7,5-3.2,3.9-5.7c-1.5-3.3,1.6-3.3,2.1-5.8c0.8-4,6.9-5.7,10.4-4.7c2.3,0.7,2,0.2,3.2-1.8c0.4-0.7,3.5-1.3,4.2-1.1c0,0.8-0.1,0.7,0.6,1.3l2,2L343,199.8z"
                />
                <text transform="matrix(1 0 0 1 325.189 218.145)">
                  <tspan x="-220" y="110" class="texte">Bruxelles</tspan>
                </text>
              </a>
            </g>
     
            <line id="ligne_x5F_rouge" class="texte" x1="156.5" y1="325.4" x2="322.2" y2="226.7" />
     
     
            <text font-size="100" x="-170" y="10" display="none" style="font-size:15px;font-weight:bold;fill: #000;font-family:Verdana">
              Anvers
              <animate fill="freeze" dur="0.1s" begin="01.mouseover" from="none" to="block" attributeName="display"></animate>
              <animate fill="freeze" dur="0.1s" begin="01.mouseout" from="block" to="none" attributeName="display"></animate>
            </text>
     
            <text font-size="100" x="-170" y="10" display="none" style="font-size:15px;font-weight:bold;fill:#000;font-family:Verdana">
              Flandre Occidentale
              <animate fill="freeze" dur="0.1s" begin="02.mouseover" from="none" to="block" attributeName="display"></animate>
              <animate fill="freeze" dur="0.1s" begin="02.mouseout" from="block" to="none" attributeName="display"></animate>
            </text>
     
            <text font-size="100" x="-170" y="10" display="none" style="font-size:15px;font-weight:bold;fill:#000;font-family:Verdana">
              Flandre Orientale
              <animate fill="freeze" dur="0.1s" begin="03.mouseover" from="none" to="block" attributeName="display"></animate>
              <animate fill="freeze" dur="0.1s" begin="03.mouseout" from="block" to="none" attributeName="display"></animate>
            </text>
     
            <text font-size="100" x="-170" y="10" display="none" style="font-size:15px;font-weight:bold;fill:#000;font-family:Verdana">
              Luxembourg
              <animate fill="freeze" dur="0.1s" begin="04.mouseover" from="none" to="block" attributeName="display"></animate>
              <animate fill="freeze" dur="0.1s" begin="04.mouseout" from="block" to="none" attributeName="display"></animate>
            </text>
     
            <text font-size="100" x="-170" y="10" display="none" style="font-size:15px;font-weight:bold;fill:#000;font-family:Verdana">
              Liège
              <animate fill="freeze" dur="0.1s" begin="05.mouseover" from="none" to="block" attributeName="display"></animate>
              <animate fill="freeze" dur="0.1s" begin="05.mouseout" from="block" to="none" attributeName="display"></animate>
            </text>
     
            <text font-size="100" x="-170" y="10" display="none" style="font-size:15px;font-weight:bold;fill:#000;font-family:Verdana">
              Namur
              <animate fill="freeze" dur="0.1s" begin="06.mouseover" from="none" to="block" attributeName="display"></animate>
              <animate fill="freeze" dur="0.1s" begin="06.mouseout" from="block" to="none" attributeName="display"></animate>
            </text>
     
            <text font-size="100" x="-170" y="10" display="none" style="font-size:15px;font-weight:bold;fill:#000;font-family:Verdana">
              Brabant-Flamand
              <animate fill="freeze" dur="0.1s" begin="07.mouseover" from="none" to="block" attributeName="display"></animate>
              <animate fill="freeze" dur="0.1s" begin="07.mouseout" from="block" to="none" attributeName="display"></animate>
            </text>
     
            <text font-size="100" x="-170" y="10" display="none" style="font-size:15px;font-weight:bold;fill:#000;font-family:Verdana">
              Brabant Wallon
              <animate fill="freeze" dur="0.1s" begin="08.mouseover" from="none" to="block" attributeName="display"></animate>
              <animate fill="freeze" dur="0.1s" begin="08.mouseout" from="block" to="none" attributeName="display"></animate>
            </text>
     
            <text font-size="100" x="-170" y="10" display="none" style="font-size:15px;font-weight:bold;fill:#000;font-family:Verdana">
              Limbourg
              <animate fill="freeze" dur="0.1s" begin="09.mouseover" from="none" to="block" attributeName="display"></animate>
              <animate fill="freeze" dur="0.1s" begin="09.mouseout" from="block" to="none" attributeName="display"></animate>
            </text>
     
            <text font-size="100" x="-170" y="10" display="none" style="font-size:15px;font-weight:bold;fill:#000;font-family:Verdana">
              Hainaut
              <animate fill="freeze" dur="0.1s" begin="10.mouseover" from="none" to="block" attributeName="display"></animate>
              <animate fill="freeze" dur="0.1s" begin="10.mouseout" from="block" to="none" attributeName="display"></animate>
            </text>
     
            <text font-size="100" x="-170" y="10" display="none" style="font-size:15px;font-weight:bold;fill:#000;font-family:Verdana">
              Bruxelles
              <animate fill="freeze" dur="0.1s" begin="11.mouseover" from="none" to="block" attributeName="display"></animate>
              <animate fill="freeze" dur="0.1s" begin="11.mouseout" from="block" to="none" attributeName="display"></animate>
            </text>
     
          </svg>
        </div>
      </div>
     
     
           <script>
     
        // ***************************************************************
    // fonction pour afficher ou masquer les noms de régions....
    // ***************************************************************
     
    function afficher_cacher(nomRegions) {
     
        var tableSelectLangue = document.getElementById("tableSelectLangue");
     
        if (nomRegions.innerHTML == "Masquer le nom des régions") {
            nomRegions.innerHTML = "Afficher le nom des régions";
            tableSelectLangue.style.display = "none";
        } else {
            nomRegions.innerHTML = "Masquer le nom des régions";
            tableSelectLangue.style.display = "block";
        }
        var elts = document.querySelectorAll("tspan.texte");
        for (var i = 0; i < elts.length; i++) {
            elts[i].style.visibility = (elts[i].style.visibility === "hidden" || elts[i].style.visibility === "") ? "visible" : "hidden";
        }
    }
    // *************************************
    // fonction pour changer de langue...
    // *************************************
     
    var regionsBelgique = [];
    regionsBelgique['fr'] = ["Anvers", "Flandre Occidentale", "Flandre Orientale", "Luxembourg", "Liège", "Namur", "Brabant-Flamand", "Brabant Wallon", "Limbourg", "Hainaut", "Bruxelles"];
    regionsBelgique['en'] = ["Antwerp", "West Flanders", "East Flanders", "Luxembourg", "Cork", "Namur", "Flemish Brabant", "Walloon Brabant", "Limburg", "Hainaut", "Brussels"];
    regionsBelgique['de'] = ["Antwerpen", "Westflandern", "OstFlandern", "Luxemburg", "lüttich", "Namur", "Flämisch-Brabant", "Wallonisch-Brabant", "Limburg", "Hainaut", "Brüssel"];
     
    var langueCourante = "fr"; // langue courante, au début c'est le français
    function selectLangueF(langueSelectionne) {
        var noms = document.querySelectorAll("tspan.texte");
        var indice;
     
        for (var i = 0; i < noms.length; i++) {
            indice = regionsBelgique[langueCourante].indexOf(noms[i].textContent);
            if (indice != -1) noms[i].textContent = regionsBelgique[langueSelectionne][indice];
        }
        langueCourante = langueSelectionne;
    }
     
    var selectLangue = document.getElementById("selectLangue");
    selectLangue.onclick = function (event) {
     
        var target = event.target;
        if (target.id == "selectLangue") return;
     
        var div = document.querySelectorAll("#selectLangue>td");
        for (var i = 0; i < div.length; i++) div[i].className = "";
        if (event.target.tagName.toLowerCase() == "img") {
            target = target.parentElement;
        }
        target.className = "langueSelectionne";
        selectLangueF(target.id)
    };
     
        </script>
        </body>
     
        </html>

  4. #64
    Membre expert
    Homme Profil pro
    Inscrit en
    Octobre 2011
    Messages
    2 872
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations forums :
    Inscription : Octobre 2011
    Messages : 2 872
    Points : 3 716
    Points
    3 716
    Par défaut
    Oui là c'est bien centré verticalement...

    Mais par contre on a plus la couleur de fond qui permet de visualiser quelle langue est sélectionnée, c'est toi qui l'a enlevée ? Ou c'est un bug ?

  5. #65
    Membre du Club
    Inscrit en
    Septembre 2008
    Messages
    629
    Détails du profil
    Informations forums :
    Inscription : Septembre 2008
    Messages : 629
    Points : 47
    Points
    47
    Par défaut
    Re,

    Non c'est moi qui la supprimer!

  6. #66
    Membre expert
    Homme Profil pro
    Inscrit en
    Octobre 2011
    Messages
    2 872
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations forums :
    Inscription : Octobre 2011
    Messages : 2 872
    Points : 3 716
    Points
    3 716
    Par défaut
    Ah ok, pourtant c'est utile, non ?
    En tous cas si tu n'as pas besoin de cela on peut alors alléger un peu le code JS...

  7. #67
    Membre du Club
    Inscrit en
    Septembre 2008
    Messages
    629
    Détails du profil
    Informations forums :
    Inscription : Septembre 2008
    Messages : 629
    Points : 47
    Points
    47
    Par défaut
    re,

    Non pour moi se n'est pas utile mais si tu veut alleger le code pas de problème.

  8. #68
    Modérateur

    Avatar de NoSmoking
    Homme Profil pro
    Inscrit en
    Janvier 2011
    Messages
    16 939
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Isère (Rhône Alpes)

    Informations forums :
    Inscription : Janvier 2011
    Messages : 16 939
    Points : 44 120
    Points
    44 120
    Par défaut
    Bonjour,
    Citation Envoyé par Beginner.
    Je n'ai pas réussi à centrer verticalement les noms des langues et les drapeaux malgré le CSS : vertical-align: middle; align-content: center;
    il te faut mettre le vertical-align: middle; sur les images concernées et non le texte !

  9. #69
    Membre expert
    Homme Profil pro
    Inscrit en
    Octobre 2011
    Messages
    2 872
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations forums :
    Inscription : Octobre 2011
    Messages : 2 872
    Points : 3 716
    Points
    3 716
    Par défaut
    Merci.
    Ah oui je viens d’essayer et ça marche.

  10. #70
    Invité
    Invité(e)
    Par défaut
    Bonjour,

    je vais encore jeter une pierre dans la mare (et pas "jeter Pierre Bellemarre").

    1- De nos jours, on fait quand même beaucoup mieux qu'une <table> pour la mise en page !
    Code html : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
      <table id="tableSelectLangue">
        <caption>Sélectionnez la langue d'affichage :</caption>
        <tbody>
          <tr id="selectLangue">
            <td id="fr" class="langueSelectionne">
              <img src="https://img15.hostingpics.net/pics/95570555fr.png">Français
            </td>
            <td id="en">
              <img src="https://img15.hostingpics.net/thumbs/mini_90987313gb.png">Anglais
            </td>
            <td id="de">
              <img src="https://img15.hostingpics.net/pics/97861746de.png">Allemand
            </td>
          </tr>
        </tbody>
      </table>
    @Beginner.

    2- Quant à mettre des id partout... avec jQuery on peut largement s'en passer....

    3- Je ne comprends pas la gestion de langue avec "target" (?) :
    Code JavaScript : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    var target = event.target;
    ....
    Tu peux expliquer, stp ?

  11. #71
    Membre expert
    Homme Profil pro
    Inscrit en
    Octobre 2011
    Messages
    2 872
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations forums :
    Inscription : Octobre 2011
    Messages : 2 872
    Points : 3 716
    Points
    3 716
    Par défaut
    Salut,

    Citation Envoyé par jreaux62 Voir le message
    1- De nos jours, on fait quand même beaucoup mieux qu'une <table> pour la mise en page !
    Ah mais je le sais bien j'avais d'ailleurs ouvert ce fil auquel tu avais participé : Mise en page en CSS : display:table Vs flexbox Vs grid layout ? ...

    Mais comme il y avait déjà des table dans le code avec la carte je ne me suis pas pris la tête...

    PS : Ceci dit je crois que, dans certains cas, les tables ont quelques avantages (à confirmer)...

    Citation Envoyé par jreaux62 Voir le message
    Quant à mettre des id partout... avec jQuery on peut largement s'en passer....
    Je te crois sur parole mais moi je n'utilise pas JQuery... Mais en fait les id me servent à identifier la langue et non à identifier l’élément en question, je m'en sert comme des data (cf. ci-dessous)...

    Citation Envoyé par jreaux62 Voir le message
    Je ne comprends pas la gestion de langue avec "target" (?) :
    Code JavaScript : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    var target = event.target;
    ....
    Tu peux expliquer, stp ?
    Oui je vais essayer :

    Au départ l'idée c'est de n'utiliser qu'un seul écouteur (sur l’élément tr#selectLangue) au lieu d'un écouteur pour chaque élément susceptible de recevoir un clique...

    Pour "event.target" c'est la cible où on clique, cela peut être n'importe quel élément de la ligne tr#selectLangue...

    Du coup il faut bien faire le tri :

    - Si on clique sur le nom d'une des trois langues alors target pointe sur une cellule td, comme chaque cellule td a un id correspondant à la langue (id="fr",id="en" ou id="de") alors la langue sélectionnée est target.id.
    On aurait pu utiliser des data à la place des id : je me souviens d'une des remarques de NoSmoking dans un autre fil : #7 :

    Citation Envoyé par NoSmoking Voir le message
    l'attribut ID définit un identifiant unique et ne devrait pas contenir de données autre que celles qui servent à identifier l'élément qui s'y raccroche.
    Il existe d'autre moyen de mettre de l'information et notamment l'attribut data-xxx, dans ce cas ci cela pourrait être data-gmt par exemple.

    - Si on clique sur l'image alors target pointe sur l'image en question, il me faut alors le id de son parent pour obtenir la langue sélectionnée, c'est-à-dire que la langue sélectionnée est cette fois : target.parentElement.id...

    Voilà, je ne sais pas si c'est clair ?

  12. #72
    Invité
    Invité(e)
    Par défaut
    Citation Envoyé par Beginner. Voir le message
    ...mais moi je n'utilise pas JQuery...
    C'est vrai. J'aurais dû dire avec "document.querySelector" (qui permet de cibler facilement des classes et autres) !


    Quant à target... OK.
    Mais pas sûr que ce soit la meilleure manière, ni la plus facile à appréhender.
    J'aurais opté pour une version plus "classique", avec des <button>.

  13. #73
    Membre expert
    Homme Profil pro
    Inscrit en
    Octobre 2011
    Messages
    2 872
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations forums :
    Inscription : Octobre 2011
    Messages : 2 872
    Points : 3 716
    Points
    3 716
    Par défaut
    Ah oui des boutons, bonne idée... D'ailleurs si tu remontes le fil (à partir du poste #41) tu verras que j'ai proposé d'utiliser des bottons radio plusieurs fois avec des liens comme exemple mais apdf1 a voulu faire autrement...

    Citation Envoyé par Beginner. Voir le message
    Je suis en train de regarder comment faire ça avec des boutton radio...

    On peut faire sans, d'ailleurs ce serait plus facile pour moi de le faire avec trois image + texte et du JS mais certains penseront qu'on ré-inventent la roue...
    Mais toi tu penses à des boutons "normales", c'est ça ? Dans ce cas il faut plusieurs écouteurs (un par bouton), non ?

  14. #74
    Invité
    Invité(e)
    Par défaut
    Rien n'empêche de mettre une image (+ texte) dans un <button> !

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <button type="button" onclick="...." /><img src="....." /> Texte</button>
    Ou en mettant les drapeaux en background (via classes et CSS) :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    <button type="button" class="flag-fr" onclick="changeLang('fr');" />français</button>
    <button type="button" class="flag-en" onclick="changeLang('en');" />anglais</button>

  15. #75
    Membre expert
    Homme Profil pro
    Inscrit en
    Octobre 2011
    Messages
    2 872
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations forums :
    Inscription : Octobre 2011
    Messages : 2 872
    Points : 3 716
    Points
    3 716
    Par défaut
    Oui ok mais je me demandais si dans ce cas il faut plusieurs écouteurs (un par bouton) ou plusieurs onclick() si tu préfères...

    Mais c'est vrai que quand on met ce onclick dans chaque balise c'est moins lourd que si on le faisait coté JS...

    D'ailleurs coté JS je ne sais pas si on peut mettre un paramètre comme ça...

Discussions similaires

  1. Changer la langue des raccourcis clavier?
    Par tictactouc dans le forum C++Builder
    Réponses: 1
    Dernier message: 06/01/2006, 03h07
  2. [VCL] Comment changer de langue à l'exécution ?
    Par Zatoobux dans le forum Composants VCL
    Réponses: 1
    Dernier message: 27/09/2005, 19h08
  3. Changer la langue de l'application
    Par dabeuliou dans le forum Qt
    Réponses: 3
    Dernier message: 26/09/2005, 16h40
  4. [Debutant(e)] changer la langue dans eclipse
    Par omega dans le forum Eclipse Java
    Réponses: 6
    Dernier message: 16/03/2004, 17h47
  5. fonction MessageDlg Delphi :changer la langue
    Par julie20 dans le forum Composants VCL
    Réponses: 3
    Dernier message: 06/06/2003, 18h44

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo