-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
3469 lines (2011 loc) · 167 KB
/
index2.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">if(screen.width<=700){window.location="http://m.igihe.com/";}</script>
<title>IGIHE.com - Murakaza neza</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta http-equiv="content-language" content="en-US"/>
<meta http-equiv="imagetoolbar" content="no"/>
<meta http-equiv="robots" content="all"/>
<meta name="revisit-after" content="1"/>
<meta http-equiv="window-target" content="_top"/>
<meta name="expires" content="-1"/>
<meta name="rating" content="general"/>
<meta http-equiv="pragma" content="no-cache"/>
<link rel="shortcut icon" href="squelettes/igihe_imgs/favicon.ico"/>
<link rel="stylesheet" type="text/css" media="screen" href="squelettes/igihe_scripts/ghgrid.css"/>
<link rel="stylesheet" type="text/css" media="screen" href="squelettes/igihe_scripts/ghstyle_day.css"/>
<link rel="stylesheet" type="text/css" href="squelettes/igihe_scripts/gh_slideshow.css"/>
<script type="text/javascript" src="squelettes/igihe_scripts/gh_coverage/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="squelettes/igihe_scripts/gh_stickyfooter.css"/>
<link rel="stylesheet" href="gh_valentine/style.css" type="text/css" media="screen"/>
<script src="gh_valentine/jquery-1.6.1.min.js" type="text/javascript"></script>
<script src="gh_valentine/jcarousellite_1.0.1c4.js" type="text/javascript"></script>
<style>#dropdowncontent{margin:0px;width:100%;height:330px;display:none;float:left;text-align:center}#dropdownbanner{width:978px;border:0px solid #bcbcbb;margin:auto;margin-bottom:-5px}.social_feed{}.twtr-hd{display:none}</style>
</head>
<body>
<!-- Ad_bottomfixed_958x80 S -->
<!-- Ad_bottomfixed_958x80 ENDS HERE -->
<a name="hejuru"></a>
<!-- TOP BANNER
<div style="display:block;width:100%;height:70px;text-align:center;background-color:#0655c7;">
<a href="http://www.igihe.com/coverages/primus-guma-guma-superstar-ii/"><img src="squelettes/igihe_imgs/pggss_ads_topbanner.gif" width="617" height="70" border="0" alt=""></a>
</div>
End TOP BANNER -->
<div id="ghheader">
<div id="dropdowncontent" align="center">
<div id="content">
<a href="http://igihe.tv" target="_blank"><img src="http://igihe.com/drpdwn/kwitizina20132.jpg" style="width: 978px;" height="330px"></a>
</div>
</div>
<div style="width: 100%; background: none; margin-top: -3px; margin-left: 0px;" align="center">
<a href="#"><img id="dropdownbanner" src="http://igihe.com/drpdwn/kwitizina2013.jpg" width="978"></a>
</div>
<script>$("#dropdownbanner").click(function(){if($("#dropdowncontent").is(":hidden")){$("#dropdowncontent").slideDown("slow");}
else{$("#dropdowncontent").slideUp("slow");}});</script>
<div class="container_20">
<div class='ajaxbloc' aria-live='polite' aria-atomic='true' data-ajax-env='pIbNnGxLfKPHVGv6jCgXROdkeqKxGBNqQyufOTi8ps+BGsCLZjGjRzlJi1EOIxHHSmlHQUOwXmTbdaUYA3MlkkzavBzMKKL4QSfgWV3pwOm8NnwAzaSPYrzZ/ho8rbrWRj8h9Lcf9/sWSreUnBbzpWZdFcLjL6ePBiW119mxBikCHaLiJs0x7IhOhyhgE5H49PGZ4g==' data-origin="spip.php">
<!-- Top-->
<div class="grid_20" id="top">
<div id="top_text"> IGIHE.com</div>
<ul class="gh_lang">
<li class="gh_lang"><a href="http://igihe.com" class="gh_lang"><img src="squelettes/igihe_imgs/gh_flag_rw.gif" width="20" height="12" border="0" align="left" class="gh_lang">IKINYARWANDA</a></li>
<li class="gh_lang"><a href="http://www.igihe.bi/" class="gh_lang"><img src="http://igihe.bi/squelettes/igihe_imgs/gh_flag_bi.jpg" width="20" height="12" border="0" align="left" class="gh_lang"> IKIRUNDI</a></li>
<li class="gh_lang"><a href="http://en.igihe.com/" target="_blank" class="gh_lang"><img src="squelettes/igihe_imgs/gh_flag_en.gif" width="20" height="12" border="0" align="left" class="gh_lang"> ENGLISH</a></li>
<li class="gh_lang"><a href="http://fr.igihe.com" target="_blank" class="gh_lang"><img src="squelettes/igihe_imgs/gh_flag_fr.gif" width="20" height="12" border="0" align="left" class="gh_lang"> FRANÇAIS</a></li>
</ul>
<!--
<form action="http://www.igihe.com/spip.php?page=recherche" id="cse-search-box">
<div>
<input type="hidden" name="cx" value="partner-pub-8682210294044984:9783790922" />
<input type="hidden" name="cof" value="FORID:10" />
<input type="hidden" name="ie" value="UTF-8" />
<input type="text" name="q" size="55" />
<input type="submit" name="sa" value="Search" />
</div>
</form>
<script type="text/javascript" src="http://www.google.rw/coop/cse/brand?form=cse-search-box&lang=en"></script>
-->
<div class="gh_header_search">
<form action="http://www.igihe.com/spip.php?page=recherche" id="cse-search-box">
<input type="hidden" name="cx" value="partner-pub-8682210294044984:9783790922"/>
<input type="hidden" name="cof" value="FORID:10"/>
<input type="hidden" name="ie" value="UTF-8"/>
<input name='page' value='recherche' type='hidden'>
<input type="text" name="q" value=" Andika Aha..." onfocus="if(this.value==' Andika Aha...') this.value='';" class="gh_search"/><input type="submit" value="SHAKISHA" class="gh_search_out"/>
</form>
</div>
</div>
<div class="clear"></div>
<!-- End Top -->
<!-- Logo -->
<div class="grid_5" id="logo">
<a href="serivisi/site-design/article/nouvel-article-no-37838"><img src="http://igihe.rw/IMG/arton37838.png" width="265" height="117" border="0" alt="IGIHE.com - Ahabanza" id="logoimage"></a>
</div>
<!-- End Logo -->
<!-- Ads728x90 -->
<div class="grid_15" id="ads_top">
<a href="#" class="gh_adsin">kwamamaza</a>
<a href="http://www.igihe.com/serivisi/kwamamaza/article/tigo-internet-new" title="Tigo internet New " target="_blank">
<img src="http://igihe.rw/IMG/gif/tigo-internet-banner_igihe.gif" width="728" height="90" border="0" alt="" title=""/>
</a>
</div>
<!-- End Ads728x90-->
<div class="clear"></div>
</div><!--ajaxbloc--> <div class="grid_4" id="menu"><a href="http://igihe.com" class="gh_menu1"><img src="http://www.igihe.rw/squelettes/igihe_imgs/icons/gh_home.gif" width="19" height="25" border="0" align="left">Ahabanza</a></div>
<div class="grid_4" id="menu"><a href="http://igihe.com/abo-turibo/" class="gh_menu1"><img src="http://www.igihe.rw/squelettes/igihe_imgs/icons/gh_Abo Turibo.gif" width="19" height="25" border="0" align="left">Abo Turibo</a></div>
<div class="grid_4" id="menu"><a href="http://igihe.com/serivisi/" class="gh_menu1"><img src="http://www.igihe.rw/squelettes/igihe_imgs/icons/gh_Serivisi.gif" width="19" height="25" border="0" align="left">Serivisi</a></div>
<div class="grid_4" id="menu"><a href="http://igihe.com/twandikire/" class="gh_menu1"><img src="http://www.igihe.rw/squelettes/igihe_imgs/icons/gh_Twandikire.gif" width="19" height="25" border="0" align="left">Twandikire</a></div>
<div class="grid_4" id="menu"><a href="#" class="gh_menu1"><img src="http://www.igihe.rw/squelettes/igihe_imgs/icons/gh_ibirimo.gif" width="19" height="25" border="0" align="left">Ibirimo</a></div>
<div class="clear"></div>
</div>
</div>
<div class="clear"></div>
<div id="ghbody">
<div id="bghome">
<div class="container_20">
<div class="grid_16" id="content" style="">
<div class='ajaxbloc' aria-live='polite' aria-atomic='true' data-ajax-env='pIZLmGxLYGM3o+pbBCpFwZ4kCciNKJAePfiEOnOziacje+3HMkykI/qIVtSbw2XTQC4gWbJW7JSvIJWlnwn9E28909Xvo8AtL0g9DtGirY5WFbhoI28fGCKo0ZS3fqRQc1NfocpQGFdGnrejb6pfgZ+6PFPW46D63N/2EBr4fT1QwS8QojCDQiXYjBKvFhTZy0bb87C8BMhp' data-origin="spip.php">
<div class="grid_16 alpha omega" id="slidenewshomepage">
<marquee behavior="scroll" direction="left" scrollamount="2" scrolldelay="1" width="100%" loop="infinite" onmouseover="this.stop();" onmouseout="this.start();">
<a href="http://igihe.com/amakuru/muri-afurika/u-rwanda/article/ibuka-na-sosiyete-sivile-barasaba" class="gh_newsslides_title"><font class="gh_newsslidesttime">Published il y a 18 heures</font>
IBUKA na Sosiyete Sivile barasaba Leta indishyi ku barokotse Jenoside yakorewe Abatutsi</a>
|
<a href="http://igihe.com/amakuru/muri-afurika/u-rwanda/article/bibaye-ngombwa-hazakoreshwa-ingufu" class="gh_newsslides_title"><font class="gh_newsslidesttime">Published il y a 20 heures</font>
Bibaye ngombwa hazakoreshwa ingufu kurinda ibyagezweho -Perezida </a>
|
<a href="http://igihe.com/amakuru/muri-afurika/u-rwanda/article/ubumuga-bwanjye-bwateye-benshi" class="gh_newsslides_title"><font class="gh_newsslidesttime">Published il y a 23 heures</font>
“Ubumuga bwanjye bwateye benshi gutura mu mahoro”</a>
|
<a href="http://igihe.com/amakuru/muri-afurika/article/alex-kanyankole-yagizwe-umuyobozi" class="gh_newsslides_title"><font class="gh_newsslidesttime"></font>
Alex Kanyankole yagizwe umuyobozi mushya wa BRD</a>
|
<a href="http://igihe.com/amakuru/muri-afurika/u-rwanda/article/gitega-inzu-y-umukecuru-w-imyaka" class="gh_newsslides_title"><font class="gh_newsslidesttime"></font>
Gitega : Inzu y’umukecuru w’imyaka 59 yafashwe n’inkongi y’umuriro</a>
|
<a href="http://igihe.com/amakuru/mu-mahanga/article/u-bubiligi-bashyigikiye-ko-paul" class="gh_newsslides_title"><font class="gh_newsslidesttime"></font>
U Bubiligi : Bashyigikiye ko Paul Barril agezwa mu nkiko ku ruhare akekwaho muri jenoside</a>
|
<a href="http://igihe.com/amakuru/article/abafashwaga-na-global-fund-binyuze" class="gh_newsslides_title"><font class="gh_newsslidesttime"></font>
Abafashwaga na Global Fund binyuze muri MINISANTE baranenga igenzura bakorewe </a>
|
<a href="http://igihe.com/amakuru/muri-afurika/u-rwanda/article/ipfunwe-ikimwaro-urungabangabo-no" class="gh_newsslides_title"><font class="gh_newsslidesttime"></font>
Ipfunwe, ikimwaro, urungabangabo no kwihakana abawe ; umurage w’abajenosideri i Rwanda </a>
|
<a href="http://igihe.com/amakuru/muri-afurika/u-rwanda/article/ijambo-madame-jeannette-kagame" class="gh_newsslides_title"><font class="gh_newsslidesttime"></font>
Ijambo Madame Jeannette Kagame yagejeje ku bitabiriye Ihuriro ry’Urubyiruko</a>
|
<a href="http://igihe.com/amakuru/muri-afurika/article/harakibazwa-impamvu-nkurunziza-na" class="gh_newsslides_title"><font class="gh_newsslidesttime"></font>
Harakibazwa impamvu Nkurunziza na Kikwete batitabiriye inama yatumijwe na Museveni </a>
|
<a href="http://igihe.com/amakuru/muri-afurika/article/perezida-kagame-yasabye-urubyiruko" class="gh_newsslides_title"><font class="gh_newsslidesttime"></font>
Perezida Kagame yasabye urubyiruko kwigobotora imizigo y’amateka mabi yasizwe </a>
|
<a href="http://igihe.com/amakuru/muri-afurika/article/ajprodho-irasaba-mineduc" class="gh_newsslides_title"><font class="gh_newsslidesttime"></font>
AJPRODHO irasaba MINEDUC gushishoza ku kwishyura kw’abanyeshuri muri kaminuza</a>
|
<a href="http://igihe.com/amakuru/muri-afurika/u-rwanda/article/ibikorwa-bya-rusesabagina-ni-amaco" class="gh_newsslides_title"><font class="gh_newsslidesttime"></font>
Ibikorwa bya Rusesabagina ni amaco y’inda nk’ay’ibindi bisambo byose-Minisitiri Mitali</a>
|
<a href="http://igihe.com/amakuru/muri-afurika/article/brig-gen-dan-gapfizi-yasezeweho" class="gh_newsslides_title"><font class="gh_newsslidesttime"></font>
Brig. Gen Dan Gapfizi yasezeweho bwa nyuma</a>
|
<a href="http://igihe.com/amakuru/muri-afurika/u-rwanda/article/stanislas-habimana-wigeze-kuba" class="gh_newsslides_title"><font class="gh_newsslidesttime"></font>
Stanislas Habimana wigeze kuba Umushinjacyaha yavuye mu buhungiro</a>
</marquee>
<!--
<a href="http://igiheshowbiz.com/coverages/movies-awards/"><img src="http://igiheshowbiz.com/images/movieawards.png" border="0" alt="Vote your Movie" title="Vote your Movie" style="margin-top: -33px; position: relative;"/></a> -->
</div></div><!--ajaxbloc--> <div class="grid_16 alpha omega">
<div class="grid_9 alpha" id="slideshows">
<div class='ajaxbloc' aria-live='polite' aria-atomic='true' data-ajax-env='pIbNnGxLfKPHVGv6jPD4NRgwyPlhqqanuyZQCbYGUyG1oOVKzH52okwrByNLE7tjrIRTVltNpn+zAHezyQJsiVv/4uP2IX8UNVwXCliV+eHdwGcB0BnAGbdO/XiXmsulNs4dp7dvb1NBV12UUM2ELVegHUZwefrl7ct08Ilk34m51iRM93CY4PWKoc5zpTfkx2anqep2zE4XTDJb' data-origin="spip.php">
<!-- -->
<div id="featured">
<ul class="ui-tabs-nav">
<li class="ui-tabs-nav-item ui-tabs-selected" id="nav-fragment-1"><a href="#fragment-1">
<img src="http://igihe.rw/local/cache-gd2/1855dc04216a670354d4a6e2ed55823a.jpg" border="0" width="65" height="43" alt=""/>
</a></li>
<li class="ui-tabs-nav-item" id="nav-fragment-2"><a href="#fragment-2">
<img src="http://igihe.rw/local/cache-gd2/89ddc0568de201794cf66d6ba94ebcaa.jpg" border="0" width="65" height="43" alt=""/>
</a></li>
<li class="ui-tabs-nav-item" id="nav-fragment-3"><a href="#fragment-3">
<img src="http://igihe.rw/local/cache-gd2/020bfe2f7f25affd72eb72b5661b8e4f.jpg" border="0" width="65" height="43" alt=""/>
</a></li>
<li class="ui-tabs-nav-item" id="nav-fragment-4"><a href="#fragment-4">
<img src="http://igihe.rw/local/cache-gd2/d62b9f9cdb0265e5e57e0ca7f2c9a9c7.jpg" border="0" width="65" height="43" alt=""/>
</a></li>
<li class="ui-tabs-nav-item" id="nav-fragment-5"><a href="#fragment-5">
<img src="http://igihe.rw/local/cache-gd2/4c7b81b1ac36940b0eff8ef0aba29f11.jpg" border="0" width="65" height="43" alt=""/>
</a></li>
<li class="ui-tabs-nav-item" id="nav-fragment-6"><a href="#fragment-6">
<img src="http://igihe.rw/local/cache-gd2/1b3ba32e13261ddbf886201bab2a5e34.jpg" border="0" width="65" height="43" alt=""/>
</a></li>
</ul>
<div id="fragment-1" class="ui-tabs-panel" style="">
<a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/bibaye-ngombwa-hazakoreshwa-ingufu"><img src="http://igihe.rw/local/cache-gd2/e468d43c6428d8df89d06708e6dd0f87.jpg" border="0" alt="Bibaye ngombwa hazakoreshwa ingufu kurinda ibyagezweho -Perezida " title="Bibaye ngombwa hazakoreshwa ingufu kurinda ibyagezweho -Perezida "/></a>
<div class="info"><h2><a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/bibaye-ngombwa-hazakoreshwa-ingufu">Bibaye ngombwa hazakoreshwa ingufu kurinda ibyagezweho -Perezida</a></h2></div>
</div>
<div id="fragment-2" class="ui-tabs-panel" style="">
<a href="http://www.igihe.com/amakuru/mu-mahanga/article/canada-mungwarare-arasomerwa-kuri"><img src="http://igihe.rw/local/cache-gd2/a502d0343b34809a9371d2339888c82b.jpg" border="0" alt="Canada : Mungwarare arasomerwa kuri uyu wa Gatanu" title="Canada : Mungwarare arasomerwa kuri uyu wa Gatanu"/></a>
<div class="info"><h2><a href="http://www.igihe.com/amakuru/mu-mahanga/article/canada-mungwarare-arasomerwa-kuri">Canada : Mungwarare arasomerwa kuri uyu wa Gatanu</a></h2></div>
</div>
<div id="fragment-3" class="ui-tabs-panel" style="">
<a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/ibuka-na-sosiyete-sivile-barasaba"><img src="http://igihe.rw/local/cache-gd2/ee46975e5924b181c0bf3b6a1f6d4842.jpg" border="0" alt="IBUKA na Sosiyete Sivile barasaba Leta indishyi ku barokotse Jenoside yakorewe Abatutsi" title="IBUKA na Sosiyete Sivile barasaba Leta indishyi ku barokotse Jenoside yakorewe Abatutsi"/></a>
<div class="info"><h2><a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/ibuka-na-sosiyete-sivile-barasaba">IBUKA na Sosiyete Sivile barasaba Leta indishyi ku barokotse Jenoside yakorewe Abatutsi</a></h2></div>
</div>
<div id="fragment-4" class="ui-tabs-panel" style="">
<a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/ubumuga-bwanjye-bwateye-benshi"><img src="http://igihe.rw/local/cache-gd2/6b55fc8ea72f016a49976fa9f18e720f.jpg" border="0" alt=" “Ubumuga bwanjye bwateye benshi gutura mu mahoro”" title=" “Ubumuga bwanjye bwateye benshi gutura mu mahoro”"/></a>
<div class="info"><h2><a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/ubumuga-bwanjye-bwateye-benshi">“Ubumuga bwanjye bwateye benshi gutura mu mahoro”</a></h2></div>
</div>
<div id="fragment-5" class="ui-tabs-panel" style="">
<a href="http://www.igihe.com/amakuru/muri-afurika/article/alex-kanyankole-yagizwe-umuyobozi"><img src="http://igihe.rw/local/cache-gd2/db81764e6faed97a83f560bf987613f1.jpg" border="0" alt="Alex Kanyankole yagizwe umuyobozi mushya wa BRD" title="Alex Kanyankole yagizwe umuyobozi mushya wa BRD"/></a>
<div class="info"><h2><a href="http://www.igihe.com/amakuru/muri-afurika/article/alex-kanyankole-yagizwe-umuyobozi">Alex Kanyankole yagizwe umuyobozi mushya wa BRD</a></h2></div>
</div>
<div id="fragment-6" class="ui-tabs-panel" style="">
<a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/gitega-inzu-y-umukecuru-w-imyaka"><img src="http://igihe.rw/local/cache-gd2/e1e5d728504b38addaf81d708c617067.jpg" border="0" alt="Gitega : Inzu y’umukecuru w’imyaka 59 yafashwe n’inkongi y’umuriro" title="Gitega : Inzu y’umukecuru w’imyaka 59 yafashwe n’inkongi y’umuriro"/></a>
<div class="info"><h2><a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/gitega-inzu-y-umukecuru-w-imyaka">Gitega : Inzu y’umukecuru w’imyaka 59 yafashwe n’inkongi y’umuriro</a></h2></div>
</div>
</div>
<!-- -->
</div><!--ajaxbloc--> </div>
<!-- Ads Ad4_MediumRectangle_300x250 -->
<div class="grid_7 omega" id="ads_innertop" style="text-align:center;z-index:9999999999999999999999;">
<a href="#" class="gh_adsin">kwamamaza</a>
<a href="http://www.igihe.com/serivisi/kwamamaza/mtn-zone-new_2" title="MTN Zone New_2 ">
<img src="http://igihe.rw/IMG/jpg/mtn_zone_-_igihe_web_banner_-_rwandese.jpg" style="margin:3px;" border="0" alt="" title=""/>
</a>
</div>
<!-- End Ads Ad4_MediumRectangle_300x250 -->
<div class="clear"></div>
<!-- Ads ad_widerectangle -->
<center>
<a href="serivisi/kwamamaza/article/rra" title="RRA" target="_blank">
<img src="http://igihe.rw/IMG/gif/rra-1.gif" style="margin:3px; " width="782" height="90" border="0" alt="" title=""/>
</a>
</center>
<!-- End Ads ad_widerectangle -->
</div>
<div class="grid_9 alpha omega">
<div class='ajaxbloc' aria-live='polite' aria-atomic='true' data-ajax-env='pIfNnGxLfKPHVGv6jKi3qDwgo7RhDayDty/4XF9GGSBfCVDrc2foo081BLHbw1WzoDoj9NFQAhbswIWnRAl8lPnuNEamlbbFolOW308wt4UefH56nIukG2O/cbbXhWf8v1ObJthRGktKvpcDJ7VPox7BU8Cn55UC9bUOK1LEzF5ukpRBfwJ29L4rI4Nlq6sC2z/MFt3zv0H8QzBb' data-origin="spip.php">
<div class="grid_9 alpha" id="box_news">
<a name='pagination_gh_news' id='pagination_gh_news'></a>
<a href="#" class="box_title">Amakuru mashya</a>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/i-burasirazuba-hakomeja-urugamba'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Amakuru</a> | <a href="#" class="gh_news_category">Muri Afurika</a> | <a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/" class="gh_news_category">U Rwanda</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/fb3f1cf09dfaf4d92df6968663d1c8a6.jpg" alt="I Burasirazuba hakomeje urugamba rwo kurwanya ibiyobyabwenge" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/i-burasirazuba-hakomeja-urugamba" class="gh_news_hometitle">I Burasirazuba hakomeje urugamba rwo kurwanya ibiyobyabwenge</a>
<div class="gh_article_dtimeago"><br/>il y a 11 minutes</div>
<div class="gh_article_dcomments" title="Comments">
0</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 2</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/imikino/basketball/article/ferwaba-yasabye-ko-imikino-y'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Imikino</a> | <a href="http://www.igihe.com/imikino/basketball/" class="gh_news_category">Basketball</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/ba1e3108f523c5a714d9822cb6cd8e4c.jpg" alt="FERWABA yasabye ko imikino y’akarere yakwigizwa inyuma" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/imikino/basketball/article/ferwaba-yasabye-ko-imikino-y" class="gh_news_hometitle">FERWABA yasabye ko imikino y’akarere yakwigizwa inyuma</a>
<div class="gh_article_dtimeago"><br/>il y a 38 minutes</div>
<div class="gh_article_dcomments" title="Comments">
0</div>
<div class="gh_article_dphotos" title="Amafoto ari muriyinkuru">2</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 40</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/ruhango-ikigage-cyishe-abantu'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Amakuru</a> | <a href="#" class="gh_news_category">Muri Afurika</a> | <a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/" class="gh_news_category">U Rwanda</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/6952ed26ee43df0c251a062e486aa2a7.jpg" alt="Ruhango : Ikigage cyishe abantu babiri " width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/ruhango-ikigage-cyishe-abantu" class="gh_news_hometitle">Ruhango : Ikigage cyishe abantu babiri </a>
<div class="gh_article_dtimeago"><br/>il y a 49 minutes</div>
<div class="gh_article_dcomments" title="Comments">
0</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 110</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/imyidagaduro/hanze/article/abahanzi-juliana-kanyomozi-na-rose'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Imyidagaduro</a> | <a href="http://www.igihe.com/imyidagaduro/hanze/" class="gh_news_category">Hanze</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/671d9489b99833540618a5a4f07063d8.jpg" alt="Abahanzi Juliana Kanyomozi na Rose Muhando bitezwe mu Rwanda" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/imyidagaduro/hanze/article/abahanzi-juliana-kanyomozi-na-rose" class="gh_news_hometitle">Abahanzi Juliana Kanyomozi na Rose Muhando bitezwe mu Rwanda</a>
<div class="gh_article_dtimeago"><br/>il y a 56 minutes</div>
<div class="gh_article_dcomments" title="Comments">
0</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 106</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/ubukungu/iterambere/article/nyabihu-gahunda-ya-vup-umurenge'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Ubukungu</a> | <a href="http://www.igihe.com/ubukungu/iterambere/" class="gh_news_category">Iterambere</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/d57acb08bf91e559fef9dd9b17d7ca81.jpg" alt="Nyabihu : Gahunda ya VUP/Umurenge yahinduye imibereho y’abahatuye " width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/ubukungu/iterambere/article/nyabihu-gahunda-ya-vup-umurenge" class="gh_news_hometitle">Nyabihu : Gahunda ya VUP/Umurenge yahinduye imibereho y’abahatuye </a>
<div class="gh_article_dtimeago"><br/>il y a 1 heure</div>
<div class="gh_article_dcomments" title="Comments">
0</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 78</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/amakuru/muri-afurika/article/abapolisi-140-bagiye-kubungabunga'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Amakuru</a> | <a href="http://www.igihe.com/amakuru/muri-afurika/" class="gh_news_category">Muri Afurika</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/fe1fc36bbe16ff8a2a34ca2dbebd0740.jpg" alt="Abapolisi 140 bagiye kubungabunga amahoro muri Haiti" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/amakuru/muri-afurika/article/abapolisi-140-bagiye-kubungabunga" class="gh_news_hometitle">Abapolisi 140 bagiye kubungabunga amahoro muri Haiti</a>
<div class="gh_article_dtimeago"><br/>il y a 1 heure</div>
<div class="gh_article_dcomments" title="Comments">
0</div>
<div class="gh_article_dphotos" title="Amafoto ari muriyinkuru">5</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 248</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/politiki/amakuru/article/kamonyi-abaturage-basanga-u-rwanda'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Politiki</a> | <a href="http://www.igihe.com/politiki/amakuru/" class="gh_news_category">Amakuru</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/20005b597e8748ed789f0627e8b07e01.jpg" alt="Kamonyi : Abaturage basanga u Rwanda rwarabonye ubwigenge nyuma ya Jenoside" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/politiki/amakuru/article/kamonyi-abaturage-basanga-u-rwanda" class="gh_news_hometitle">Kamonyi : Abaturage basanga u Rwanda rwarabonye ubwigenge nyuma ya Jenoside</a>
<div class="gh_article_dtimeago"><br/>il y a 1 heure</div>
<div class="gh_article_dcomments" title="Comments">
0</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 54</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/i-burasirazuba-komisiyo-y-amatora'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Amakuru</a> | <a href="#" class="gh_news_category">Muri Afurika</a> | <a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/" class="gh_news_category">U Rwanda</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/10878c206fdc99a062fa2be5854519e7.jpg" alt="I Burasirazuba : Komisiyo y’amatora irasaba abagore kwitabira amatora y’abadepite" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/i-burasirazuba-komisiyo-y-amatora" class="gh_news_hometitle">I Burasirazuba : Komisiyo y’amatora irasaba abagore kwitabira amatora y’abadepite</a>
<div class="gh_article_dtimeago"><br/>il y a 2 heures</div>
<div class="gh_article_dcomments" title="Comments">
0</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 42</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/umuco/amateka/article/mu-myaka-2-aho-rwigema-yaguye'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Umuco</a> | <a href="http://www.igihe.com/umuco/amateka/" class="gh_news_category">Amateka</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/f91a488a70cc6eda92dbb7ff8ed5fdd8.png" alt="Mu myaka 2 aho Rwigema yaguye harubakwa urwibutso" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/umuco/amateka/article/mu-myaka-2-aho-rwigema-yaguye" class="gh_news_hometitle">Mu myaka 2 aho Rwigema yaguye harubakwa urwibutso</a>
<div class="gh_article_dtimeago"><br/>il y a 15 heures</div>
<div class="gh_article_dcomments" title="Comments">
9</div>
<div class="gh_article_dphotos" title="Amafoto ari muriyinkuru">2</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 308</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/imikino/football/article/ruhago-yahuje-abanyarwanda'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Imikino</a> | <a href="http://www.igihe.com/imikino/football/" class="gh_news_category">Football</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/58437111062b6fb8c0c150de9b9de153.jpg" alt="Ruhago yahuje abanyarwanda, inababahora mu bitekerezo-Nshimiyimana" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/imikino/football/article/ruhago-yahuje-abanyarwanda" class="gh_news_hometitle">Ruhago yahuje abanyarwanda, inababahora mu bitekerezo-Nshimiyimana</a>
<div class="gh_article_dtimeago"><br/>il y a 16 heures</div>
<div class="gh_article_dcomments" title="Comments">
0</div>
<div class="gh_article_dphotos" title="Amafoto ari muriyinkuru">2</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 200</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/cyivugiza-abaturage-barasabwa'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Amakuru</a> | <a href="#" class="gh_news_category">Muri Afurika</a> | <a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/" class="gh_news_category">U Rwanda</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/8ad6ebd61d58ebf6a85d3bb85c246299.jpg" alt="Cyivugiza : Abaturage barasabwa guhuza kwibohora n’ijambo ry’Imana" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/cyivugiza-abaturage-barasabwa" class="gh_news_hometitle">Cyivugiza : Abaturage barasabwa guhuza kwibohora n’ijambo ry’Imana</a>
<div class="gh_article_dtimeago"><br/>il y a 16 heures</div>
<div class="gh_article_dcomments" title="Comments">
1</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 174</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/amakuru/muri-afurika/article/misiri-perezida-w-agateganyo'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Amakuru</a> | <a href="http://www.igihe.com/amakuru/muri-afurika/" class="gh_news_category">Muri Afurika</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/c83b91f58f1b00075583c9c34cdc86fd.jpg" alt=" Misiri : Perezida w’agateganyo wasimbuye Morsi yarahiye" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/amakuru/muri-afurika/article/misiri-perezida-w-agateganyo" class="gh_news_hometitle"> Misiri : Perezida w’agateganyo wasimbuye Morsi yarahiye</a>
<div class="gh_article_dtimeago"><br/>il y a 16 heures</div>
<div class="gh_article_dcomments" title="Comments">
3</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 386</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/minisitiri-mushikiwabo-asanga'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Amakuru</a> | <a href="#" class="gh_news_category">Muri Afurika</a> | <a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/" class="gh_news_category">U Rwanda</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/4d26084b4ec7c29472213ee11cb0facd.jpg" alt="Minisitiri Mushikiwabo asanga Afurika ikwiye kwivugira" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/minisitiri-mushikiwabo-asanga" class="gh_news_hometitle">Minisitiri Mushikiwabo asanga Afurika ikwiye kwivugira</a>
<div class="gh_article_dtimeago"><br/>il y a 16 heures</div>
<div class="gh_article_dcomments" title="Comments">
3</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 60</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/amakuru/mu-mahanga/article/ahenshi-mu-mahanga-abanyarwanda'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Amakuru</a> | <a href="http://www.igihe.com/amakuru/mu-mahanga/" class="gh_news_category">Mu Mahanga</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/fc840632aa601ae0ef9927e53f2b89d2.jpg" alt="Mu mahanga Abanyarwanda bizihiza ukwibohora" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/amakuru/mu-mahanga/article/ahenshi-mu-mahanga-abanyarwanda" class="gh_news_hometitle">Mu mahanga Abanyarwanda bizihiza ukwibohora</a>
<div class="gh_article_dtimeago"><br/>il y a 17 heures</div>
<div class="gh_article_dcomments" title="Comments">
1</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 66</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/amakuru/article/mbere-ya-jenoside-ubwishingizi-mu'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="http://www.igihe.com/amakuru/" class="gh_news_category">Amakuru</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/90ac95614b8006869926423e4dc655ee.jpg" alt="" Mbere ya Jenoside ubwishingizi mu kwivuza ntibwarengaga 10%"" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/amakuru/article/mbere-ya-jenoside-ubwishingizi-mu" class="gh_news_hometitle">"Mbere ya Jenoside ubwishingizi mu kwivuza ntibwarengaga 10%"</a>
<div class="gh_article_dtimeago"><br/>il y a 17 heures</div>
<div class="gh_article_dcomments" title="Comments">
3</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 2</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/imyidagaduro/gospel/article/mu-tubyiniro-hagiye-kujya'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Imyidagaduro</a> | <a href="http://www.igihe.com/imyidagaduro/gospel/" class="gh_news_category">Gospel</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/67ab441cf178d6c1a899c0b7125f9c79.jpg" alt="Mu tubyiniro hagiye kujya habwirizwa ijambo ry’Imana " width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/imyidagaduro/gospel/article/mu-tubyiniro-hagiye-kujya" class="gh_news_hometitle">Mu tubyiniro hagiye kujya habwirizwa ijambo ry’Imana </a>
<div class="gh_article_dtimeago"><br/>il y a 17 heures</div>
<div class="gh_article_dcomments" title="Comments">
4</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 248</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/imyidagaduro/muzika/abahanzi/p-fla/amakuru-701/article/p-fla-avuga-ko-ibishushanyo-ku'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Imyidagaduro</a> | <a href="#" class="gh_news_category">Muzika</a> | <a href="#" class="gh_news_category">Abahanzi</a> | <a href="#" class="gh_news_category">P’Fla</a> | <a href="http://www.igihe.com/imyidagaduro/muzika/abahanzi/p-fla/amakuru-701/" class="gh_news_category">Amakuru </a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/79aea1bf0d9218cf9d0215a2c2849aad.png" alt="P Fla avuga ko ibishushanyo ku mubiri we bimwibutsa ibibazo yahuye nabyo" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/imyidagaduro/muzika/abahanzi/p-fla/amakuru-701/article/p-fla-avuga-ko-ibishushanyo-ku" class="gh_news_hometitle">P Fla avuga ko ibishushanyo ku mubiri we bimwibutsa ibibazo yahuye nabyo</a>
<div class="gh_article_dtimeago"><br/>il y a 18 heures</div>
<div class="gh_article_dcomments" title="Comments">
3</div>
<div class="gh_article_dphotos" title="Amafoto ari muriyinkuru">19</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 146</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/amakuru/incamake/article/diva-awards-afrika-2013-irushanwa'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Amakuru</a> | <a href="http://www.igihe.com/amakuru/incamake/" class="gh_news_category">Incamake</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/f6a0f1025b8ec5d6e1d75ab8386f39d5.jpg" alt="“Diva Awards Afrika 2013”, irushanwa rizahemba abagore b’indashyikirwa mu Rwanda" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/amakuru/incamake/article/diva-awards-afrika-2013-irushanwa" class="gh_news_hometitle">“Diva Awards Afrika 2013”, irushanwa rizahemba abagore b’indashyikirwa mu Rwanda</a>
<div class="gh_article_dtimeago"><br/>il y a 19 heures</div>
<div class="gh_article_dcomments" title="Comments">
1</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 90</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/abakozi-b-icyahoze-ari-labophar'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Amakuru</a> | <a href="#" class="gh_news_category">Muri Afurika</a> | <a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/" class="gh_news_category">U Rwanda</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/5fbd2c710f1b7bf1adc5af966894556c.jpg" alt="Abakozi b’icyahoze ari LABOPHAR baremeye umuvandimwe w’umukozi wabo wazize Jenoside" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/abakozi-b-icyahoze-ari-labophar" class="gh_news_hometitle">Abakozi b’icyahoze ari LABOPHAR baremeye umuvandimwe w’umukozi wabo wazize Jenoside</a>
<div class="gh_article_dtimeago"><br/>il y a 19 heures</div>
<div class="gh_article_dcomments" title="Comments">
0</div>
<div class="gh_article_dphotos" title="Amafoto ari muriyinkuru">3</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 110</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/imikino/football/article/u-rwanda-rwazamutse-umwanya-umwe'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Imikino</a> | <a href="http://www.igihe.com/imikino/football/" class="gh_news_category">Football</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/2ca399109abc737dbb5bbf70fdb69f13.jpg" alt="U Rwanda rwazamutse umwanya umwe ku rutonde rwa FIFA" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/imikino/football/article/u-rwanda-rwazamutse-umwanya-umwe" class="gh_news_hometitle">U Rwanda rwazamutse umwanya umwe ku rutonde rwa FIFA</a>
<div class="gh_article_dtimeago"><br/>il y a 20 heures</div>
<div class="gh_article_dcomments" title="Comments">
0</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 2</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/imyidagaduro/article/mariya-yohana-aramurika-album-ye'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="http://www.igihe.com/imyidagaduro/" class="gh_news_category">Imyidagaduro</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/557c1ba906ef45e6d7dc6d8a5f161624.jpg" alt="Mariya Yohana aramurika Album ye ku munsi wo kwibohora" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/imyidagaduro/article/mariya-yohana-aramurika-album-ye" class="gh_news_hometitle">Mariya Yohana aramurika Album ye ku munsi wo kwibohora</a>
<div class="gh_article_dtimeago"><br/>il y a 20 heures</div>
<div class="gh_article_dcomments" title="Comments">
2</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 318</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/amakuru/article/mbere-ya-1994-kwinjira-kigali'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="http://www.igihe.com/amakuru/" class="gh_news_category">Amakuru</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/1ad13b38c7937dd624133f8956c1c829.jpg" alt="Mbere ya 1994 kwinjira Kigali uvuye mu ntara byasabaga urwandiko rw’inzira" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/amakuru/article/mbere-ya-1994-kwinjira-kigali" class="gh_news_hometitle">Mbere ya 1994 kwinjira Kigali uvuye mu ntara byasabaga urwandiko rw’inzira</a>
<div class="gh_article_dtimeago"><br/>il y a 20 heures</div>
<div class="gh_article_dcomments" title="Comments">
19</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 142</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/ikoranabuhanga/utuntu-n-utundi-86/article/douglas-wakoze-imbeba-ya-mudasobwa'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Ikoranabuhanga</a> | <a href="http://www.igihe.com/ikoranabuhanga/utuntu-n-utundi-86/" class="gh_news_category">Utuntu n’Utundi</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/917c689563c9ffe71a83cadabc3f9d2a.jpg" alt="Douglas wakoze imbeba ya mudasobwa (souris) yapfuye " width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/ikoranabuhanga/utuntu-n-utundi-86/article/douglas-wakoze-imbeba-ya-mudasobwa" class="gh_news_hometitle">Douglas wakoze imbeba ya mudasobwa (souris) yapfuye </a>
<div class="gh_article_dtimeago"><br/>il y a 20 heures</div>
<div class="gh_article_dcomments" title="Comments">
2</div>
<div class="gh_article_dphotos" title="Amafoto ari muriyinkuru">2</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 18</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/aho-abagore-bakuye-imbaraga-zo'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Amakuru</a> | <a href="#" class="gh_news_category">Muri Afurika</a> | <a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/" class="gh_news_category">U Rwanda</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/fa91e0944583094338ec9256469cdba0.jpg" alt="Aho abagore bakuye imbaraga zo kubohora u Rwanda" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/aho-abagore-bakuye-imbaraga-zo" class="gh_news_hometitle">Aho abagore bakuye imbaraga zo kubohora u Rwanda</a>
<div class="gh_article_dtimeago"><br/>il y a 20 heures</div>
<div class="gh_article_dcomments" title="Comments">
3</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 620</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/imyidagaduro/muzika/abahanzi/bull-dog/amakuru/article/bull-dogg-uhatanira-pggssiii-ni'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Imyidagaduro</a> | <a href="#" class="gh_news_category">Muzika</a> | <a href="#" class="gh_news_category">Abahanzi</a> | <a href="#" class="gh_news_category">Bull Dog</a> | <a href="http://www.igihe.com/imyidagaduro/muzika/abahanzi/bull-dog/amakuru/" class="gh_news_category">Amakuru</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/730d50308dfde244322b1a2f579c6fbc.jpg" alt="Bull Dogg uhatanira PGGSSIII ni muntu ki ?" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/imyidagaduro/muzika/abahanzi/bull-dog/amakuru/article/bull-dogg-uhatanira-pggssiii-ni" class="gh_news_hometitle">Bull Dogg uhatanira PGGSSIII ni muntu ki ?</a>
<div class="gh_article_dtimeago"><br/>il y a 20 heures</div>
<div class="gh_article_dcomments" title="Comments">
3</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 40</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/abanyarwandakazi-basanga-hari'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Amakuru</a> | <a href="#" class="gh_news_category">Muri Afurika</a> | <a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/" class="gh_news_category">U Rwanda</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/067f64709d51f3f219f5dbf250948c5a.jpg" alt="Abanyarwandakazi basanga hari byinshi byari bibaboshye" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/abanyarwandakazi-basanga-hari" class="gh_news_hometitle">Abanyarwandakazi basanga hari byinshi byari bibaboshye</a>
<div class="gh_article_dtimeago"><br/>il y a 21 heures</div>
<div class="gh_article_dcomments" title="Comments">
1</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 2</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/amakuru/article/kamonyi-gitifu-w-akagari-mu-maboko'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="http://www.igihe.com/amakuru/" class="gh_news_category">Amakuru</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/7ba44eeccb343d1aae42b4e2ddf10359.jpg" alt="Kamonyi : Gitifu w’Akagari mu maboko ya Polisi akekwaho amafaranga y’amakorano" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/amakuru/article/kamonyi-gitifu-w-akagari-mu-maboko" class="gh_news_hometitle">Kamonyi : Gitifu w’Akagari mu maboko ya Polisi akekwaho amafaranga y’amakorano</a>
<div class="gh_article_dtimeago"><br/>il y a 21 heures</div>
<div class="gh_article_dcomments" title="Comments">
5</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 434</div>
</div>
</div>
<div class="gh_amakuru_home" onClick="parent.location='http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/ambasade-y-amerika-mu-rwanda'">
<div style="padding:2px;font-family:Trebuchet MS;font-size:0.68em;color:#9E9E9E">
<a href="#" class="gh_news_category">Amakuru</a> | <a href="#" class="gh_news_category">Muri Afurika</a> | <a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/" class="gh_news_category">U Rwanda</a> </BOUCLE_gh_RUBRIQUEtitle_followl>
</div>
<img src="local/cache-gd2/1633b7de086e8d7a9f82391debfae4eb.jpg" alt="Ambasade y’Amerika mu Rwanda yizihije umunsi w’ubwigenge bwa USA" width="90" height="80" align="left" class="gh_news_image"/>
<div style="padding-bottom:5px;"><a href="http://www.igihe.com/amakuru/muri-afurika/u-rwanda/article/ambasade-y-amerika-mu-rwanda" class="gh_news_hometitle">Ambasade y’Amerika mu Rwanda yizihije umunsi w’ubwigenge bwa USA</a>
<div class="gh_article_dtimeago"><br/>il y a 21 heures</div>
<div class="gh_article_dcomments" title="Comments">
0</div>
<div class="gh_article_dphotos" title="Amafoto ari muriyinkuru">3</div>
<div class="gh_article_dhits" title="Abarebye iyinkuru"> 176</div>