Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Madagascar/frwp/Villes_de_Madagascar.html
blob: aebe419ccc83badd4cce4ca2e9e4fe5caa14e894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html class="client-firefox client-firefox-4 client-gecko client-linux" dir="ltr" xmlns="http://www.w3.org/1999/xhtml" lang="fr"><head>
<title>Villes de Madagascar - Wikipédia</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta name="generator" content="MediaWiki 1.17wmf1">
<link rel="alternate" type="application/x-wiki" title="Modifier" href="http://fr.wikipedia.org/w/index.php?title=Villes_de_Madagascar&amp;action=edit">
<link rel="edit" title="Modifier" href="http://fr.wikipedia.org/w/index.php?title=Villes_de_Madagascar&amp;action=edit">
<link rel="apple-touch-icon" href="http://fr.wikipedia.org/apple-touch-icon.png">
<link rel="shortcut icon" href="http://fr.wikipedia.org/favicon.ico">
<link rel="search" type="application/opensearchdescription+xml" href="http://fr.wikipedia.org/w/opensearch_desc.php" title="Wikipédia (fr)">
<link rel="EditURI" type="application/rsd+xml" href="http://fr.wikipedia.org/w/api.php?action=rsd">
<link rel="copyright" href="http://creativecommons.org/licenses/by-sa/3.0/">
<link rel="alternate" type="application/atom+xml" title="Flux Atom de Wikipédia" href="http://fr.wikipedia.org/w/index.php?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&amp;feed=atom">
<link rel="stylesheet" href="Villes_de_Madagascar_files/load.css" type="text/css" media="all">
<style type="text/css" media="all">.suggestions{overflow:hidden;position:absolute;top:0px;left:0px;width:0px;border:none;z-index:99;padding:0;margin:-1px -1px 0 0} html > body .suggestions{margin:-1px 0 0 0}.suggestions-special{position:relative;background-color:Window;font-size:0.8em;cursor:pointer;border:solid 1px #aaaaaa;padding:0;margin:0;margin-top:-2px;display:none;padding:0.25em 0.25em;line-height:1.25em}.suggestions-results{background-color:white;background-color:Window;font-size:0.8em;cursor:pointer;border:solid 1px #aaaaaa;padding:0;margin:0}.suggestions-result{color:black;color:WindowText;margin:0;line-height:1.5em;padding:0.01em 0.25em;text-align:left}.suggestions-result-current{background-color:#4C59A6;background-color:Highlight;color:white;color:HighlightText}.suggestions-special .special-label{font-size:0.8em;color:gray;text-align:left}.suggestions-special .special-query{color:black;font-style:italic;text-align:left}.suggestions-special .special-hover{background-color:silver}.suggestions-result-current .special-label,.suggestions-result-current .special-query{color:white;color:HighlightText}.autoellipsis-matched,.highlight{font-weight:bold}

/* cache key: frwiki:resourceloader:filter:minify-css:5:8d395f27880b6ffcab73b1c74b0217ea */</style><style type="text/css" media="all">#mw-panel.collapsible-nav div.portal{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIwAAAABCAMAAAA7MLYKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEtQTFRF29vb2tra4ODg6urq5OTk4uLi6+vr7e3t7Ozs8PDw5+fn4+Pj4eHh3d3d39/f6Ojo5eXl6enp8fHx8/Pz8vLy7+/v3Nzc2dnZ2NjYnErj7QAAAD1JREFUeNq0wQUBACAMALDj7hf6JyUFGxzEnYhC9GaNPG1xVffGDErk/iCigLl1XV2xM49lfAxEaSM+AQYA9HMKuv4liFQAAAAASUVORK5CYII=);background-image:url(http://bits.wikimedia.org/w/extensions-1.17/Vector/modules/./images/portal-break.png?2011-02-12T21:25:00Z)!ie;background-position:left top;background-repeat:no-repeat;padding:0.25em 0 !important;margin:-11px 9px 10px 11px}#mw-panel.collapsible-nav div.portal h5{color:#4D4D4D;font-weight:normal;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA9QTFRFeXl53d3dmpqasbGx////GU0iEgAAAAV0Uk5T/////wD7tg5TAAAAK0lEQVQI12NwgQIG0hhCDAwMTCJAhqMCA4MiWEoIJABiOCooQhULi5BqMgB2bh4svs8t+QAAAABJRU5ErkJggg==) left center no-repeat;background:url(http://bits.wikimedia.org/w/extensions-1.17/Vector/modules/./images/open.png?2011-02-12T21:25:00Z) left center no-repeat!ie;padding:4px 0 3px 1.5em;margin-bottom:0px}#mw-panel.collapsible-nav div.collapsed h5{color:#0645AD;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAxQTFRF3d3deXl5////nZ2dQA6SoAAAAAN0Uk5T//8A18oNQQAAADNJREFUeNpiYEIDDMQKMKALMDOgCTDCRWACcBG4AEwEIcDITEAFuhnotmC4g4EEzwEEGAADqgHmQSPJKgAAAABJRU5ErkJggg==) left center no-repeat;background:url(http://bits.wikimedia.org/w/extensions-1.17/Vector/modules/./images/closed-ltr.png?2011-02-12T21:25:00Z) left center no-repeat!ie;margin-bottom:0px}#mw-panel.collapsible-nav div h5:hover{cursor:pointer;text-decoration:none}#mw-panel.collapsible-nav div.collapsed h5:hover{text-decoration:underline}#mw-panel.collapsible-nav div.portal div.body{background:none !important;padding-top:0px;display:none}#mw-panel.collapsible-nav div.persistent div.body{display:block}#mw-panel.collapsible-nav div.first h5{display:none}#mw-panel.collapsible-nav div.persistent h5{background:none !important;padding-left:0.7em;cursor:default}#mw-panel.collapsible-nav div.portal div.body ul li{padding:0.25em 0}#mw-panel.collapsible-nav div.first{background-image:none;margin-top:0px}#mw-panel.collapsible-nav div.persistent div.body{margin-left:0.5em}

/* cache key: frwiki:resourceloader:filter:minify-css:5:c5cca4c308b0b64d12b1147b6871e86e */</style><meta name="ResourceLoaderDynamicStyles" content=""><link rel="stylesheet" href="Villes_de_Madagascar_files/load_002.css" type="text/css" media="all">
<style type="text/css" media="all">a.new,#quickbar a.new{color:#ba0000}

/* cache key: frwiki:resourceloader:filter:minify-css:5:f2a9127573a22335c2a9102b208c73e7 */</style>
<script type="text/javascript">wgNamespaceNumber=0;wgAction="view";wgPageName="Villes_de_Madagascar";wgMainPageTitle="Wikip\u00e9dia:Accueil principal";wgWikimediaMobileUrl="http:\/\/fr.m.wikipedia.org\/wiki";</script><script src="Villes_de_Madagascar_files/MobileRedirect.js" type="text/javascript"></script><!--[if lt IE 7]><style type="text/css">body{behavior:url("/w/skins-1.17/vector/csshover.min.htc")}</style><![endif]--><script type="text/javascript" src="Villes_de_Madagascar_files/index_003.php"></script><script type="text/javascript" src="Villes_de_Madagascar_files/index_002.php"></script></head>
<body class="mediawiki ltr ns-0 ns-subject page-Villes_de_Madagascar skin-vector">
		<div id="mw-page-base" class="noprint"></div>
		<div id="mw-head-base" class="noprint"></div>
		<!-- content -->
		<div id="content">
			<a id="top"></a>
			<div id="mw-js-message" style="display:none;"></div>
						<!-- sitenotice -->
			<div id="siteNotice"><div id="centralNotice" class="expanded"><style type="text/css"> 
/*
Styles for Notices
*/

.notice-wrapper-boardvote-candidates, .notice-collapsed-wrapper-boardvote-candidates {
  margin: 2px auto 0;
  width: 100%;
  padding: 0;
  font-family: 'Arial','Helvetica','Tahoma',sans-serif;
  color: #333;
  background-color: #ddd;
  font-size: .9em;
  font-weight: 200;
}

.notice-wrapper-boardvote-candidates
{
  border: 1px solid #bbb;
  background-color: #fcfcfc;
  text-align: left;
  font-size: 1.1em;
}

.notice-wrapper-boardvote-candidates a
{
  color: #006699;
}

.trans-box
{
  text-align: right;
  font-size: 0.8em;
  padding: 0;
  white-space: nowrap;
}

.toggle-box-boardvote-candidates
{
  text-align: right;
  font-size: 0.8em;
  padding: 0;
}

.notice-text-boardvote-candidates
{
  margin: 0 auto 5px;
  padding: 0 5px;
  font-size: 1em;
}

.line-ht-fix
{
  line-height: 1em;
}

#centralNotice.anonnotice .siteNoticeUser 
{
  display:none !important;
}

#centralNotice.collapsed .siteNoticeUser
{
  display:none;
}

.rtl .notice-wrapper-boardvote-candidates {
  text-align: right;
}
 
.rtl .trans-box {
  text-align: left;
}
 
.rtl .toggle-box-boardvote-candidates {
  text-align: left;
}

</style>

<table class="siteNoticeUser notice-wrapper-boardvote-candidates">
<tbody><tr>
 <td>
  <div class="notice-text-boardvote-candidates">
  Vous pouvez actuellement vous présenter à l’élection du conseil d’administration de la Wikimedia Foundation. <a href="http://meta.wikimedia.org/wiki/Board_elections/2011/fr">Portez-vous candidat.</a>
  </div>
 </td>
 <td class="line-ht-fix">
   <span class="toggle-box-boardvote-candidates">
   [<a href="#" onclick="toggleNotice();return
false">Réduire</a>]
 </span><br>
  <span class="trans-box">
  [<a href="http://meta.wikimedia.org/wiki/Board_elections/2011/Translation">Aidez-nous à traduire cet appel !</a>]
  </span>
 </td>
</tr>
</tbody></table>
<div class="siteNoticeSmallAnon notice-collapsed-wrapper-boardvote-candidates">
</div></div><!-- centralNotice loads here --></div>
			<!-- /sitenotice -->
						<!-- firstHeading -->
			<h1 id="firstHeading" class="firstHeading">Villes de Madagascar</h1>
			<!-- /firstHeading -->
			<!-- bodyContent -->
			<div id="bodyContent">
				<!-- tagline -->
				<div id="siteSub">Un article de Wikipédia, l'encyclopédie libre.</div>
				<!-- /tagline -->
				<!-- subtitle -->
				<div id="contentSub"></div>
				<!-- /subtitle -->
																<!-- jumpto -->
				<div class="hidden" id="jump-to-nav">
					Aller à : <a href="#mw-head">Navigation</a>,
					<a href="#p-search">rechercher</a>
				</div>
				<!-- /jumpto -->
								<!-- bodytext -->
				<div class="plainlinks bandeau-niveau-ebauche bandeau">
<table style="background-color: transparent;">
<tbody><tr>
<td class="bandeau-icone">
<div style="text-align:center;white-space:nowrap"><img alt="" src="Villes_de_Madagascar_files/45px-Lmurien.jpg" height="30" width="45"></div>
</td>
<td>
<div class="bandeau-titre"><strong>Cet article est une <a href="http://fr.wikipedia.org/wiki/Aide:%C3%89bauche" title="Aide:Ébauche">ébauche</a> concernant <a href="Madagascar.html" title="Madagascar">Madagascar</a>.</strong></div>
<div class="bandeau-texte">Vous pouvez partager vos connaissances en l’améliorant (<b><a href="http://fr.wikipedia.org/wiki/Aide:Comment_modifier_une_page" title="Aide:Comment modifier une page">comment ?</a></b>) selon les recommandations des <a href="http://fr.wikipedia.org/wiki/Projet:Accueil" title="Projet:Accueil">projets correspondants</a>.</div>
</td>
</tr>
</tbody></table>
</div>
<h2 class="modifiedSectionTitle"> <span class="mw-headline" id="Villes_de_Madagascar_par_ordre_alphab.C3.A9tique">Villes de <a href="Madagascar.html" title="Madagascar">Madagascar</a> par ordre alphabétique</span><span class="editsection">[<a href="http://fr.wikipedia.org/w/index.php?title=Villes_de_Madagascar&amp;action=edit&amp;section=1" title="Modifier la section&nbsp;: Villes de Madagascar par ordre alphabétique">modifier</a>]</span></h2>
<div class="tright" style="margin-bottom: .5em; border-style: solid; border-color: transparent; width: auto;">
<table style="width: 0px;" cellspacing="0">
<tbody><tr>
<td style="border: medium none;">
<div class="thumbinner">
<div class="thumbimage">
<table class="DebutCarte" style="margin: 0pt; border: medium none; padding: 0pt;" border="0" cellpadding="0" cellspacing="0">
<tbody><tr>
<td style="border: medium none; padding: 0pt;">
<div style="position:relative;"><a href="http://fr.wikipedia.org/wiki/Fichier:Madagascar_location_map.svg" class="image" title="Carte de Madagascar"><img alt="Carte de Madagascar" src="Villes_de_Madagascar_files/450px-Madagascar_location_map.png" height="817" width="450"></a>
<div style="position:absolute;right:0%;top:0%;padding:0px;border:none;background:transparent;">&nbsp;<span class="noprint plainlinksneverexpand" style="white-space:nowrap; font-size:xx-small;"><a href="http://fr.wikipedia.org/wiki/Mod%C3%A8le:Carte/Madagascar" title="Modèle:Carte/Madagascar"><abbr class="abbr" title="Voir ce modèle.">v</abbr></a>&nbsp;· <a href="http://fr.wikipedia.org/w/index.php?title=Discussion_mod%C3%A8le:Carte/Madagascar&amp;action=edit&amp;redlink=1" class="new" title="Discussion modèle:Carte/Madagascar (page inexistante)"><abbr class="abbr" style="color:#002bb8;" title="Discussion sur ce modèle.">d</abbr></a>&nbsp;· <a href="http://fr.wikipedia.org/w/index.php?title=Mod%C3%A8le:Carte/Madagascar&amp;action=edit" class="external text" rel="nofollow"><abbr class="abbr" title="Modifier ce modèle. Merci de prévisualiser avant de sauvegarder.">m</abbr></a></span>&nbsp;</div>
<div style="position:absolute;top:54.965986394558%;left:58%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.75em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Ambatolampy" title="Ambatolampy">Ambatolampy</a></b></div>
</div>
</div>
<div style="position:absolute;top:48.299319727891%;left:63.176470588236%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Anjozorobe" title="Anjozorobe">Anjozorobe</a></b></div>
</div>
</div>
<div style="position:absolute;top:47.687074829932%;left:54.235294117647%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Ankazobe" title="Ankazobe">Ankazobe</a></b></div>
</div>
</div>
<div style="position:absolute;top:51.632653061225%;left:58.941176470589%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_1.svg" class="image"><img alt="City locator 1.svg" src="Villes_de_Madagascar_files/16px-City_locator_1.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:120%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="Antananarivo.html" title="Antananarivo">Antananarivo</a></b></div>
</div>
</div>
<div style="position:absolute;top:56.938775510204%;left:56.705882352941%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.75em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Antanifotsy" title="Antanifotsy">Antanifotsy</a></b></div>
</div>
</div>
<div style="position:absolute;top:58.299319727891%;left:53.294117647059%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top:-0.65em;left: 0.6em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Antsirab%C3%A9" title="Antsirabé" class="mw-redirect">Antsirabé</a></b></div>
</div>
</div>
<div style="position:absolute;top:52.448979591837%;left:55.058823529412%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Arivonimamo" title="Arivonimamo">Arivonimamo</a></b></div>
</div>
</div>
<div style="position:absolute;top:58.027210884354%;left:51.176470588236%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Betafo" title="Betafo">Betafo</a></b></div>
</div>
</div>
<div style="position:absolute;top:55.170068027211%;left:52.235294117647%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Faratsiho" title="Faratsiho">Faratsiho</a></b></div>
</div>
</div>
<div style="position:absolute;top:48.639455782313%;left:47.764705882353%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/w/index.php?title=Fenoarivo&amp;action=edit&amp;redlink=1" class="new" title="Fenoarivo (page inexistante)">Fenoarivo</a></b></div>
</div>
</div>
<div style="position:absolute;top:51.836734693878%;left:62.470588235294%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Manjakandriana" title="Manjakandriana">Manjakandriana</a></b></div>
</div>
</div>
<div style="position:absolute;top:49.455782312925%;left:47.529411764706%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Miarinarivo" title="Miarinarivo">Miarinarivo</a></b></div>
</div>
</div>
<div style="position:absolute;top:53.537414965987%;left:49.764705882353%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Soavinandriana" title="Soavinandriana">Soavinandriana</a></b></div>
</div>
</div>
<div style="position:absolute;top:50.816326530612%;left:41.64705882353%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Tsiroanomandidy" title="Tsiroanomandidy">Tsiroanomandidy</a></b></div>
</div>
</div>
<div style="position:absolute;top:16.190476190476%;left:70%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Ambanja" title="Ambanja">Ambanja</a></b></div>
</div>
</div>
<div style="position:absolute;top:12.857142857143%;left:77.058823529412%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Ambilobe" title="Ambilobe">Ambilobe</a></b></div>
</div>
</div>
<div style="position:absolute;top:22.857142857143%;left:84.117647058824%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Andapa" title="Andapa">Andapa</a></b></div>
</div>
</div>
<div style="position:absolute;top:24.489795918367%;left:91.411764705883%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Antalaha" title="Antalaha">Antalaha</a></b></div>
</div>
</div>
<div style="position:absolute;top:14.285714285714%;left:67.882352941177%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Andoany" title="Andoany" class="mw-redirect">Andoany</a></b></div>
</div>
</div>
<div style="position:absolute;top:6.6666666666667%;left:79.764705882353%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Antsiranana" title="Antsiranana">Antsiranana</a></b></div>
</div>
</div>
<div style="position:absolute;top:20.068027210884%;left:90%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Sambava" title="Sambava">Sambava</a></b></div>
</div>
</div>
<div style="position:absolute;top:71.632653061225%;left:52.117647058824%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.75em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Ambalavao" title="Ambalavao">Ambalavao</a></b></div>
</div>
</div>
<div style="position:absolute;top:62.925170068027%;left:50.588235294118%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Ambatofinandrahana" title="Ambatofinandrahana">Ambatofinandrahana</a></b></div>
</div>
</div>
<div style="position:absolute;top:62.789115646259%;left:55.764705882353%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top: 0.25em;left: 0.6em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Ambositra" title="Ambositra">Ambositra</a></b></div>
</div>
</div>
<div style="position:absolute;top:60.816326530612%;left:57.294117647059%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Fandriana" title="Fandriana">Fandriana</a></b></div>
</div>
</div>
<div style="position:absolute;top:78.367346938776%;left:62.588235294118%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top: 0.25em;left: 0.6em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Farafangana" title="Farafangana">Farafangana</a></b></div>
</div>
</div>
<div style="position:absolute;top:69.047619047619%;left:53.764705882353%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top:-1.75em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><b><a href="Fianarantsoa.html" title="Fianarantsoa">Fianarantsoa</a></b></div>
</div>
</div>
<div style="position:absolute;top:68.027210884354%;left:60.352941176471%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.75em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Ifanadiana" title="Ifanadiana">Ifanadiana</a></b></div>
</div>
</div>
<div style="position:absolute;top:75.510204081633%;left:42.588235294118%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Ihosy" title="Ihosy">Ihosy</a></b></div>
</div>
</div>
<div style="position:absolute;top:67.006802721089%;left:48%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.75em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Ikalamavony" title="Ikalamavony">Ikalamavony</a></b></div>
</div>
</div>
<div style="position:absolute;top:71.972789115647%;left:58.117647058824%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Ikongo" title="Ikongo">Ikongo</a></b></div>
</div>
</div>
<div style="position:absolute;top:73.74149659864%;left:64.823529411765%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top: 0.25em;left: 0.6em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Manakara" title="Manakara">Manakara</a></b></div>
</div>
</div>
<div style="position:absolute;top:67.551020408164%;left:68.823529411765%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top: 0.25em;left: 0.6em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Mananjary" title="Mananjary">Mananjary</a></b></div>
</div>
</div>
<div style="position:absolute;top:63.197278911565%;left:70.941176470589%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top: 0.25em;left: 0.6em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Nosy_Varika" title="Nosy Varika">Nosy Varika</a></b></div>
</div>
</div>
<div style="position:absolute;top:81.972789115647%;left:60%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top: 0.25em;left: 0.6em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Vangaindrano" title="Vangaindrano">Vangaindrano</a></b></div>
</div>
</div>
<div style="position:absolute;top:78.367346938776%;left:56.588235294118%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.75em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Vondrozo" title="Vondrozo">Vondrozo</a></b></div>
</div>
</div>
<div style="position:absolute;top:35.170068027211%;left:49.529411764706%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/w/index.php?title=Ambato_Boina&amp;action=edit&amp;redlink=1" class="new" title="Ambato Boina (page inexistante)">Ambato Boina</a></b></div>
</div>
</div>
<div style="position:absolute;top:24.353741496599%;left:64.588235294118%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Antsohihy" title="Antsohihy">Antsohihy</a></b></div>
</div>
</div>
<div style="position:absolute;top:22.108843537415%;left:73.294117647059%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Bealanana" title="Bealanana">Bealanana</a></b></div>
</div>
</div>
<div style="position:absolute;top:35.850340136055%;left:47.058823529412%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Maevatanana" title="Maevatanana">Maevatanana</a></b></div>
</div>
</div>
<div style="position:absolute;top:30.068027210884%;left:44.823529411765%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Mahajanga" title="Mahajanga">Mahajanga</a></b></div>
</div>
</div>
<div style="position:absolute;top:48.299319727891%;left:18.823529411765%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Maintirano" title="Maintirano">Maintirano</a></b></div>
</div>
</div>
<div style="position:absolute;top:32.721088435374%;left:48.705882352941%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Marovoay" title="Marovoay">Marovoay</a></b></div>
</div>
</div>
<div style="position:absolute;top:37.34693877551%;left:60.588235294118%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Tsaratanana" title="Tsaratanana">Tsaratanana</a></b></div>
</div>
</div>
<div style="position:absolute;top:44.421768707483%;left:69.764705882353%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Ambatondrazaka" title="Ambatondrazaka">Ambatondrazaka</a></b></div>
</div>
</div>
<div style="position:absolute;top:38.707482993197%;left:86.470588235295%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top: 0.25em;left: 0.6em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/w/index.php?title=Ambodifototra&amp;action=edit&amp;redlink=1" class="new" title="Ambodifototra (page inexistante)">Ambodifototra</a></b></div>
</div>
</div>
<div style="position:absolute;top:42.789115646259%;left:67.176470588236%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Amparafaravola" title="Amparafaravola">Amparafaravola</a></b></div>
</div>
</div>
<div style="position:absolute;top:52.040816326531%;left:77.64705882353%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/w/index.php?title=Andevoranto&amp;action=edit&amp;redlink=1" class="new" title="Andevoranto (page inexistante)">Andevoranto</a></b></div>
</div>
</div>
<div style="position:absolute;top:38.91156462585%;left:71.294117647059%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Andilamena" title="Andilamena">Andilamena</a></b></div>
</div>
</div>
<div style="position:absolute;top:55.30612244898%;left:67.058823529412%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top: 0.25em;left: 0.6em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/w/index.php?title=Anosibe_An%27ala&amp;action=edit&amp;redlink=1" class="new" title="Anosibe An'ala (page inexistante)">Anosibe An'ala</a></b></div>
</div>
</div>
<div style="position:absolute;top:41.360544217687%;left:81.294117647059%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Fenoarivo_Atsinanana" title="Fenoarivo Atsinanana">Fenoarivo Atsinanana</a></b></div>
</div>
</div>
<div style="position:absolute;top:58.503401360544%;left:74.117647058824%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top: 0.25em;left: 0.6em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Mahanoro" title="Mahanoro">Mahanoro</a></b></div>
</div>
</div>
<div style="position:absolute;top:33.061224489796%;left:85.294117647059%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/w/index.php?title=Mananara&amp;action=edit&amp;redlink=1" class="new" title="Mananara (page inexistante)">Mananara</a></b></div>
</div>
</div>
<div style="position:absolute;top:28.095238095238%;left:85.176470588236%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Maroantsetra" title="Maroantsetra">Maroantsetra</a></b></div>
</div>
</div>
<div style="position:absolute;top:59.52380952381%;left:66.117647058824%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top: 0.25em;left: 0.6em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Marolambo" title="Marolambo">Marolambo</a></b></div>
</div>
</div>
<div style="position:absolute;top:51.972789115646%;left:67.294117647059%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top: 0.25em;left: 0.6em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Moramanga" title="Moramanga">Moramanga</a></b></div>
</div>
</div>
<div style="position:absolute;top:38.231292517007%;left:83.176470588236%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Soanierana_Ivongo" title="Soanierana Ivongo">Soanierana Ivongo</a></b></div>
</div>
</div>
<div style="position:absolute;top:46.598639455782%;left:81.176470588236%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Toamasina" title="Toamasina">Toamasina</a></b></div>
</div>
</div>
<div style="position:absolute;top:41.972789115646%;left:78.705882352942%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top: 0.25em;left: 0.6em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Vavatenina" title="Vavatenina">Vavatenina</a></b></div>
</div>
</div>
<div style="position:absolute;top:41.156462585034%;left:76.823529411765%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Vohibinany" title="Vohibinany">Vohibinany</a></b></div>
</div>
</div>
<div style="position:absolute;top:93.469387755102%;left:45.64705882353%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.75em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/w/index.php?title=Amboasary&amp;action=edit&amp;redlink=1" class="new" title="Amboasary (page inexistante)">Amboasary</a></b></div>
</div>
</div>
<div style="position:absolute;top:94.421768707483%;left:42.117647058824%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top: 0.25em;left: 0.6em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Ambovombe" title="Ambovombe">Ambovombe</a></b></div>
</div>
</div>
<div style="position:absolute;top:91.156462585034%;left:26.352941176471%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Ampanihy" title="Ampanihy">Ampanihy</a></b></div>
</div>
</div>
<div style="position:absolute;top:74.761904761905%;left:23.64705882353%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Ankazoabo" title="Ankazoabo">Ankazoabo</a></b></div>
</div>
</div>
<div style="position:absolute;top:94.421768707483%;left:30%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Beloha" title="Beloha">Beloha</a></b></div>
</div>
</div>
<div style="position:absolute;top:57.074829931973%;left:24%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Belon%27i_Tsiribihina" title="Belon'i Tsiribihina">Belon'i Tsiribihina</a></b></div>
</div>
</div>
<div style="position:absolute;top:70.612244897959%;left:31.294117647059%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Beroroha" title="Beroroha">Beroroha</a></b></div>
</div>
</div>
<div style="position:absolute;top:84.489795918368%;left:22%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Betioky" title="Betioky">Betioky</a></b></div>
</div>
</div>
<div style="position:absolute;top:55.986394557823%;left:34.705882352941%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Miandrivazo" title="Miandrivazo">Miandrivazo</a></b></div>
</div>
</div>
<div style="position:absolute;top:61.156462585034%;left:20.823529411765%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Morondava" title="Morondava">Morondava</a></b></div>
</div>
</div>
<div style="position:absolute;top:93.401360544218%;left:52.823529411765%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top: 0.25em;left: 0.6em;text-align:left;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Taolanaro" title="Taolanaro" class="mw-redirect">Taolanaro</a></b></div>
</div>
</div>
<div style="position:absolute;top:79.047619047619%;left:23.764705882353%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top:-1.75em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Sakaraha" title="Sakaraha">Sakaraha</a></b></div>
</div>
</div>
<div style="position:absolute;top:82.040816326531%;left:13.647058823529%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:110%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Tul%C3%A9ar" title="Tuléar" class="mw-redirect">Tuléar</a></b></div>
</div>
</div>
<div style="position:absolute;top:95.374149659864%;left:35.058823529412%;width:0px;height:0px;margin:0;padding:0;line-height:0px;background-color:transparent;">
<div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;background-color:transparent;"><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a></div>
<div style="position:relative;top:-16px;">
<div style="font-size:90%;position:relative;top: 0.35em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><b><a href="http://fr.wikipedia.org/wiki/Tsihombe" title="Tsihombe">Tsihombe</a></b></div>
</div>
</div>
<div style="position:absolute;right:0%;bottom:0%;padding:3px;border:none;background:transparent;">
<table style="margin: 0pt; padding: 0pt; border: 1px solid rgb(170, 170, 170); background-color: white; font-size: 80%;">
<tbody><tr>
<td align="left">
<div align="center">
<div style="font-size:125%">
<div>
<div style="width:89.567565804718px;text-align:center;font-size:80%;line-height:1em;">100 km</div>
<div style="height:4px;width:89.567565804718px;border:1px solid black; border-top:none;margin-top:-3px;"></div>
</div>
</div>
<div><span title="échelle approximative (cela dépend de votre écran)">1:4&nbsp;466&nbsp;000</span></div>
</div>
<p><a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_1.svg" class="image"><img alt="City locator 1.svg" src="Villes_de_Madagascar_files/16px-City_locator_1.png" height="16" width="16"></a> Capitale nationale<br>
<a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_2.svg" class="image"><img alt="City locator 2.svg" src="Villes_de_Madagascar_files/16px-City_locator_2.png" height="16" width="16"></a> Capitale régionale<br>
<a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_3.svg" class="image"><img alt="City locator 3.svg" src="Villes_de_Madagascar_files/16px-City_locator_3.png" height="16" width="16"></a> Population &gt; 100 000 hab.<br>
<a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_4.svg" class="image"><img alt="City locator 4.svg" src="Villes_de_Madagascar_files/16px-City_locator_4.png" height="16" width="16"></a> Population &gt; 10 000 hab.<br>
<a href="http://fr.wikipedia.org/wiki/Fichier:City_locator_5.svg" class="image"><img alt="City locator 5.svg" src="Villes_de_Madagascar_files/16px-City_locator_5.png" height="16" width="16"></a> Population &lt; 10 000 hab.</p>
</td>
</tr>
</tbody></table>
</div>
</div>
</td>
</tr>
</tbody></table>
</div>
<div class="thumbcaption">
<div class="magnify"><a href="http://fr.wikipedia.org/wiki/Fichier:Madagascar_location_map.svg" title="Agrandir l’image vierge"><img alt="Agrandir l’image vierge" src="Villes_de_Madagascar_files/Magnify-clip.png" height="11" width="15"></a></div>
Carte des villes principales de <a href="Madagascar.html" title="Madagascar">Madagascar</a></div>
</div>
</td>
</tr>
</tbody></table>
</div>
<p><br></p>
<table id="toc" align="center" border="0">
<tbody><tr>
<th>Sommaire&nbsp;:</th>
<td><a href="#top">Haut</a> - <a href="#A">A</a> <a href="#B">B</a> <a href="#C">C</a> <a href="#D">D</a> <a href="#E">E</a> <a href="#F">F</a> <a href="#G">G</a> <a href="#H">H</a> <a href="#I">I</a> <a href="#J">J</a> <a href="#K">K</a> <a href="#L">L</a> <a href="#M">M</a> <a href="#N">N</a> <a href="#O">O</a> <a href="#P">P</a> <a href="#Q">Q</a> <a href="#R">R</a> <a href="#S">S</a> <a href="#T">T</a> <a href="#U">U</a> <a href="#V">V</a> <a href="#W">W</a> <a href="#X">X</a> <a href="#Y">Y</a> <a href="#Z">Z</a></td>
</tr>
</tbody></table>
<h2 class="modifiedSectionTitle"> <span class="mw-headline" id="A">A</span><span class="editsection">[<a href="http://fr.wikipedia.org/w/index.php?title=Villes_de_Madagascar&amp;action=edit&amp;section=2" title="Modifier la section&nbsp;: A">modifier</a>]</span></h2>
<ul>
<li><a href="http://fr.wikipedia.org/wiki/Ambalavao" title="Ambalavao">Ambalavao</a></li>
<li><a href="http://fr.wikipedia.org/wiki/Antalaha" title="Antalaha">Ambilobé</a></li>
<li><a href="http://fr.wikipedia.org/wiki/Ambovombe" title="Ambovombe">Ambovombe</a></li>
<li><a href="http://fr.wikipedia.org/wiki/Amparafaravola" title="Amparafaravola">Amparafaravola</a></li>
<li><a href="http://fr.wikipedia.org/wiki/Andoany" title="Andoany" class="mw-redirect">Andoany</a></li>
<li><a href="http://fr.wikipedia.org/wiki/Anjozorobe" title="Anjozorobe">Anjozorobe</a></li>
<li><a href="Antananarivo.html" title="Antananarivo">Antananarivo</a> <span style="font-family:monospace;font-weight:bold;font-size:small">(<abbr class="abbr" title="Langue&nbsp;: français">fr</abbr>)</span> <i>Tananarive</i>&nbsp;: <a href="http://fr.wikipedia.org/wiki/Capitale" title="Capitale">capitale</a>, 1,2 million d'habitants (<a href="http://fr.wikipedia.org/wiki/2003" title="2003">2003</a>).</li>
<li><a href="http://fr.wikipedia.org/wiki/Antanifotsy" title="Antanifotsy">Antanifotsy</a></li>
<li><a href="http://fr.wikipedia.org/wiki/Antsirab%C3%A9" title="Antsirabé" class="mw-redirect">Antsirabé</a>&nbsp;: chef-lieu <a href="http://fr.wikipedia.org/wiki/R%C3%A9gions_de_Madagascar" title="Régions de Madagascar">régional</a>, 182 804 habitants (<a href="http://fr.wikipedia.org/wiki/2005" title="2005">2005</a>).</li>
<li><a href="http://fr.wikipedia.org/wiki/Antsiranana" title="Antsiranana">Antsiranana</a> <span style="font-family:monospace;font-weight:bold;font-size:small">(<abbr class="abbr" title="Langue&nbsp;: français">fr</abbr>)</span> <i>Diego-Suarez</i>&nbsp;: chef-lieu <a href="Province_de_Diego-Suarez.html" title="Province de Diego-Suarez">provincial</a>, 105 000 habitants (<a href="http://fr.wikipedia.org/wiki/2008" title="2008">2008</a>).</li>
<li><a href="http://fr.wikipedia.org/wiki/Antsohimbondrona" title="Antsohimbondrona">Antsohimbondrona</a></li>
</ul>
<h2 class="modifiedSectionTitle"> <span class="mw-headline" id="B">B</span><span class="editsection">[<a href="http://fr.wikipedia.org/w/index.php?title=Villes_de_Madagascar&amp;action=edit&amp;section=3" title="Modifier la section&nbsp;: B">modifier</a>]</span></h2>
<ul>
<li><a href="http://fr.wikipedia.org/wiki/Benjana" title="Benjana">Benjana</a></li>
</ul>
<h2 class="modifiedSectionTitle"> <span class="mw-headline" id="F">F</span><span class="editsection">[<a href="http://fr.wikipedia.org/w/index.php?title=Villes_de_Madagascar&amp;action=edit&amp;section=4" title="Modifier la section&nbsp;: F">modifier</a>]</span></h2>
<ul>
<li><a href="http://fr.wikipedia.org/wiki/Farafangana" title="Farafangana">Farafangana</a>&nbsp;: chef-lieu <a href="http://fr.wikipedia.org/wiki/Atsimo-Atsinanana" title="Atsimo-Atsinanana">régional</a>, 24 000 habitants <a href="http://fr.wikipedia.org/wiki/2005" title="2005">2005</a>.</li>
<li><a href="http://fr.wikipedia.org/wiki/Fenoarivo_Atsinanana" title="Fenoarivo Atsinanana">Fenoarivo Atsinanana</a> <span style="font-family:monospace;font-weight:bold;font-size:small">(<abbr class="abbr" title="Langue&nbsp;: français">fr</abbr>)</span> <i>Fénérive-Est</i>&nbsp;: chef-lieu <a href="http://fr.wikipedia.org/wiki/Analanjirofo" title="Analanjirofo">régional</a>.</li>
<li><a href="Fianarantsoa.html" title="Fianarantsoa">Fianarantsoa</a>&nbsp;: chef-lieu <a href="Province_de_Fianarantsoa.html" title="Province de Fianarantsoa">provincial</a>, 144 225 habitants (<a href="http://fr.wikipedia.org/wiki/2001" title="2001">2001</a>).</li>
</ul>
<h2 class="modifiedSectionTitle"> <span class="mw-headline" id="M">M</span><span class="editsection">[<a href="http://fr.wikipedia.org/w/index.php?title=Villes_de_Madagascar&amp;action=edit&amp;section=5" title="Modifier la section&nbsp;: M">modifier</a>]</span></h2>
<ul>
<li><a href="http://fr.wikipedia.org/wiki/Mahajanga" title="Mahajanga">Mahajanga</a> <span style="font-family:monospace;font-weight:bold;font-size:small">(<abbr class="abbr" title="Langue&nbsp;: français">fr</abbr>)</span> <i>Majunga</i>&nbsp;: chef-lieu <a href="Province_de_Majunga.html" title="Province de Majunga">provincial</a>.</li>
<li><a href="http://fr.wikipedia.org/wiki/Foulpointe" title="Foulpointe">Mahavelona</a> <span style="font-family:monospace;font-weight:bold;font-size:small">(<abbr class="abbr" title="Langue&nbsp;: français">fr</abbr>)</span> <i>Foulpointe</i></li>
<li><a href="http://fr.wikipedia.org/wiki/Maintirano" title="Maintirano">Maintirano</a>&nbsp;: chef-lieu <a href="http://fr.wikipedia.org/wiki/R%C3%A9gions_de_Madagascar" title="Régions de Madagascar">régional</a>, 16 000 habitants (<a href="http://fr.wikipedia.org/wiki/2005" title="2005">2005</a>).</li>
<li><a href="http://fr.wikipedia.org/wiki/Manakara" title="Manakara">Manakara</a>&nbsp;: chef-lieu <a href="http://fr.wikipedia.org/wiki/Vatovavy-Fitovinany" title="Vatovavy-Fitovinany">régional</a>.</li>
<li><a href="http://fr.wikipedia.org/wiki/Mananjary" title="Mananjary">Mananjary</a></li>
<li><a href="http://fr.wikipedia.org/wiki/Maroantsetra" title="Maroantsetra">Maroantsetra</a></li>
<li><a href="http://fr.wikipedia.org/wiki/Moramanga" title="Moramanga">Moramanga</a></li>
<li><a href="http://fr.wikipedia.org/wiki/Marovoay" title="Marovoay">Marovoay</a></li>
<li><a href="http://fr.wikipedia.org/wiki/Morondava" title="Morondava">Morondava</a>&nbsp;: chef-lieu <a href="http://fr.wikipedia.org/wiki/Menabe" title="Menabe">régional</a>, 39 895 habitants (<a href="http://fr.wikipedia.org/wiki/2007" title="2007">2007</a>).</li>
</ul>
<h2 class="modifiedSectionTitle"> <span class="mw-headline" id="S">S</span><span class="editsection">[<a href="http://fr.wikipedia.org/w/index.php?title=Villes_de_Madagascar&amp;action=edit&amp;section=6" title="Modifier la section&nbsp;: S">modifier</a>]</span></h2>
<ul>
<li><a href="http://fr.wikipedia.org/wiki/Sambava" title="Sambava">Sambava</a>&nbsp;: chef-lieu <a href="http://fr.wikipedia.org/wiki/Sava" title="Sava">régional</a>, 40 000 habitants (<a href="http://fr.wikipedia.org/wiki/2001" title="2001">2001</a>).</li>
</ul>
<h2 class="modifiedSectionTitle"> <span class="mw-headline" id="T">T</span><span class="editsection">[<a href="http://fr.wikipedia.org/w/index.php?title=Villes_de_Madagascar&amp;action=edit&amp;section=7" title="Modifier la section&nbsp;: T">modifier</a>]</span></h2>
<ul>
<li><a href="http://fr.wikipedia.org/wiki/Toamasina" title="Toamasina">Toamasina</a> <span style="font-family:monospace;font-weight:bold;font-size:small">(<abbr class="abbr" title="Langue&nbsp;: français">fr</abbr>)</span> <i>Tamatave</i>&nbsp;: chef-lieu <a href="Province_de_Tamatave.html" title="Province de Tamatave">provincial</a>, 206 390 habitants (<a href="http://fr.wikipedia.org/wiki/2005" title="2005">2005</a>).</li>
<li><a href="http://fr.wikipedia.org/wiki/Tolanaro" title="Tolanaro" class="mw-redirect">Tolanaro</a> <span style="font-family:monospace;font-weight:bold;font-size:small">(<abbr class="abbr" title="Langue&nbsp;: français">fr</abbr>)</span> <i>Fort-Dauphin</i>&nbsp;: chef-lieu <a href="http://fr.wikipedia.org/wiki/R%C3%A9gions_de_Madagascar" title="Régions de Madagascar">régionial</a>, 46 000 habitants (<a href="http://fr.wikipedia.org/wiki/2001" title="2001">2001</a>).</li>
<li><a href="http://fr.wikipedia.org/wiki/Toliara" title="Toliara">Toliara</a> <span style="font-family:monospace;font-weight:bold;font-size:small">(<abbr class="abbr" title="Langue&nbsp;: français">fr</abbr>)</span> <i>Tuléar</i>&nbsp;: chef-lieu <a href="http://fr.wikipedia.org/wiki/Province_de_Tul%C3%A9ar" title="Province de Tuléar" class="mw-redirect">provincial</a>, 114 400 habitants (<a href="http://fr.wikipedia.org/wiki/2007" title="2007">2007</a>).</li>
</ul>
<h2 class="modifiedSectionTitle"> <span class="mw-headline" id="V">V</span><span class="editsection">[<a href="http://fr.wikipedia.org/w/index.php?title=Villes_de_Madagascar&amp;action=edit&amp;section=8" title="Modifier la section&nbsp;: V">modifier</a>]</span></h2>
<ul>
<li><a href="http://fr.wikipedia.org/wiki/Vangaindrano" title="Vangaindrano">Vangaindrano</a></li>
<li><a href="http://fr.wikipedia.org/wiki/Vatomandry" title="Vatomandry">Vatomandry</a></li>
<li><a href="http://fr.wikipedia.org/wiki/Voh%C3%A9mar" title="Vohémar">Vohémar</a></li>
</ul>
<h2 class="modifiedSectionTitle"> <span class="mw-headline" id="Tableau_des_villes">Tableau des villes</span><span class="editsection">[<a href="http://fr.wikipedia.org/w/index.php?title=Villes_de_Madagascar&amp;action=edit&amp;section=9" title="Modifier la section&nbsp;: Tableau des villes">modifier</a>]</span></h2>
<div class="thumb tright">
<div class="thumbinner" style="width:222px;"><a href="http://fr.wikipedia.org/wiki/Fichier:Antananarivo_%28atamari%29.jpg" class="image"><img alt="" src="Villes_de_Madagascar_files/220px-Antananarivo_atamari.jpg" class="thumbimage" height="165" width="220"></a>
<div class="thumbcaption">
<div class="magnify"><a href="http://fr.wikipedia.org/wiki/Fichier:Antananarivo_%28atamari%29.jpg" class="internal" title="Agrandir"><img src="Villes_de_Madagascar_files/magnify-clip.png" alt="" height="11" width="15"></a></div>
Tananarive, (<i>Antananarivo</i>)</div>
</div>
</div>
<table class="wikitable centre">
<tbody><tr>
<td rowspan="2" align="center"><b>Statut</b></td>
<td rowspan="2" align="center"><b>Ville</b></td>
<td colspan="3" align="center"><b>Population</b></td>
<td rowspan="2" align="center"><b>Province</b></td>
</tr>
<tr>
<td align="center"><b>Cens. 1975</b></td>
<td align="center"><b>Cens. 1993</b></td>
<td align="center"><b>Cal. 2005</b></td>
</tr>
<tr>
<td align="right">1.</td>
<td><a href="Tananarive.html" title="Tananarive" class="mw-redirect">Tananarive</a></td>
<td align="right">451.808</td>
<td align="right">1.103.304</td>
<td align="right">1.391.506</td>
<td><a href="Province_de_Tananarive.html" title="Province de Tananarive" class="mw-redirect">Tananarive</a></td>
</tr>
<tr>
<td align="right">2.</td>
<td><a href="Tamatave.html" title="Tamatave" class="mw-redirect">Tamatave</a></td>
<td align="right">77.395</td>
<td align="right">137.782</td>
<td align="right">206.390</td>
<td><a href="Province_de_Tamatave.html" title="Province de Tamatave">Tamatave</a></td>
</tr>
<tr>
<td align="right">3.</td>
<td><a href="http://fr.wikipedia.org/wiki/Antsirabe" title="Antsirabe">Antsirabé</a></td>
<td align="right">78.941</td>
<td align="right">126.062</td>
<td align="right">182.804</td>
<td><a href="Province_de_Tananarive.html" title="Province de Tananarive" class="mw-redirect">Tananarive</a></td>
</tr>
<tr>
<td align="right">4.</td>
<td><a href="Fianarantsoa.html" title="Fianarantsoa">Fianarantsoa</a></td>
<td align="right">68.054</td>
<td align="right">109.248</td>
<td align="right">167.240</td>
<td><a href="Province_de_Fianarantsoa.html" title="Province de Fianarantsoa">Fianarantsoa</a></td>
</tr>
<tr>
<td align="right">5.</td>
<td><a href="Majunga.html" title="Majunga" class="mw-redirect">Majunga</a></td>
<td align="right">65.864</td>
<td align="right">106.780</td>
<td align="right">154.670</td>
<td><a href="Province_de_Majunga.html" title="Province de Majunga">Majunga</a></td>
</tr>
<tr>
<td align="right">6.</td>
<td><a href="http://fr.wikipedia.org/wiki/Tul%C3%A9ar" title="Tuléar" class="mw-redirect">Tuléar</a></td>
<td align="right">45.676</td>
<td align="right">80.826</td>
<td align="right">115.328</td>
<td><a href="http://fr.wikipedia.org/wiki/Province_de_Tul%C3%A9ar" title="Province de Tuléar" class="mw-redirect">Tuléar</a></td>
</tr>
<tr>
<td align="right">7.</td>
<td><a href="http://fr.wikipedia.org/wiki/Diego-Suarez" title="Diego-Suarez" class="mw-redirect">Diego-Suarez</a></td>
<td align="right">40.443</td>
<td align="right">59.040</td>
<td align="right">82.944</td>
<td><a href="Province_de_Diego-Suarez.html" title="Province de Diego-Suarez">Diego-Suarez</a></td>
</tr>
<tr>
<td align="right">8.</td>
<td><a href="http://fr.wikipedia.org/wiki/Antanifotsy" title="Antanifotsy">Antanifotsy</a></td>
<td align="right">k.A.</td>
<td align="right">46.674</td>
<td align="right">70.625</td>
<td><a href="Province_de_Tananarive.html" title="Province de Tananarive" class="mw-redirect">Tananarive</a></td>
</tr>
<tr>
<td align="right">9.</td>
<td><a href="http://fr.wikipedia.org/wiki/Ambovombe" title="Ambovombe">Ambovombe</a></td>
<td align="right">k.A.</td>
<td align="right">45.427</td>
<td align="right">66.818</td>
<td><a href="http://fr.wikipedia.org/wiki/Province_de_Tul%C3%A9ar" title="Province de Tuléar" class="mw-redirect">Tuléar</a></td>
</tr>
<tr>
<td align="right">10.</td>
<td><a href="http://fr.wikipedia.org/wiki/Amparafaravola" title="Amparafaravola">Amparafaravola</a></td>
<td align="right">k.A.</td>
<td align="right">33.098</td>
<td align="right">51.520</td>
<td><a href="Province_de_Tamatave.html" title="Province de Tamatave">Tamatave</a></td>
</tr>
<tr>
<td align="right">11.</td>
<td><a href="http://fr.wikipedia.org/wiki/Fort-Dauphin" title="Fort-Dauphin">Fort-Dauphin</a></td>
<td align="right">19.605</td>
<td align="right">30.690</td>
<td align="right">45.141</td>
<td><a href="http://fr.wikipedia.org/wiki/Province_de_Tul%C3%A9ar" title="Province de Tuléar" class="mw-redirect">Tuléar</a></td>
</tr>
<tr>
<td align="right">12.</td>
<td><a href="http://fr.wikipedia.org/wiki/Ambatondrazaka" title="Ambatondrazaka">Ambatondrazaka</a></td>
<td align="right">18.044</td>
<td align="right">27.711</td>
<td align="right">43.134</td>
<td><a href="Province_de_Tamatave.html" title="Province de Tamatave">Tamatave</a></td>
</tr>
<tr>
<td align="right">13.</td>
<td><a href="http://fr.wikipedia.org/wiki/Mananara_Nord" title="Mananara Nord">Mananara Nord</a></td>
<td align="right">k.A.</td>
<td align="right">26.474</td>
<td align="right">41.209</td>
<td><a href="Province_de_Tamatave.html" title="Province de Tamatave">Tamatave</a></td>
</tr>
<tr>
<td align="right">14.</td>
<td><a href="http://fr.wikipedia.org/wiki/Soavinandriana" title="Soavinandriana">Soavinandriana</a></td>
<td align="right">k.A.</td>
<td align="right">26.734</td>
<td align="right">40.453</td>
<td><a href="Province_de_Tananarive.html" title="Province de Tananarive" class="mw-redirect">Tananarive</a></td>
</tr>
<tr>
<td align="right">15.</td>
<td><a href="http://fr.wikipedia.org/wiki/Mahanoro" title="Mahanoro">Mahanoro</a></td>
<td align="right">k.A.</td>
<td align="right">25.620</td>
<td align="right">39.879</td>
<td><a href="Province_de_Tamatave.html" title="Province de Tamatave">Tamatave</a></td>
</tr>
<tr>
<td align="right">16.</td>
<td><a href="http://fr.wikipedia.org/wiki/Soanierana_Ivongo" title="Soanierana Ivongo">Soanierana Ivongo</a></td>
<td align="right">k.A.</td>
<td align="right">25.229</td>
<td align="right">39.271</td>
<td><a href="Province_de_Tamatave.html" title="Province de Tamatave">Tamatave</a></td>
</tr>
<tr>
<td align="right">17.</td>
<td><a href="http://fr.wikipedia.org/wiki/Faratsiho" title="Faratsiho">Faratsiho</a></td>
<td align="right">k.A.</td>
<td align="right">24.824</td>
<td align="right">37.563</td>
<td><a href="Province_de_Tananarive.html" title="Province de Tananarive" class="mw-redirect">Tananarive</a></td>
</tr>
<tr>
<td align="right">18.</td>
<td><a href="http://fr.wikipedia.org/wiki/Nosy_Varika" title="Nosy Varika">Nosy Varika</a></td>
<td align="right">k.A.</td>
<td align="right">26.133</td>
<td align="right">37.152</td>
<td><a href="Province_de_Fianarantsoa.html" title="Province de Fianarantsoa">Fianarantsoa</a></td>
</tr>
<tr>
<td align="right">19.</td>
<td><a href="http://fr.wikipedia.org/wiki/Vavatenina" title="Vavatenina">Vavatenina</a></td>
<td align="right">k.A.</td>
<td align="right">23.716</td>
<td align="right">36.916</td>
<td><a href="Province_de_Tamatave.html" title="Province de Tamatave">Tamatave</a></td>
</tr>
<tr>
<td align="right">20.</td>
<td><a href="http://fr.wikipedia.org/wiki/Morondava" title="Morondava">Morondava</a></td>
<td align="right">19.061</td>
<td align="right">25.021</td>
<td align="right">36.803</td>
<td><a href="http://fr.wikipedia.org/wiki/Province_de_Tul%C3%A9ar" title="Province de Tuléar" class="mw-redirect">Tuléar</a></td>
</tr>
<tr>
<td align="right">21.</td>
<td><a href="http://fr.wikipedia.org/w/index.php?title=Amboasary&amp;action=edit&amp;redlink=1" class="new" title="Amboasary (page inexistante)">Amboasary</a></td>
<td align="right">k.A.</td>
<td align="right">24.531</td>
<td align="right">36.082</td>
<td><a href="http://fr.wikipedia.org/wiki/Province_de_Tul%C3%A9ar" title="Province de Tuléar" class="mw-redirect">Tuléar</a></td>
</tr>
<tr>
<td align="right">22.</td>
<td><a href="http://fr.wikipedia.org/wiki/Manakara" title="Manakara">Manakara</a></td>
<td align="right">19.768</td>
<td align="right">24.970</td>
<td align="right">35.499</td>
<td><a href="Province_de_Fianarantsoa.html" title="Province de Fianarantsoa">Fianarantsoa</a></td>
</tr>
<tr>
<td align="right">23.</td>
<td><a href="http://fr.wikipedia.org/wiki/Antalaha" title="Antalaha">Antalaha</a></td>
<td align="right">17.541</td>
<td align="right">23.949</td>
<td align="right">34.112</td>
<td><a href="Province_de_Diego-Suarez.html" title="Province de Diego-Suarez">Diego-Suarez</a></td>
</tr>
<tr>
<td align="right">24.</td>
<td><a href="http://fr.wikipedia.org/wiki/Ikongo" title="Ikongo">Ikongo</a></td>
<td align="right">k.A.</td>
<td align="right">22.772</td>
<td align="right">32.374</td>
<td><a href="Province_de_Fianarantsoa.html" title="Province de Fianarantsoa">Fianarantsoa</a></td>
</tr>
<tr>
<td align="right">25.</td>
<td><a href="http://fr.wikipedia.org/wiki/Manjakandriana" title="Manjakandriana">Manjakandriana</a></td>
<td align="right">k.A.</td>
<td align="right">21.042</td>
<td align="right">31.840</td>
<td><a href="Province_de_Tananarive.html" title="Province de Tananarive" class="mw-redirect">Tananarive</a></td>
</tr>
<tr>
<td align="right">26.</td>
<td><a href="http://fr.wikipedia.org/wiki/Sambava" title="Sambava">Sambava</a></td>
<td align="right">k.A.</td>
<td align="right">22.131</td>
<td align="right">31.522</td>
<td><a href="Province_de_Diego-Suarez.html" title="Province de Diego-Suarez">Diego-Suarez</a></td>
</tr>
<tr>
<td align="right">27.</td>
<td><a href="http://fr.wikipedia.org/wiki/Fandriana" title="Fandriana">Fandriana</a></td>
<td align="right">k.A.</td>
<td align="right">22.113</td>
<td align="right">31.437</td>
<td><a href="Province_de_Fianarantsoa.html" title="Province de Fianarantsoa">Fianarantsoa</a></td>
</tr>
<tr>
<td align="right">28.</td>
<td><a href="http://fr.wikipedia.org/wiki/Marovoay" title="Marovoay">Marovoay</a></td>
<td align="right">20.253</td>
<td align="right">20.910</td>
<td align="right">31.253</td>
<td><a href="Province_de_Majunga.html" title="Province de Majunga">Majunga</a></td>
</tr>
<tr>
<td align="right">29.</td>
<td><a href="http://fr.wikipedia.org/wiki/Betioky" title="Betioky">Betioky</a></td>
<td align="right">k.A.</td>
<td align="right">21.145</td>
<td align="right">31.102</td>
<td><a href="http://fr.wikipedia.org/wiki/Province_de_Tul%C3%A9ar" title="Province de Tuléar" class="mw-redirect">Tuléar</a></td>
</tr>
<tr>
<td align="right">30.</td>
<td><a href="http://fr.wikipedia.org/wiki/Ambanja" title="Ambanja">Ambanja</a></td>
<td align="right">12.258</td>
<td align="right">21.498</td>
<td align="right">30.621</td>
<td><a href="Province_de_Diego-Suarez.html" title="Province de Diego-Suarez">Diego-Suarez</a></td>
</tr>
<tr>
<td align="right">31.</td>
<td><a href="http://fr.wikipedia.org/wiki/Ambositra" title="Ambositra">Ambositra</a></td>
<td align="right">16.780</td>
<td align="right">21.350</td>
<td align="right">30.353</td>
<td><a href="Province_de_Fianarantsoa.html" title="Province de Fianarantsoa">Fianarantsoa</a></td>
</tr>
</tbody></table>
<h2 class="modifiedSectionTitle"> <span class="mw-headline" id="Annexes">Annexes</span><span class="editsection">[<a href="http://fr.wikipedia.org/w/index.php?title=Villes_de_Madagascar&amp;action=edit&amp;section=10" title="Modifier la section&nbsp;: Annexes">modifier</a>]</span></h2>
<h3 class="modifiedSectionTitle"> <span class="mw-headline" id="Sources">Sources</span><span class="editsection">[<a href="http://fr.wikipedia.org/w/index.php?title=Villes_de_Madagascar&amp;action=edit&amp;section=11" title="Modifier la section&nbsp;: Sources">modifier</a>]</span></h3>
<ul>
<li><span style="font-family:monospace;font-weight:bold;font-size:small">(<abbr class="abbr" title="Langue&nbsp;: allemand">de</abbr>)</span> Cet article est partiellement ou en totalité issu de l’article de Wikipédia en <a href="http://fr.wikipedia.org/wiki/Allemand" title="Allemand">allemand</a> intitulé «&nbsp;<i><span class="plainlinks" xml:lang="de" lang="de"><a href="http://de.wikipedia.org/wiki/Liste_der_St%C3%A4dte_in_Madagaskar?oldid=cur" class="external text" rel="nofollow">Liste der Städte in Madagaskar</a></span></i>&nbsp;» <small>(voir <span class="plainlinks"><a href="http://de.wikipedia.org/wiki/Liste_der_St%C3%A4dte_in_Madagaskar?action=history" class="external text" rel="nofollow">la liste des auteurs</a></span>)</small></li>
</ul>
<h3 class="modifiedSectionTitle"> <span class="mw-headline" id="Liens_Externes">Liens Externes</span><span class="editsection">[<a href="http://fr.wikipedia.org/w/index.php?title=Villes_de_Madagascar&amp;action=edit&amp;section=12" title="Modifier la section&nbsp;: Liens Externes">modifier</a>]</span></h3>
<div class="noprint wikilien_alternatif" style="clear:right; float:right;margin:0 0 1em 1em;width:250px;border:solid #AAAAAA 1px; background:#f9f9f9;padding:0px;font-size:90%;text-align:left;">
<table style="background-color: transparent;" cellpadding="2" cellspacing="0">
<tbody><tr valign="middle">
<td style="line-height: 50px; vertical-align: middle; position: relative;" align="center" valign="middle">
<p><a href="http://commons.wikimedia.org/wiki/" title="commons:"><img alt="Commons-logo.svg" src="Villes_de_Madagascar_files/50px-Commons-logo.png" height="67" width="50"></a></p>
</td>
<td valign="middle">
<p><span class="plainlinks"><a href="http://fr.wikipedia.org/wiki/Wikimedia_Commons" title="Wikimedia Commons">Wikimedia Commons</a> propose des documents multimédia libres sur <b><a href="http://commons.wikimedia.org/wiki/Category:Cities_in_Madagascar?uselang=fr" class="external text" rel="nofollow">Villes de Madagascar</a></b>.</span></p>
</td>
</tr>
</tbody></table>
</div>
<ul>
<li><a href="http://www.cite.mg/instat/index.htm" class="external text" rel="nofollow">Institut National de la Statistique</a></li>
<li><a href="http://gazetteer.de/wg.php?x=&amp;men=gcis&amp;lng=fr&amp;des=wg&amp;srt=npan&amp;col=abcdefghinoq&amp;msz=1500&amp;geo=-137" class="external text" rel="nofollow">World Gazetteer</a></li>
<li><a href="http://www.citypopulation.de/Madagascar.html" class="external text" rel="nofollow">City Population</a></li>
</ul>
<table id="collapsibleTable0" class="navbox collapsible noprint autocollapse" style="margin: auto;">
<tbody><tr>
<th colspan="2" style="text-align: center;"><span class="navboxToggle"><a href="javascript:Palette_toggle(0);" id="collapseButton0">[enrouler]</a></span>
<div style="float:left; width:6em; text-align:left">
<div class="noprint plainlinksneverexpand" style="background-color:transparent; padding:0; font-size:xx-small; color:#000000; white-space:nowrap;"><a href="http://fr.wikipedia.org/wiki/Mod%C3%A8le:Villes_d%27Afrique" title="Modèle:Villes d'Afrique"><abbr class="abbr" title="Voir ce modèle.">v</abbr></a>&nbsp;· <a href="http://fr.wikipedia.org/w/index.php?title=Discussion_mod%C3%A8le:Villes_d%27Afrique&amp;action=edit&amp;redlink=1" class="new" title="Discussion modèle:Villes d'Afrique (page inexistante)"><abbr class="abbr" style="color:#002bb8;" title="Discussion sur ce modèle.">d</abbr></a>&nbsp;· <a href="http://fr.wikipedia.org/w/index.php?title=Mod%C3%A8le:Villes_d%27Afrique&amp;action=edit" class="external text" rel="nofollow"><abbr class="abbr" title="Modifier ce modèle. Merci de prévisualiser avant de sauvegarder.">m</abbr></a></div>
</div>
<span style="font-size:110%">Villes d’Afrique</span></th>
</tr>
<tr>
<td class="group" style="width: 50px; background: none repeat scroll 0% 0% rgb(221, 221, 255); vertical-align: middle;">États</td>
<td class="list" style="text-align: center;"><span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_d%27Afrique_du_Sud" title="Villes d'Afrique du Sud">Afrique du Sud</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_d%27Alg%C3%A9rie" title="Villes d'Algérie">Algérie</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_d%27Angola" title="Villes d'Angola">Angola</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_B%C3%A9nin" title="Villes du Bénin">Bénin</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Botswana" title="Villes du Botswana">Botswana</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Burkina_Faso" title="Villes du Burkina Faso">Burkina Faso</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Burundi" title="Villes du Burundi">Burundi</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Cameroun" title="Villes du Cameroun">Cameroun</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Cap-Vert" title="Villes du Cap-Vert">Cap-Vert</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_de_R%C3%A9publique_centrafricaine" title="Villes de République centrafricaine">Centrafrique</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_des_Comores" title="Villes des Comores" class="mw-redirect">Comores</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Liste_des_villes_de_la_R%C3%A9publique_du_Congo" title="Liste des villes de la République du Congo" class="mw-redirect">Congo (Brazzaville)</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_de_la_R%C3%A9publique_d%C3%A9mocratique_du_Congo" title="Villes de la République démocratique du Congo">Congo (Kinshasa)</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_de_C%C3%B4te_d%27Ivoire" title="Villes de Côte d'Ivoire">Côte d'Ivoire</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_de_Djibouti" title="Villes de Djibouti" class="mw-redirect">Djibouti</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_d%27%C3%89gypte" title="Villes d'Égypte">Égypte</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_d%27%C3%89thiopie" title="Villes d'Éthiopie">Éthiopie</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Liste_de_villes_de_Guin%C3%A9e_%C3%A9quatoriale" title="Liste de villes de Guinée équatoriale">Guinée équatoriale</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Gabon" title="Villes du Gabon">Gabon</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_de_Gambie" title="Villes de Gambie">Gambie</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Ghana" title="Villes du Ghana">Ghana</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_de_Guin%C3%A9e" title="Villes de Guinée">Guinée</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_de_Guin%C3%A9e-Bissau" title="Villes de Guinée-Bissau">Guinée-Bissau</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Kenya" title="Villes du Kenya">Kenya</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Liste_des_villes_du_Lesotho" title="Liste des villes du Lesotho">Lesotho</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Liberia" title="Villes du Liberia">Liberia</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_de_Libye" title="Villes de Libye">Libye</a> •</span> <span style="white-space:nowrap"><strong class="selflink">Madagascar</strong> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Malawi" title="Villes du Malawi">Malawi</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Mali" title="Villes du Mali">Mali</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_de_Mauritanie" title="Villes de Mauritanie">Mauritanie</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_de_Maurice" title="Villes de Maurice">Maurice</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Liste_de_villes_du_Maroc" title="Liste de villes du Maroc">Maroc</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Mozambique" title="Villes du Mozambique">Mozambique</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_de_la_Namibie" title="Villes de la Namibie">Namibie</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Niger" title="Villes du Niger" class="mw-redirect">Niger</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Nigeria" title="Villes du Nigeria">Nigeria</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_d%27Ouganda" title="Villes d'Ouganda">Ouganda</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Rwanda" title="Villes du Rwanda">Rwanda</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_de_Sao_Tom%C3%A9-et-Principe" title="Villes de Sao Tomé-et-Principe">Sao Tomé-et-Principe</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_S%C3%A9n%C3%A9gal" title="Villes du Sénégal">Sénégal</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_des_Seychelles" title="Villes des Seychelles">Seychelles</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_de_Sierra_Leone" title="Villes de Sierra Leone">Sierra Leone</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_de_Somalie" title="Villes de Somalie">Somalie</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Swaziland" title="Villes du Swaziland">Swaziland</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Liste_des_villes_de_Tanzanie" title="Liste des villes de Tanzanie">Tanzanie</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Tchad" title="Villes du Tchad">Tchad</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Togo" title="Villes du Togo">Togo</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Liste_des_municipalit%C3%A9s_de_Tunisie" title="Liste des municipalités de Tunisie">Tunisie</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_de_Zambie" title="Villes de Zambie">Zambie</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Villes_du_Zimbabwe" title="Villes du Zimbabwe">Zimbabwe</a></span></td>
</tr>
<tr>
<td class="group" style="width: 50px; background: none repeat scroll 0% 0% rgb(221, 221, 255); vertical-align: middle;">Territoires</td>
<td class="list even" style="text-align: center; background: none repeat scroll 0% 0% rgb(236, 236, 255);"><span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Cat%C3%A9gorie:Ville_des_Canaries" title="Catégorie:Ville des Canaries">Canaries</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Communes_de_Mayotte" title="Communes de Mayotte" class="mw-redirect">Mayotte</a> •</span> <span style="white-space:nowrap"><a href="http://fr.wikipedia.org/wiki/Communes_de_la_R%C3%A9union" title="Communes de la Réunion" class="mw-redirect">Réunion</a></span></td>
</tr>
</tbody></table>
<ul id="bandeau-portail" class="bandeau-portail">
<li><span class="bandeau-portail-element"><span class="bandeau-portail-icone"><a href="http://fr.wikipedia.org/wiki/Portail:Madagascar" title="Portail de Madagascar"><img alt="Portail de Madagascar" src="Villes_de_Madagascar_files/36px-Flag_of_Madagascar.png" class="thumbborder" height="24" width="36"></a></span> <span class="bandeau-portail-texte"><a href="http://fr.wikipedia.org/wiki/Portail:Madagascar" title="Portail:Madagascar">Portail de Madagascar</a></span></span></li>
</ul>


<!-- 
NewPP limit report
Preprocessor node count: 7468/1000000
Post-expand include size: 154887/2048000 bytes
Template argument size: 21346/2048000 bytes
Expensive parser function count: 4/500
-->
</body></html>