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 :

Texte en minuscule


Sujet :

JavaScript

  1. #1
    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 Texte en minuscule
    Bonjour,

    J'ai sur mes carte svg le nom des formes en majuscules et je voudrais les passer en minuscule avec la première lettre en capitale.
    J'ai ceci met sa ne fonctionne pas.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
                 path, title{text-transform:lowercase;}
                 path, title{text-transform: capitalize;}
    Met ligne de code sont comme ceci.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    <path id="0" title="AIGLUN" class="st0" d="M288.1,625.2 292.6,637 
    <path id="0" title="ASCROS" class="st0" d="M316.7,557.9 318.7,546.
    Je vous remercie de votre aide

    Cordialement

    Max

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

    je doute que ce soit possible en CSS.

    Par contre, en JavaScript, oui.
    Dernière modification par Invité ; 11/02/2018 à 11h11.

  3. #3
    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
    Bonjour jreaux62

    Je te remercie peut tu me dire comment?

    Bonne journée

    Max

  4. #4
    Invité
    Invité(e)
    Par défaut
    Code jQuery : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    $('path').each(function() {
      $(this).attr('title', toCapitalCase($(this).attr('title')));
    });
     
    function toCapitalCase(string) {
      return string.toLowerCase().replace(/\b\w/g, function(l){ return l.toUpperCase() })
    }

    Code JavaScript : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    var pathList = document.querySelectorAll('path');
    if( pathList.length > 0 ){
      for(var h = 0; h < pathList.length; h++){
        pathList[h].setAttribute('title', toCapitalCase( pathList[h].getAttribute('title') ) );  
      }
    }
    function toCapitalCase(string) {
      return string.toLowerCase().replace(/\b\w/g, function(l){ return l.toUpperCase() })
    }

  5. #5
    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,

    J'ai mis ceci

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
        <script>
        $('path').each(function() {
      $(this).attr('title', toCapitalCase($(this).attr('title')));
    });
     
    function toCapitalCase(string) {
      return string.toLowerCase().replace(/\b\w/g, function(l){ return l.toUpperCase() })
    }
        </script>
    Dans ma page mais j'ai toujours mes noms en majuscule!!!!!!

    Max

  6. #6
    Invité
    Invité(e)
    Par défaut
    Utilise le code JavaScript pur (le 2ème).


    Le 1er, en jQuery *, nécessite d'avoir initialisé jQuery.
    Si tu ne l'as pas déjà, inutile de t'en servir uniquement pour ça.
    * La syntaxe est plus simple

  7. #7
    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,

    Avec le code javascript j'ai toujours les noms de mes formes en majuscule alors que moi je souhaiterai avoir les noms en minuscule et la première lettre en capitale.

    @+

  8. #8
    Modérateur
    Avatar de ProgElecT
    Homme Profil pro
    Retraité
    Inscrit en
    Décembre 2004
    Messages
    6 077
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 68
    Localisation : France, Haute Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Retraité
    Secteur : Communication - Médias

    Informations forums :
    Inscription : Décembre 2004
    Messages : 6 077
    Points : 17 171
    Points
    17 171
    Par défaut
    Salut

    Si cela peut aider
    Code JavaScript : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    		function MAJPremLetr(LeStr){
    			let str = LeStr.toLowerCase(); // force la totalité de LeStr en minuscule et le place dans la variable str
    			str = str.replace(str.charAt(0), str.charAt(0).toUpperCase());
    			//str.charAt(0) ----> première lettre de str
    			//str.charAt(0).toUpperCase() ----> transforme la première lettre en MAJUSCULE
     
    			//str.replace(str.charAt(0), str.charAt(0).toUpperCase())
    			// ----> remplace dans str la première lettre par la première lettre mise en MAJUSCULE
    			return str;
    			//console.log (str);// pour debug
    		}//*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*--*
    Soyez sympa, pensez -y
    Balises[CODE]...[/CODE]
    Balises[CODE=NomDuLangage]...[/CODE] quand vous mettez du code d'un autre langage que celui du forum ou vous postez.
    Balises[C]...[/C] code intégré dans une phrase.
    Balises[C=NomDuLangage]...[/C] code intégré dans une phrase quand vous mettez du code d'un autre langage que celui du forum ou vous postez.
    Le bouton en fin de discussion, quand vous avez obtenu l'aide attendue.
    ......... et pourquoi pas, pour remercier, un pour celui/ceux qui vous ont dépannés.
    👉 → → Ma page perso sur DVP ← ← 👈

  9. #9
    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
    Bonjour ProgElecT

    Je te remercie pour ton code mais comment appeler le code pour qu'il transforme les noms?

    Merci

    Bonne journée

    Max

  10. #10
    Invité
    Invité(e)
    Par défaut
    Mes codes fonctionnent...

    Si tu les utilises mal, on ne peut pas le deviner.

  11. #11
    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,

    Je suis persuader qui fonctionne mais je ne connais pas la fonction pour l'apliquer.

  12. #12
    Invité
    Invité(e)
    Par défaut
    Et moi je te dis qu'on ne peut pas deviner ton CODE !!!!!!

  13. #13
    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,

    Mon
    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
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
        <div class="map" id="map" >
        <div class="map__image"> 
     
                        <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="-400 -10 2200 1350"> 
     
     
     
     
          <path id="01" title="AIGLUN"                      d="M288.1,625.2 292.6,637 300.7,636.2 292.5,655.7 299.7,676.4 299.7,676.4 273.5,681.6 255.8,680.2 260.3,656.1 251.5,637.2 251.5,636.9 263.8,636.9 278,618.3 	"/>
          <path id="02" title="ASCROS"                      d="M316.7,557.9 318.7,546.9 345.6,545.4 379.2,559.3 391.7,564 383.1,579.6 383.1,579.6 378.7,579.4 370.4,594.9 355.6,585.9 342.4,585.3 330.5,590.6 327.9,569.2 311.7,563.4 	"/>
          <path id="03" title="AUVARE"                      d="M254.9,416.5 256.4,407.8 278.1,408.2 281.5,411 283.8,411.8 276.3,428.2 260.7,435.9 262.4,462.3 279.1,457.6 281.9,461 280.8,474.4 239.4,499.8 235.9,502.7 237.9,506.7 237.9,506.7 231.5,507.3 230,504.4 235.3,497.5 241.8,462.7 240.5,449.4 250.8,430.4 247.9,421.9 	"/>
          <path id="04" title="BEUIL"                       d="M309.9,306.2 293.6,274.7 269,263.3 254.9,252.1 257.3,220.6 270.9,222.3 291.1,212 301.8,237.1 302.2,255.3 314,260.6 318.2,259.2 329.9,272.5 332.9,294.4 340.2,299.6 344.5,312.3 361.9,326.1 356.5,342.9 356.8,365.1 362.6,377.2 334.9,399 314.9,408.5 315.1,413 290.7,414.6 290.7,414.6 283.8,411.8 281.5,411 284.1,397.9 275.1,377.8 278.5,365.7 295.2,358.8 291.4,336.8 	"/>
          <path id="05" title="CHATEAUNEUF D'ENTRAUNES"     d="M189.5,212.5 217.6,226 223.6,242.7 203.7,251 195.2,271.7 196.1,288.8 182.3,316.9 179.4,320.3 170.4,320.7 170.4,320.7 172.7,303 162,279 166.7,248.1 162.9,240.5 154.8,235.9 161.4,219.8 177.7,199.2 	"/>
          <path id="06" title="LA_CROIX SUR ROUDOULE"       d="M205.3,411.2 222,425.5 234.6,420.9 247.9,421.9 250.8,430.4 240.5,449.4 241.8,462.7 235.3,497.5 230,504.4 196.3,508.6 196.3,508.6 193.9,492.7 183.9,485.4 187.7,477.2 190,461.2 184.9,450.1 202.7,438.7 209.9,418.3 	"/>
          <path id="07" title="CUEBRIS"                     d="M283.5,595.9 293.5,594.8 315.4,593.7 323.2,597.8 331.5,595 330.5,590.6 342.4,585.3 355.6,585.9 370.4,594.9 378.7,579.4 383.1,579.6 381.9,597.4 387.7,609.3 381.7,621.1 383.1,634.6 383.1,634.6 353.7,627.5 347.1,621.9 344.5,613.5 331.4,613.6 300.5,617.5 278.7,613.5 279.2,597.1 	"/>
          <path id="08" title="DALUIS"                      d="M111.5,361.7 130.9,380.5 144.1,383.7 176,397.4 185,412.1 192.7,408.7 205.3,411.2 209.9,418.3 202.7,438.7 184.9,450.1 184.9,450.1 178.7,456 154.5,448.2 147.7,453.5 141.6,436.6 125.1,429.9 101.5,408.9 103.4,382.4 	"/>
          <path id="09" title="ENTRAUNES"                   d="M57.8,219.6 75.3,195.8 72.3,183.5 82.2,170.5 79.6,163 82.2,142.2 85.4,139.4 94,138.5 99.4,131.6 111.9,127 117.6,106.2 142.9,114 152.1,133.1 150,145.8 158.6,155.1 156.8,163.7 160.6,176.3 165,183.9 173,187.1 177.7,199.2 161.4,219.8 154.8,235.9 154.8,235.9 141.3,234.9 129.6,248.3 107.8,253.7 92.5,244.9 65.6,243.2 60.4,235.8 61.7,227.3 	"/>
          <path id="10" title="GUILLAUMES"                  d="M167.1,371.1 190.9,382.2 194.1,379.1 195.1,361.3 186.4,336.1 161.3,327.8 170.4,320.7 179.4,320.3 182.3,316.9 196.1,288.8 195.2,271.7 203.7,251 223.6,242.7 224,242.7 239.5,251.1 238.2,264.5 227.8,289.4 231.6,302.2 228.1,319.8 230.3,333.1 269.6,338.1 269.6,355.7 278.5,365.7 275.1,377.8 284.1,397.9 281.5,411 278.1,408.2 256.4,407.8 254.9,416.5 247.9,421.9 247.9,421.9 234.6,420.9 222,425.5 205.3,411.2 192.7,408.7 185,412.1 176,397.4 144.1,383.7 	"/>
          <path id="11" title="LIEUCHE"                     d="M351.7,455 369.1,441.2 385.7,435.4 401.9,460.2 401.9,460.2 393.5,460.1 384.8,470.1 371.9,473.6 351.7,490.7 347.3,490 338.2,471.9 339.1,459.4 	"/>
          <path id="12" title="MALAUSSENE"                  d="M426.5,569.9 413.3,570 413.9,566.7 420,555.5 437.1,553.9 453.4,546.5 470.2,551.4 479,561.5 490.9,567.7 508.1,577.4 517,585.4 511,599.9 511,599.9 507.1,601.3 492.8,594.1 486,598.8 482.7,596.2 468,588.9 453.9,578.3 432.4,576.5 	"/>
          <path id="13" title="MASSOINS"                    d="M423.2,474.7 440.2,500 441,513.3 458.2,517.3 467.3,527.3 475.5,548 489.5,559.1 490.9,567.7 490.9,567.7 479,561.5 470.2,551.4 453.4,546.5 437.1,553.9 432.8,518.8 435.7,501.3 428.5,496 	"/>
          <path id="14" title="LA_PENNE"                    d="M289.9,543 302,537.2 310.7,545.4 318.7,546.9 316.7,557.9 311.7,563.4 293.5,594.8 283.5,595.9 283.5,595.9 282.8,587.3 272,579.5 256.4,557.7 252.6,555.2 244.1,558.1 236.7,553.6 258.8,538.2 	"/>
          <path id="15" title="PEONE"                       d="M239.5,251.1 224,242.7 237,225.6 248.6,219.6 257.3,220.6 254.9,252.1 269,263.3 293.6,274.7 309.9,306.2 291.4,336.8 295.2,358.8 278.5,365.7 278.5,365.7 269.6,355.7 269.6,338.1 230.3,333.1 228.1,319.8 231.6,302.2 227.8,289.4 238.2,264.5 	"/>
          <path id="16" title="PIERLAS"                     d="M381.1,386.1 387,392.5 385,404.8 391.4,415.5 385.7,435.4 369.1,441.2 351.7,455 339.1,459.4 339.1,459.4 330.8,457.7 321.3,447.9 315.9,430.7 315.1,413 314.9,408.5 334.9,399 362.6,377.2 	"/>
          <path id="17" title="PIERREFEU"                   d="M413.9,566.7 413.3,570 417,582.5 410,603.4 421.9,608.9 429.1,625.3 430.6,642.9 426.4,642 412,650.6 403.7,650 382.7,650.1 382.7,650.1 386.5,637.4 383.1,634.6 381.7,621.1 387.7,609.3 381.9,597.4 383.1,579.6 391.7,564 	"/>
          <path id="18" title="PUGET ROSTANG"               d="M281.9,461 279.1,457.6 262.4,462.3 260.7,435.9 276.3,428"/>


    Mon
    Code CSS : 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
    .map__image {                          /* Carte*/
      position: absolute;
      top: 120px;
      left: -90px;
      right:0px;
      bottom: 0;
      border:0px solid red;
      width: 1080px;
      height: 700px;
      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;}
     
     /*texte couleur blanc au passage de la souris*/
     
    path ~ text{       
      fill: #e8e809;
      font-size: 13px;
      font-weight:100;}
     
    path:hover ~ text {
      fill:  #fdfefe ;
      font-weight: bold;
      font-size: 13px;}

  14. #14
    Invité
    Invité(e)
    Par défaut
    Code JavaScript : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    <script>
    window.onload = initTitleCapital;
    function initTitleCapital() {
      var pathList = document.querySelectorAll('path');
      if( pathList.length > 0 ){
        for(var h = 0; h < pathList.length; h++){
          pathList[h].setAttribute('title', toCapitalCase( pathList[h].getAttribute('title') ) );  
        }
      }
    }
    function toCapitalCase(string) {
      return string.toLowerCase().replace(/\b\w/g, function(l){ return l.toUpperCase() })
    }
    </script>

  15. #15
    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,

    J'ai bien mis le code sur ma page et quand je passe mon curseur sur les formes j'ai toujours les noms en majuscule, a moins que j'ai fait une boulette.

  16. #16
    Invité
    Invité(e)
    Par défaut
    Sans aucun doute...

    Mais comme tu ne donnes pas un code complet, exploitable (= qu'on peut TESTER),, ni une page en ligne,... on ne peut rien de plus pour toi.

  17. #17
    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,

    Voila un code complet.

    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
    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
    <!DOCTYPE html>
    <html lang="fr">
        <head>
    	     <meta charset="UTF-8">    
                      <title>Bretagne</title>
     
                                 <!-- Carte-->
                                             <meta name="viewport" content="width=device-width, initial-scale=1">
     
                   <style>
                                body{ 
                                    background: #000
                                }
                               .map__image {  /* Carte*/
                                   position: absolute;
                                   top: 90px;
                                   left: -90px;
                                   right:0px;
                                   bottom: 0;
                                   border:0px solid red;
                                   width: 860px;
                                   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: 18px;
                               }             /*Fin texte couleur blanc au passage de la souris*/ 
                               .texte {
                               visibility: hidden;
                               }
                                                                /* Fin carte*/
                                             /*  /////////////////////////////////////////////////////   */
     
                             #titre {   /* Titre de la carte */
                                   position: absolute;top: 10px;left: 370px;       
                                       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';
         
                               }
                               sup{      /* Titre du pays en sup */
                                font-size: 24px;color: #fff;
                               }        /* Fin Titre de la carte*/ 
                       
                                                     /*  /////////////////////////////////////////////////////   */    
                             
                               .bt_afficher{                /* Bouton afficher/masquer le texte sur la carte*/
                                   margin-top:  70px;
                                   margin-left: 10px;
                                   padding-left:-100px;
                               }
                               .bt_texte{
                                   margin-left: 10px;color: #eb1a1a;
                                   cursor: pointer;
                               }                           /* Fin Bouton afficher/masquer le texte sur la carte*/
                                                          
                                                     /*  /////////////////////////////////////////////////////   */
                       
                                                                /* Tableau drapeaux*/ 
                               .tabl_info{ 
                                   position: absolute;
                                   left: 1120px;
                                   top: 10px; 
                                   width: 200px; 
                                   height: 700px; 
                                   color: #fff;
                                   border: 0px solid #ff00f5;
                               }
                                                              /* 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;
                                    color: #ff0000;
                                }  
                       
                                img {
                                    vertical-align:middle;
                                }/* Fin Heure Gmt*/
                                sup.pays{
                                   font-size: 14px;
                               }
                               a{
                                   cursor: pointer;}
                              .img_info{margin-left: 130px}
                   </style>
     
        </head>
        <body>  
     
              <!-- ///////////////////////////////////////  Tableau drapeaux /////////////////////////////////////////////////  --> 
     
     
                  <table class="tabl_info">
     
                                         <!-- /////////  Afficher l'heure et la date du pays /////////  -->
              <tr><td align="center">
                                                             <div id="tabl_Gmt"> 
     
                                                       Heure local de Greenwich <sup class="pays"> (GMT) </sup>
     
                                                             <p data-gmt="+2">
                            <b>Bretagne</b> :<br> <img src="../Drapeaux/Bretagne.gif" width="28" height="22" alt="Drapeau">
                                                     <br><br> <span class="date"></span>
                                                         <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>** </sub> Drapeau de la Région  <sub> **</sub></td></tr>
                <tr><td align="center"><img src="../Drapeaux/Bretagne.gif" width="160" height="100" alt="Drapeau"></td></tr>
                <tr><td align="center">Armoirie Représentant</td></tr>
                <tr><td align="center"><sub>**</sub> Bretagne <sub>**</sub></td></tr>
                <tr><td align="center"><img class="text_drap_4" src="../Armoiries/Bretagne.png" width="175" height="99" alt="Armoirie" ></td></tr>
     
                <tr><td align="center"><a href="../../France/France/France_Regions.html"><img src="../../../images/index.png" width="50" height="50"></a></td></tr>
                <tr><td 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" id="bouton_texte" onclick="javascript:afficher_cacher('texte');">Afficher le texte</span></td> </tr>
                   </table> 
                                             <script src='../../../js/afficher_cacher.js'></script> 
     
            <!-- //////////////////////////////////  Fin Afficher et masquer nom sur la carte //////////////////////////////////////-->
     
                     <!-- *******************************************************************************************************-->
                     <!-- *************************************************** CARTE *********************************************-->
                     <!-- *******************************************************************************************************--> 
     
     
                                                        <div id="titre">Bretagne</div>
     
        <div class="map" id="map" >
        <div class="map__image"> 
     
         <svg version="1.1" viewBox="0 10 812 700">
     
     
            <!--   <g><a xlink:href="Finistère.html" target="myFrame">   -->       
              <g><a xlink:href="Finistère.html" target="myFrame" onmouseover="afficher_image('im1');" onmouseout="cacher_image('im1');">         
                   <path id="01" title="FINISTERE"                 d="M335.6,335.3c-0.4-0.1-0.8-0.1-1.3-0.1c-1.2,0-2.9,0.3-4-0.3c-0.7-0.4-0.8-0.9-1.6-1c-0.9-0.1-1.9,0.1-2.9,0.1c-2.6,0-9.9-0.3-11.2-2.7c-0.1-0.2-2.2-0.6-2.7-0.8c-1.4-0.7-1.6,2.3-3.4,1.6c-1.6-0.6-3-2.7-4.3-3.9c-2.6-2.3-4.1-0.3-2.6-4.6c-3.2,0-3.6,2.7-6.3,3.5c-2.9,2.1-4.6,0.3-7.4,1.1c-0.6,0.2-1.2,1.1-1.2,1.1c-0.1,0-2.6-2.1-3.3-2.3c-1.1-0.4-4.2-0.6-4.9,0.3c-0.7,0.8-1,0.8-2.1,0.8c0,0-0.1-0.1-0.1-0.1c0-3.1,0.7-2.8-1.6-5.3l-5.4-6c-1.4-0.4-1.8-0.5-1.7-2c0.1-1,1.3-0.7,1.1-1.3c-0.1-0.3-0.4-1.1-0.8-1.2c-0.5,0-2.1,0.3-2.1-0.4c0-0.9-1.6-1.1-0.9-1.5c0.3-0.2,1-0.7,1.3-0.4c0.3,0.3,1.4,1.3,1.2,0.2c-0.2-0.8-0.7-1.5-0.9-2.2c-0.4-1.1-1.6-0.9-2.6-1.1c-1.8-0.4-0.4-1.5-1.2-2.4c-0.7-1.2-3-1.7-3-3c0-0.6-3.8-1.1-4.5-1.3c-0.7-0.2-1.1,1.8-1.8,2.2c-0.6,0.4-1,0.2-1.3,1.1c-0.4,1.1,0.9,4,0.9,5.4c0,1.1,0.8,1.5,1.3,2.2c-1.3,0.3-3.7,1-4.9,1c-1.8,0-3.5-0.3-5.1,0.5c-0.3,0.2-2,1.8-2.1,1.4c-0.5-1.7-1.6-2.1-2.7-3.3c-1.9-1.3-3.5-1.7-5.9-1.6c-2.1,0.1-2.8,0.1-2.8-2.4c0-0.7-1.8-0.3-2.2-0.8c-0.7-1-0.5-2.3-1.5-3.5c-0.3-0.3-1.4-1.4-1.5-1.6c-0.4,0.5,1.3,2.7,1.6,3.2c0.4,0.8,0.7,2.3,1.3,2.9c0.5,0.4,1.3,1.4,0.1,1.6c-1.2,0.2-1.8,0-3,0.7c-1.6,1.3-3.5,2.1-5,3.4c-0.9,0.7-1.6,3.1-2,2.1l-1-2.3c0,1.5-0.1,4.2,2,4.2c1.4,0-0.2,4.3-0.1,5.1c0.3,1.3-1.2,0.7-1.7,1.5c-0.9,1.3-0.3,3.4-1.3,3.4c-0.9,0-1.8,0.4-2.6,0.4c-0.9,0-1.1-1.6-2.6-0.7c-1.5,0.9-1.5,1.6-3.5,1.6c-1.5,0-3.2,0.6-4.6-0.2c-2.4,0.8-3-0.3-5-0.3c-2.4,0-1.6-1.2-3.4-1.6c-1.3-0.3-2-0.3-3.2,0.3c-2,1-3.3-0.2-5.3,0.1c-1,0.2-2.2,0.9-3.1,0.6l-2.7-0.9c-0.1-0.3,0.6-2,0.8-2.4c0.5-1.2-1.5-1.3-2.2-1.6c0-0.3,1.8-2.5,2.1-2.9c1-1.2,2.7-0.7,4.1-1.2c2.6-1-0.2-7.4-0.3-9.2c-1.3-4.6-3.6-9.1-5.5-13.5c-0.6-1.3-1.7-2.7-1.9-4c-1.1-2-2.7-3.9-4-5.8c-1-1.5-2.7-4-4.3-4.9c-0.8-0.5-2.9-2.3-3.2-3.1c-1.2-0.9-1.5-1-3-1c-1.2,0-1.5-1.1-2.1-1.9c-1-1.3-4.5-3.2-6-3.4c-1.7-0.2-3.1-1.3-4.7-1.5c-2.1-0.4-2.8,1.8-3.1,3.2c-1.9,0-5.5-2.1-6.7-3.6c-1.6-1.8-4.8-0.8-6.1-3.1c-1.8-2.9-2,0.9-4.7,0.6c-1.5-0.2-2.1-1.1-3.9-1.1c-2.9,0-3.8-0.4-6.2-1.5c-1.3-0.6-5.6-0.4-6.2-2.4c2.3,0,6,0.2,5.5-3c-0.7-4.7-0.6-3,2.7-2.8c2,0.1,4,0.5,5.2-1.5c1.1-1.7,0.7-1,2.5-0.4c1.5,0.5,7.8-0.9,9.4-1.6c1.2-0.5,3.9-1.1,4.8-1.7c0.9,0,4.6,0.7,5.3,0.3c1.7-0.9,1.6-2.7,3.8-2.7c3.3,0,8.1,1.3,10.7-1.3c2-2,3.9-0.5,6.3-0.7c1.8-0.3,2.4-1,3.6-2.1c0.7-0.7,1.7-0.1,2.6,0.1c2.4,0.5,4.4-1.7,6.4-1.4c1.6,0.3,2.4,2.1,3.9,2.6c2.7,0.9,3.5-0.6,5.1,2.1c1.5,2.4,4.4-1.7,4.9-2.8c0.6-1.5,3.5-7.9,2.8-9.3c0.6-1,0.2-3.7-0.7-4.5c-1.2-1-2.7-0.3-2.4-2.2c0.1-0.9-0.1-2.3-0.3-3.2c-0.9-5.4-5.1-8.3-10.3-8.3c-1.8,0-3.9,1.7-3.9-1.1c-0.3-0.2-0.8-0.9-1-1.2c-0.4-0.1-1-0.8-1.4-1.1c-0.6-0.3-1.4,0-2.1-0.1c-2-0.3-2.9-1.8-4.6-2.5c-1.1-0.5-2,0.5-2.8,0.4c-0.3,0-2.5-1.9-3.4-2.2c-2.6-0.8-4.2,0-6.6,0.3c-2.1,2.1,0.4,2.4-0.1,3.7c-0.6,1.4-2.3,0.6-2.9,2.2c-0.4,1.1-0.3,2.1-0.3,3.1c0,1.4-1.4,1.9-1.7,3.2c-0.2,1.2-2.9,1.6-3.4,3.2c-0.3,0.9,0,1.9-0.1,2.6c-0.3,0-2.7-0.5-3-0.7c-1-0.4,0-1.7-0.7-2.2v-0.1c1.7-0.8,1.4-2.6,1-4.2c-0.6-2.2,0-4.3-1-6.5c0-1.2-0.6-3.3-1.8-3.8c-1.9-0.8,1.6-1.6,2.1-1.8c3.3-1.4,2.6-5.6-1-4.5c-2.2,0.7-3.2,1.6-5.6,1.1c-1-0.2-0.6-1.3-1.7-1.9c-1-0.5-2-0.7-2.9,0.1c-0.2,0.2-0.8,1.3-0.8,1.3c-0.2-0.2,0-1.6,0-2c0-0.5,0.1-1,0.4-1.3c1.3-1.6,0.2-3-1.2-4.2c0.7,0,2.9,0.1,3.1-0.7c0.3-0.2,1.4-0.8,1.5-1.1c2,0.5,1.6,5.3,5.1,2.2c2.1-1.8,0.5-6-0.2-8.2c-0.9-3-1-3,1.4-5.1c1.4-1.2,4.9-3.7,6.9-3.7c0,1.8-1.6,3.6-2.1,5.3c-0.5,2-2,4.6-2,6.6c0,1.4,1.8,2.3,2.6,3c1,1,2.6-0.4,2.6-1.7c0-0.9,3.1-4.1,4.1-4.5c1-0.5,0.2,2-0.1,2.4c-1.6,1.8-1.4,1.1-1.6,3.5c1.4,2.3,3.3,1.8,5.4,1.2c0.8-0.2,4.4-1.5,4.4-2.5c1.1,0,2.5,0.7,3.7,0.8c1.2,0.1,2.5-0.3,3.6-0.3c0.3,1.1,0.4,3.4,1.5,4c1.5,0.6,2.8,0.5,4.4,0.6c1.8-0.3,4.5-0.7,5.9-2.1c1.3-1.4,2.4-0.4,3.9-0.8c3.1-0.9,6.4-4.4,9.8-3c2.2,0.9,3.7,0.3,2.9,2.9c-0.5,1.5-3.2-2-4.2,0.3c-0.3,0.8-1.3,2.7-1.3,3.5c1.9,0,2.7-0.4,4.6,0.5c0.4,0.2,4.4,3.5,3.7,2.4c-0.5-0.8-1.1-1.4-1.7-2.1c-0.5-0.7-3.1-2.1-2.9-2.6c0.2-0.8,4.1-0.2,4.9-1.7c0.8-0.4,1-2,1.8-2.3c0.3-0.1,2,0.4,2-0.2c-1.3-0.3-1.2-1-3-1c-1.5,0-1.7-1.9-3-2.4c-1.1-0.4-2.1-0.4-3-1.2c-1.5-1.4-0.6-1.6-3-0.2c-0.8,0.5-1,0.2-1.7-0.1c-2.6-1.2-4.5,0.1-7,0.1c0-1.5,3.7-3.4,3.7-5.7c0-1.6,6.2-1.2,6.2-3.5c-1.9,0-3.2,0.4-5,1c-2.1,0-3.6,2-3.2-1.7c0.2-1.9-2.3,1.1-2.6,1.7c-0.3,0.5-2.1,0.4-2-0.7c0.2-1.2-0.7-0.1-1,0.3c-1.2,1.3-0.9,4.7-2.4,5.1c-1.1,0.2-8.4,0.9-7.5-0.4c0.3-0.5,1.4-2.5,1.3-2.9c-1.3,1-2.9,1.5-4.4,2.3c-2.5,1.3-2.6,0.9-5,0.4c0.1-0.4,2.1-0.4,2.1-1.5c0.1-1,1-2.3,1-2.8c-0.2-0.9-0.4-1.1,0.1-2c0.8-1.3,0.9-0.7,0.9-2.3c-0.1,0-0.1,0-0.1,0.1c0.3-1.2,0.7-1.1,1.7-1.5c1.2-0.4,1.8-1.4,2.5-2.4c1.7-2.2,3-2.8,5.4-4.3l3.9-2.5c0.8-0.5,5.3-2,5.3-2.7c-0.6-0.1-3,0.3-3.9,0.3c-1.9,0-1.6,1.1-2.5,2.2c-0.4,0.5-2.1,0.8-2.7,1c-1.6,0.3-2.1,1.2-3.5,1.5c-1.7,0.5-3.1-1.2-4.5-1.5c-1.6-0.3,0,5.6-3.7,3.3c-1.7-1.1-1.5,0.1-3,0.3l-5.5,1.1c-0.3,0.1-0.7,0.7-1.1,0.8c-1.8,0.9-5.3,3.3-5.8,4.8c-1.4,0-2.6-0.7-3.6-0.7c-0.4,1.8-4.1,2.6-5.5,3.3c-3.2,1.6-5.2,3.6-8.8,2.5c-1.2-1.2-1.4-1.9-3.3-1.9c-1.5,0.1-1.8-0.7-3-1.4c-2.2-1.4-7.4-1-6.7,2.5c0.5,2.3,0.6,0.9-1.2,2.6c-2.4,2.2-4.5-1.2-6.5,0.3c-1.3,1-3.6,0.6-5,0.4c-0.3,0-0.6-2.5-0.6-3.1c0-0.4,0.3-1.7,0.1-1.9c-1.1-1.2-1.5-3.3-3.1-3.3c0-0.7,1.4-1.2,1.4-1.8c1,0.3,1.8,1,2.9,0c0.9-0.9,1.4-3.1,0.4-4c-0.8-0.9-2.5-1.4-2.2-3c0.2-1.2,1-3.5-0.9-3.2c-1.9,0.3-0.7-0.4-1.3-1.4c-0.2-0.3-1-0.2-1.3-0.5c-0.4-0.4,0.3-1.2,0.4-1.6c0.4-1.6,1.6-2.9,1.1-4.8c-0.5-1.7,0.2-0.4,1-1.6c0.3-0.5,0.2-1.3,0.2-1.9c0.6-1.5,1.7-2.8,2.6-4.2c1-1.6,1.2-1.6-0.1-3.1c-0.5-0.7-0.9-1.6-1-2.5c0-0.6-0.4-1.1-0.6-1.6c-2.6-2.8,0.5-2.4,1-4.7c0.1-0.4-0.6-1.1-0.3-1.4c0.8-0.8,1.4-1,1.1-2.4c-0.7-3.2,2.7,0,2.7-2.6c0-1.2-1-1,0.2-2.2c1-1,2.1-1.8,3.1-2.9c1.6-2.2,2.7-0.1,4.5-0.1c2,0,0.7-3.3,0.7-4.2c0.9,0,2.9-0.7,3.5-0.5c0,2.3,2.9,1.5,2.9-1c0.7,0,1.5,1.3,2.5,1.5c2.2,0.5,3-1.5,5-1.5c1.1,0,3.1,0.2,4.1,0.6c1.8,0.6,2.2,2,2.6,3.9c0.5,2.1,1.9-0.2,3.5-0.2c0.1,0-2.5-1-2.7-1.8c-0.5-1.6-0.6-1.5-2-2.2c-0.8-0.4-1.4-1.2-0.9-1.8c0.8-1-0.3-1.5-0.3-2.5c0-0.6,0.6-4.4,1.5-4.2c0.6,0.2,1.1,0.6,1.8,0.8c1.9,0.4-0.6,0.6-0.6,1.9c0,2,4.2-0.8,5.6,0.2c0.6,0.4,4.6,0,5.6,0c-0.9-0.4-1.3-1.2-2.3-1.4l-3.1-0.7c-0.7-0.1,2.1-2.2,0.5-1.6c-2.3,0.9-1.5-0.7-1.5-2.2c0.4-1.8,0.3-1.6,2.2-1.9c0.4-0.1,3,1,2.3,0.2c-0.6-0.6-1.6-2.2-0.8-2.6c1.5-1,1.1-0.3,1.9,0.7c1.1,1.5,1.9,0.3,2.7-0.6c0.3-0.3,1.7,0.4,2.2,0.5c0.2,0,0.2,4.1,2.3,2.3c0.9-0.7,3.4,0.1,4.8-0.3c1.8-0.5,2.5-1.7,3.8-2.8c0.9-0.8,1.1-1.9,2.1-0.9c1.6,1.6,0.9-0.6,3.2,0.2c0.5,0.2,4.2,0.4,2.7-0.5c-1-0.6-4.7-2.1-4.6-2.7c0-0.3-0.6-0.8-0.7-1.2c-0.5-1.5,1-0.2,1.2,0.1c0.6,0.7,2.2,0.2,3,0c2-1.2,4.5-0.6,6.5-2.7c0.5-0.6,0.5-1.3,1.5-1.3c2.2,0,3-1.8,4.8-2.2c1-0.2,1.3,0.7,2.1,1c1.4,0.5,2.8,0.1,3.7,1c1,1,1.7,1.9,3.1,2.3c0.5,1.9-3.5,3.4-3.5,4.1c0.2,0,1.7,0.1,0.8,0.7c-2.4,1.5,1.4,2.9,2.6,2.5c0-0.7-1.3-1.9,0.5-1.9c1.6,0,2.3-0.6,2.9-2.1c3.6-1,8-0.1,11.7-0.1c0.6,0,4.9-0.8,2.6-1.5c-1.9-0.6-3.4,0.2-5.3,0.2c2.3-1.9,3.5-4.8,5.6-7c2.2-2.2,7.3-2,10.4-3.6c2.7-0.4,5.2-0.2,8.2-0.2c1.5,0,2.8,0.1,3.9,1.2c0.5,0.5,1.5,2.5,2.2,2.5c0-1.5,1.9-1.9,1.3-2.6c-0.9-1.3,0.3-1.7,0.3-3.1c0-2.8,2.1,1.1,3.5-1.1c0.8-1.4-1.1-2.2,1.3-1.7c0.7,0.2,2.3,0.4,2.7-0.4c0.7-1.6,1.1-2.5,2.3-0.5c1.3,2.3,2.1-0.4,2.3-0.7c0.2-0.4,0.2-1.6,0.6-1.6c0.6,0,1.1,0.1,1.7,0.1c0.6,0,2.7-0.8,2.1,0.4c-0.7,1.3-0.9,2.5-1.2,3.9c-0.4,1.4-0.2,2.4,0.7,3.5c0.3,0.7,1.2,1,0.3,1.4c-0.7,0.3-0.7,1.1-0.2,1.6c0.9,1-1,1.9,0.5,2.4c0.5,0.2,2.2-0.3,2.3,0.4l0.3,3.4c0.1,0.9-0.4,1.7-0.4,2.6c0.5,0,1-1.1,1.5-1.3c1.2-0.5,2.5,0,3.2-1.2c0.3-0.5,0.2-1.2,0.4-1.7c0.1-0.3,0.3-1.9,0.5-1.9c0-0.1,0.5,0.2,0.6,0.2c1.3,0.8,4.2,0.8,5.7,1.3c0,1.2-4.4-0.1-2.7,3.4c0.4,0.8,0.7,1.7,1.2,2.4c0.7,1,1.6,1.1,2.4,1.7c1.5,0.6,4,0.6,4.9,2.3c0.6,1.1,0.4,2.3,0.4,3.5c0.3-0.1,1.3-1.5,1.6-1.9c0.3-0.5-0.4-1.3-0.5-1.9c-0.3-1.4-0.5-2.8-0.9-4.2c-0.3-1.1-0.7-1.9-0.6-3c0.9-1.5,0.3-1,1.9-0.2c0.5,0.2,0.1-1.8,0.1-2.1l-1.1-4.6c-0.1-0.4,0.5-2.7,0.7-2.7c2.2,0,0.8-2,2.2-3.1c0.4-0.3,0.7-2.1,1.1-1c0.3,0.8,1.1,1.7,1.3,2.3h0.1c0.3-1.1,1.1-0.9,0.5-2.3c-0.5-1.1-0.5-1.6-0.3-2.7c0.1,0,0,0,0.1,0c1,0.2,1.4,3.5,3.3,2.5c1.3-0.7,2.4,4.5,5,2.4c1.3-1,1.5-1.8,3.4-1.8c1.6,0,3.2,0.4,4.9,0.4c1.1-0.1,2,0.5,3.1,0.5c0,0.6-0.8,0.8,0.2,1.3c0.6,0.3,2.5,2.6,2.7,2.6c1.8,0.1,1.2-0.7,2.7,0.7c1.3,1.2,3.7-1.8,5.3-1c0.1,0.1,0.1,1.4,0.2,1.6c0.2,0.6,1.7,2.8,2.3,2.8l0,0l-2.9,4.1c-0.9,1.7,0,3.7,0.1,5.6c0.1,2.3,0.3,4.2,1.2,6.3c0.1,0.6,1,1.3,1.6,1.3c0,0,0,0,0.1,0.1c0,2.9,1.2,6.1,4.6,6.1l4-0.1c3.9-0.1-1.1,7.2,1.6,8.4c0.8,0.3,1.7,0.1,2.5,0.6c1.1,0.6,1.8,1.9,3,2.5c1.1,0.5,3.1,1.8,1.4,3c-3.4,3.4-7,6.9-9.5,11c-1.1,1.7-0.4,4.3,0.7,5.8c0.7,1.1,0.8,1.4,1.9,2.2c0.9,0.6,2.3,1.6,2.7,2.7l2.7,3c-2,0.8-3.6,1.9-5.5,2.8c-5.2,2.5-0.7,8-3.6,11.3l4.7,1.7c1.4,0.6,3.4,0.4,4.8,1.1c1.2,0.6-0.7,5.6-1,6.8c-0.2,0.9-0.6,1.9,0.2,2.6c0.8,0.7,1.2,1.6,1.2,2.8c0.1,0.9-0.5,3.9,0.5,4.2c1.4,0.5,3.3-1,4.8-1c0,0.4-1,1.7-1.3,2.1c-0.4,0.6-0.5,1.1-0.8,1.8c-0.5,1-2.1,1.5-2.8,2.2c-0.6,0.7,0.7,1.2,1.2,1.7c1.2,1,1.8,1.9,3.5,2.3c1.2,0.2-0.9,3.3-1.2,3.7c-0.2,1.1-0.6,1.4-0.6,2.8c0,2-1,3.6-2.6,4.7c-2.2,1.4-0.3,5.3,0.5,7.2c1.1,2.5,4.5,0.9,4.5,4.3c0.2,1.9-3,1.2-4.3,1.2c-0.7,0-2.3,0.5-2.7,0.9c-0.9,0.7-1.4,1.7-2,2.7l0,0l-4.1,1.2c-2.7,0.7-5.3,0.9-7.3,2.9c-1.6,1.6-4.6,3-6.8,3.2l-4.1,0.4c-1,0.1-3.6,4.6-4.2,5.6c-0.5,0.8-2.6,5.6-2.6,6.4c-1.3,3.6,2.4,2.1,4.2,2.6c2.9,0.9,1.4,0.6,0.6,3c-0.4,1.1-0.1,2.8-0.1,4c-0.1,1.8,2.8,3.3,4.3,4c2.6,1.2,2.1,2.4,2.8,5c0,1.1,0.5,2.5,0.7,3.6c0.3,1.4,0.8,1.5,1.5,2.6c0.9,1.6,1.5,3.6,2.1,5.3c0.6,1.9-0.4,2.1,1.9,3c2.9,1.2,3.4-1.5,6.1-1.5c1.1,0,1.8,0.8,2.9,0.8c1.3,0,2.2-1.5,3.6-1.5c1.4,0.4,2.8,1.2,4.1,1.2c3.3,0,3.2,3.2,6.7,3.2c3.7,0,3.8,5.2,6.3,7.4c1.9,1.7,1.9-1.7,3-2.8c0.7-0.7,1.7-0.4,2.6-0.4c1.2,0,2.1-1.6,2.8-1.7c1.2,0.1,1.5-1,2.3-1.5c0.8-0.5,0.5,0.3,0.7,0.8c0.4,0.9,0.8,1.6,1.4,2.3c0.5,0.5,1,1.3,1.3,2l0.8,0.7c-0.6,0.4-1.1,1.1-1.5,2c-0.7,1.5,3.5,5.4,1.4,6.7c-3.5,2.3-3.8,0.4-2.7,4.1c0.7,2.4,0.7,4.5,0.7,7.2c0,1,0.1,2,0.3,2.9l-2.7-0.6c-1.7-0.9-2.1,0.2-3.8,0.2c-1.8,0.1-1.9,0.1-1.9,1.9c0,1.8-0.7,5.9-3,5.9c-0.8,0-1.6-0.5-2.1,0.2c-0.5,0.6-0.6,1.3-1.2,2c-1.7,0.6-4.4-2.2-5.8-2.9c-1.6-0.7-2.8,0.2-4.4,0.2c0,0.1,0,0.1-0.1,0.1c-0.2,0.8-1.7,2.4-1,3.5c0.2,0.3,0.9,0.3,0.9,0.8c0,1.5-0.2,1.4,1.1,2.1c1.9,1.1,1.9,2.2,1,3.9c-0.8,1.5-0.2,3.2-1.1,4.7L335.6,335.3L335.6,335.3L335.6,335.3z M257.9,348.6c0.2-0.4,0.5-0.8,0.4-1.3c-0.1-0.3,0-1-0.3-1.1c-0.6-0.3-0.8,0.8-0.9,1.2c-0.1,0.4-0.1,0.5,0,0.9c0,0.2,0.1,0.3,0.1,0.5c0,0.2,0,0.4,0.1,0.5L257.9,348.6L257.9,348.6z M251.1,351.5c0-0.6-0.3-1-0.7-1.4c-0.2-0.2-0.6-0.2-0.8-0.1c-0.2,0.1-0.3,0.4-0.2,0.6c0.1,0.4,0.1,1,0.1,1.4c0,0.2,0.1,0.5,0.3,0.5c0.3,0.1,0.9-0.1,1.2-0.2L251.1,351.5L251.1,351.5z M249.5,71.8c-0.5,0-1-0.5-1.4-0.8c-0.7-0.4-5.4,1.1-5.5,1.7c0.4,0.4,1.3,0.5,1.8,1c1.6,1.6,2.1,0.1,3.9,0.1c1,0,1.5,0.7,2.3,1c0.6,0.2,1.5-0.1,2.1,0c0.4,0.1,1,0.3,1.5,0.3c0.9,0.1-0.5-1.4-0.8-1.5l-2.6-1.2L249.5,71.8L249.5,71.8z M93.4,262.2c0-0.5-0.6-1.2-1.1-1.2c-0.7,0-1,0-1.6-0.5c-0.6-0.5-1.1-0.4-1.6,0.1c-0.6,0.6,0.6,0.5,1,0.7c0.8,0.3,1.6,0.7,2.3,1.1c0.1,0.1,0.2,0.4,0.2,0.6c0.1,0.2,1,0.6,1.2,0.9c0.5,0.5,2.8,0.2,2-0.4c-0.3-0.2-0.7,0-1.1,0c-0.5,0-0.6-0.4-1-0.6L93.4,262.2L93.4,262.2z M90.3,180c0.9-0.3,0.8-1.3,1.5-1.9c0.4-0.3,0.8-0.3,1.2-0.5c0.5-0.2,0.3-0.8,0.5-1.2c0,0,0,0,0,0c0.3,0,0.6,0.2,1,0.2c0.8,0-0.7,1-0.8,1.1c-0.5,0.4-1.8,1.5-1.8,2.2c0,0.5-0.3,0.4-0.7,0.6c-0.5,0.2-0.6,0.7-1.2,0L90.3,180L90.3,180z M85,171.5c-0.4,0.3-1,0.2-1.4,0.1c-0.2,0-0.4,0-0.7,0c-0.3,0-1-0.4-1,0.1c-0.1,0.3,0.4,0.7,0.7,0.8c0.3,0.1,0.6,0.1,0.9-0.1c0.4-0.2,0.6,0.2,1,0.1c0.4,0,0.8-0.3,0.8-0.7L85,171.5L85,171.5z M77.5,171.6c-0.1,0.3-0.5,0.6-0.9,0.6c-0.4,0.1-0.6,0-0.8,0.4c-0.4,0.9,0.7,0.3,1,0.1c0.2-0.2,0.4-0.3,0.7-0.3c0.3,0,0.4-0.4,0.2-0.6L77.5,171.6L77.5,171.6z M69.8,159.8c-0.2,0-0.4-0.1-0.6-0.1c-0.3-0.1-0.7,0-0.9,0.2c-0.2,0.3-0.7,1.2-0.1,1.2c0.7,0,1.4-0.3,1.9-0.8L69.8,159.8L69.8,159.8z M62.8,158.5c0.2-0.1,0.3-0.5,0.4-0.8c0.1-0.3,0.2-0.6,0.3-0.9c0,0,0,0,0.1,0c0.2,0,0.4,0.9,0.3,1.1c0,0.1-0.1,0.3-0.1,0.4c0,0.2-0.1,0.2-0.1,0.3c-0.1,0-0.2,0.2-0.3,0.2c-0.2,0.2-0.3,0.2-0.6,0.1L62.8,158.5L62.8,158.5z M72.1,167.4c0-0.4-0.1-0.8-0.1-1.2c0-0.2-0.1-0.5-0.2-0.7c-0.1-0.2,0.9-1.1,1.1-0.9c0.1,0.1,0.3,0.4,0.4,0.5c0.1,0.1,0.3,0.3,0.4,0.4c0.1,0.1,0.1,0.3,0.2,0.4c0.1,0.2,0.3,0.2,0.3,0.5c0,0.3-0.3,0.6-0.4,0.9c-0.1,0.5-0.9,0.5-1.3,0.6L72.1,167.4L72.1,167.4z M48.4,143c-0.5,0.3-1.1,0.1-1.7,0.1c-0.4,0-0.3,0.6,0,0.7c0.3,0.2,0.6,0.2,1,0.2c0.3,0,0.5,0.2,0.8,0.3c0.2,0,0.7,0.1,0.8-0.1c0.2-0.3-0.2-1.1-0.6-1.2L48.4,143L48.4,143z M41.6,149.2c1-0.6,2.6-0.8,3.4-1.6c0.7-0.7,0.9-2.1,2.1-2.2c1.2-0.2,1.4-0.6,2.8-0.4c1.1,0.2,1.5,0.2,2.5-0.5c0.9-0.6-0.3-0.7-0.6-1.4c-0.1-0.2,0.3-0.3,0.4-0.3c1.3,0,1.7,1.4,2.2,1.7c0.4,0.2,2.3-0.3,2,0.2c-0.5,0.7-1.3,4,0.4,3.3c1.7-0.7,1.5,0,3.1,0c-1,1.9-2.8,0.6-3.7,1.9c-1.1,1.4-0.5,2.2-2.5,2c-1.2-0.1-3.2-0.3-3.6,1.1c-0.4,1.3-3.6,2.6-5,2.6c-3.4,0,1.6-2.5,2.5-3c0.8-0.4,1.5-0.5,0.7-1.1c-0.3-0.2-1-1.5-1.2-1.5c-0.4,0-1.9,0.8-2.5,0.9c-1.3,0.3-2.5,1.1-3.7,1.2c-2.7,0.3-1-1.2,0.3-2.1L41.6,149.2z"/>
               <text transform="matrix(1 0 0 1 241.6074 201.1699)"><tspan x="0" y="0" class="texte">Finistère</tspan></text>
                   </a></g>
                 <g><a xlink:href="Morbihan.html" target="myFrame" onmouseover="afficher_image('im2');" onmouseout="cacher_image('im2');">      
                   <path id="02" title="MORBIHAN"                  d="M468.5,383.3c0.3-0.8,0.1-2.4,0.1-3.2c0.5-0.1,1.8,0,2.2-0.3c0.3-0.3,1-1.8,1-2.2c0,0,0.1,0,0.1-0.1c0.2,0.9,1.1,1.3,1.3,2.2c0.3,1.3,1.1,0.4,2.2,0.4c0,0.5,0.2,2.5-0.8,2c-0.6-0.4-0.9-1-1.7-0.9c-0.8,0.2-2,1.3-2.5,2c-0.2,0.2-1.8,2.5-2.1,1.2L468.5,383.3L468.5,383.3z M459.5,386.3c0-2.1,0.6-3.3,1.3-5.2c0.2-0.5,0.3-1.9,0.7-2.2c0.4-0.3,1.5-1.6,1.8-1.6c0,0.8-1.4,3.2,0.2,3.3c0.3,0,2.7,0.6,2.2,1.2c-0.4,0.4-2.1,0-2.7,0.2c-1,0.2-1.9,2.2-2.1,3.1c-0.1,0.5-0.6,1-0.3,1.5c0.1,0.2,0.8,0.8,0.8,1c-0.8,0-1.2,0.5-1.1,1.2c0,0.3,0.1,0.7-0.4,0.6c-0.8,0-0.5-1.4-0.4-1.9L459.5,386.3L459.5,386.3z M454.8,450.3c-0.7-0.1-0.8-1-0.7-1.6c0.1-0.4,0-0.5-0.2-0.8c-0.2-0.3-0.2-0.7-0.2-1.1c0.4,0,1.3,0.5,1.7,0.7c1.3,0.6,1.9-0.4,2.7-1.1c0.8-0.7,0.9-0.4,1.1,0.4c0.2,0.9,0.4,2.7-0.9,2.7c-0.4,0-1.1,0.2-1.3,0.5c-0.3,0.5-0.6,0.8-1.3,0.8L454.8,450.3L454.8,450.3z M414.1,463.2c-1.6-0.1-2.2-1.8-4-0.5c-1.7,1.2-2-0.6-2.9-0.9L405,461c-1-0.3-1.6-1.5-2.4-1.8c-1.1-0.4-2.5,2-4.1,2c-0.8,0-1.3-0.8-1.9-0.8c-1.1,0-1.3,1.1-2.8,0.8c-1.5-0.3-1.3-1.8-2.1-2.1c-1.7-0.7-0.8-1-2-2c-1.3-1-2.2-1.6-1.1-3.2c0.9-1.4,1.1-2-0.6-2.8c-1.5-0.6-1.7-3.8-2.5-5.1c-0.5-0.8,0.4-2,0.4-3c0-0.6-0.4-2.9-0.1-2.9c0.2-0.6,1.7,0.2,1.8-1.9c0.1-0.9-0.2-1.9,0-2.8l0,0c0.6,0,2.8,1.6,3.5,1.9l7.2,3.8c1.9,1,3.3,1.2,5.4,1.1c1.7-0.1,1.5,0.2,1.5,2.1c0,1,0.1,2.1,0.9,2.7c1,0.8-0.2,3.2,1,3.7c1.6,0.7,2.6,0.7,4.2,1.6c1.4,0.4,1.8,1.7,3.3,2.1c2,0.6,4.3-0.3,6.4,0.1c1.1,0.2,2.8,1.3,2.8,2.6c-1.4,0-2.2,0.2-2.2,1.7c-0.1,1.1-1.4,1.4-1.8,2.3c-0.2,0.5,0.4,1.4-0.1,1.8c-0.2,0.2-0.9,0.5-1.2,0.6c-0.8,0.3-0.5,1.2-1.7,1.3c-0.9,0-0.9-1.7-2.2-1.7L414.1,463.2L414.1,463.2z M434.5,434.2c1.1-0.3,0.1-2.7,1.2-2.2c0.3,0.1,0.7,0.6,1,0.8c0.5,0.4,1.7,1.2,2.3,1.5c1.1,0.7,2,0.9,3.3,0.6c1.1-0.2,2-1,3-1c0,0.6-2.3,1.4-2.7,2.5c-0.1,0.3,0.5,2.1,0.6,2.4c0.4,1.2-1-0.9-1.2-1c-0.8-0.5-0.7-0.6-1.7-0.9c-0.6-0.2-1.1-0.2-1.6-0.6c-0.6-0.5-0.7-1.3-1.4-1.7c-0.4-0.2-1.4-0.2-1.8-0.1L434.5,434.2L434.5,434.2z M344.2,371.2c-1.1-1-3.4-1.9-4.1-3c-3.1-5.1,4.5-2.8,6.9-2.1c2,0.6,3.6,1.5,5.8,1.5c1.9,0,2.7,1,4,1.9c0.2,1.7,0.4,2.9-0.5,4.5c-0.8,0.1-1.6-1.4-2.3-1.9c-1.3-0.9-2.6,2-4.3,1.6c-0.8-0.2-1.6-0.9-2.3-1.2l-2.7-1L344.2,371.2L344.2,371.2z M600,370.8L600,370.8l-1.3-1c-0.3-0.2-0.5-0.7-0.7-1c-0.2-0.3-0.4-0.5-0.5-0.8c-0.3-0.8-0.2-1.5-0.2-2.4c0.1-2.2,2.1-4.3,1.6-6.4c-0.5-2.1-4-1.8-4-4.3c0-1.5,0.9-2.8,0.9-4.2c0-1.7-2.7-2.7-1.1-4.4c0,0,0,0-0.1,0c0.8-0.3,2.4-1.8,3.2-2.4c0.9-0.8,1.1-0.8,2.3-1.1c0.9-0.2,6.5,0.2,6.5-1c0-1.1-0.8-1.9-1-2.9c0,0-0.1-0.1-0.1-0.1c-1.3,0-2-0.1-3.1-0.7c-0.4-3.3-8.5-1.1-6.5-3.6c0.7-0.9,0.9-1.7,1.4-2.5c0.8-1.4,2.3-0.7,3.6-1c1.8-0.5,2.8-2.3,3.6-3.8c0.5-0.6,0.7-2.9,0.4-3.5c-0.5-1.2,1.4-1.1,2.1-1.3c2.6-0.5,4.1-3.3,4.1-5.6c-2.1-0.5-2.9-1.4-3.1-3.6l-0.5-5.4h-0.1c-1,3.1-4,5-6.6,6.7c-1.5,0.9-1.8-0.5-2.6-1.6c-0.7-0.9,0.7-2.8,1-3.7c0.2-2.2-0.4-3.4-1.8-4.9c-1.4-1.5-0.6-3.4,1-4.4c0.5-0.3,1.3-1.8,1.7-2.4c0.7-0.9,2.3-2.1,2.3-3.3c0-1.7-1.7-2.4-2-3.9c-1-2.4-1.6-5.1-3.7-6.9c-1.9-1.6-4.5-2.7-6.7-3.9c-1.3-0.7-2.6-0.7-4-1.3c-1-0.4-1.3-1.2-2.1-1.7c-0.8-0.5-2.2-0.8-2.9-1.5c-1.7-0.4-3.9-0.9-5.6-1.6c-1.7-0.7-2.6-1.2-4.4-0.8c-2,0.4-7,4.7-6-0.2c0.2-1.3,0.3-3.3,0.9-4.4c0-2.4,3.6-5.3,5.1-7c2.5-2.7,4.2-1.8,7.7-1.9c2.2-0.1,4.7-0.6,6.3-2.1c1.2-1.1,2.4-5,0.4-5.8c-1.1-0.4-8,0.7-9,1.5c-1,0.9-2.7,3.7-3.7,3.4c-2-0.7-3.4,0.2-2.5-2.7c0.6-1.9,0.8-3.6,0.4-5.6c0.1-1.2,0-3.4-0.6-4.5c-0.7-1.3-2.3-2.2-3-3.5c-0.5-1-0.9-1.9-1.5-2.8l0,0c-2.2,1.3-3.6-0.3-5.5,0.5c-2.2,0.9-1.6,4.2-4.6,2.5c-1.4-0.8-1.8,0.3-2.4,1.5c-1.1,2-1.6,2.4-2.9,0.3c-0.6-1-1.6-2.9-1.7-4.2c0-1,0.3-3.1-0.7-3.5c-0.8-0.4-1.8-0.7-2.5-1.3c-0.9-0.8-1.3-1.8-1.7-2.9c-0.5-1.7-3.4-3.6-5.1-3.6c-3.1,0-4,1.4-6.3,2.9c-1.6,1.1-2.4-0.1-3.9,0.3c-0.8,0.2-1.5,1.1-2.2,1.5c-1.5,0.9-4.7,0.2-6.6,0.2l0,0.1c0.7,0.2,2,3.1,2.7,3.8c2.5,7.6-7.4,9.5-6,16.5c0.5,2.5-1.2,2.6-3.4,2.8c-1.2,0.1-1.4,0.8-2.3,1.3c-0.7,0.7-1.1,1.5-1.8,2.2c-0.8,0.8-2,1.4-2.8,2.2c-1.1,1.1-3.4,3.1-5,3l-3.4-0.1c-0.6,0-1.3-2.2-1.5-2.8c-0.4-0.1-0.8-0.5-1.2-0.7c-0.1-0.2-0.2-0.7,0.1-0.8c0-0.4,0.1-0.4-0.1-0.8c0-1.7-0.8-2.9,0.2-4.5c0.8-1.4,1.4-2.9,1.7-4.5c0.7-3.3,0.8-5.5,0.1-8.8c-0.6-2.8-0.2-3.3-2.9-2.2l-3.2,1.3c-1.3,0.5-1.8,2.5-3,3.1c-1.4,0.7-2.8,0.3-4.2,0c-2-0.4-2.6,0.8-4.1,1.5c-0.6,0.7-1.2,1.6-1.4,2.5c-0.2,0.7-0.3,1.1-0.8,1.5c-0.8,0.6-1.3,1.5-2.3,1.5c0-0.1,0-0.1-0.1-0.1c0-0.1,0-0.1-0.1-0.1c0-0.7,0.1-1.3,0.1-2c0-0.7-0.1-1.3-0.2-1.9c-0.5-0.1-1-1.7-1-2.2c-0.3-1.4-0.3-3.8-1.6-4.7c-1.4-1-2.4-4.2-4.2-4.2c-1.7,0-3.1,1-4.7,1.1c-0.8,0-1.3-0.2-2.2-0.3c-2.6,0-5.1-2.7-6.2-4.9c-1.1-2.2-3.9-1.4-6.2-2.2c-2.3-0.7-3.3-0.7-5.7-0.5c-2.2,0.2-5.1,1.9-7.1,2.9l-2.2-0.5c1.3-1,2.5-1.8,0.9-2.3c-2.6-0.8-3.6,0.1-3.7-3.4c-0.2-3.9-3.6-4.5-6.7-6.1c-3.8-2-6.8,1.5-10.1,0.1c-0.4-0.2-0.8-0.3-1.3-0.5l-1.4,1.8c-0.3,0.3-0.6,0.6-0.9,0.8c-0.3,0.2-0.5,0.5-0.7,0.8c-0.4,0.6-0.7,1.3-1,1.9c-0.4,1.5,0.1,2.6,1.3,3.4c-0.1,0.6-3.4,3.6-4,3.6l-5.3,0.2c-1.4,0-2.3-0.6-3.5,0c-1.7,0.8-2.2,2.6-3,4.2c-0.4,0-1.7-1.1-2.2-1.3c-1-0.5-2.6,0-3.6,0.4c-2.8,1.1-4.2,1.2-7.2,0.6c-0.9-0.4-1.1-1.7-1.8-1.9c-0.6-0.1-2.7-0.6-3.2-0.4c-0.5,0.2-1.3,0.6-1.8,0.6c-0.4-1.5-1.4-3.3-2.6-4.3c-0.3-0.3-5,1.3-5.9,1.6c-3.1,0.8-8.3,6.3-11,3.4c-0.5-1.2-2-1.5-1.4-3c0.4-0.9,1.4-1.7,1.9-2.6c1-1.6-1.2-2.6-2.5-3.3c-1.6-1-1.1,0.8-2.7,1.2c-2,0.5-3.8-0.5-5.3-1.8c-1.1-0.9-6.4,1.5-8.3,1.7l-8-0.3l0,0l-4.1,1.2c-2.7,0.7-5.3,0.9-7.3,2.9c-1.6,1.6-4.6,3-6.8,3.2l-4.1,0.4c-1,0.1-3.6,4.6-4.2,5.6c-0.5,0.8-2.6,5.6-2.6,6.4c-1.3,3.6,2.4,2.1,4.2,2.6c2.9,0.9,1.4,0.6,0.6,3c-0.4,1.1-0.1,2.8-0.1,4c-0.1,1.8,2.8,3.3,4.3,4c2.6,1.2,2.1,2.4,2.8,5c0,1.1,0.5,2.5,0.7,3.6c0.3,1.4,0.8,1.5,1.5,2.6c0.9,1.6,1.5,3.6,2.1,5.3c0.6,1.9-0.4,2.1,1.9,3c2.9,1.2,3.4-1.5,6.1-1.5c1.1,0,1.8,0.8,2.9,0.8c1.3,0,2.2-1.5,3.6-1.5c1.4,0.4,2.8,1.2,4.1,1.2c3.3,0,3.2,3.2,6.7,3.2c3.7,0,3.8,5.2,6.3,7.4c1.9,1.7,1.9-1.7,3-2.8c0.7-0.7,1.7-0.4,2.6-0.4c1.2,0,2.1-1.6,2.8-1.7c1.2,0.1,1.5-1,2.3-1.5c0.8-0.5,0.5,0.3,0.7,0.8c0.4,0.9,0.8,1.6,1.4,2.3c0.5,0.5,1,1.3,1.3,2l0.8,0.7c-0.6,0.4-1.1,1.1-1.5,2c-0.7,1.5,3.5,5.4,1.4,6.7c-3.5,2.3-3.8,0.4-2.7,4.1c0.7,2.4,0.7,4.5,0.7,7.2c0,1,0.1,2,0.3,2.9l-2.7-0.6c-1.7-0.9-2.1,0.2-3.8,0.2c-1.8,0.1-1.9,0.1-1.9,1.9c0,1.8-0.7,5.9-3,5.9c-0.8,0-1.6-0.5-2.1,0.2c-0.5,0.6-0.6,1.3-1.2,2c-1.7,0.6-4.4-2.2-5.8-2.9c-1.6-0.7-2.8,0.2-4.4,0.2c0,0.1,0,0.1-0.1,0.1c-0.2,0.8-1.7,2.4-1,3.5c0.2,0.3,0.9,0.3,0.9,0.8c0,1.5-0.2,1.4,1.1,2.1c1.9,1.1,1.9,2.2,1,3.9c-0.8,1.5-0.2,3.2-1.1,4.7l-0.3,4.3l0,0c1.4,0.2,2.3,0.8,3.4,2.2c1,1.4,2.5,3.7,2.7,5.4c0.5,1.6,2.9,4.9,4.2,5.8l2.2,1.5c0.7,0.5,0.5,0.7,0.8,1.4c0.2,0.6,1.8,2,2.5,1.8c2.9-0.7,4-2.3,7.3-2c2.6,0.3,5.1,0.8,6.9-1.7c0.5-1.3,0.6-2.8-0.3-3.9c-1.6-2.1,0.5-0.8,2-1.3c1.5-0.6,2.3-5.9,1.3-6.7c-0.9-0.7-1.7-1.4-2-2.6c-0.3-1.7,0.2-0.6,1,0.2c1.7,1.7,2.2,2.2,2.3,4.8c0.1,1.9,4.4-0.7,4.8-1.3l2.8-4.2c0.6-0.9,1.3-1.8,2.5-1.7c0.1,0,1.3-0.3,1.2-0.1c-0.6,0.7-1.9,1.1-2.6,2c-1.4,1.5-2,4.3-3.4,6.1c-1,1.3-2.7,2.5-4.5,2.2c-1.5-0.2-0.4,0.5-1.1,1.9c-0.5,1,1.5,2.8-0.1,3.2c-0.9,0.2-0.3,0.8-0.8,0.9c-0.6,0.2-1.3,0.1-1.9,0.1c1.1,0.3,0.9,2.2,2.3,1.9c1.5-0.3,2.2-1,3.9-0.3c0.8,0.1,3.2,0.5,3.5,1.3l-0.9-0.1c-0.9-0.1-6.5-0.6-6.8,0c-0.6,1.3-2.1,2.7-1.5,4.4c0.1,0.2,0.4-0.2,0.4-0.3c2.3-4.2,7.8-2,11.1-0.7c2.1,0.8,3.6,1.9,5.4,3c2,1.2,3.7,3.4,5.8,4.4c0.5,1.1,2.7,2.3,3.4,3.5c1.7,2.7,1.3-4.4,1.3-4.8c0-1.2,0.9-1.9,1.6-2.7c0.2-0.2,0.6-0.2,0.7-0.5c0.1-0.5-0.3-1.3-0.1-1.6c0.3-0.5,1-0.8,1.2-1.2c-1.2,0-3.4-0.5-1.5-2.1c1.5-1.2,7.8-1.3,6.6-3.3c-0.3-0.4-1-2.8,0.1-2.8c0.3,0,1.2,1.8,1.3,2.1c0.1,0.2,2-2.6,3.7-2.6c1,0-1.4,2-2,3c-1.3,2.1-4.3,3-0.8,3.9c0.7,0.2-1,2-1.2,2.2c-1.5,1.3-3.7,0.1-5.6,1.6c-1.6,1.2-3.8,4.1-3,6.1c0.7,1.5,0.1,2.1-0.5,3.2c-0.7,1.3,0,1,0.8,2.4c0.3,0.7,0.8,0.9,1.1,1.7c0.2,0.6,0.1,1.2,0.1,1.8c1.6,0.4,5.1,3,6.1,4.3c2.1,2.5,3.8,4.3,4.7,7.5c-0.2,2.8,0.8,5.6,0.7,8.4c-0.1,1.4-0.7,3-1.6,4.1c-0.7,0.9-2.8,0.8-2.8,1c1.7,0.3,1.6,5.7,1.9,7c-0.1,1,0.3,1.6,1,2.2c0.5,0.5,0.1,1.6,0.3,2.3c0.2,0.6,0.9,0.9,1.3,1.4c0.3,0.4,0.8,1,0.9,1.6c0,0,2-1.1,2.9-0.7c0.4,0.2,0.6,0.4,0.8,0.7c0.5,0.8,0,0.8,1.1,0.4c1.9-0.7,3.4,1.3,5.3,1.3c-1.1-0.3-2.7-2.2-3.3-3.1c-0.8-1.4-0.8-1.5-2.2-2.4c-2.1-1.4-1.8-2.9-2.1-5.1c-0.1-0.9-0.9-0.9-1.2-1.6c-0.4-0.7-0.8-3.1-0.8-3.9c-1.3-4.1,0.1-6.1,1.5-9.9c0.4-1,1.6-2.7,1.7-3.7c0.1-1.3-0.5-1.9,0.8-1.8c0.9,0.1-0.3,1.5,0.1,2.2c0.3,0.5,2.4,3.5,2.7,3.5c1.5,0,3.1-1.3,4.6-1.9c0.9-0.3,1.7-0.2,2.5,0.1c0.7,0.2,2.1-1,3.7-0.4c1.8,0.7,1.2,1.6,3.1,1.2c0-1.1-1.3-2.3-1.2-4l0.1-4.6c0.1,0,0,0,0.1,0c0.5,2.5,1.4,4.8,2.2,7.1c0.1,1.7,1.8,1.4,2.9,1.9c1.8,0.8,0.6-2.3,0.8-3c0.5,0,3.7,3.1,2.7,3.8c-1,0.8,0,1.1,0.7,1.5c0.5,0.3,1.1,1.5,1.6,1.5c1.3-2.5,3.4-0.3,5.5-0.1c3.4,0.3,0.5-1.9-0.3-2.8c-1.1-1.1-1.5-2.7-2-4.1c0,0-1.8-0.9-2.1-1.2c-1.7-1.9,0.2-2.1,0.7-3.7c0.2-0.6-0.4-0.9-0.7-1.3c-0.7-0.7-0.4-1.5-0.3-2.4c0.4-0.4,2.2-0.6,1.3-1.6c-0.5-0.6-1.2-0.6-1.4-1.5c-0.2-0.6,0-0.9-0.3-1.6c-0.1-0.3-0.6-1.9,0-0.8c1.1,2,3.1,2.5,2.5,5.1c-0.2,0.9,0.3,2.1,1,2.8c0.9,0.9,0.8,1.5,1.2,2.7c0.2,0.2,0.3,0.4,0.6,0.4l0,0c0.3-1.3,0.6-2.2,2.1-2c0.5,0.1-0.1,1.6-0.1,2.1c0,0.7,0.1,2.3,1.1,1.4c1.5-1.3,0.7-1.7,2.1-0.4c0.4,0.4,1.1,0.3,1.6,0.7c0.4,0.3,0.8,1,1.3,1.2c0,0.3,0.5,0.2,0.2-0.6c-0.3-0.7-0.7-5.5-0.1-6c0.9-0.7,2.2,1.5,3.1,1.7c0.5,0.1,2.8-0.4,2.3-1.2c-0.3-0.5-1.1-0.5-1.1-1.4c-0.1-1.2,1.9-1.1,2-2.2c0.1-0.9-3.2,0.3-1.9-2.2c0.7-0.1,1.7-0.8,2.2,0c0.6,1.1,1.8,2,3,2.2c1.4,0.2,2.7-1,3.9-1.6c1.5-0.7,2.5,0.9,4.2,0.5c0.5-0.1,2-0.6,2.2-1.1c0.2-0.8-0.7-1.6-0.6-1.9c0.7-0.2,1.4-0.5,2.1-0.1c0.9,0.6,2.4-0.8,3.4,0.4c0.4,0.5,0.7,1.2,0.9,1.8c0.3,1.2-2.3-0.4-2.8-0.6c-0.9-0.3-1.5-0.2-2.4,0.1c0,0.1,0,0.1-0.1,0.1c0,0.4-0.1,0.8-0.1,1.2c0,0.2,1,0.3,1.2,0.3c0.7,0.2,2.1,1.3,2.1,2h-0.1c0,0.1-0.7-0.2-0.9,0c-0.6,0.5,0.1,0.9,0.5,1.2c1.2,0.6,1.7-0.5,2.9,0c1.2,0.6,1.4,1.2,2.3,2.2c0.8,0.9,1,0.7,2.2,0.7l0,0c0.2,1,0.2,1.2,1.4,1.2c2,0,2.1-0.6,2.8-2.3c0.2-0.6,0.6-3.4,1.6-3.4c0.1,0.8-0.4,3.7-0.7,4.5c-0.4,1.1-0.9,1.3-1.7,2c-0.6,0.5-1.7-0.2-2.3,0.1c-0.3,0.1,0.3,2.5-0.6,2.8c-1,0.4-2.1-1.5-2.9-1.5c-0.1,0.3,0.6,2,0.8,2.4c0.3,0.5,0.8,2.4,0.5,2.9c-0.4,0.9-1.3,1.5-0.7,2.4c0.6,0.9,0.6,1.8-0.4,2.4c-0.4,0.2-0.8,0-1.2,0.3c-1.3,1.1-2.2,2.7-4.2,1.5c-1.4-0.8-1.9-1.2-2.9-2.5c-0.7-0.8-0.6-1.3-1.6-0.6c-0.9,0.6-0.7,0.5-1,1.6c-0.2,1-1.3,2.1-1.8,0.7c-0.1-0.4-0.1-1.1-0.2-1.5l-0.1-1.5c0-0.3-0.9-0.3-1.2-0.4c-0.5-0.1-2.3-1.2-2,0c0.3,1.4-0.6,2.1-1.8,2.6c-1.2,0.5-1.4-0.5-2.3-0.5c-0.7,0-0.6,1.2-1.4,1.3c-0.9,0.2-0.4-2.6-2.1-2.8c-1.4-0.2-2-0.9-3.1-1.7c-0.8-0.6-3.5-1.3-4.5-0.7c-0.4,0.2-1.1,1-1.6,1.3c-0.1,0.1,0.6,1.2,0.5,1.9l-1.2,0.4c0.4,1.6,1.4,1.3,2.4,1.9c0.6,0.4,0.1,2.2,1.2,1.4c2.3-1.6,4.9,1,6.3,2.6c1.3,1.4-0.1,1.6,2.2,2.6c2.1,1-0.1,3.5,0.4,4.6c0.3,0.6,4.7,2.4,5.6,2.8c1,1.1,1.5,0.1,2.7,0.1c0.8,0,1.3,1,2.3,1c1.4-1.9,2-3.5,4.8-3.5c1.8,0,3.2,0.1,4.7-1.1c2-1.5,4.4-1.9,6.6-0.3c0.7,0.5,4.9,3.2,5.6,3.2l0,0l0,0l0,0c0-1.1-0.4-2.8,0.6-3.6c2.1-1.1,1.1-1.3,2.2-2.9c1.1-1.5,3.8,2.3,5.9,0.2c1.3-1.4,0.8-3.9,3.5-3.9c-0.2,0.8-2,3.6-2.7,4.2c-0.9,0.7-3.9,1.8-4.1,2.7c1.4,0.3,4.7-0.3,6.2-0.7c1.8-0.5,1-3,4.1-3.1c3.2-0.1,4.5,0.7,7,2.2c0.3,0.2,0.7-1.7,0.8-2.2c0.5-1.8,1.7-1.3,2.9-1.9c1.3,0.3,4.5-1,4.9,1.3c0.1,0.4-0.4,1.3,0.1,1.3c1.2,0.1,2.6-1.1,3.9-0.5c1.7,0.8,1.6,1.9,2.5,3.2c0.4,0.6,3,2.3,3.1,2.4c0.1,0,0,0,0.1,0c0,0.5-1.4-0.1-1.6-0.1c-0.9-0.4-3.3-1.8-4.2-1.5c-0.7,0.2-0.8,0.9-2,1.1c-1.8,0.3-1.3,2.5-0.6,3.6c1,1.6,1.8,3,0.6,4.9c-0.3,1-0.7,0.9-1.4,1.5c-0.1,0.1,1,1.2,1.2,1.4c0.9,1.4,0.4,3.3,2.9,3c1.3-0.2,2.7-0.7,3.9-0.8l0,0c0.7-2.8,2.6-4,4.6-5.8c0.7-0.6,1.1-1.1,1.6-1.9c0.4-0.5,0.6,1.1,0.6,1.3c0.1,0.9,0.2,2.1,1.1,2.7c1.5,1,2.4,1.6,4.2,1.2c1.6-0.3,2.5-2.4,4-2.1c1.3,0.3,2,2.6,3.5,2.4c1.1-0.1,6.5-1.6,6.8-2.4c0.4-1.4-0.4-3.6,0.2-5c0.9-2.3,3-4.5,4.1-7c0.9-2.1,1.3-1.2,2.5-0.2c1,0.9,2.5,3.4,4,3.4c2.4,1.3,3.4-0.1,5.1-1.6c1.1-1,7.3-3.3,7.9-0.9c0.1,0.6,0.2,4,0.8,4c0.2,0.6,2.9,0.1,3.4-0.1c1.3-0.4,1.7-1.1,1.5-2.5c0.4-1.6-0.5-4.1,0.7-5.4c0.9-1,3.4-1.8,4.7-2c4.2-0.6,6.6-1.5,4.5-6c-0.5-1.1,0.5-4.2,1-5.3l-1.4-1.3c0.1-0.1,0.2-0.3,0.2-0.5c0-1.1-0.3-2.1,0.1-3.2c0.7-1.7,1.1-1.9,2.4-3.3c0.9-1,1.4-2.6,1-3.9c-0.4-1.5-1.6-2.1-2.1-3.4C600.1,371.3,600,371,600,370.8z"/>
               <text transform="matrix(1 0 0 1 456.1309 325.3027)"><tspan x="0" y="0" class="texte">Morbihan</tspan></text>
                       </a></g>
                   <g><a xlink:href="Côtes-d*’Armor.html" target="myFrame" onmouseover="afficher_image('im2');" onmouseout="cacher_image('im2');">
                   <path id="03" title="COTES D_ARMOR"  d="M400.7,40c0.1-0.5-0.2-1-0.2-1.5c0-0.5,0-1.1-0.4-1.4c-0.4-0.4-1-0.3-1.4,0c-0.4,0.2-0.2,0.7-0.2,1c0.1,1.1-0.6,1.3-1.3,1.9c-0.5,0.4-0.4,1-0.3,1.5c0.2,0.9,0,1.6,1.1,1.6c0.8,0,2-1.5,2.5-2.1L400.7,40L400.7,40z M421.3,34.9c0.2,0,1.1-0.2,1.3-0.3c0.3-0.3,0.2-0.6,0.2-1c0-0.5,0.1-0.7,0.3-1.2c0.1-0.4-1.6-0.4-1.9-0.4c-0.7,0-1.1,0.3-1,1c0,0.3,0.2,0.5,0.2,0.8c0,0.4-0.5,1-0.7,1.4c-0.3,0.9,0.6,0.4,1,0.2L421.3,34.9L421.3,34.9z M431.6,46.7c0.8-1.4-1.4-4.3,1.2-4.9c0.9-0.2,3.7-2.1,3.8-0.2c0,0.4-1.8,1-1.6,2.1c0.1,0.7,0.2,1.2-0.1,1.9c-0.1,0.3-1.2,0.5-0.9,1.1c0.2,0.3,0.4,0.7,0.3,1.1c-0.1,0.2-0.5,0.3-0.7,0.3c-0.5,0-0.6,0.7-1,0.7c-0.5,0.1-1.1-0.7-1-1.2L431.6,46.7L431.6,46.7z M618.4,123.3L618.4,123.3c0.1,1,1.4,1.4,1.4,2.3c0.8,0.9,0.5,0.6,1.6,0.6c0.9,0,1.5,1.3,1.5,2.1c0,1.3-1.4,2.2-1.6,3.4c-0.1,0.8,0.5,1.4,0.3,2c-0.3,0.8-0.5,1.3-0.5,2.1c0.9,0.2,1.7-2.3,1.8-3c0.3-1.5,1.1-1.6,2-2.7c-0.3-0.3-1.2,0.3-1.4-0.5c-0.2-0.5,0.2-1.4,0.5-2.2l0,0c1.9-0.5,5-1,7-0.9c2.4,0.1,2.1,3.8,2.1,5.4c0,1.9,1.9,3.9,0.3,5.4c-2.7,2.7,1,3.3,1,5.3c0,2.7-3.4,2.4-4,4.2c-0.3,0.9,1.4,2.4,1.7,3.3c0.6,1.9-2.2,2.2-3.2,2.7c-2.1,0.9-2.5,2.9-2.1,5c1.4,1.8,2.7,1.6,2.3,4.4c-0.2,1.3-0.9,3.5,0.7,4.2c0.9,0.4,0.2,1.7-0.1,2.4c-0.6,1.3-1.6,2.5-1.6,4.1c-0.1,2.2,1.7,2.7,2.1,4.4c0.6,1.8,0.7,2.1-1.1,3.1c-0.9,0.5-4.5,0.5-4.8,0.9c1.6,2.1,2.4,5.4,1.4,8c-0.4,1.1-1.3,1.8-0.9,3.1c0.6,1.7-1.2,1.3-2,0.5c-1.4-1.4-3,0.6-4.3,1c-0.9,1.3-1,4.3-3.5,3.7c-1.5-0.4-4.1-1.5-5.3-2.6c-0.3-0.3-1.7-2.2-2-2.2c-0.5,0-3.1,1.7-3.7,2.1c-0.7,0.4-0.2,1.6-0.6,2.4c-1.4,2.8-6.8,1-5.7,3.6c2.6,6-1,3-4.3,2.4c-2.3-0.5-2.9-0.7-5.1,0c-2.2,2.1-4.7,3.3-5,6.6c-0.1,1.6,0.2,7.8-2.1,7.4c-1.2-0.2-3-2-4-0.4c-0.9,1.5-0.4,5.2-0.5,7c-0.1,2.2,0.2,3.2-1.4,4.9c-0.6,0.7-3.1,2-3.1,2.9c0,0.8,1,1.6,0.4,2.5c-0.3,0.5-2.7-0.9-3.1-1.2c-1.4-1.2-2.5,0.7-3.7,1.3l-0.1,2.6l0,0c-2.2,1.3-3.6-0.3-5.5,0.5c-2.2,0.9-1.6,4.2-4.6,2.5c-1.4-0.8-1.8,0.3-2.4,1.5c-1.1,2-1.6,2.4-2.9,0.3c-0.6-1-1.6-2.9-1.7-4.2c0-1,0.3-3.1-0.7-3.5c-0.8-0.4-1.8-0.7-2.5-1.3c-0.9-0.8-1.3-1.8-1.7-2.9c-0.5-1.7-3.4-3.6-5.1-3.6c-3.1,0-4,1.4-6.3,2.9c-1.6,1.1-2.4-0.1-3.9,0.3c-0.8,0.2-1.5,1.1-2.2,1.5c-1.5,0.9-4.7,0.2-6.6,0.2l0,0.1c0.7,0.2,2,3.1,2.7,3.8c2.5,7.6-7.4,9.5-6,16.5c0.5,2.5-1.2,2.6-3.4,2.8c-1.2,0.1-1.4,0.8-2.3,1.3c-0.7,0.7-1.1,1.5-1.8,2.2c-0.8,0.8-2,1.4-2.8,2.2c-1.1,1.1-3.4,3.1-5,3l-3.4-0.1c-0.6,0-1.3-2.2-1.5-2.8c-0.4-0.1-0.8-0.5-1.2-0.7c-0.1-0.2-0.2-0.7,0.1-0.8c0-0.4,0.1-0.4-0.1-0.8c0-1.7-0.8-2.9,0.2-4.5c0.8-1.4,1.4-2.9,1.7-4.5c0.7-3.3,0.8-5.5,0.1-8.8c-0.6-2.8-0.2-3.3-2.9-2.2l-3.2,1.3c-1.3,0.5-1.8,2.5-3,3.1c-1.4,0.7-2.8,0.3-4.2,0c-2-0.4-2.6,0.8-4.1,1.5c-0.6,0.7-1.2,1.6-1.4,2.5c-0.2,0.7-0.3,1.1-0.8,1.5c-0.8,0.6-1.3,1.5-2.3,1.5c0-0.1,0-0.1-0.1-0.1c0-0.1,0-0.1-0.1-0.1c0-0.7,0.1-1.3,0.1-2c0-0.7-0.1-1.3-0.2-1.9c-0.5-0.1-1-1.7-1-2.2c-0.3-1.4-0.3-3.8-1.6-4.7c-1.4-1-2.4-4.2-4.2-4.2c-1.7,0-3.1,1-4.7,1.1c-0.8,0-1.3-0.2-2.2-0.3c-2.6,0-5.1-2.7-6.2-4.9c-1.1-2.2-3.9-1.4-6.2-2.2c-2.3-0.7-3.3-0.7-5.7-0.5c-2.2,0.2-5.1,1.9-7.1,2.9l-2.2-0.5c1.3-1,2.5-1.8,0.9-2.3c-2.6-0.8-3.6,0.1-3.7-3.4c-0.2-3.9-3.6-4.5-6.7-6.1c-3.8-2-6.8,1.5-10.1,0.1c-0.4-0.2-0.8-0.3-1.3-0.5l-1.4,1.8c-0.3,0.3-0.6,0.6-0.9,0.8c-0.3,0.2-0.5,0.5-0.7,0.8c-0.4,0.6-0.7,1.3-1,1.9c-0.4,1.5,0.1,2.6,1.3,3.4c-0.1,0.6-3.4,3.6-4,3.6l-5.3,0.2c-1.4,0-2.3-0.6-3.5,0c-1.7,0.8-2.2,2.6-3,4.2c-0.4,0-1.7-1.1-2.2-1.3c-1-0.5-2.6,0-3.6,0.4c-2.8,1.1-4.2,1.2-7.2,0.6c-0.9-0.4-1.1-1.7-1.8-1.9c-0.6-0.1-2.7-0.6-3.2-0.4c-0.5,0.2-1.3,0.6-1.8,0.6c-0.4-1.5-1.4-3.3-2.6-4.3c-0.3-0.3-5,1.3-5.9,1.6c-3.1,0.8-8.3,6.3-11,3.4c-0.5-1.2-2-1.5-1.4-3c0.4-0.9,1.4-1.7,1.9-2.6c1-1.6-1.2-2.6-2.5-3.3c-1.6-1-1.1,0.8-2.7,1.2c-2,0.5-3.8-0.5-5.3-1.8c-1.1-0.9-6.4,1.5-8.3,1.7l-8-0.3l0,0c0.6-1.1,1.1-2,2-2.7c0.5-0.4,2.1-0.9,2.7-0.9c1.3,0,4.5,0.8,4.3-1.2c0-3.3-3.4-1.7-4.5-4.3c-0.8-1.9-2.7-5.8-0.5-7.2c1.7-1.1,2.6-2.7,2.6-4.7c0-1.3,0.4-1.7,0.6-2.8c0.3-0.4,2.4-3.4,1.2-3.7c-1.7-0.3-2.2-1.3-3.5-2.3c-0.6-0.5-1.9-1-1.2-1.7c0.7-0.8,2.3-1.3,2.8-2.2c0.3-0.6,0.4-1.2,0.8-1.8c0.3-0.4,1.3-1.6,1.3-2.1c-1.5,0-3.4,1.5-4.8,1c-1-0.4-0.4-3.3-0.5-4.2c0-1.1-0.5-2-1.2-2.8c-0.8-0.7-0.4-1.7-0.2-2.6c0.2-1.2,2.2-6.2,1-6.8c-1.3-0.6-3.3-0.4-4.8-1.1l-4.7-1.7c3-3.3-1.6-8.8,3.6-11.3c1.9-0.9,3.5-2,5.5-2.8l-2.7-3c-0.4-1.1-1.8-2.1-2.7-2.7c-1.1-0.8-1.2-1.1-1.9-2.2c-1.1-1.5-1.7-4.1-0.7-5.8c2.5-4.1,6.1-7.6,9.5-11c1.7-1.2-0.3-2.5-1.4-3c-1.3-0.6-1.9-1.8-3-2.5c-0.8-0.5-1.8-0.2-2.5-0.6c-2.7-1.2,2.3-8.5-1.6-8.4l-4,0.1c-3.4,0.1-4.6-3.2-4.6-6.1c0,0,0,0-0.1-0.1c-0.6,0-1.5-0.7-1.6-1.3c-0.9-2.1-1.2-4-1.2-6.3c-0.1-1.9-1.1-3.9-0.1-5.6l2.9-4.1l0,0c1.2,0,1.7-3.1,3.9-2.6c0.9,0.2,1.3,3.2,2.1,4.2c0.6,0.2,1.2,0.5,1.8,0.6c0.7,0.1,1.5-0.4,2.5-0.2c1.5,0.3,2.8-4.1,3.5-5.1c-0.9,0-1.5-0.1-2.4-0.3c-1.6-0.3,0.1-2.2,0.1-3.5c0-1.5-0.8-3.4-0.4-4.8c0.5-0.4,0.6-0.8,1.3-1.1c1.5-0.6,4.1-1.2,4.1-3.4c0-2.4-0.1-3.3-1.1-5.5c-0.5-1.1-1.6-0.9-2.6-0.7c-2.6,0.5,0.2-1.8-2.3-2.4c-1.2-0.3-0.2-0.9,0.1-1.5c0.3-0.9,0.5-2.5,0.5-3.5c-0.5-2.7-0.5-1.4-2-1.3c-1.5,0.1-1.1-1.3-1.7-2.3c-1.2-2.3,0.5-1.2,1.6-1.3c1.1-0.1,2.2-1.1,3.3-1.4c0.7-0.2,1.5,0.6,2.2,0.8c1.6,0.3-1.3-1.3,1.3-1.6c1.2-0.2,2.8-0.7,2.2-2c-1.1-2.2,2.3-0.5,2.6-2.5c0.1-0.8,1-0.3,1.6-0.5c0.6-0.2,0.7-1.5,1-1.6l0-0.1c1.8,0,1.5-1.5,3.2-0.2c1.2,1,3-0.1,4.2,0.1c0.7,3.5,2.2,5.7,6,5.3c0.7,0,3.2-0.4,2.3,1c-1.3,2-1.9,4.3,1.7,4.4c1.1,0,4.9,0,5.5-0.8c0.9-1.2-1-3.3,1.1-3.4c2-0.1,7.1-2.8,8.9-4.1c2.4-1.7,2.9-2.1,5.9-1.4c1,0.1,2,1.4,2.4,1c0.7-0.7,0.7-1.8,1.5-2.3c2.2-1.6,1.9,3.9,3.6,1.5l5.4-7.8c0.6-0.8,0.9-1.3,1.8-1.3c1.5,0,2.9,3.7,2.8,5c-0.1,1.1-2,3.8-0.2,3.4c2.2-0.4,1.3,4.6,0.7,5.8c-0.6,1.2-3.4,4.3-3.4,5.4c2,0,4.3-5.9,5-7.2c0.9-1.5,1-3.5,2.1-4.9c0.5-0.6,1.2-0.3,1.8-0.3c0.8,0,1.2-1.5,1.6-2.1c1.7-1,2.3-0.8,4.1-1.3c1.9-0.5,1.7-0.4,2.9-1.9c1.1-1.4,2.5-0.8,3.9-1.1c1-0.2,2.2-1.2,3.1-1.2c0,1.3,0.4,0.7,1.6,1c0.5,0.1,1,1.1,1,1.5c0,0.1-3.5-0.6-2,0.9c0.7,0.7,1,2,1,2.9c0,1.2-2.9,3.4-0.7,3.9c0.6,0.1,1.9-0.1,1.5,0.8l-1.5,2.8c0-0.1,0-0.1,0.1-0.1l-1.4,3.6c-1,2.5-0.5,5.1-2.8,6.7c-0.8,0.6-2.4,0.9-2.2,2.1c0.2,1.1-0.1,2-0.1,3l3.2-1c0.4-0.1,2-5.5,2-6.2c0-3.5,2-8,5.6-8.9c0.4-0.1,1.5-0.7,1.5,0c0,1.8,1,1.9,2.3,0.6c0.7-0.7,5.8-0.7,5.6-0.2c-0.2,1.2-1.6,3.1,0.3,3.9c3.8,1.6-1.1,1.5-1.8,2.8c-0.8,1.4-1.9,0.6-1.7,2.5c0,0.8,1.8,1,2.5,1c0,0.3-2,0.5-2.3,1.5c-0.2,0.5,2.3,2.3,2.8,2.4c0.7,0.2,1.4-0.3,2.1-0.1c0.7,0.2,1.5,1.1,2.2,1.2c0.7-0.2,1.4,0.2,2.2,0.2c0.7,0,2.8-0.2,3.3-0.5c0.7-0.4,1-1.1,1.7-1.5c0.1-0.1,1,2,1.4,2.4c0.5,0.6,2,1.2,2.8,1.4c-0.3,1.1-2.9,1.8-1.8,3.3c0.6,0.8,1.2,1.9,0.5,2.9c-0.4,0.5-1.8,0.9-1.8,1.4c0,0.2,0.4,1.2,0.5,1.5c0.6,1.7,2.8-1.7,2.8,2c0.6,1.5,1.9,2.3,3,3.4c1.2,1.2,2.8,0.6,4.2,0.6c0.5,0,0.4,2.2,0.5,2.7c0.6,2,0.1,3.9,2.5,4.7c1.4,0.5,2.7-1.1,3.1-0.6c1,1.4,3.1,2.3,3.1,3.9c0,1.1,1.1,0.4,1.7,0.8c0.6,0.4,0.7,1.7,0.8,2.4l0.8,6.3c0.2,1.5,1.2,2.7,0.9,4.3c-0.2,0.9-0.7,1.8-0.8,2.8c0,0.2,3.7,2.9,4.2,3.1c0.9,0.3,3.7-0.1,3.7,1.1c1.2,3,2.2,3.6,5.5,4.9l5.5,2.1c0.5,0.2-0.8,1.7-0.7,2.6c0.1,0.9,0.2,1.4,0.2,2.3c0,1.4,2.4,0.5,1.4,1.9c-1.1,1.4,0.4,2.3,1.3,3.3c0.1,0.7,3.6,6.8,4.2,7.1c1.8,1,1.5,0,0.3-0.9c-1.1-0.7-0.4-1.3,0.2-1.9c1.7-1.8,1-3,0.3-5.2c-0.3-1.2-1.3-2.6,0.1-3.2c3.2-1.3,1.5,0.4,3.7,2c1,0.7,3.8-0.2,5.3,0.2c-0.5-2.1-0.2-3.3,1.5-4.8c1.9-1.8,2.8-1.6,4.2-4.1c0.9-1,4.8-4,5-5.2c0.2-1.8,2-2.1,2.9-3.5c0.5-0.8-0.1-2.5,1.4-2.2c4.4,1,10.7-3.5,14-6.2c2.3-1.7,2.3-3-0.5-3.7c-0.5-0.1-3.6-1.6-2.2-2.5c0.6-0.4,4.5-1.3,5.4-1.4c5.1-0.9,7.2,0.1,7.2,5c1,0-0.2-2.1,1.3-2.5l3.2-0.8c1.5-0.4,2.2-2.6,4.4-3.2c2.5-0.7,4.5-1.6,6.6-3.2c1.4-0.9,1.4-1.4,0.9-3c-0.3-1.2,1.5-1.6,1.8-2.5c0.3,0.1,1.4,1.4,1.5,1.7c0.3,1.7-1.1,2.5,1.4,3.2c0.7,0.2,1.3,0.3,2,0.3c1.3,0,2.1-0.2,1.1,1.1c-1,1.3-2.6,3-3.3,4.5c-0.8,1.6-0.5,3.3-2.1,4.4c-1.5,0.9-2.9,2-4,3.4c0.4,0.4,2.1-0.2,2.6,0.7c0.3,0.4,0.9,2.5,1.9,1.6c0.4-0.3,2.2-3.6,2.3-4.1h0.1c0.4,1.5,1.5,1.1,2.2,0.2c0.4-0.5,0-1.4,0.6-2.2c1.3-1.8,5.1-3.4,7.3-3.4c0.3,1.1-2.4,2.3-1,3.8c0.3,0.3,1.4,1.2,1.5,1.5c0.3,0.8-0.5,1.6-0.2,2.5c0.4,1.4,1.9,0.8,2.8,1.3c1.1,0.7-0.2,3.4,1.6,4.6c0.8,0.6,1.1,2.1,1.2,3c0,0.4,0.8,2.2,1,1.6c0.5-1.1,2.5-2.9,2.6-4c0.1-1.5-0.5-3-0.5-4.4c2.8,2.1,1.6,2.4,2,5.3c0.1,0.5,0.4,4.6,1.6,3.9c0.8-0.5,3.2-2.5,3.5-3.4c0.1-0.4-3.6-2.4-2.5-3.1c1-0.7,0.6-2.6,2.1-3c1.9-0.5,3,0.2,4.7,0.7c0.2,0.1,0.5-0.1,0.8-0.2l0,0c0,2.8,1.1,5.1,3.4,6.5c3,1.7,3.3,4.3,7.5,4.5c1,0.1,3.3-0.2,3.8,1c1.1,2.5-0.7,3.1,1.5,5.3c0.1,0.1,0.6,0.8,0.7,0.7c0.1,0,1.1-2.4,1.5-2.9c0.9-1,3.1-1.9,3.6-2.6L618.4,123.3z"/>
               <text transform="matrix(1 0 0 1 435.1836 181.8062)"><tspan x="0" y="0" class="texte">Côtes-d*’Armor</tspan></text>
                       </a></g>
                   <g><a xlink:href="Ille-et-Vilaine.html" target="myFrame" onmouseover="afficher_image('im2');" onmouseout="cacher_image('im2');"> 
                   <path id="04" title="ILLE ET VILAINE"           d="M618.4,123.3l-2.7-0.8c-0.5,0.7-2.7,1.5-3.6,2.6c-0.4,0.5-1.5,2.9-1.5,2.9c0,0.1-0.6-0.6-0.7-0.7c-2.1-2.2-0.4-2.8-1.5-5.3c-0.5-1.2-2.8-0.9-3.8-1c-4.2-0.2-4.6-2.8-7.5-4.5c-2.3-1.3-3.4-3.7-3.4-6.5l0,0c0.4-0.3,0.7-0.8,0.4-0.9l-4.3-1.2c-0.1,0,0.9-0.9,1.3-1.2c0.9-0.6-0.4-1.3-0.4-2.1c0-0.4,2.8-2.7,3.3-3c2.3-1.6,1.8-0.6,3.9,0.3c1.7,0.5,1.7,1,3.6,0.5c2.7-0.7,4.7-2,5.8,1.2c0.5,1.4,2.3,1.2,3.5,1.5c2.1,0.5,0.1,4,1.2,5.2c0.5,0.5,1.9-0.1,1.6,1.2c-0.3,1.3,0.1,2,0.7,3.2c0.7,1,1.3,0.5,2.3,0.8c0.7,0.3,0.9,0.7,1.4,1.2c0.4,0.4,1.3,0.9,0.6,1.1c-0.4,0.1-2.9,1-2.8,1.4c0.1,0.3,0.6,0.4,0.6,0.8c0.2,1.1,0,0.8,1.1,1C618.3,121.2,618.4,122.6,618.4,123.3L618.4,123.3L618.4,123.3z M624,127.5L624,127.5c1.9-0.5,5-1,7-0.9c2.4,0.1,2.1,3.8,2.1,5.4c0,1.9,1.9,3.9,0.3,5.4c-2.7,2.7,1,3.3,1,5.3c0,2.7-3.4,2.4-4,4.2c-0.3,0.9,1.4,2.4,1.7,3.3c0.6,1.9-2.2,2.2-3.2,2.7c-2.1,0.9-2.5,2.9-2.1,5c1.4,1.8,2.7,1.6,2.3,4.4c-0.2,1.3-0.9,3.5,0.7,4.2c0.9,0.4,0.2,1.7-0.1,2.4c-0.6,1.3-1.6,2.5-1.6,4.1c-0.1,2.2,1.7,2.7,2.1,4.4c0.6,1.8,0.7,2.1-1.1,3.1c-0.9,0.5-4.5,0.5-4.8,0.9c1.6,2.1,2.4,5.4,1.4,8c-0.4,1.1-1.3,1.8-0.9,3.1c0.6,1.7-1.2,1.3-2,0.5c-1.4-1.4-3,0.6-4.3,1c-0.9,1.3-1,4.3-3.5,3.7c-1.5-0.4-4.1-1.5-5.3-2.6c-0.3-0.3-1.7-2.2-2-2.2c-0.5,0-3.1,1.7-3.7,2.1c-0.7,0.4-0.2,1.6-0.6,2.4c-1.4,2.8-6.8,1-5.7,3.6c2.6,6-1,3-4.3,2.4c-2.3-0.5-2.9-0.7-5.1,0c-2.2,2.1-4.7,3.3-5,6.6c-0.1,1.6,0.2,7.8-2.1,7.4c-1.2-0.2-3-2-4-0.4c-0.9,1.5-0.4,5.2-0.5,7c-0.1,2.2,0.2,3.2-1.4,4.9c-0.6,0.7-3.1,2-3.1,2.9c0,0.8,1,1.6,0.4,2.5c-0.3,0.5-2.7-0.9-3.1-1.2c-1.4-1.2-2.5,0.7-3.7,1.3l-0.1,2.6l0,0c0.6,0.9,1,1.9,1.5,2.8c0.7,1.3,2.3,2.2,3,3.5c0.6,1.1,0.7,3.3,0.6,4.5c0.4,2,0.1,3.7-0.4,5.6c-0.9,2.9,0.5,2,2.5,2.7c1,0.4,2.7-2.5,3.7-3.4c1-0.8,7.9-2,9-1.5c2,0.8,0.8,4.7-0.4,5.8c-1.6,1.5-4.1,2.1-6.3,2.1c-3.5,0.1-5.2-0.8-7.7,1.9c-1.5,1.6-5.1,4.5-5.1,7c-0.6,1.1-0.7,3.2-0.9,4.4c-0.9,4.9,4,0.6,6,0.2c1.9-0.4,2.7,0.2,4.4,0.8c1.6,0.6,3.9,1.2,5.6,1.6c0.7,0.6,2.1,1,2.9,1.5c0.8,0.5,1.2,1.3,2.1,1.7c1.3,0.6,2.7,0.6,4,1.3c2.2,1.2,4.8,2.3,6.7,3.9c2.1,1.8,2.7,4.5,3.7,6.9c0.3,1.6,2,2.3,2,3.9c0,1.2-1.5,2.4-2.3,3.3c-0.5,0.6-1.2,2.1-1.7,2.4c-1.6,1-2.3,2.8-1,4.4c1.4,1.5,2,2.7,1.8,4.9c-0.3,0.9-1.7,2.8-1,3.7c0.8,1.1,1.1,2.5,2.6,1.6c2.6-1.6,5.6-3.6,6.6-6.7h0.1l0.5,5.4c0.2,2.2,1,3,3.1,3.6c0,2.4-1.5,5.1-4.1,5.6c-0.8,0.2-2.6,0.1-2.1,1.3c0.3,0.7,0,2.9-0.4,3.5c-0.8,1.5-1.7,3.3-3.6,3.8c-1.3,0.4-2.8-0.4-3.6,1c-0.5,0.9-0.7,1.7-1.4,2.5c-1.9,2.5,6.1,0.2,6.5,3.6c1.1,0.6,1.8,0.7,3.1,0.7c0,0,0.1,0.1,0.1,0.1c0.2,1,1,1.8,1,2.9c0,1.2-5.6,0.7-6.5,1c-1.2,0.3-1.4,0.3-2.3,1.1c-0.7,0.6-2.4,2.1-3.2,2.4c0,0,0,0,0.1,0c-1.7,1.7,1.1,2.7,1.1,4.4c0,1.4-0.9,2.7-0.9,4.2c0,2.5,3.4,2.3,4,4.3c0.5,2.1-1.4,4.2-1.6,6.4c0,0.8,0,1.6,0.2,2.4c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.3,0.4,0.8,0.7,1l1.3,1l0,0c0.1-1.6,1.9-3.5,3.3-4.6l3.3,0.5c3.6-0.8,0.3-4.7,4.7-4.9c2.5-0.1,4.3,1.3,6-1.1l3.2-4.5c2-2.8,2.4-1.8,3,0.8l0,2.5c0.4,0.2,0.8,0.5,1.2,0.7c1.4,0.8,2.7-1.7,3-2.1c1.3-1.6,2.2-2.2,4.2-2.9c3.9-1.2,7.6,0,10.1-3.5c1.5-2.1,4,0.2,5.9-0.6c0.3-0.1,0.4-0.3,0.5-0.6l2.4,0.7c2.2,0.6,4.5,1.6,6.7,1.9c2.5,0.4,3.5-0.1,5.4-1.5c1-0.8,2.1-0.5,3,0.2c3.8,4.8,7.5-4.5,11.1-2.6c4.9,2.4,3.4-2.5,7.9-2.5c0-2-0.3-4.2,0.2-6.1c0.3-1.2,1.7-4.4,2.8-4.7c1.1-0.3,2.3,0,3.5-0.4c1.7-0.8,0.1-2.8,1.7-3.5c1.5-0.7,3.4,0,4.7-0.8c1-0.7,1.7-1.1,2.9-1c1.2,0.1,3.7-0.1,4.5-1c0.6-0.6,3.8-3.5,4.4-3.5c1,0,1.6,0.4,2.7,0.3c1.7-0.3,5.5-1.4,3.9-4.1c-0.7-1.2-3.2-4-3.2-5.3l0,0c0.1,0,0,0,0.1,0c4.9,0,9.7,1.3,14.5,1.9c1.6,0.2,3,0.7,4,1.9c1.4,1.5,0.3,3.4,2.7,3.9c0.8,0.2,0.7,1.6,0.8,2.2l0.8,0.3c5.5,1,10.9,2.5,16,4.5c1.4,0.6,3.1,0.1,4.3,0.6c1.5,0.6,1.2-2.6,1.3-3.5c0.2-0.7,1-2.2,0.6-2.9c-0.2-0.3-0.8-1.5-0.7-1.8c0-0.4,2.4-2.9,2.8-3c1.2-0.2,1.5-1.2,1.5-2.3c0-1.5,0.4-3,0.3-4.5c-0.1-0.6-1.1-1.5-1-1.8c0.1-1.3,4-1.3,4.2-2.3c0.5-0.9,2.4-1.5,1.6-2.7c-0.5-0.8-1.2-1.7-1.2-2.6c-0.1-2.3,2.9-2.9,3.8-4.9c0.6-1.4-0.1-2.8,0.7-4.2c0.8-1.4,2.6-3.9,1.3-5.4c-0.7-0.8,1.5-0.7,0.8-2.1c0-2.5,0.2-4.2,1.6-6.1c1.4-1.9,3.1,0.3,4.4-2.6c0.5-1.1,1-2.8,2.3-3.2c1.5-0.4,3.7,0,5.2,0.3c2.6,0.5,4.9,1.4,7.5,0.1c2.6-1.3,6-2.5,5.3-5.7c0-1.7-0.4-2.6-1.2-4c-0.8-1.3-1.6-2-0.8-3.7c0.5-1.2,0.2-1.4-0.1-2.6c-0.3-1.1,0-2.3,0.3-3.4c0.4-1.5,1.2-2.6,0.8-4.3c-0.5-2.2-3.7-2.2-4.6-4.4c0-1.9-0.7-3.9-1-5.8c-0.3-1.8-1.1-3.5-1.1-5.3l-0.1-3.2c0-1.7-0.3-2.1-1.1-3.4l-1.5-0.8l-0.4-4.4l-0.1-2c0-0.9-0.2-1.6-0.2-2.5c0-1,0.4-2.1,0.3-3.1c-0.3-2.1-0.3-4.1-1.4-6.1c-0.2-2.8-2.5-4.9-2.5-8.1c0-2.9,1-4.1,1.5-6.8c0.5-2.2,1.1-2.3,2.1-4.1c0.9-1.7,3.3-3,4.5-4.6c0.4-1.2,1.3-2.6,1.6-3.7c0.2-0.8-1.4-2.3-1.8-3.1c-0.6-1.3,0.2-6.6-1.2-7.1c0-0.8,0.7-2.3,1.2-3c0.9-1.3-0.6-1.9-0.2-3c-0.6-1.7-1.3-2.8-2.5-4.2c-0.7-0.8-2-2.4-1.4-3.5c0.3-0.6-0.2-2.2-0.3-2.9c-0.3-1.3-0.8-2.2,0.2-3.4c0.2-0.3,1.2-0.8,1.2-1.1c0.1,0,0.8-0.6,0.8-0.7c0.5-0.1,0.8-2.5,0.8-3c0.3-1,0-1.5-0.1-2.4c-1-0.7-2.2-1.8-2.3-3.1c-0.2-1.4-0.1-3.4,0.2-4.7c0.2-1.1,0.5-1.7,0.5-3l0,0c-2.7-1.3-5.7,0-7.6-2.5c-2.2-2.9-5.7,2.1-7.5-0.5c-0.2,0-0.2-0.2-0.3-0.3c-0.7-0.4-1.6-1.7-2.3-2.2c-0.9-0.7-2.5,0.1-3.6,0.1c-3.1-0.2-2-3.6-5.9-2.5c-2.4,0.7-3.7-1.2-5.8-0.7c-3,0.6-3.2,3.1-3.4,5.7c-0.8,1.3-1,3.7-2.9,3.7c-1.7,0-2.6,1.8-4.3,2.4c-0.8,0.2-2.8-0.2-3.2,0.5c-1.1,2,0.8,2.5-1.9,3.6c-2.3,0.9-1.5,2.7-3.4,4c-3.1,2.3-3.4,2.5-7.1,2.1c-1.6-0.6-5.8-0.1-6.6-1.4c-1.1-1.8-0.9-4.1-2.9-5.3c-1.6-1-2.9,0.3-4.4-0.2c-0.9-0.3-1.6-0.9-2.4-1.1c-1.2-0.4-1.4-0.2-1.5-1.8c0-0.9-0.2-2.3-0.5-3.1c-0.4-1.1-1.3-1.5-1.6-2.8c-0.6-1.5-2.3-2.3-2.9-3.7c-0.4-1.1-0.2-2.9-1-3.7c-0.5-0.5-1.2-1.1-1.5-1.8c-0.4-1.3,1.3-1.8,1.7-2.7c0.5-0.9-0.6-3-1.3-3.7c-0.6-0.5-1.3-0.7-1.9-1.1l0.1-0.3c0-2.6,1.1-3.7-0.7-5.8c-1-1.3-3.7-1.8-4.2-3.3l-0.6-2.5l0,0c-2.9,0.6-5.9,1.5-8.4,2.4c-2.6,0.3-5.1,1.4-7.7,1.7l-7.9,0.8c-3.6,0.4-8.9,1-12.4-0.1c-4.4,0-9.3-0.6-12.9-3c-3.1-2.1-3.8-3.8-5.3-7c0-1.8,0.2-2.4,0.7-4c0.5-1.4-0.4-1.9,1.4-2.4c1-0.3,1.5-0.9,2-1.8c0.7-1.3,2.1-0.7,1.4-1.9c-0.8-1.3-1.2-1.9-1.5-3.5c-0.4-1.9,0.4-2.7,0.4-4.4c-0.6,0.1-1.4,1.7-1.8,2.1c-0.7,0.6-2.3,0.4-3.4,1.2c-0.7,0.5-1.7,0.1-2.5,0.3c-1.5,0.5-2.3,1.8-3.5,2.2c-1.6,0.5-1.9-1.1-2.8-1.3c-0.6-0.2-1.8,0.2-2.2-0.2c-1.3-1.2-0.1-1.4-1.2,0.2c-0.8,1.2-2.6,0.5-3.8,0.8c0,1.1,0.6,2.2,1.7,2.2c-0.9,0.2-2,1.1-2.6,0c-0.6-1.2-2,0-2.7,0.4c-1,0.4-1.4,0-2.3,0c0,1.9,1.6,2.4,0.2,4.6c-1.1,1.7-3.4,3.1-5.4,3.4c-1.9,0.3-2.3-0.3-2.3,1.8c0,0.4,0.1,2.8,0.2,2.9c0.6,0.4,1.3,0.2,1.9,0.5c1.8,0.8,0.7,3.4,0.7,4.7c0,1.5,1.3,0.8,2,0.8c0.3,1-2.3,4.8,0.3,3.5c1.6-0.8,0.4,4.9,2.3,2.1c1-1.5,2.3-0.3,3.1,0.7c1.1,1.3,1.4,0,2.1,0c0,0.5,0.3,1.8-0.5,2c0,0.4,1.8,0.9,1.8,1.4c0,0.4-1.7,0.1-2-0.1c-0.6-0.7-2-3.1-3.2-2.1c-0.7,0.5,0.6,2.7,0.9,3.2c0.2,0.6,1.2,1,1.5,1.9c0.2,0.7,0,1-0.3,1.6c-0.5,1-0.9,2.3,0.8,2.3C625.4,124.5,624.7,126,624,127.5z"/>
               <text transform="matrix(1 0 0 1 659.2148 237.6665)"><tspan x="0" y="0" class="texte">Ille-et-Vilaine</tspan></text>
                       </a></g>
     
                     <text font-size="100" x="0" y="35" display="none" style="font-size:15px;font-weight:bold;fill: #bbef0d;font-family:Verdana">
    Finistère
           <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="0" y="35" display="none" style="font-size:15px;font-weight:bold;fill: #bbef0d;font-family:Verdana">
    Morbihan
           <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>2          
                     <text font-size="100" x="0" y="35" display="none" style="font-size:15px;font-weight:bold;fill: #bbef0d;font-family:Verdana">
    Côtes-d*’Armor
           <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="0" y="35" display="none" style="font-size:15px;font-weight:bold;fill: #bbef0d;font-family:Verdana">
    Ille-et-Vilaine
           <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>
     
        </svg>
                  </div></div>
     
     
            <!--Afficher nom tooltip-->                    <script src='../../../js/2.1.3_jquery.min.js'></script>
         <!--Afficher nom tooltip-->                    <script src="../../../js/index_tootip.js"></script>
     
     
     
     
    <script>
    afficher_image=function(id) {
            document.getElementById(id).style.display="block";
    };
    cacher_image=function(id) {
            document.getElementById(id).style.display="none";
    };
         
    </script>
     
    <img class="img_info" src="../Drapeaux/xxxxxxx.gif" width="60" height="40" id="im1" style="display:none;">
    <img class="img_info" src="../Drapeaux/xxxxxxx.gif" width="60" height="40" id="im2" style="display:none;">
    <img class="img_info" src="../Drapeaux/xxxxxxx.gif" width="60" height="40" id="im3" style="display:none;">        
    <img class="img_info" src="../Drapeaux/xxxxxxx.gif" width="60" height="40" id="im4" style="display:none;">        
     
        </body>
     
    </html>

  18. #18
    Modérateur
    Avatar de ProgElecT
    Homme Profil pro
    Retraité
    Inscrit en
    Décembre 2004
    Messages
    6 077
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 68
    Localisation : France, Haute Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Retraité
    Secteur : Communication - Médias

    Informations forums :
    Inscription : Décembre 2004
    Messages : 6 077
    Points : 17 171
    Points
    17 171
    Par défaut
    Oui on peut le constater, le code de jreaux62 fonctionne correctement.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
        for(var h = 0; h < pathList.length; h++){
    	//console.log("pathList[h].getAttribute('title')  =  " + pathList[h].getAttribute('title'));
          pathList[h].setAttribute('title', toCapitalCase( pathList[h].getAttribute('title') ) );  
    	 console.log("pathList[h].getAttribute('title')  =  " + pathList[h].getAttribute('title'));
        }
    c'est l’événement mousmove qui n'est pas déclenché sur les paths.
    Soyez sympa, pensez -y
    Balises[CODE]...[/CODE]
    Balises[CODE=NomDuLangage]...[/CODE] quand vous mettez du code d'un autre langage que celui du forum ou vous postez.
    Balises[C]...[/C] code intégré dans une phrase.
    Balises[C=NomDuLangage]...[/C] code intégré dans une phrase quand vous mettez du code d'un autre langage que celui du forum ou vous postez.
    Le bouton en fin de discussion, quand vous avez obtenu l'aide attendue.
    ......... et pourquoi pas, pour remercier, un pour celui/ceux qui vous ont dépannés.
    👉 → → Ma page perso sur DVP ← ← 👈

  19. #19
    Expert confirmé Avatar de psychadelic
    Profil pro
    Inscrit en
    Mai 2010
    Messages
    2 529
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2010
    Messages : 2 529
    Points : 4 740
    Points
    4 740
    Par défaut
    ligne 244 => chargement de la bibliothèque jQuery
    ligne 245 => utilisation de "index_tootip.js"

    elle ne servirait pas par hasard à afficher tes attributs title ??
    auquel cas tu es en train de mener jreaux62 en bateau ...
    «La pluralité des voix n'est pas une preuve, pour les vérités malaisées à découvrir, tant il est bien plus vraisemblable qu'un homme seul les ait rencontrées que tout un peuple.» [ René Descartes ] - Discours de la méthode

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

    Informations forums :
    Inscription : Octobre 2011
    Messages : 2 873
    Points : 3 717
    Points
    3 717
    Par défaut
    Citation Envoyé par apdf1 Voir le message
    Voila un code complet.
    Il n'est pas complet il manque les codes JS mais bon comme j'ai suivi l'autre fil j'ai pu voir ce qu'on peut faire...

    En fait étant donné qu'il y a peu de noms de régions je n'ai pas intégré les codes JS que jreaux62 et ProgElecT t'ont donnés (ça pourrait servir pour les autres cartes...) ---> j'ai juste modifiè directement le html (les attributs "title")...

    Voilà ton html légèrement modifié :

    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
    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
     
    <!DOCTYPE html>
    <html lang="fr">
     
    <head>
       <meta charset="UTF-8">
       <title>Bretagne</title>
     
       <!-- Carte-->
       <meta name="viewport" content="width=device-width, initial-scale=1">
     
       <style>
          body {
             background: #000
          }
     
          .map__image {
             /* Carte*/
             position: absolute;
             top: 90px;
             left: -90px;
             right: 0px;
             bottom: 0;
             border: 0px solid red;
             width: 860px;
             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: 18px;
          }
     
          /*Fin texte couleur blanc au passage de la souris*/
     
          .texte {
             visibility: hidden;
          }
     
          /* Fin carte*/
     
          /*  /////////////////////////////////////////////////////   */
     
          #titre {
             /* Titre de la carte */
             position: absolute;
             top: 10px;
             left: 370px;
             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';
     
          }
     
          sup {
             /* Titre du pays en sup */
             font-size: 24px;
             color: #fff;
          }
     
          /* Fin Titre de la carte*/
     
          /*  /////////////////////////////////////////////////////   */
     
          .bt_afficher {
             /* Bouton afficher/masquer le texte sur la carte*/
             margin-top: 70px;
             margin-left: 10px;
             padding-left: -100px;
          }
     
          .bt_texte {
             margin-left: 10px;
             color: #eb1a1a;
             cursor: pointer;
          }
     
          /* Fin Bouton afficher/masquer le texte sur la carte*/
     
          /*  /////////////////////////////////////////////////////   */
     
          /* Tableau drapeaux*/
     
          .tabl_info {
             position: absolute;
             left: 1120px;
             top: 10px;
             width: 200px;
             height: 700px;
             color: #fff;
             border: 0px solid #ff00f5;
          }
     
          /* 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;
             color: #ff0000;
          }
     
          img {
             vertical-align: middle;
          }
     
          /* Fin Heure Gmt*/
     
          sup.pays {
             font-size: 14px;
          }
     
          a {
             cursor: pointer;
          }
     
          .img_info {
             margin-left: 130px
          }
       </style>
     
    </head>
     
    <body>
     
       <!-- ///////////////////////////////////////  Tableau drapeaux /////////////////////////////////////////////////  -->
     
     
       <table class="tabl_info">
     
          <!-- /////////  Afficher l'heure et la date du pays /////////  -->
          <tr>
             <td align="center">
                <div id="tabl_Gmt">
     
                   Heure local de Greenwich
                   <sup class="pays"> (GMT) </sup>
     
                   <p data-gmt="+2">
                      <b>Bretagne</b> :
                      <br>
                      <img src="../Drapeaux/Bretagne.gif" width="28" height="22" alt="Drapeau">
                      <br>
                      <br>
                      <span class="date"></span>
                      <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>** </sub> Drapeau de la Région
                <sub> **</sub>
             </td>
          </tr>
          <tr>
             <td align="center">
                <img src="../Drapeaux/Bretagne.gif" width="160" height="100" alt="Drapeau">
             </td>
          </tr>
          <tr>
             <td align="center">Armoirie Représentant</td>
          </tr>
          <tr>
             <td align="center">
                <sub>**</sub> Bretagne
                <sub>**</sub>
             </td>
          </tr>
          <tr>
             <td align="center">
                <img class="text_drap_4" src="../Armoiries/Bretagne.png" width="175" height="99" alt="Armoirie">
             </td>
          </tr>
     
          <tr>
             <td align="center">
                <a href="../../France/France/France_Regions.html">
                   <img src="../../../images/index.png" width="50" height="50">
                </a>
             </td>
          </tr>
          <tr>
             <td 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" id="bouton_texte" onclick="javascript:afficher_cacher('texte');">Afficher le texte</span>
             </td>
          </tr>
       </table>
       <script src='../../../js/afficher_cacher.js'></script>
     
       <!-- //////////////////////////////////  Fin Afficher et masquer nom sur la carte //////////////////////////////////////-->
     
       <!-- *******************************************************************************************************-->
       <!-- *************************************************** CARTE *********************************************-->
       <!-- *******************************************************************************************************-->
     
     
       <div id="titre">Bretagne</div>
     
       <div class="map" id="map">
          <div class="map__image">
     
             <svg version="1.1" viewBox="0 10 812 700">
     
     
                <!--   <g><a xlink:href="Finistère.html" target="myFrame">   -->
                <g>
                   <a xlink:href="Finistère.html" target="myFrame" onmouseover="afficher_image('im1');" onmouseout="cacher_image('im1');">
                      <path id="01" title="Finistère" d="M335.6,335.3c-0.4-0.1-0.8-0.1-1.3-0.1c-1.2,0-2.9,0.3-4-0.3c-0.7-0.4-0.8-0.9-1.6-1c-0.9-0.1-1.9,0.1-2.9,0.1c-2.6,0-9.9-0.3-11.2-2.7c-0.1-0.2-2.2-0.6-2.7-0.8c-1.4-0.7-1.6,2.3-3.4,1.6c-1.6-0.6-3-2.7-4.3-3.9c-2.6-2.3-4.1-0.3-2.6-4.6c-3.2,0-3.6,2.7-6.3,3.5c-2.9,2.1-4.6,0.3-7.4,1.1c-0.6,0.2-1.2,1.1-1.2,1.1c-0.1,0-2.6-2.1-3.3-2.3c-1.1-0.4-4.2-0.6-4.9,0.3c-0.7,0.8-1,0.8-2.1,0.8c0,0-0.1-0.1-0.1-0.1c0-3.1,0.7-2.8-1.6-5.3l-5.4-6c-1.4-0.4-1.8-0.5-1.7-2c0.1-1,1.3-0.7,1.1-1.3c-0.1-0.3-0.4-1.1-0.8-1.2c-0.5,0-2.1,0.3-2.1-0.4c0-0.9-1.6-1.1-0.9-1.5c0.3-0.2,1-0.7,1.3-0.4c0.3,0.3,1.4,1.3,1.2,0.2c-0.2-0.8-0.7-1.5-0.9-2.2c-0.4-1.1-1.6-0.9-2.6-1.1c-1.8-0.4-0.4-1.5-1.2-2.4c-0.7-1.2-3-1.7-3-3c0-0.6-3.8-1.1-4.5-1.3c-0.7-0.2-1.1,1.8-1.8,2.2c-0.6,0.4-1,0.2-1.3,1.1c-0.4,1.1,0.9,4,0.9,5.4c0,1.1,0.8,1.5,1.3,2.2c-1.3,0.3-3.7,1-4.9,1c-1.8,0-3.5-0.3-5.1,0.5c-0.3,0.2-2,1.8-2.1,1.4c-0.5-1.7-1.6-2.1-2.7-3.3c-1.9-1.3-3.5-1.7-5.9-1.6c-2.1,0.1-2.8,0.1-2.8-2.4c0-0.7-1.8-0.3-2.2-0.8c-0.7-1-0.5-2.3-1.5-3.5c-0.3-0.3-1.4-1.4-1.5-1.6c-0.4,0.5,1.3,2.7,1.6,3.2c0.4,0.8,0.7,2.3,1.3,2.9c0.5,0.4,1.3,1.4,0.1,1.6c-1.2,0.2-1.8,0-3,0.7c-1.6,1.3-3.5,2.1-5,3.4c-0.9,0.7-1.6,3.1-2,2.1l-1-2.3c0,1.5-0.1,4.2,2,4.2c1.4,0-0.2,4.3-0.1,5.1c0.3,1.3-1.2,0.7-1.7,1.5c-0.9,1.3-0.3,3.4-1.3,3.4c-0.9,0-1.8,0.4-2.6,0.4c-0.9,0-1.1-1.6-2.6-0.7c-1.5,0.9-1.5,1.6-3.5,1.6c-1.5,0-3.2,0.6-4.6-0.2c-2.4,0.8-3-0.3-5-0.3c-2.4,0-1.6-1.2-3.4-1.6c-1.3-0.3-2-0.3-3.2,0.3c-2,1-3.3-0.2-5.3,0.1c-1,0.2-2.2,0.9-3.1,0.6l-2.7-0.9c-0.1-0.3,0.6-2,0.8-2.4c0.5-1.2-1.5-1.3-2.2-1.6c0-0.3,1.8-2.5,2.1-2.9c1-1.2,2.7-0.7,4.1-1.2c2.6-1-0.2-7.4-0.3-9.2c-1.3-4.6-3.6-9.1-5.5-13.5c-0.6-1.3-1.7-2.7-1.9-4c-1.1-2-2.7-3.9-4-5.8c-1-1.5-2.7-4-4.3-4.9c-0.8-0.5-2.9-2.3-3.2-3.1c-1.2-0.9-1.5-1-3-1c-1.2,0-1.5-1.1-2.1-1.9c-1-1.3-4.5-3.2-6-3.4c-1.7-0.2-3.1-1.3-4.7-1.5c-2.1-0.4-2.8,1.8-3.1,3.2c-1.9,0-5.5-2.1-6.7-3.6c-1.6-1.8-4.8-0.8-6.1-3.1c-1.8-2.9-2,0.9-4.7,0.6c-1.5-0.2-2.1-1.1-3.9-1.1c-2.9,0-3.8-0.4-6.2-1.5c-1.3-0.6-5.6-0.4-6.2-2.4c2.3,0,6,0.2,5.5-3c-0.7-4.7-0.6-3,2.7-2.8c2,0.1,4,0.5,5.2-1.5c1.1-1.7,0.7-1,2.5-0.4c1.5,0.5,7.8-0.9,9.4-1.6c1.2-0.5,3.9-1.1,4.8-1.7c0.9,0,4.6,0.7,5.3,0.3c1.7-0.9,1.6-2.7,3.8-2.7c3.3,0,8.1,1.3,10.7-1.3c2-2,3.9-0.5,6.3-0.7c1.8-0.3,2.4-1,3.6-2.1c0.7-0.7,1.7-0.1,2.6,0.1c2.4,0.5,4.4-1.7,6.4-1.4c1.6,0.3,2.4,2.1,3.9,2.6c2.7,0.9,3.5-0.6,5.1,2.1c1.5,2.4,4.4-1.7,4.9-2.8c0.6-1.5,3.5-7.9,2.8-9.3c0.6-1,0.2-3.7-0.7-4.5c-1.2-1-2.7-0.3-2.4-2.2c0.1-0.9-0.1-2.3-0.3-3.2c-0.9-5.4-5.1-8.3-10.3-8.3c-1.8,0-3.9,1.7-3.9-1.1c-0.3-0.2-0.8-0.9-1-1.2c-0.4-0.1-1-0.8-1.4-1.1c-0.6-0.3-1.4,0-2.1-0.1c-2-0.3-2.9-1.8-4.6-2.5c-1.1-0.5-2,0.5-2.8,0.4c-0.3,0-2.5-1.9-3.4-2.2c-2.6-0.8-4.2,0-6.6,0.3c-2.1,2.1,0.4,2.4-0.1,3.7c-0.6,1.4-2.3,0.6-2.9,2.2c-0.4,1.1-0.3,2.1-0.3,3.1c0,1.4-1.4,1.9-1.7,3.2c-0.2,1.2-2.9,1.6-3.4,3.2c-0.3,0.9,0,1.9-0.1,2.6c-0.3,0-2.7-0.5-3-0.7c-1-0.4,0-1.7-0.7-2.2v-0.1c1.7-0.8,1.4-2.6,1-4.2c-0.6-2.2,0-4.3-1-6.5c0-1.2-0.6-3.3-1.8-3.8c-1.9-0.8,1.6-1.6,2.1-1.8c3.3-1.4,2.6-5.6-1-4.5c-2.2,0.7-3.2,1.6-5.6,1.1c-1-0.2-0.6-1.3-1.7-1.9c-1-0.5-2-0.7-2.9,0.1c-0.2,0.2-0.8,1.3-0.8,1.3c-0.2-0.2,0-1.6,0-2c0-0.5,0.1-1,0.4-1.3c1.3-1.6,0.2-3-1.2-4.2c0.7,0,2.9,0.1,3.1-0.7c0.3-0.2,1.4-0.8,1.5-1.1c2,0.5,1.6,5.3,5.1,2.2c2.1-1.8,0.5-6-0.2-8.2c-0.9-3-1-3,1.4-5.1c1.4-1.2,4.9-3.7,6.9-3.7c0,1.8-1.6,3.6-2.1,5.3c-0.5,2-2,4.6-2,6.6c0,1.4,1.8,2.3,2.6,3c1,1,2.6-0.4,2.6-1.7c0-0.9,3.1-4.1,4.1-4.5c1-0.5,0.2,2-0.1,2.4c-1.6,1.8-1.4,1.1-1.6,3.5c1.4,2.3,3.3,1.8,5.4,1.2c0.8-0.2,4.4-1.5,4.4-2.5c1.1,0,2.5,0.7,3.7,0.8c1.2,0.1,2.5-0.3,3.6-0.3c0.3,1.1,0.4,3.4,1.5,4c1.5,0.6,2.8,0.5,4.4,0.6c1.8-0.3,4.5-0.7,5.9-2.1c1.3-1.4,2.4-0.4,3.9-0.8c3.1-0.9,6.4-4.4,9.8-3c2.2,0.9,3.7,0.3,2.9,2.9c-0.5,1.5-3.2-2-4.2,0.3c-0.3,0.8-1.3,2.7-1.3,3.5c1.9,0,2.7-0.4,4.6,0.5c0.4,0.2,4.4,3.5,3.7,2.4c-0.5-0.8-1.1-1.4-1.7-2.1c-0.5-0.7-3.1-2.1-2.9-2.6c0.2-0.8,4.1-0.2,4.9-1.7c0.8-0.4,1-2,1.8-2.3c0.3-0.1,2,0.4,2-0.2c-1.3-0.3-1.2-1-3-1c-1.5,0-1.7-1.9-3-2.4c-1.1-0.4-2.1-0.4-3-1.2c-1.5-1.4-0.6-1.6-3-0.2c-0.8,0.5-1,0.2-1.7-0.1c-2.6-1.2-4.5,0.1-7,0.1c0-1.5,3.7-3.4,3.7-5.7c0-1.6,6.2-1.2,6.2-3.5c-1.9,0-3.2,0.4-5,1c-2.1,0-3.6,2-3.2-1.7c0.2-1.9-2.3,1.1-2.6,1.7c-0.3,0.5-2.1,0.4-2-0.7c0.2-1.2-0.7-0.1-1,0.3c-1.2,1.3-0.9,4.7-2.4,5.1c-1.1,0.2-8.4,0.9-7.5-0.4c0.3-0.5,1.4-2.5,1.3-2.9c-1.3,1-2.9,1.5-4.4,2.3c-2.5,1.3-2.6,0.9-5,0.4c0.1-0.4,2.1-0.4,2.1-1.5c0.1-1,1-2.3,1-2.8c-0.2-0.9-0.4-1.1,0.1-2c0.8-1.3,0.9-0.7,0.9-2.3c-0.1,0-0.1,0-0.1,0.1c0.3-1.2,0.7-1.1,1.7-1.5c1.2-0.4,1.8-1.4,2.5-2.4c1.7-2.2,3-2.8,5.4-4.3l3.9-2.5c0.8-0.5,5.3-2,5.3-2.7c-0.6-0.1-3,0.3-3.9,0.3c-1.9,0-1.6,1.1-2.5,2.2c-0.4,0.5-2.1,0.8-2.7,1c-1.6,0.3-2.1,1.2-3.5,1.5c-1.7,0.5-3.1-1.2-4.5-1.5c-1.6-0.3,0,5.6-3.7,3.3c-1.7-1.1-1.5,0.1-3,0.3l-5.5,1.1c-0.3,0.1-0.7,0.7-1.1,0.8c-1.8,0.9-5.3,3.3-5.8,4.8c-1.4,0-2.6-0.7-3.6-0.7c-0.4,1.8-4.1,2.6-5.5,3.3c-3.2,1.6-5.2,3.6-8.8,2.5c-1.2-1.2-1.4-1.9-3.3-1.9c-1.5,0.1-1.8-0.7-3-1.4c-2.2-1.4-7.4-1-6.7,2.5c0.5,2.3,0.6,0.9-1.2,2.6c-2.4,2.2-4.5-1.2-6.5,0.3c-1.3,1-3.6,0.6-5,0.4c-0.3,0-0.6-2.5-0.6-3.1c0-0.4,0.3-1.7,0.1-1.9c-1.1-1.2-1.5-3.3-3.1-3.3c0-0.7,1.4-1.2,1.4-1.8c1,0.3,1.8,1,2.9,0c0.9-0.9,1.4-3.1,0.4-4c-0.8-0.9-2.5-1.4-2.2-3c0.2-1.2,1-3.5-0.9-3.2c-1.9,0.3-0.7-0.4-1.3-1.4c-0.2-0.3-1-0.2-1.3-0.5c-0.4-0.4,0.3-1.2,0.4-1.6c0.4-1.6,1.6-2.9,1.1-4.8c-0.5-1.7,0.2-0.4,1-1.6c0.3-0.5,0.2-1.3,0.2-1.9c0.6-1.5,1.7-2.8,2.6-4.2c1-1.6,1.2-1.6-0.1-3.1c-0.5-0.7-0.9-1.6-1-2.5c0-0.6-0.4-1.1-0.6-1.6c-2.6-2.8,0.5-2.4,1-4.7c0.1-0.4-0.6-1.1-0.3-1.4c0.8-0.8,1.4-1,1.1-2.4c-0.7-3.2,2.7,0,2.7-2.6c0-1.2-1-1,0.2-2.2c1-1,2.1-1.8,3.1-2.9c1.6-2.2,2.7-0.1,4.5-0.1c2,0,0.7-3.3,0.7-4.2c0.9,0,2.9-0.7,3.5-0.5c0,2.3,2.9,1.5,2.9-1c0.7,0,1.5,1.3,2.5,1.5c2.2,0.5,3-1.5,5-1.5c1.1,0,3.1,0.2,4.1,0.6c1.8,0.6,2.2,2,2.6,3.9c0.5,2.1,1.9-0.2,3.5-0.2c0.1,0-2.5-1-2.7-1.8c-0.5-1.6-0.6-1.5-2-2.2c-0.8-0.4-1.4-1.2-0.9-1.8c0.8-1-0.3-1.5-0.3-2.5c0-0.6,0.6-4.4,1.5-4.2c0.6,0.2,1.1,0.6,1.8,0.8c1.9,0.4-0.6,0.6-0.6,1.9c0,2,4.2-0.8,5.6,0.2c0.6,0.4,4.6,0,5.6,0c-0.9-0.4-1.3-1.2-2.3-1.4l-3.1-0.7c-0.7-0.1,2.1-2.2,0.5-1.6c-2.3,0.9-1.5-0.7-1.5-2.2c0.4-1.8,0.3-1.6,2.2-1.9c0.4-0.1,3,1,2.3,0.2c-0.6-0.6-1.6-2.2-0.8-2.6c1.5-1,1.1-0.3,1.9,0.7c1.1,1.5,1.9,0.3,2.7-0.6c0.3-0.3,1.7,0.4,2.2,0.5c0.2,0,0.2,4.1,2.3,2.3c0.9-0.7,3.4,0.1,4.8-0.3c1.8-0.5,2.5-1.7,3.8-2.8c0.9-0.8,1.1-1.9,2.1-0.9c1.6,1.6,0.9-0.6,3.2,0.2c0.5,0.2,4.2,0.4,2.7-0.5c-1-0.6-4.7-2.1-4.6-2.7c0-0.3-0.6-0.8-0.7-1.2c-0.5-1.5,1-0.2,1.2,0.1c0.6,0.7,2.2,0.2,3,0c2-1.2,4.5-0.6,6.5-2.7c0.5-0.6,0.5-1.3,1.5-1.3c2.2,0,3-1.8,4.8-2.2c1-0.2,1.3,0.7,2.1,1c1.4,0.5,2.8,0.1,3.7,1c1,1,1.7,1.9,3.1,2.3c0.5,1.9-3.5,3.4-3.5,4.1c0.2,0,1.7,0.1,0.8,0.7c-2.4,1.5,1.4,2.9,2.6,2.5c0-0.7-1.3-1.9,0.5-1.9c1.6,0,2.3-0.6,2.9-2.1c3.6-1,8-0.1,11.7-0.1c0.6,0,4.9-0.8,2.6-1.5c-1.9-0.6-3.4,0.2-5.3,0.2c2.3-1.9,3.5-4.8,5.6-7c2.2-2.2,7.3-2,10.4-3.6c2.7-0.4,5.2-0.2,8.2-0.2c1.5,0,2.8,0.1,3.9,1.2c0.5,0.5,1.5,2.5,2.2,2.5c0-1.5,1.9-1.9,1.3-2.6c-0.9-1.3,0.3-1.7,0.3-3.1c0-2.8,2.1,1.1,3.5-1.1c0.8-1.4-1.1-2.2,1.3-1.7c0.7,0.2,2.3,0.4,2.7-0.4c0.7-1.6,1.1-2.5,2.3-0.5c1.3,2.3,2.1-0.4,2.3-0.7c0.2-0.4,0.2-1.6,0.6-1.6c0.6,0,1.1,0.1,1.7,0.1c0.6,0,2.7-0.8,2.1,0.4c-0.7,1.3-0.9,2.5-1.2,3.9c-0.4,1.4-0.2,2.4,0.7,3.5c0.3,0.7,1.2,1,0.3,1.4c-0.7,0.3-0.7,1.1-0.2,1.6c0.9,1-1,1.9,0.5,2.4c0.5,0.2,2.2-0.3,2.3,0.4l0.3,3.4c0.1,0.9-0.4,1.7-0.4,2.6c0.5,0,1-1.1,1.5-1.3c1.2-0.5,2.5,0,3.2-1.2c0.3-0.5,0.2-1.2,0.4-1.7c0.1-0.3,0.3-1.9,0.5-1.9c0-0.1,0.5,0.2,0.6,0.2c1.3,0.8,4.2,0.8,5.7,1.3c0,1.2-4.4-0.1-2.7,3.4c0.4,0.8,0.7,1.7,1.2,2.4c0.7,1,1.6,1.1,2.4,1.7c1.5,0.6,4,0.6,4.9,2.3c0.6,1.1,0.4,2.3,0.4,3.5c0.3-0.1,1.3-1.5,1.6-1.9c0.3-0.5-0.4-1.3-0.5-1.9c-0.3-1.4-0.5-2.8-0.9-4.2c-0.3-1.1-0.7-1.9-0.6-3c0.9-1.5,0.3-1,1.9-0.2c0.5,0.2,0.1-1.8,0.1-2.1l-1.1-4.6c-0.1-0.4,0.5-2.7,0.7-2.7c2.2,0,0.8-2,2.2-3.1c0.4-0.3,0.7-2.1,1.1-1c0.3,0.8,1.1,1.7,1.3,2.3h0.1c0.3-1.1,1.1-0.9,0.5-2.3c-0.5-1.1-0.5-1.6-0.3-2.7c0.1,0,0,0,0.1,0c1,0.2,1.4,3.5,3.3,2.5c1.3-0.7,2.4,4.5,5,2.4c1.3-1,1.5-1.8,3.4-1.8c1.6,0,3.2,0.4,4.9,0.4c1.1-0.1,2,0.5,3.1,0.5c0,0.6-0.8,0.8,0.2,1.3c0.6,0.3,2.5,2.6,2.7,2.6c1.8,0.1,1.2-0.7,2.7,0.7c1.3,1.2,3.7-1.8,5.3-1c0.1,0.1,0.1,1.4,0.2,1.6c0.2,0.6,1.7,2.8,2.3,2.8l0,0l-2.9,4.1c-0.9,1.7,0,3.7,0.1,5.6c0.1,2.3,0.3,4.2,1.2,6.3c0.1,0.6,1,1.3,1.6,1.3c0,0,0,0,0.1,0.1c0,2.9,1.2,6.1,4.6,6.1l4-0.1c3.9-0.1-1.1,7.2,1.6,8.4c0.8,0.3,1.7,0.1,2.5,0.6c1.1,0.6,1.8,1.9,3,2.5c1.1,0.5,3.1,1.8,1.4,3c-3.4,3.4-7,6.9-9.5,11c-1.1,1.7-0.4,4.3,0.7,5.8c0.7,1.1,0.8,1.4,1.9,2.2c0.9,0.6,2.3,1.6,2.7,2.7l2.7,3c-2,0.8-3.6,1.9-5.5,2.8c-5.2,2.5-0.7,8-3.6,11.3l4.7,1.7c1.4,0.6,3.4,0.4,4.8,1.1c1.2,0.6-0.7,5.6-1,6.8c-0.2,0.9-0.6,1.9,0.2,2.6c0.8,0.7,1.2,1.6,1.2,2.8c0.1,0.9-0.5,3.9,0.5,4.2c1.4,0.5,3.3-1,4.8-1c0,0.4-1,1.7-1.3,2.1c-0.4,0.6-0.5,1.1-0.8,1.8c-0.5,1-2.1,1.5-2.8,2.2c-0.6,0.7,0.7,1.2,1.2,1.7c1.2,1,1.8,1.9,3.5,2.3c1.2,0.2-0.9,3.3-1.2,3.7c-0.2,1.1-0.6,1.4-0.6,2.8c0,2-1,3.6-2.6,4.7c-2.2,1.4-0.3,5.3,0.5,7.2c1.1,2.5,4.5,0.9,4.5,4.3c0.2,1.9-3,1.2-4.3,1.2c-0.7,0-2.3,0.5-2.7,0.9c-0.9,0.7-1.4,1.7-2,2.7l0,0l-4.1,1.2c-2.7,0.7-5.3,0.9-7.3,2.9c-1.6,1.6-4.6,3-6.8,3.2l-4.1,0.4c-1,0.1-3.6,4.6-4.2,5.6c-0.5,0.8-2.6,5.6-2.6,6.4c-1.3,3.6,2.4,2.1,4.2,2.6c2.9,0.9,1.4,0.6,0.6,3c-0.4,1.1-0.1,2.8-0.1,4c-0.1,1.8,2.8,3.3,4.3,4c2.6,1.2,2.1,2.4,2.8,5c0,1.1,0.5,2.5,0.7,3.6c0.3,1.4,0.8,1.5,1.5,2.6c0.9,1.6,1.5,3.6,2.1,5.3c0.6,1.9-0.4,2.1,1.9,3c2.9,1.2,3.4-1.5,6.1-1.5c1.1,0,1.8,0.8,2.9,0.8c1.3,0,2.2-1.5,3.6-1.5c1.4,0.4,2.8,1.2,4.1,1.2c3.3,0,3.2,3.2,6.7,3.2c3.7,0,3.8,5.2,6.3,7.4c1.9,1.7,1.9-1.7,3-2.8c0.7-0.7,1.7-0.4,2.6-0.4c1.2,0,2.1-1.6,2.8-1.7c1.2,0.1,1.5-1,2.3-1.5c0.8-0.5,0.5,0.3,0.7,0.8c0.4,0.9,0.8,1.6,1.4,2.3c0.5,0.5,1,1.3,1.3,2l0.8,0.7c-0.6,0.4-1.1,1.1-1.5,2c-0.7,1.5,3.5,5.4,1.4,6.7c-3.5,2.3-3.8,0.4-2.7,4.1c0.7,2.4,0.7,4.5,0.7,7.2c0,1,0.1,2,0.3,2.9l-2.7-0.6c-1.7-0.9-2.1,0.2-3.8,0.2c-1.8,0.1-1.9,0.1-1.9,1.9c0,1.8-0.7,5.9-3,5.9c-0.8,0-1.6-0.5-2.1,0.2c-0.5,0.6-0.6,1.3-1.2,2c-1.7,0.6-4.4-2.2-5.8-2.9c-1.6-0.7-2.8,0.2-4.4,0.2c0,0.1,0,0.1-0.1,0.1c-0.2,0.8-1.7,2.4-1,3.5c0.2,0.3,0.9,0.3,0.9,0.8c0,1.5-0.2,1.4,1.1,2.1c1.9,1.1,1.9,2.2,1,3.9c-0.8,1.5-0.2,3.2-1.1,4.7L335.6,335.3L335.6,335.3L335.6,335.3z M257.9,348.6c0.2-0.4,0.5-0.8,0.4-1.3c-0.1-0.3,0-1-0.3-1.1c-0.6-0.3-0.8,0.8-0.9,1.2c-0.1,0.4-0.1,0.5,0,0.9c0,0.2,0.1,0.3,0.1,0.5c0,0.2,0,0.4,0.1,0.5L257.9,348.6L257.9,348.6z M251.1,351.5c0-0.6-0.3-1-0.7-1.4c-0.2-0.2-0.6-0.2-0.8-0.1c-0.2,0.1-0.3,0.4-0.2,0.6c0.1,0.4,0.1,1,0.1,1.4c0,0.2,0.1,0.5,0.3,0.5c0.3,0.1,0.9-0.1,1.2-0.2L251.1,351.5L251.1,351.5z M249.5,71.8c-0.5,0-1-0.5-1.4-0.8c-0.7-0.4-5.4,1.1-5.5,1.7c0.4,0.4,1.3,0.5,1.8,1c1.6,1.6,2.1,0.1,3.9,0.1c1,0,1.5,0.7,2.3,1c0.6,0.2,1.5-0.1,2.1,0c0.4,0.1,1,0.3,1.5,0.3c0.9,0.1-0.5-1.4-0.8-1.5l-2.6-1.2L249.5,71.8L249.5,71.8z M93.4,262.2c0-0.5-0.6-1.2-1.1-1.2c-0.7,0-1,0-1.6-0.5c-0.6-0.5-1.1-0.4-1.6,0.1c-0.6,0.6,0.6,0.5,1,0.7c0.8,0.3,1.6,0.7,2.3,1.1c0.1,0.1,0.2,0.4,0.2,0.6c0.1,0.2,1,0.6,1.2,0.9c0.5,0.5,2.8,0.2,2-0.4c-0.3-0.2-0.7,0-1.1,0c-0.5,0-0.6-0.4-1-0.6L93.4,262.2L93.4,262.2z M90.3,180c0.9-0.3,0.8-1.3,1.5-1.9c0.4-0.3,0.8-0.3,1.2-0.5c0.5-0.2,0.3-0.8,0.5-1.2c0,0,0,0,0,0c0.3,0,0.6,0.2,1,0.2c0.8,0-0.7,1-0.8,1.1c-0.5,0.4-1.8,1.5-1.8,2.2c0,0.5-0.3,0.4-0.7,0.6c-0.5,0.2-0.6,0.7-1.2,0L90.3,180L90.3,180z M85,171.5c-0.4,0.3-1,0.2-1.4,0.1c-0.2,0-0.4,0-0.7,0c-0.3,0-1-0.4-1,0.1c-0.1,0.3,0.4,0.7,0.7,0.8c0.3,0.1,0.6,0.1,0.9-0.1c0.4-0.2,0.6,0.2,1,0.1c0.4,0,0.8-0.3,0.8-0.7L85,171.5L85,171.5z M77.5,171.6c-0.1,0.3-0.5,0.6-0.9,0.6c-0.4,0.1-0.6,0-0.8,0.4c-0.4,0.9,0.7,0.3,1,0.1c0.2-0.2,0.4-0.3,0.7-0.3c0.3,0,0.4-0.4,0.2-0.6L77.5,171.6L77.5,171.6z M69.8,159.8c-0.2,0-0.4-0.1-0.6-0.1c-0.3-0.1-0.7,0-0.9,0.2c-0.2,0.3-0.7,1.2-0.1,1.2c0.7,0,1.4-0.3,1.9-0.8L69.8,159.8L69.8,159.8z M62.8,158.5c0.2-0.1,0.3-0.5,0.4-0.8c0.1-0.3,0.2-0.6,0.3-0.9c0,0,0,0,0.1,0c0.2,0,0.4,0.9,0.3,1.1c0,0.1-0.1,0.3-0.1,0.4c0,0.2-0.1,0.2-0.1,0.3c-0.1,0-0.2,0.2-0.3,0.2c-0.2,0.2-0.3,0.2-0.6,0.1L62.8,158.5L62.8,158.5z M72.1,167.4c0-0.4-0.1-0.8-0.1-1.2c0-0.2-0.1-0.5-0.2-0.7c-0.1-0.2,0.9-1.1,1.1-0.9c0.1,0.1,0.3,0.4,0.4,0.5c0.1,0.1,0.3,0.3,0.4,0.4c0.1,0.1,0.1,0.3,0.2,0.4c0.1,0.2,0.3,0.2,0.3,0.5c0,0.3-0.3,0.6-0.4,0.9c-0.1,0.5-0.9,0.5-1.3,0.6L72.1,167.4L72.1,167.4z M48.4,143c-0.5,0.3-1.1,0.1-1.7,0.1c-0.4,0-0.3,0.6,0,0.7c0.3,0.2,0.6,0.2,1,0.2c0.3,0,0.5,0.2,0.8,0.3c0.2,0,0.7,0.1,0.8-0.1c0.2-0.3-0.2-1.1-0.6-1.2L48.4,143L48.4,143z M41.6,149.2c1-0.6,2.6-0.8,3.4-1.6c0.7-0.7,0.9-2.1,2.1-2.2c1.2-0.2,1.4-0.6,2.8-0.4c1.1,0.2,1.5,0.2,2.5-0.5c0.9-0.6-0.3-0.7-0.6-1.4c-0.1-0.2,0.3-0.3,0.4-0.3c1.3,0,1.7,1.4,2.2,1.7c0.4,0.2,2.3-0.3,2,0.2c-0.5,0.7-1.3,4,0.4,3.3c1.7-0.7,1.5,0,3.1,0c-1,1.9-2.8,0.6-3.7,1.9c-1.1,1.4-0.5,2.2-2.5,2c-1.2-0.1-3.2-0.3-3.6,1.1c-0.4,1.3-3.6,2.6-5,2.6c-3.4,0,1.6-2.5,2.5-3c0.8-0.4,1.5-0.5,0.7-1.1c-0.3-0.2-1-1.5-1.2-1.5c-0.4,0-1.9,0.8-2.5,0.9c-1.3,0.3-2.5,1.1-3.7,1.2c-2.7,0.3-1-1.2,0.3-2.1L41.6,149.2z"
                      />
                      <text transform="matrix(1 0 0 1 241.6074 201.1699)">
                         <tspan x="0" y="0" class="texte">Finistère</tspan>
                      </text>
                   </a>
                </g>
                <g>
                   <a xlink:href="Morbihan.html" target="myFrame" onmouseover="afficher_image('im2');" onmouseout="cacher_image('im2');">
                      <path id="02" title="Morbihan" d="M468.5,383.3c0.3-0.8,0.1-2.4,0.1-3.2c0.5-0.1,1.8,0,2.2-0.3c0.3-0.3,1-1.8,1-2.2c0,0,0.1,0,0.1-0.1c0.2,0.9,1.1,1.3,1.3,2.2c0.3,1.3,1.1,0.4,2.2,0.4c0,0.5,0.2,2.5-0.8,2c-0.6-0.4-0.9-1-1.7-0.9c-0.8,0.2-2,1.3-2.5,2c-0.2,0.2-1.8,2.5-2.1,1.2L468.5,383.3L468.5,383.3z M459.5,386.3c0-2.1,0.6-3.3,1.3-5.2c0.2-0.5,0.3-1.9,0.7-2.2c0.4-0.3,1.5-1.6,1.8-1.6c0,0.8-1.4,3.2,0.2,3.3c0.3,0,2.7,0.6,2.2,1.2c-0.4,0.4-2.1,0-2.7,0.2c-1,0.2-1.9,2.2-2.1,3.1c-0.1,0.5-0.6,1-0.3,1.5c0.1,0.2,0.8,0.8,0.8,1c-0.8,0-1.2,0.5-1.1,1.2c0,0.3,0.1,0.7-0.4,0.6c-0.8,0-0.5-1.4-0.4-1.9L459.5,386.3L459.5,386.3z M454.8,450.3c-0.7-0.1-0.8-1-0.7-1.6c0.1-0.4,0-0.5-0.2-0.8c-0.2-0.3-0.2-0.7-0.2-1.1c0.4,0,1.3,0.5,1.7,0.7c1.3,0.6,1.9-0.4,2.7-1.1c0.8-0.7,0.9-0.4,1.1,0.4c0.2,0.9,0.4,2.7-0.9,2.7c-0.4,0-1.1,0.2-1.3,0.5c-0.3,0.5-0.6,0.8-1.3,0.8L454.8,450.3L454.8,450.3z M414.1,463.2c-1.6-0.1-2.2-1.8-4-0.5c-1.7,1.2-2-0.6-2.9-0.9L405,461c-1-0.3-1.6-1.5-2.4-1.8c-1.1-0.4-2.5,2-4.1,2c-0.8,0-1.3-0.8-1.9-0.8c-1.1,0-1.3,1.1-2.8,0.8c-1.5-0.3-1.3-1.8-2.1-2.1c-1.7-0.7-0.8-1-2-2c-1.3-1-2.2-1.6-1.1-3.2c0.9-1.4,1.1-2-0.6-2.8c-1.5-0.6-1.7-3.8-2.5-5.1c-0.5-0.8,0.4-2,0.4-3c0-0.6-0.4-2.9-0.1-2.9c0.2-0.6,1.7,0.2,1.8-1.9c0.1-0.9-0.2-1.9,0-2.8l0,0c0.6,0,2.8,1.6,3.5,1.9l7.2,3.8c1.9,1,3.3,1.2,5.4,1.1c1.7-0.1,1.5,0.2,1.5,2.1c0,1,0.1,2.1,0.9,2.7c1,0.8-0.2,3.2,1,3.7c1.6,0.7,2.6,0.7,4.2,1.6c1.4,0.4,1.8,1.7,3.3,2.1c2,0.6,4.3-0.3,6.4,0.1c1.1,0.2,2.8,1.3,2.8,2.6c-1.4,0-2.2,0.2-2.2,1.7c-0.1,1.1-1.4,1.4-1.8,2.3c-0.2,0.5,0.4,1.4-0.1,1.8c-0.2,0.2-0.9,0.5-1.2,0.6c-0.8,0.3-0.5,1.2-1.7,1.3c-0.9,0-0.9-1.7-2.2-1.7L414.1,463.2L414.1,463.2z M434.5,434.2c1.1-0.3,0.1-2.7,1.2-2.2c0.3,0.1,0.7,0.6,1,0.8c0.5,0.4,1.7,1.2,2.3,1.5c1.1,0.7,2,0.9,3.3,0.6c1.1-0.2,2-1,3-1c0,0.6-2.3,1.4-2.7,2.5c-0.1,0.3,0.5,2.1,0.6,2.4c0.4,1.2-1-0.9-1.2-1c-0.8-0.5-0.7-0.6-1.7-0.9c-0.6-0.2-1.1-0.2-1.6-0.6c-0.6-0.5-0.7-1.3-1.4-1.7c-0.4-0.2-1.4-0.2-1.8-0.1L434.5,434.2L434.5,434.2z M344.2,371.2c-1.1-1-3.4-1.9-4.1-3c-3.1-5.1,4.5-2.8,6.9-2.1c2,0.6,3.6,1.5,5.8,1.5c1.9,0,2.7,1,4,1.9c0.2,1.7,0.4,2.9-0.5,4.5c-0.8,0.1-1.6-1.4-2.3-1.9c-1.3-0.9-2.6,2-4.3,1.6c-0.8-0.2-1.6-0.9-2.3-1.2l-2.7-1L344.2,371.2L344.2,371.2z M600,370.8L600,370.8l-1.3-1c-0.3-0.2-0.5-0.7-0.7-1c-0.2-0.3-0.4-0.5-0.5-0.8c-0.3-0.8-0.2-1.5-0.2-2.4c0.1-2.2,2.1-4.3,1.6-6.4c-0.5-2.1-4-1.8-4-4.3c0-1.5,0.9-2.8,0.9-4.2c0-1.7-2.7-2.7-1.1-4.4c0,0,0,0-0.1,0c0.8-0.3,2.4-1.8,3.2-2.4c0.9-0.8,1.1-0.8,2.3-1.1c0.9-0.2,6.5,0.2,6.5-1c0-1.1-0.8-1.9-1-2.9c0,0-0.1-0.1-0.1-0.1c-1.3,0-2-0.1-3.1-0.7c-0.4-3.3-8.5-1.1-6.5-3.6c0.7-0.9,0.9-1.7,1.4-2.5c0.8-1.4,2.3-0.7,3.6-1c1.8-0.5,2.8-2.3,3.6-3.8c0.5-0.6,0.7-2.9,0.4-3.5c-0.5-1.2,1.4-1.1,2.1-1.3c2.6-0.5,4.1-3.3,4.1-5.6c-2.1-0.5-2.9-1.4-3.1-3.6l-0.5-5.4h-0.1c-1,3.1-4,5-6.6,6.7c-1.5,0.9-1.8-0.5-2.6-1.6c-0.7-0.9,0.7-2.8,1-3.7c0.2-2.2-0.4-3.4-1.8-4.9c-1.4-1.5-0.6-3.4,1-4.4c0.5-0.3,1.3-1.8,1.7-2.4c0.7-0.9,2.3-2.1,2.3-3.3c0-1.7-1.7-2.4-2-3.9c-1-2.4-1.6-5.1-3.7-6.9c-1.9-1.6-4.5-2.7-6.7-3.9c-1.3-0.7-2.6-0.7-4-1.3c-1-0.4-1.3-1.2-2.1-1.7c-0.8-0.5-2.2-0.8-2.9-1.5c-1.7-0.4-3.9-0.9-5.6-1.6c-1.7-0.7-2.6-1.2-4.4-0.8c-2,0.4-7,4.7-6-0.2c0.2-1.3,0.3-3.3,0.9-4.4c0-2.4,3.6-5.3,5.1-7c2.5-2.7,4.2-1.8,7.7-1.9c2.2-0.1,4.7-0.6,6.3-2.1c1.2-1.1,2.4-5,0.4-5.8c-1.1-0.4-8,0.7-9,1.5c-1,0.9-2.7,3.7-3.7,3.4c-2-0.7-3.4,0.2-2.5-2.7c0.6-1.9,0.8-3.6,0.4-5.6c0.1-1.2,0-3.4-0.6-4.5c-0.7-1.3-2.3-2.2-3-3.5c-0.5-1-0.9-1.9-1.5-2.8l0,0c-2.2,1.3-3.6-0.3-5.5,0.5c-2.2,0.9-1.6,4.2-4.6,2.5c-1.4-0.8-1.8,0.3-2.4,1.5c-1.1,2-1.6,2.4-2.9,0.3c-0.6-1-1.6-2.9-1.7-4.2c0-1,0.3-3.1-0.7-3.5c-0.8-0.4-1.8-0.7-2.5-1.3c-0.9-0.8-1.3-1.8-1.7-2.9c-0.5-1.7-3.4-3.6-5.1-3.6c-3.1,0-4,1.4-6.3,2.9c-1.6,1.1-2.4-0.1-3.9,0.3c-0.8,0.2-1.5,1.1-2.2,1.5c-1.5,0.9-4.7,0.2-6.6,0.2l0,0.1c0.7,0.2,2,3.1,2.7,3.8c2.5,7.6-7.4,9.5-6,16.5c0.5,2.5-1.2,2.6-3.4,2.8c-1.2,0.1-1.4,0.8-2.3,1.3c-0.7,0.7-1.1,1.5-1.8,2.2c-0.8,0.8-2,1.4-2.8,2.2c-1.1,1.1-3.4,3.1-5,3l-3.4-0.1c-0.6,0-1.3-2.2-1.5-2.8c-0.4-0.1-0.8-0.5-1.2-0.7c-0.1-0.2-0.2-0.7,0.1-0.8c0-0.4,0.1-0.4-0.1-0.8c0-1.7-0.8-2.9,0.2-4.5c0.8-1.4,1.4-2.9,1.7-4.5c0.7-3.3,0.8-5.5,0.1-8.8c-0.6-2.8-0.2-3.3-2.9-2.2l-3.2,1.3c-1.3,0.5-1.8,2.5-3,3.1c-1.4,0.7-2.8,0.3-4.2,0c-2-0.4-2.6,0.8-4.1,1.5c-0.6,0.7-1.2,1.6-1.4,2.5c-0.2,0.7-0.3,1.1-0.8,1.5c-0.8,0.6-1.3,1.5-2.3,1.5c0-0.1,0-0.1-0.1-0.1c0-0.1,0-0.1-0.1-0.1c0-0.7,0.1-1.3,0.1-2c0-0.7-0.1-1.3-0.2-1.9c-0.5-0.1-1-1.7-1-2.2c-0.3-1.4-0.3-3.8-1.6-4.7c-1.4-1-2.4-4.2-4.2-4.2c-1.7,0-3.1,1-4.7,1.1c-0.8,0-1.3-0.2-2.2-0.3c-2.6,0-5.1-2.7-6.2-4.9c-1.1-2.2-3.9-1.4-6.2-2.2c-2.3-0.7-3.3-0.7-5.7-0.5c-2.2,0.2-5.1,1.9-7.1,2.9l-2.2-0.5c1.3-1,2.5-1.8,0.9-2.3c-2.6-0.8-3.6,0.1-3.7-3.4c-0.2-3.9-3.6-4.5-6.7-6.1c-3.8-2-6.8,1.5-10.1,0.1c-0.4-0.2-0.8-0.3-1.3-0.5l-1.4,1.8c-0.3,0.3-0.6,0.6-0.9,0.8c-0.3,0.2-0.5,0.5-0.7,0.8c-0.4,0.6-0.7,1.3-1,1.9c-0.4,1.5,0.1,2.6,1.3,3.4c-0.1,0.6-3.4,3.6-4,3.6l-5.3,0.2c-1.4,0-2.3-0.6-3.5,0c-1.7,0.8-2.2,2.6-3,4.2c-0.4,0-1.7-1.1-2.2-1.3c-1-0.5-2.6,0-3.6,0.4c-2.8,1.1-4.2,1.2-7.2,0.6c-0.9-0.4-1.1-1.7-1.8-1.9c-0.6-0.1-2.7-0.6-3.2-0.4c-0.5,0.2-1.3,0.6-1.8,0.6c-0.4-1.5-1.4-3.3-2.6-4.3c-0.3-0.3-5,1.3-5.9,1.6c-3.1,0.8-8.3,6.3-11,3.4c-0.5-1.2-2-1.5-1.4-3c0.4-0.9,1.4-1.7,1.9-2.6c1-1.6-1.2-2.6-2.5-3.3c-1.6-1-1.1,0.8-2.7,1.2c-2,0.5-3.8-0.5-5.3-1.8c-1.1-0.9-6.4,1.5-8.3,1.7l-8-0.3l0,0l-4.1,1.2c-2.7,0.7-5.3,0.9-7.3,2.9c-1.6,1.6-4.6,3-6.8,3.2l-4.1,0.4c-1,0.1-3.6,4.6-4.2,5.6c-0.5,0.8-2.6,5.6-2.6,6.4c-1.3,3.6,2.4,2.1,4.2,2.6c2.9,0.9,1.4,0.6,0.6,3c-0.4,1.1-0.1,2.8-0.1,4c-0.1,1.8,2.8,3.3,4.3,4c2.6,1.2,2.1,2.4,2.8,5c0,1.1,0.5,2.5,0.7,3.6c0.3,1.4,0.8,1.5,1.5,2.6c0.9,1.6,1.5,3.6,2.1,5.3c0.6,1.9-0.4,2.1,1.9,3c2.9,1.2,3.4-1.5,6.1-1.5c1.1,0,1.8,0.8,2.9,0.8c1.3,0,2.2-1.5,3.6-1.5c1.4,0.4,2.8,1.2,4.1,1.2c3.3,0,3.2,3.2,6.7,3.2c3.7,0,3.8,5.2,6.3,7.4c1.9,1.7,1.9-1.7,3-2.8c0.7-0.7,1.7-0.4,2.6-0.4c1.2,0,2.1-1.6,2.8-1.7c1.2,0.1,1.5-1,2.3-1.5c0.8-0.5,0.5,0.3,0.7,0.8c0.4,0.9,0.8,1.6,1.4,2.3c0.5,0.5,1,1.3,1.3,2l0.8,0.7c-0.6,0.4-1.1,1.1-1.5,2c-0.7,1.5,3.5,5.4,1.4,6.7c-3.5,2.3-3.8,0.4-2.7,4.1c0.7,2.4,0.7,4.5,0.7,7.2c0,1,0.1,2,0.3,2.9l-2.7-0.6c-1.7-0.9-2.1,0.2-3.8,0.2c-1.8,0.1-1.9,0.1-1.9,1.9c0,1.8-0.7,5.9-3,5.9c-0.8,0-1.6-0.5-2.1,0.2c-0.5,0.6-0.6,1.3-1.2,2c-1.7,0.6-4.4-2.2-5.8-2.9c-1.6-0.7-2.8,0.2-4.4,0.2c0,0.1,0,0.1-0.1,0.1c-0.2,0.8-1.7,2.4-1,3.5c0.2,0.3,0.9,0.3,0.9,0.8c0,1.5-0.2,1.4,1.1,2.1c1.9,1.1,1.9,2.2,1,3.9c-0.8,1.5-0.2,3.2-1.1,4.7l-0.3,4.3l0,0c1.4,0.2,2.3,0.8,3.4,2.2c1,1.4,2.5,3.7,2.7,5.4c0.5,1.6,2.9,4.9,4.2,5.8l2.2,1.5c0.7,0.5,0.5,0.7,0.8,1.4c0.2,0.6,1.8,2,2.5,1.8c2.9-0.7,4-2.3,7.3-2c2.6,0.3,5.1,0.8,6.9-1.7c0.5-1.3,0.6-2.8-0.3-3.9c-1.6-2.1,0.5-0.8,2-1.3c1.5-0.6,2.3-5.9,1.3-6.7c-0.9-0.7-1.7-1.4-2-2.6c-0.3-1.7,0.2-0.6,1,0.2c1.7,1.7,2.2,2.2,2.3,4.8c0.1,1.9,4.4-0.7,4.8-1.3l2.8-4.2c0.6-0.9,1.3-1.8,2.5-1.7c0.1,0,1.3-0.3,1.2-0.1c-0.6,0.7-1.9,1.1-2.6,2c-1.4,1.5-2,4.3-3.4,6.1c-1,1.3-2.7,2.5-4.5,2.2c-1.5-0.2-0.4,0.5-1.1,1.9c-0.5,1,1.5,2.8-0.1,3.2c-0.9,0.2-0.3,0.8-0.8,0.9c-0.6,0.2-1.3,0.1-1.9,0.1c1.1,0.3,0.9,2.2,2.3,1.9c1.5-0.3,2.2-1,3.9-0.3c0.8,0.1,3.2,0.5,3.5,1.3l-0.9-0.1c-0.9-0.1-6.5-0.6-6.8,0c-0.6,1.3-2.1,2.7-1.5,4.4c0.1,0.2,0.4-0.2,0.4-0.3c2.3-4.2,7.8-2,11.1-0.7c2.1,0.8,3.6,1.9,5.4,3c2,1.2,3.7,3.4,5.8,4.4c0.5,1.1,2.7,2.3,3.4,3.5c1.7,2.7,1.3-4.4,1.3-4.8c0-1.2,0.9-1.9,1.6-2.7c0.2-0.2,0.6-0.2,0.7-0.5c0.1-0.5-0.3-1.3-0.1-1.6c0.3-0.5,1-0.8,1.2-1.2c-1.2,0-3.4-0.5-1.5-2.1c1.5-1.2,7.8-1.3,6.6-3.3c-0.3-0.4-1-2.8,0.1-2.8c0.3,0,1.2,1.8,1.3,2.1c0.1,0.2,2-2.6,3.7-2.6c1,0-1.4,2-2,3c-1.3,2.1-4.3,3-0.8,3.9c0.7,0.2-1,2-1.2,2.2c-1.5,1.3-3.7,0.1-5.6,1.6c-1.6,1.2-3.8,4.1-3,6.1c0.7,1.5,0.1,2.1-0.5,3.2c-0.7,1.3,0,1,0.8,2.4c0.3,0.7,0.8,0.9,1.1,1.7c0.2,0.6,0.1,1.2,0.1,1.8c1.6,0.4,5.1,3,6.1,4.3c2.1,2.5,3.8,4.3,4.7,7.5c-0.2,2.8,0.8,5.6,0.7,8.4c-0.1,1.4-0.7,3-1.6,4.1c-0.7,0.9-2.8,0.8-2.8,1c1.7,0.3,1.6,5.7,1.9,7c-0.1,1,0.3,1.6,1,2.2c0.5,0.5,0.1,1.6,0.3,2.3c0.2,0.6,0.9,0.9,1.3,1.4c0.3,0.4,0.8,1,0.9,1.6c0,0,2-1.1,2.9-0.7c0.4,0.2,0.6,0.4,0.8,0.7c0.5,0.8,0,0.8,1.1,0.4c1.9-0.7,3.4,1.3,5.3,1.3c-1.1-0.3-2.7-2.2-3.3-3.1c-0.8-1.4-0.8-1.5-2.2-2.4c-2.1-1.4-1.8-2.9-2.1-5.1c-0.1-0.9-0.9-0.9-1.2-1.6c-0.4-0.7-0.8-3.1-0.8-3.9c-1.3-4.1,0.1-6.1,1.5-9.9c0.4-1,1.6-2.7,1.7-3.7c0.1-1.3-0.5-1.9,0.8-1.8c0.9,0.1-0.3,1.5,0.1,2.2c0.3,0.5,2.4,3.5,2.7,3.5c1.5,0,3.1-1.3,4.6-1.9c0.9-0.3,1.7-0.2,2.5,0.1c0.7,0.2,2.1-1,3.7-0.4c1.8,0.7,1.2,1.6,3.1,1.2c0-1.1-1.3-2.3-1.2-4l0.1-4.6c0.1,0,0,0,0.1,0c0.5,2.5,1.4,4.8,2.2,7.1c0.1,1.7,1.8,1.4,2.9,1.9c1.8,0.8,0.6-2.3,0.8-3c0.5,0,3.7,3.1,2.7,3.8c-1,0.8,0,1.1,0.7,1.5c0.5,0.3,1.1,1.5,1.6,1.5c1.3-2.5,3.4-0.3,5.5-0.1c3.4,0.3,0.5-1.9-0.3-2.8c-1.1-1.1-1.5-2.7-2-4.1c0,0-1.8-0.9-2.1-1.2c-1.7-1.9,0.2-2.1,0.7-3.7c0.2-0.6-0.4-0.9-0.7-1.3c-0.7-0.7-0.4-1.5-0.3-2.4c0.4-0.4,2.2-0.6,1.3-1.6c-0.5-0.6-1.2-0.6-1.4-1.5c-0.2-0.6,0-0.9-0.3-1.6c-0.1-0.3-0.6-1.9,0-0.8c1.1,2,3.1,2.5,2.5,5.1c-0.2,0.9,0.3,2.1,1,2.8c0.9,0.9,0.8,1.5,1.2,2.7c0.2,0.2,0.3,0.4,0.6,0.4l0,0c0.3-1.3,0.6-2.2,2.1-2c0.5,0.1-0.1,1.6-0.1,2.1c0,0.7,0.1,2.3,1.1,1.4c1.5-1.3,0.7-1.7,2.1-0.4c0.4,0.4,1.1,0.3,1.6,0.7c0.4,0.3,0.8,1,1.3,1.2c0,0.3,0.5,0.2,0.2-0.6c-0.3-0.7-0.7-5.5-0.1-6c0.9-0.7,2.2,1.5,3.1,1.7c0.5,0.1,2.8-0.4,2.3-1.2c-0.3-0.5-1.1-0.5-1.1-1.4c-0.1-1.2,1.9-1.1,2-2.2c0.1-0.9-3.2,0.3-1.9-2.2c0.7-0.1,1.7-0.8,2.2,0c0.6,1.1,1.8,2,3,2.2c1.4,0.2,2.7-1,3.9-1.6c1.5-0.7,2.5,0.9,4.2,0.5c0.5-0.1,2-0.6,2.2-1.1c0.2-0.8-0.7-1.6-0.6-1.9c0.7-0.2,1.4-0.5,2.1-0.1c0.9,0.6,2.4-0.8,3.4,0.4c0.4,0.5,0.7,1.2,0.9,1.8c0.3,1.2-2.3-0.4-2.8-0.6c-0.9-0.3-1.5-0.2-2.4,0.1c0,0.1,0,0.1-0.1,0.1c0,0.4-0.1,0.8-0.1,1.2c0,0.2,1,0.3,1.2,0.3c0.7,0.2,2.1,1.3,2.1,2h-0.1c0,0.1-0.7-0.2-0.9,0c-0.6,0.5,0.1,0.9,0.5,1.2c1.2,0.6,1.7-0.5,2.9,0c1.2,0.6,1.4,1.2,2.3,2.2c0.8,0.9,1,0.7,2.2,0.7l0,0c0.2,1,0.2,1.2,1.4,1.2c2,0,2.1-0.6,2.8-2.3c0.2-0.6,0.6-3.4,1.6-3.4c0.1,0.8-0.4,3.7-0.7,4.5c-0.4,1.1-0.9,1.3-1.7,2c-0.6,0.5-1.7-0.2-2.3,0.1c-0.3,0.1,0.3,2.5-0.6,2.8c-1,0.4-2.1-1.5-2.9-1.5c-0.1,0.3,0.6,2,0.8,2.4c0.3,0.5,0.8,2.4,0.5,2.9c-0.4,0.9-1.3,1.5-0.7,2.4c0.6,0.9,0.6,1.8-0.4,2.4c-0.4,0.2-0.8,0-1.2,0.3c-1.3,1.1-2.2,2.7-4.2,1.5c-1.4-0.8-1.9-1.2-2.9-2.5c-0.7-0.8-0.6-1.3-1.6-0.6c-0.9,0.6-0.7,0.5-1,1.6c-0.2,1-1.3,2.1-1.8,0.7c-0.1-0.4-0.1-1.1-0.2-1.5l-0.1-1.5c0-0.3-0.9-0.3-1.2-0.4c-0.5-0.1-2.3-1.2-2,0c0.3,1.4-0.6,2.1-1.8,2.6c-1.2,0.5-1.4-0.5-2.3-0.5c-0.7,0-0.6,1.2-1.4,1.3c-0.9,0.2-0.4-2.6-2.1-2.8c-1.4-0.2-2-0.9-3.1-1.7c-0.8-0.6-3.5-1.3-4.5-0.7c-0.4,0.2-1.1,1-1.6,1.3c-0.1,0.1,0.6,1.2,0.5,1.9l-1.2,0.4c0.4,1.6,1.4,1.3,2.4,1.9c0.6,0.4,0.1,2.2,1.2,1.4c2.3-1.6,4.9,1,6.3,2.6c1.3,1.4-0.1,1.6,2.2,2.6c2.1,1-0.1,3.5,0.4,4.6c0.3,0.6,4.7,2.4,5.6,2.8c1,1.1,1.5,0.1,2.7,0.1c0.8,0,1.3,1,2.3,1c1.4-1.9,2-3.5,4.8-3.5c1.8,0,3.2,0.1,4.7-1.1c2-1.5,4.4-1.9,6.6-0.3c0.7,0.5,4.9,3.2,5.6,3.2l0,0l0,0l0,0c0-1.1-0.4-2.8,0.6-3.6c2.1-1.1,1.1-1.3,2.2-2.9c1.1-1.5,3.8,2.3,5.9,0.2c1.3-1.4,0.8-3.9,3.5-3.9c-0.2,0.8-2,3.6-2.7,4.2c-0.9,0.7-3.9,1.8-4.1,2.7c1.4,0.3,4.7-0.3,6.2-0.7c1.8-0.5,1-3,4.1-3.1c3.2-0.1,4.5,0.7,7,2.2c0.3,0.2,0.7-1.7,0.8-2.2c0.5-1.8,1.7-1.3,2.9-1.9c1.3,0.3,4.5-1,4.9,1.3c0.1,0.4-0.4,1.3,0.1,1.3c1.2,0.1,2.6-1.1,3.9-0.5c1.7,0.8,1.6,1.9,2.5,3.2c0.4,0.6,3,2.3,3.1,2.4c0.1,0,0,0,0.1,0c0,0.5-1.4-0.1-1.6-0.1c-0.9-0.4-3.3-1.8-4.2-1.5c-0.7,0.2-0.8,0.9-2,1.1c-1.8,0.3-1.3,2.5-0.6,3.6c1,1.6,1.8,3,0.6,4.9c-0.3,1-0.7,0.9-1.4,1.5c-0.1,0.1,1,1.2,1.2,1.4c0.9,1.4,0.4,3.3,2.9,3c1.3-0.2,2.7-0.7,3.9-0.8l0,0c0.7-2.8,2.6-4,4.6-5.8c0.7-0.6,1.1-1.1,1.6-1.9c0.4-0.5,0.6,1.1,0.6,1.3c0.1,0.9,0.2,2.1,1.1,2.7c1.5,1,2.4,1.6,4.2,1.2c1.6-0.3,2.5-2.4,4-2.1c1.3,0.3,2,2.6,3.5,2.4c1.1-0.1,6.5-1.6,6.8-2.4c0.4-1.4-0.4-3.6,0.2-5c0.9-2.3,3-4.5,4.1-7c0.9-2.1,1.3-1.2,2.5-0.2c1,0.9,2.5,3.4,4,3.4c2.4,1.3,3.4-0.1,5.1-1.6c1.1-1,7.3-3.3,7.9-0.9c0.1,0.6,0.2,4,0.8,4c0.2,0.6,2.9,0.1,3.4-0.1c1.3-0.4,1.7-1.1,1.5-2.5c0.4-1.6-0.5-4.1,0.7-5.4c0.9-1,3.4-1.8,4.7-2c4.2-0.6,6.6-1.5,4.5-6c-0.5-1.1,0.5-4.2,1-5.3l-1.4-1.3c0.1-0.1,0.2-0.3,0.2-0.5c0-1.1-0.3-2.1,0.1-3.2c0.7-1.7,1.1-1.9,2.4-3.3c0.9-1,1.4-2.6,1-3.9c-0.4-1.5-1.6-2.1-2.1-3.4C600.1,371.3,600,371,600,370.8z"
                      />
                      <text transform="matrix(1 0 0 1 456.1309 325.3027)">
                         <tspan x="0" y="0" class="texte">Morbihan</tspan>
                      </text>
                   </a>
                </g>
                <g>
                   <a xlink:href="Côtes-d*’Armor.html" target="myFrame" onmouseover="afficher_image('im2');" onmouseout="cacher_image('im2');">
                      <path id="03" title="Côtes-d’Armor" d="M400.7,40c0.1-0.5-0.2-1-0.2-1.5c0-0.5,0-1.1-0.4-1.4c-0.4-0.4-1-0.3-1.4,0c-0.4,0.2-0.2,0.7-0.2,1c0.1,1.1-0.6,1.3-1.3,1.9c-0.5,0.4-0.4,1-0.3,1.5c0.2,0.9,0,1.6,1.1,1.6c0.8,0,2-1.5,2.5-2.1L400.7,40L400.7,40z M421.3,34.9c0.2,0,1.1-0.2,1.3-0.3c0.3-0.3,0.2-0.6,0.2-1c0-0.5,0.1-0.7,0.3-1.2c0.1-0.4-1.6-0.4-1.9-0.4c-0.7,0-1.1,0.3-1,1c0,0.3,0.2,0.5,0.2,0.8c0,0.4-0.5,1-0.7,1.4c-0.3,0.9,0.6,0.4,1,0.2L421.3,34.9L421.3,34.9z M431.6,46.7c0.8-1.4-1.4-4.3,1.2-4.9c0.9-0.2,3.7-2.1,3.8-0.2c0,0.4-1.8,1-1.6,2.1c0.1,0.7,0.2,1.2-0.1,1.9c-0.1,0.3-1.2,0.5-0.9,1.1c0.2,0.3,0.4,0.7,0.3,1.1c-0.1,0.2-0.5,0.3-0.7,0.3c-0.5,0-0.6,0.7-1,0.7c-0.5,0.1-1.1-0.7-1-1.2L431.6,46.7L431.6,46.7z M618.4,123.3L618.4,123.3c0.1,1,1.4,1.4,1.4,2.3c0.8,0.9,0.5,0.6,1.6,0.6c0.9,0,1.5,1.3,1.5,2.1c0,1.3-1.4,2.2-1.6,3.4c-0.1,0.8,0.5,1.4,0.3,2c-0.3,0.8-0.5,1.3-0.5,2.1c0.9,0.2,1.7-2.3,1.8-3c0.3-1.5,1.1-1.6,2-2.7c-0.3-0.3-1.2,0.3-1.4-0.5c-0.2-0.5,0.2-1.4,0.5-2.2l0,0c1.9-0.5,5-1,7-0.9c2.4,0.1,2.1,3.8,2.1,5.4c0,1.9,1.9,3.9,0.3,5.4c-2.7,2.7,1,3.3,1,5.3c0,2.7-3.4,2.4-4,4.2c-0.3,0.9,1.4,2.4,1.7,3.3c0.6,1.9-2.2,2.2-3.2,2.7c-2.1,0.9-2.5,2.9-2.1,5c1.4,1.8,2.7,1.6,2.3,4.4c-0.2,1.3-0.9,3.5,0.7,4.2c0.9,0.4,0.2,1.7-0.1,2.4c-0.6,1.3-1.6,2.5-1.6,4.1c-0.1,2.2,1.7,2.7,2.1,4.4c0.6,1.8,0.7,2.1-1.1,3.1c-0.9,0.5-4.5,0.5-4.8,0.9c1.6,2.1,2.4,5.4,1.4,8c-0.4,1.1-1.3,1.8-0.9,3.1c0.6,1.7-1.2,1.3-2,0.5c-1.4-1.4-3,0.6-4.3,1c-0.9,1.3-1,4.3-3.5,3.7c-1.5-0.4-4.1-1.5-5.3-2.6c-0.3-0.3-1.7-2.2-2-2.2c-0.5,0-3.1,1.7-3.7,2.1c-0.7,0.4-0.2,1.6-0.6,2.4c-1.4,2.8-6.8,1-5.7,3.6c2.6,6-1,3-4.3,2.4c-2.3-0.5-2.9-0.7-5.1,0c-2.2,2.1-4.7,3.3-5,6.6c-0.1,1.6,0.2,7.8-2.1,7.4c-1.2-0.2-3-2-4-0.4c-0.9,1.5-0.4,5.2-0.5,7c-0.1,2.2,0.2,3.2-1.4,4.9c-0.6,0.7-3.1,2-3.1,2.9c0,0.8,1,1.6,0.4,2.5c-0.3,0.5-2.7-0.9-3.1-1.2c-1.4-1.2-2.5,0.7-3.7,1.3l-0.1,2.6l0,0c-2.2,1.3-3.6-0.3-5.5,0.5c-2.2,0.9-1.6,4.2-4.6,2.5c-1.4-0.8-1.8,0.3-2.4,1.5c-1.1,2-1.6,2.4-2.9,0.3c-0.6-1-1.6-2.9-1.7-4.2c0-1,0.3-3.1-0.7-3.5c-0.8-0.4-1.8-0.7-2.5-1.3c-0.9-0.8-1.3-1.8-1.7-2.9c-0.5-1.7-3.4-3.6-5.1-3.6c-3.1,0-4,1.4-6.3,2.9c-1.6,1.1-2.4-0.1-3.9,0.3c-0.8,0.2-1.5,1.1-2.2,1.5c-1.5,0.9-4.7,0.2-6.6,0.2l0,0.1c0.7,0.2,2,3.1,2.7,3.8c2.5,7.6-7.4,9.5-6,16.5c0.5,2.5-1.2,2.6-3.4,2.8c-1.2,0.1-1.4,0.8-2.3,1.3c-0.7,0.7-1.1,1.5-1.8,2.2c-0.8,0.8-2,1.4-2.8,2.2c-1.1,1.1-3.4,3.1-5,3l-3.4-0.1c-0.6,0-1.3-2.2-1.5-2.8c-0.4-0.1-0.8-0.5-1.2-0.7c-0.1-0.2-0.2-0.7,0.1-0.8c0-0.4,0.1-0.4-0.1-0.8c0-1.7-0.8-2.9,0.2-4.5c0.8-1.4,1.4-2.9,1.7-4.5c0.7-3.3,0.8-5.5,0.1-8.8c-0.6-2.8-0.2-3.3-2.9-2.2l-3.2,1.3c-1.3,0.5-1.8,2.5-3,3.1c-1.4,0.7-2.8,0.3-4.2,0c-2-0.4-2.6,0.8-4.1,1.5c-0.6,0.7-1.2,1.6-1.4,2.5c-0.2,0.7-0.3,1.1-0.8,1.5c-0.8,0.6-1.3,1.5-2.3,1.5c0-0.1,0-0.1-0.1-0.1c0-0.1,0-0.1-0.1-0.1c0-0.7,0.1-1.3,0.1-2c0-0.7-0.1-1.3-0.2-1.9c-0.5-0.1-1-1.7-1-2.2c-0.3-1.4-0.3-3.8-1.6-4.7c-1.4-1-2.4-4.2-4.2-4.2c-1.7,0-3.1,1-4.7,1.1c-0.8,0-1.3-0.2-2.2-0.3c-2.6,0-5.1-2.7-6.2-4.9c-1.1-2.2-3.9-1.4-6.2-2.2c-2.3-0.7-3.3-0.7-5.7-0.5c-2.2,0.2-5.1,1.9-7.1,2.9l-2.2-0.5c1.3-1,2.5-1.8,0.9-2.3c-2.6-0.8-3.6,0.1-3.7-3.4c-0.2-3.9-3.6-4.5-6.7-6.1c-3.8-2-6.8,1.5-10.1,0.1c-0.4-0.2-0.8-0.3-1.3-0.5l-1.4,1.8c-0.3,0.3-0.6,0.6-0.9,0.8c-0.3,0.2-0.5,0.5-0.7,0.8c-0.4,0.6-0.7,1.3-1,1.9c-0.4,1.5,0.1,2.6,1.3,3.4c-0.1,0.6-3.4,3.6-4,3.6l-5.3,0.2c-1.4,0-2.3-0.6-3.5,0c-1.7,0.8-2.2,2.6-3,4.2c-0.4,0-1.7-1.1-2.2-1.3c-1-0.5-2.6,0-3.6,0.4c-2.8,1.1-4.2,1.2-7.2,0.6c-0.9-0.4-1.1-1.7-1.8-1.9c-0.6-0.1-2.7-0.6-3.2-0.4c-0.5,0.2-1.3,0.6-1.8,0.6c-0.4-1.5-1.4-3.3-2.6-4.3c-0.3-0.3-5,1.3-5.9,1.6c-3.1,0.8-8.3,6.3-11,3.4c-0.5-1.2-2-1.5-1.4-3c0.4-0.9,1.4-1.7,1.9-2.6c1-1.6-1.2-2.6-2.5-3.3c-1.6-1-1.1,0.8-2.7,1.2c-2,0.5-3.8-0.5-5.3-1.8c-1.1-0.9-6.4,1.5-8.3,1.7l-8-0.3l0,0c0.6-1.1,1.1-2,2-2.7c0.5-0.4,2.1-0.9,2.7-0.9c1.3,0,4.5,0.8,4.3-1.2c0-3.3-3.4-1.7-4.5-4.3c-0.8-1.9-2.7-5.8-0.5-7.2c1.7-1.1,2.6-2.7,2.6-4.7c0-1.3,0.4-1.7,0.6-2.8c0.3-0.4,2.4-3.4,1.2-3.7c-1.7-0.3-2.2-1.3-3.5-2.3c-0.6-0.5-1.9-1-1.2-1.7c0.7-0.8,2.3-1.3,2.8-2.2c0.3-0.6,0.4-1.2,0.8-1.8c0.3-0.4,1.3-1.6,1.3-2.1c-1.5,0-3.4,1.5-4.8,1c-1-0.4-0.4-3.3-0.5-4.2c0-1.1-0.5-2-1.2-2.8c-0.8-0.7-0.4-1.7-0.2-2.6c0.2-1.2,2.2-6.2,1-6.8c-1.3-0.6-3.3-0.4-4.8-1.1l-4.7-1.7c3-3.3-1.6-8.8,3.6-11.3c1.9-0.9,3.5-2,5.5-2.8l-2.7-3c-0.4-1.1-1.8-2.1-2.7-2.7c-1.1-0.8-1.2-1.1-1.9-2.2c-1.1-1.5-1.7-4.1-0.7-5.8c2.5-4.1,6.1-7.6,9.5-11c1.7-1.2-0.3-2.5-1.4-3c-1.3-0.6-1.9-1.8-3-2.5c-0.8-0.5-1.8-0.2-2.5-0.6c-2.7-1.2,2.3-8.5-1.6-8.4l-4,0.1c-3.4,0.1-4.6-3.2-4.6-6.1c0,0,0,0-0.1-0.1c-0.6,0-1.5-0.7-1.6-1.3c-0.9-2.1-1.2-4-1.2-6.3c-0.1-1.9-1.1-3.9-0.1-5.6l2.9-4.1l0,0c1.2,0,1.7-3.1,3.9-2.6c0.9,0.2,1.3,3.2,2.1,4.2c0.6,0.2,1.2,0.5,1.8,0.6c0.7,0.1,1.5-0.4,2.5-0.2c1.5,0.3,2.8-4.1,3.5-5.1c-0.9,0-1.5-0.1-2.4-0.3c-1.6-0.3,0.1-2.2,0.1-3.5c0-1.5-0.8-3.4-0.4-4.8c0.5-0.4,0.6-0.8,1.3-1.1c1.5-0.6,4.1-1.2,4.1-3.4c0-2.4-0.1-3.3-1.1-5.5c-0.5-1.1-1.6-0.9-2.6-0.7c-2.6,0.5,0.2-1.8-2.3-2.4c-1.2-0.3-0.2-0.9,0.1-1.5c0.3-0.9,0.5-2.5,0.5-3.5c-0.5-2.7-0.5-1.4-2-1.3c-1.5,0.1-1.1-1.3-1.7-2.3c-1.2-2.3,0.5-1.2,1.6-1.3c1.1-0.1,2.2-1.1,3.3-1.4c0.7-0.2,1.5,0.6,2.2,0.8c1.6,0.3-1.3-1.3,1.3-1.6c1.2-0.2,2.8-0.7,2.2-2c-1.1-2.2,2.3-0.5,2.6-2.5c0.1-0.8,1-0.3,1.6-0.5c0.6-0.2,0.7-1.5,1-1.6l0-0.1c1.8,0,1.5-1.5,3.2-0.2c1.2,1,3-0.1,4.2,0.1c0.7,3.5,2.2,5.7,6,5.3c0.7,0,3.2-0.4,2.3,1c-1.3,2-1.9,4.3,1.7,4.4c1.1,0,4.9,0,5.5-0.8c0.9-1.2-1-3.3,1.1-3.4c2-0.1,7.1-2.8,8.9-4.1c2.4-1.7,2.9-2.1,5.9-1.4c1,0.1,2,1.4,2.4,1c0.7-0.7,0.7-1.8,1.5-2.3c2.2-1.6,1.9,3.9,3.6,1.5l5.4-7.8c0.6-0.8,0.9-1.3,1.8-1.3c1.5,0,2.9,3.7,2.8,5c-0.1,1.1-2,3.8-0.2,3.4c2.2-0.4,1.3,4.6,0.7,5.8c-0.6,1.2-3.4,4.3-3.4,5.4c2,0,4.3-5.9,5-7.2c0.9-1.5,1-3.5,2.1-4.9c0.5-0.6,1.2-0.3,1.8-0.3c0.8,0,1.2-1.5,1.6-2.1c1.7-1,2.3-0.8,4.1-1.3c1.9-0.5,1.7-0.4,2.9-1.9c1.1-1.4,2.5-0.8,3.9-1.1c1-0.2,2.2-1.2,3.1-1.2c0,1.3,0.4,0.7,1.6,1c0.5,0.1,1,1.1,1,1.5c0,0.1-3.5-0.6-2,0.9c0.7,0.7,1,2,1,2.9c0,1.2-2.9,3.4-0.7,3.9c0.6,0.1,1.9-0.1,1.5,0.8l-1.5,2.8c0-0.1,0-0.1,0.1-0.1l-1.4,3.6c-1,2.5-0.5,5.1-2.8,6.7c-0.8,0.6-2.4,0.9-2.2,2.1c0.2,1.1-0.1,2-0.1,3l3.2-1c0.4-0.1,2-5.5,2-6.2c0-3.5,2-8,5.6-8.9c0.4-0.1,1.5-0.7,1.5,0c0,1.8,1,1.9,2.3,0.6c0.7-0.7,5.8-0.7,5.6-0.2c-0.2,1.2-1.6,3.1,0.3,3.9c3.8,1.6-1.1,1.5-1.8,2.8c-0.8,1.4-1.9,0.6-1.7,2.5c0,0.8,1.8,1,2.5,1c0,0.3-2,0.5-2.3,1.5c-0.2,0.5,2.3,2.3,2.8,2.4c0.7,0.2,1.4-0.3,2.1-0.1c0.7,0.2,1.5,1.1,2.2,1.2c0.7-0.2,1.4,0.2,2.2,0.2c0.7,0,2.8-0.2,3.3-0.5c0.7-0.4,1-1.1,1.7-1.5c0.1-0.1,1,2,1.4,2.4c0.5,0.6,2,1.2,2.8,1.4c-0.3,1.1-2.9,1.8-1.8,3.3c0.6,0.8,1.2,1.9,0.5,2.9c-0.4,0.5-1.8,0.9-1.8,1.4c0,0.2,0.4,1.2,0.5,1.5c0.6,1.7,2.8-1.7,2.8,2c0.6,1.5,1.9,2.3,3,3.4c1.2,1.2,2.8,0.6,4.2,0.6c0.5,0,0.4,2.2,0.5,2.7c0.6,2,0.1,3.9,2.5,4.7c1.4,0.5,2.7-1.1,3.1-0.6c1,1.4,3.1,2.3,3.1,3.9c0,1.1,1.1,0.4,1.7,0.8c0.6,0.4,0.7,1.7,0.8,2.4l0.8,6.3c0.2,1.5,1.2,2.7,0.9,4.3c-0.2,0.9-0.7,1.8-0.8,2.8c0,0.2,3.7,2.9,4.2,3.1c0.9,0.3,3.7-0.1,3.7,1.1c1.2,3,2.2,3.6,5.5,4.9l5.5,2.1c0.5,0.2-0.8,1.7-0.7,2.6c0.1,0.9,0.2,1.4,0.2,2.3c0,1.4,2.4,0.5,1.4,1.9c-1.1,1.4,0.4,2.3,1.3,3.3c0.1,0.7,3.6,6.8,4.2,7.1c1.8,1,1.5,0,0.3-0.9c-1.1-0.7-0.4-1.3,0.2-1.9c1.7-1.8,1-3,0.3-5.2c-0.3-1.2-1.3-2.6,0.1-3.2c3.2-1.3,1.5,0.4,3.7,2c1,0.7,3.8-0.2,5.3,0.2c-0.5-2.1-0.2-3.3,1.5-4.8c1.9-1.8,2.8-1.6,4.2-4.1c0.9-1,4.8-4,5-5.2c0.2-1.8,2-2.1,2.9-3.5c0.5-0.8-0.1-2.5,1.4-2.2c4.4,1,10.7-3.5,14-6.2c2.3-1.7,2.3-3-0.5-3.7c-0.5-0.1-3.6-1.6-2.2-2.5c0.6-0.4,4.5-1.3,5.4-1.4c5.1-0.9,7.2,0.1,7.2,5c1,0-0.2-2.1,1.3-2.5l3.2-0.8c1.5-0.4,2.2-2.6,4.4-3.2c2.5-0.7,4.5-1.6,6.6-3.2c1.4-0.9,1.4-1.4,0.9-3c-0.3-1.2,1.5-1.6,1.8-2.5c0.3,0.1,1.4,1.4,1.5,1.7c0.3,1.7-1.1,2.5,1.4,3.2c0.7,0.2,1.3,0.3,2,0.3c1.3,0,2.1-0.2,1.1,1.1c-1,1.3-2.6,3-3.3,4.5c-0.8,1.6-0.5,3.3-2.1,4.4c-1.5,0.9-2.9,2-4,3.4c0.4,0.4,2.1-0.2,2.6,0.7c0.3,0.4,0.9,2.5,1.9,1.6c0.4-0.3,2.2-3.6,2.3-4.1h0.1c0.4,1.5,1.5,1.1,2.2,0.2c0.4-0.5,0-1.4,0.6-2.2c1.3-1.8,5.1-3.4,7.3-3.4c0.3,1.1-2.4,2.3-1,3.8c0.3,0.3,1.4,1.2,1.5,1.5c0.3,0.8-0.5,1.6-0.2,2.5c0.4,1.4,1.9,0.8,2.8,1.3c1.1,0.7-0.2,3.4,1.6,4.6c0.8,0.6,1.1,2.1,1.2,3c0,0.4,0.8,2.2,1,1.6c0.5-1.1,2.5-2.9,2.6-4c0.1-1.5-0.5-3-0.5-4.4c2.8,2.1,1.6,2.4,2,5.3c0.1,0.5,0.4,4.6,1.6,3.9c0.8-0.5,3.2-2.5,3.5-3.4c0.1-0.4-3.6-2.4-2.5-3.1c1-0.7,0.6-2.6,2.1-3c1.9-0.5,3,0.2,4.7,0.7c0.2,0.1,0.5-0.1,0.8-0.2l0,0c0,2.8,1.1,5.1,3.4,6.5c3,1.7,3.3,4.3,7.5,4.5c1,0.1,3.3-0.2,3.8,1c1.1,2.5-0.7,3.1,1.5,5.3c0.1,0.1,0.6,0.8,0.7,0.7c0.1,0,1.1-2.4,1.5-2.9c0.9-1,3.1-1.9,3.6-2.6L618.4,123.3z"
                      />
                      <text transform="matrix(1 0 0 1 435.1836 181.8062)">
                         <tspan x="0" y="0" class="texte">Côtes-d*’Armor</tspan>
                      </text>
                   </a>
                </g>
                <g>
                   <a xlink:href="Ille-et-Vilaine.html" target="myFrame" onmouseover="afficher_image('im2');" onmouseout="cacher_image('im2');">
                      <path id="04" title="Ille-et-Vilaine" d="M618.4,123.3l-2.7-0.8c-0.5,0.7-2.7,1.5-3.6,2.6c-0.4,0.5-1.5,2.9-1.5,2.9c0,0.1-0.6-0.6-0.7-0.7c-2.1-2.2-0.4-2.8-1.5-5.3c-0.5-1.2-2.8-0.9-3.8-1c-4.2-0.2-4.6-2.8-7.5-4.5c-2.3-1.3-3.4-3.7-3.4-6.5l0,0c0.4-0.3,0.7-0.8,0.4-0.9l-4.3-1.2c-0.1,0,0.9-0.9,1.3-1.2c0.9-0.6-0.4-1.3-0.4-2.1c0-0.4,2.8-2.7,3.3-3c2.3-1.6,1.8-0.6,3.9,0.3c1.7,0.5,1.7,1,3.6,0.5c2.7-0.7,4.7-2,5.8,1.2c0.5,1.4,2.3,1.2,3.5,1.5c2.1,0.5,0.1,4,1.2,5.2c0.5,0.5,1.9-0.1,1.6,1.2c-0.3,1.3,0.1,2,0.7,3.2c0.7,1,1.3,0.5,2.3,0.8c0.7,0.3,0.9,0.7,1.4,1.2c0.4,0.4,1.3,0.9,0.6,1.1c-0.4,0.1-2.9,1-2.8,1.4c0.1,0.3,0.6,0.4,0.6,0.8c0.2,1.1,0,0.8,1.1,1C618.3,121.2,618.4,122.6,618.4,123.3L618.4,123.3L618.4,123.3z M624,127.5L624,127.5c1.9-0.5,5-1,7-0.9c2.4,0.1,2.1,3.8,2.1,5.4c0,1.9,1.9,3.9,0.3,5.4c-2.7,2.7,1,3.3,1,5.3c0,2.7-3.4,2.4-4,4.2c-0.3,0.9,1.4,2.4,1.7,3.3c0.6,1.9-2.2,2.2-3.2,2.7c-2.1,0.9-2.5,2.9-2.1,5c1.4,1.8,2.7,1.6,2.3,4.4c-0.2,1.3-0.9,3.5,0.7,4.2c0.9,0.4,0.2,1.7-0.1,2.4c-0.6,1.3-1.6,2.5-1.6,4.1c-0.1,2.2,1.7,2.7,2.1,4.4c0.6,1.8,0.7,2.1-1.1,3.1c-0.9,0.5-4.5,0.5-4.8,0.9c1.6,2.1,2.4,5.4,1.4,8c-0.4,1.1-1.3,1.8-0.9,3.1c0.6,1.7-1.2,1.3-2,0.5c-1.4-1.4-3,0.6-4.3,1c-0.9,1.3-1,4.3-3.5,3.7c-1.5-0.4-4.1-1.5-5.3-2.6c-0.3-0.3-1.7-2.2-2-2.2c-0.5,0-3.1,1.7-3.7,2.1c-0.7,0.4-0.2,1.6-0.6,2.4c-1.4,2.8-6.8,1-5.7,3.6c2.6,6-1,3-4.3,2.4c-2.3-0.5-2.9-0.7-5.1,0c-2.2,2.1-4.7,3.3-5,6.6c-0.1,1.6,0.2,7.8-2.1,7.4c-1.2-0.2-3-2-4-0.4c-0.9,1.5-0.4,5.2-0.5,7c-0.1,2.2,0.2,3.2-1.4,4.9c-0.6,0.7-3.1,2-3.1,2.9c0,0.8,1,1.6,0.4,2.5c-0.3,0.5-2.7-0.9-3.1-1.2c-1.4-1.2-2.5,0.7-3.7,1.3l-0.1,2.6l0,0c0.6,0.9,1,1.9,1.5,2.8c0.7,1.3,2.3,2.2,3,3.5c0.6,1.1,0.7,3.3,0.6,4.5c0.4,2,0.1,3.7-0.4,5.6c-0.9,2.9,0.5,2,2.5,2.7c1,0.4,2.7-2.5,3.7-3.4c1-0.8,7.9-2,9-1.5c2,0.8,0.8,4.7-0.4,5.8c-1.6,1.5-4.1,2.1-6.3,2.1c-3.5,0.1-5.2-0.8-7.7,1.9c-1.5,1.6-5.1,4.5-5.1,7c-0.6,1.1-0.7,3.2-0.9,4.4c-0.9,4.9,4,0.6,6,0.2c1.9-0.4,2.7,0.2,4.4,0.8c1.6,0.6,3.9,1.2,5.6,1.6c0.7,0.6,2.1,1,2.9,1.5c0.8,0.5,1.2,1.3,2.1,1.7c1.3,0.6,2.7,0.6,4,1.3c2.2,1.2,4.8,2.3,6.7,3.9c2.1,1.8,2.7,4.5,3.7,6.9c0.3,1.6,2,2.3,2,3.9c0,1.2-1.5,2.4-2.3,3.3c-0.5,0.6-1.2,2.1-1.7,2.4c-1.6,1-2.3,2.8-1,4.4c1.4,1.5,2,2.7,1.8,4.9c-0.3,0.9-1.7,2.8-1,3.7c0.8,1.1,1.1,2.5,2.6,1.6c2.6-1.6,5.6-3.6,6.6-6.7h0.1l0.5,5.4c0.2,2.2,1,3,3.1,3.6c0,2.4-1.5,5.1-4.1,5.6c-0.8,0.2-2.6,0.1-2.1,1.3c0.3,0.7,0,2.9-0.4,3.5c-0.8,1.5-1.7,3.3-3.6,3.8c-1.3,0.4-2.8-0.4-3.6,1c-0.5,0.9-0.7,1.7-1.4,2.5c-1.9,2.5,6.1,0.2,6.5,3.6c1.1,0.6,1.8,0.7,3.1,0.7c0,0,0.1,0.1,0.1,0.1c0.2,1,1,1.8,1,2.9c0,1.2-5.6,0.7-6.5,1c-1.2,0.3-1.4,0.3-2.3,1.1c-0.7,0.6-2.4,2.1-3.2,2.4c0,0,0,0,0.1,0c-1.7,1.7,1.1,2.7,1.1,4.4c0,1.4-0.9,2.7-0.9,4.2c0,2.5,3.4,2.3,4,4.3c0.5,2.1-1.4,4.2-1.6,6.4c0,0.8,0,1.6,0.2,2.4c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.3,0.4,0.8,0.7,1l1.3,1l0,0c0.1-1.6,1.9-3.5,3.3-4.6l3.3,0.5c3.6-0.8,0.3-4.7,4.7-4.9c2.5-0.1,4.3,1.3,6-1.1l3.2-4.5c2-2.8,2.4-1.8,3,0.8l0,2.5c0.4,0.2,0.8,0.5,1.2,0.7c1.4,0.8,2.7-1.7,3-2.1c1.3-1.6,2.2-2.2,4.2-2.9c3.9-1.2,7.6,0,10.1-3.5c1.5-2.1,4,0.2,5.9-0.6c0.3-0.1,0.4-0.3,0.5-0.6l2.4,0.7c2.2,0.6,4.5,1.6,6.7,1.9c2.5,0.4,3.5-0.1,5.4-1.5c1-0.8,2.1-0.5,3,0.2c3.8,4.8,7.5-4.5,11.1-2.6c4.9,2.4,3.4-2.5,7.9-2.5c0-2-0.3-4.2,0.2-6.1c0.3-1.2,1.7-4.4,2.8-4.7c1.1-0.3,2.3,0,3.5-0.4c1.7-0.8,0.1-2.8,1.7-3.5c1.5-0.7,3.4,0,4.7-0.8c1-0.7,1.7-1.1,2.9-1c1.2,0.1,3.7-0.1,4.5-1c0.6-0.6,3.8-3.5,4.4-3.5c1,0,1.6,0.4,2.7,0.3c1.7-0.3,5.5-1.4,3.9-4.1c-0.7-1.2-3.2-4-3.2-5.3l0,0c0.1,0,0,0,0.1,0c4.9,0,9.7,1.3,14.5,1.9c1.6,0.2,3,0.7,4,1.9c1.4,1.5,0.3,3.4,2.7,3.9c0.8,0.2,0.7,1.6,0.8,2.2l0.8,0.3c5.5,1,10.9,2.5,16,4.5c1.4,0.6,3.1,0.1,4.3,0.6c1.5,0.6,1.2-2.6,1.3-3.5c0.2-0.7,1-2.2,0.6-2.9c-0.2-0.3-0.8-1.5-0.7-1.8c0-0.4,2.4-2.9,2.8-3c1.2-0.2,1.5-1.2,1.5-2.3c0-1.5,0.4-3,0.3-4.5c-0.1-0.6-1.1-1.5-1-1.8c0.1-1.3,4-1.3,4.2-2.3c0.5-0.9,2.4-1.5,1.6-2.7c-0.5-0.8-1.2-1.7-1.2-2.6c-0.1-2.3,2.9-2.9,3.8-4.9c0.6-1.4-0.1-2.8,0.7-4.2c0.8-1.4,2.6-3.9,1.3-5.4c-0.7-0.8,1.5-0.7,0.8-2.1c0-2.5,0.2-4.2,1.6-6.1c1.4-1.9,3.1,0.3,4.4-2.6c0.5-1.1,1-2.8,2.3-3.2c1.5-0.4,3.7,0,5.2,0.3c2.6,0.5,4.9,1.4,7.5,0.1c2.6-1.3,6-2.5,5.3-5.7c0-1.7-0.4-2.6-1.2-4c-0.8-1.3-1.6-2-0.8-3.7c0.5-1.2,0.2-1.4-0.1-2.6c-0.3-1.1,0-2.3,0.3-3.4c0.4-1.5,1.2-2.6,0.8-4.3c-0.5-2.2-3.7-2.2-4.6-4.4c0-1.9-0.7-3.9-1-5.8c-0.3-1.8-1.1-3.5-1.1-5.3l-0.1-3.2c0-1.7-0.3-2.1-1.1-3.4l-1.5-0.8l-0.4-4.4l-0.1-2c0-0.9-0.2-1.6-0.2-2.5c0-1,0.4-2.1,0.3-3.1c-0.3-2.1-0.3-4.1-1.4-6.1c-0.2-2.8-2.5-4.9-2.5-8.1c0-2.9,1-4.1,1.5-6.8c0.5-2.2,1.1-2.3,2.1-4.1c0.9-1.7,3.3-3,4.5-4.6c0.4-1.2,1.3-2.6,1.6-3.7c0.2-0.8-1.4-2.3-1.8-3.1c-0.6-1.3,0.2-6.6-1.2-7.1c0-0.8,0.7-2.3,1.2-3c0.9-1.3-0.6-1.9-0.2-3c-0.6-1.7-1.3-2.8-2.5-4.2c-0.7-0.8-2-2.4-1.4-3.5c0.3-0.6-0.2-2.2-0.3-2.9c-0.3-1.3-0.8-2.2,0.2-3.4c0.2-0.3,1.2-0.8,1.2-1.1c0.1,0,0.8-0.6,0.8-0.7c0.5-0.1,0.8-2.5,0.8-3c0.3-1,0-1.5-0.1-2.4c-1-0.7-2.2-1.8-2.3-3.1c-0.2-1.4-0.1-3.4,0.2-4.7c0.2-1.1,0.5-1.7,0.5-3l0,0c-2.7-1.3-5.7,0-7.6-2.5c-2.2-2.9-5.7,2.1-7.5-0.5c-0.2,0-0.2-0.2-0.3-0.3c-0.7-0.4-1.6-1.7-2.3-2.2c-0.9-0.7-2.5,0.1-3.6,0.1c-3.1-0.2-2-3.6-5.9-2.5c-2.4,0.7-3.7-1.2-5.8-0.7c-3,0.6-3.2,3.1-3.4,5.7c-0.8,1.3-1,3.7-2.9,3.7c-1.7,0-2.6,1.8-4.3,2.4c-0.8,0.2-2.8-0.2-3.2,0.5c-1.1,2,0.8,2.5-1.9,3.6c-2.3,0.9-1.5,2.7-3.4,4c-3.1,2.3-3.4,2.5-7.1,2.1c-1.6-0.6-5.8-0.1-6.6-1.4c-1.1-1.8-0.9-4.1-2.9-5.3c-1.6-1-2.9,0.3-4.4-0.2c-0.9-0.3-1.6-0.9-2.4-1.1c-1.2-0.4-1.4-0.2-1.5-1.8c0-0.9-0.2-2.3-0.5-3.1c-0.4-1.1-1.3-1.5-1.6-2.8c-0.6-1.5-2.3-2.3-2.9-3.7c-0.4-1.1-0.2-2.9-1-3.7c-0.5-0.5-1.2-1.1-1.5-1.8c-0.4-1.3,1.3-1.8,1.7-2.7c0.5-0.9-0.6-3-1.3-3.7c-0.6-0.5-1.3-0.7-1.9-1.1l0.1-0.3c0-2.6,1.1-3.7-0.7-5.8c-1-1.3-3.7-1.8-4.2-3.3l-0.6-2.5l0,0c-2.9,0.6-5.9,1.5-8.4,2.4c-2.6,0.3-5.1,1.4-7.7,1.7l-7.9,0.8c-3.6,0.4-8.9,1-12.4-0.1c-4.4,0-9.3-0.6-12.9-3c-3.1-2.1-3.8-3.8-5.3-7c0-1.8,0.2-2.4,0.7-4c0.5-1.4-0.4-1.9,1.4-2.4c1-0.3,1.5-0.9,2-1.8c0.7-1.3,2.1-0.7,1.4-1.9c-0.8-1.3-1.2-1.9-1.5-3.5c-0.4-1.9,0.4-2.7,0.4-4.4c-0.6,0.1-1.4,1.7-1.8,2.1c-0.7,0.6-2.3,0.4-3.4,1.2c-0.7,0.5-1.7,0.1-2.5,0.3c-1.5,0.5-2.3,1.8-3.5,2.2c-1.6,0.5-1.9-1.1-2.8-1.3c-0.6-0.2-1.8,0.2-2.2-0.2c-1.3-1.2-0.1-1.4-1.2,0.2c-0.8,1.2-2.6,0.5-3.8,0.8c0,1.1,0.6,2.2,1.7,2.2c-0.9,0.2-2,1.1-2.6,0c-0.6-1.2-2,0-2.7,0.4c-1,0.4-1.4,0-2.3,0c0,1.9,1.6,2.4,0.2,4.6c-1.1,1.7-3.4,3.1-5.4,3.4c-1.9,0.3-2.3-0.3-2.3,1.8c0,0.4,0.1,2.8,0.2,2.9c0.6,0.4,1.3,0.2,1.9,0.5c1.8,0.8,0.7,3.4,0.7,4.7c0,1.5,1.3,0.8,2,0.8c0.3,1-2.3,4.8,0.3,3.5c1.6-0.8,0.4,4.9,2.3,2.1c1-1.5,2.3-0.3,3.1,0.7c1.1,1.3,1.4,0,2.1,0c0,0.5,0.3,1.8-0.5,2c0,0.4,1.8,0.9,1.8,1.4c0,0.4-1.7,0.1-2-0.1c-0.6-0.7-2-3.1-3.2-2.1c-0.7,0.5,0.6,2.7,0.9,3.2c0.2,0.6,1.2,1,1.5,1.9c0.2,0.7,0,1-0.3,1.6c-0.5,1-0.9,2.3,0.8,2.3C625.4,124.5,624.7,126,624,127.5z"
                      />
                      <text transform="matrix(1 0 0 1 659.2148 237.6665)">
                         <tspan x="0" y="0" class="texte">Ille-et-Vilaine</tspan>
                      </text>
                   </a>
                </g>
     
                <text font-size="100" x="0" y="35" display="none" style="font-size:15px;font-weight:bold;fill: #bbef0d;font-family:Verdana">
                   Finistère
                   <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="0" y="35" display="none" style="font-size:15px;font-weight:bold;fill: #bbef0d;font-family:Verdana">
                   Morbihan
                   <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>2
                <text font-size="100" x="0" y="35" display="none" style="font-size:15px;font-weight:bold;fill: #bbef0d;font-family:Verdana">
                   Côtes-d*’Armor
                   <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="0" y="35" display="none" style="font-size:15px;font-weight:bold;fill: #bbef0d;font-family:Verdana">
                   Ille-et-Vilaine
                   <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>
     
             </svg>
          </div>
       </div>
     
     
       <!--Afficher nom tooltip-->
       <script src='../../../js/2.1.3_jquery.min.js'></script>
       <!--Afficher nom tooltip-->
       <script src="../../../js/index_tootip.js"></script>
     
     
     
     
       <script>
          afficher_image = function (id) {
             document.getElementById(id).style.display = "block";
          };
          cacher_image = function (id) {
             document.getElementById(id).style.display = "none";
          };
       </script>
     
       <img class="img_info" src="../Drapeaux/xxxxxxx.gif" width="60" height="40" id="im1" style="display:none;">
       <img class="img_info" src="../Drapeaux/xxxxxxx.gif" width="60" height="40" id="im2" style="display:none;">
       <img class="img_info" src="../Drapeaux/xxxxxxx.gif" width="60" height="40" id="im3" style="display:none;">
       <img class="img_info" src="../Drapeaux/xxxxxxx.gif" width="60" height="40" id="im4" style="display:none;">
     
    </body>
     
    </html>

    Citation Envoyé par psychadelic Voir le message
    ligne 244 => chargement de la bibliothèque jQuery
    ligne 245 => utilisation de "index_tootip.js"

    elle ne servirait pas par hasard à afficher tes attributs title ??
    Oui bien vu, c'est bien ça !

    PS : D'ailleurs je trouve dommage d'utiliser JQuery juste pour afficher les title, apdf1 tu pourrais essayer avec de l'aide de récrire en JS pur la fonction qu'il y a dans le fichier index_tootip.js, ça t'éviterait de charger JQuery (à moins que tu l'utilises pour autre chose) et ça permettrait à l'occasion d'intégrer les codes JS de jreaux62 ou de ProgElecT...

+ Répondre à la discussion
Cette discussion est résolue.
Page 1 sur 2 12 DernièreDernière

Discussions similaires

  1. Mettre texte en majuscule ou minuscule
    Par NEC14 dans le forum Macros et VBA Excel
    Réponses: 2
    Dernier message: 01/08/2010, 20h44
  2. [AS400]Transformer un texte de minuscule.
    Par corab500 dans le forum Cobol
    Réponses: 5
    Dernier message: 18/02/2010, 12h15
  3. Mettre le texte selectionne en Majuscule/Minuscule OleWord
    Par blondelle dans le forum C++Builder
    Réponses: 0
    Dernier message: 18/12/2008, 20h59
  4. Réponses: 3
    Dernier message: 03/12/2007, 20h34

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