-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·1385 lines (945 loc) · 62.8 KB
/
index.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>
<!--[if IE 8]><html lang="en" class="ie8"><![endif]-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="favicon.ico" rel="shortcut icon">
<title>WHO Ebola Response</title>
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
<link href="css/animated-chart.css" rel="stylesheet" />
<link href="public.css" rel="stylesheet" />
<!--[if lt IE 9]>
<script src="js/libs/html5shiv.js"></script>
<script src="js/libs/respond.min.js"></script>
<script src="js/libs/es5.js"></script>
<![endif]-->
</head>
<body>
<div id="navbar" class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="row">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span>
</button>
<a class="navbar-brand layer" href="#/home" data-zoom="3" data-layer="all">
<img src="img/who-logo-prp.gif" alt="who-logo-prp" height="60">
<span class="title">Ebola Portal</span>
</a>
</div>
<div class="navbar-collapse collapse" role="navigation">
<ul class="nav nav-pills navbar-right" id="nav-main">
<li>
<a href="#/response" data-page="response">Operations</a>
</li>
<li>
<a href="#/resources" data-page="resources">Funding</a>
</li>
<li>
<a href="https://who-ocr.github.io/ebola-data/">Maps</a>
</li>
<li class="hidden-xs">
<a href="http://www.who.int/csr/disease/ebola/en/">About Ebola</a>
</li>
<li>
<a href="http://www.who.int/">WHO</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="home" class="page active">
<div class="jumbotron subhead">
<div class="container">
<div class="row">
<div class="col-md-6">
<h1>Ebola response roadmap</h1>
<p>The roadmap aims to guide and coordinate the international response to the outbreak of Ebola virus disease in west Africa.</p>
<p>The goal is to stop Ebola transmission in affected countries within 6-9 months and prevent international spread.</p>
<p style="z-index: 999;"><a href='resource/EBOLA_RESPONSE_ROADMAP_28AUG14.pdf' download='EBOLA_RESPONSE_ROADMAP_28AUG14.pdf' class="btn btn-default btn-lg">Download the roadmap</a></p>
</div>
<div class="col-md-6">
<img src="img/jumbotron_1.jpg" style="width: 100%;" />
</div>
</div>
</div>
</div>
<div class="section section-lead">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="media">
<div class="icon">
<i class="fa fa-question"></i>
</div>
<div class="media-body">
<h4>What is Ebola?</h4>
<p style="text-align: center;">
Ebola is a rare and deadly disease caused by infection with one of
the Ebola virus strains (Zaire, Sudan, Bundibugyo, or Tai Forest virus). Ebola viruses are found in several
African countries. Ebola was discovered in 1976 near the Ebola River
in what is now the Democratic Republic of the Congo.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="media">
<div class="icon">
<i class="fa fa-bolt"></i>
</div>
<div class="media-body">
<h4>Current Outbreak</h4>
<p style="text-align: center;">
The outbreak of Ebola in West Africa is unprecedented in its scale,
severity, and complexity. The severely affected countries are struggling
to control the escalating outbreak against a backdrop of weak
health systems, significant deficits in capacity, and rampant fear.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="media">
<div class="icon">
<i class="fa fa-wrench"></i>
</div>
<div class="media-body">
<h4>What can be done?</h4>
<p style="text-align: center;">
Strengthen human resource, and response capacities in areas of intense and widespread transmission.
Ensure emergency and immediate response in countries with an initial case(s) or with
localized transmission. Strengthen preparedness of all countries to rapidly detect
and respond to an Ebola.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="section">
<div class="container">
<div>
<h2 class="section-title">Where is the outbreak?</h2>
<div>
<h4>Countries most affected</h4>
<p class="lead">
The map below shows the West African countries of Guinea, Liberia and Sierra Leone which are the most severely affected. New cases are now appearing in Nigeria and Senegal. All countries with land borders to the affected countries are at risk.
</p>
<img src="img/map_global.png" style="width: 100%; border: 1px solid #ccc; border-radius: 10px;" />
</div>
<br />
<div>
<h4>Countries with widespread and intense transmission</h4>
<p>
The map below shows the location of cases throughout the countries with most intense transmission, differentiating the cumulative number of cases to date in each area from the number of cases that have occurred within the past 21 days. The dark red circles show that a large percentage of cases occurred in the 21 days preceding 14 September 2014. Nine districts in which previous cases were confirmed have reported no cases during the 21 days prior to the end of 14 September (six districts in Guinea, one in Sierra Leone, and two in Liberia). Two previously uninfected areas reported initial cases during the seven days prior to the end of 14 September. In Guinea, there has been one suspected case and one confirmed case in the Dalaba area. In Liberia, four probable and two suspected cases have now been reported in the Maryland area, which borders Côte d’Ivoire.
</p>
<img src="img/map_district.png" style="width: 100%; border: 1px solid #ccc; border-radius: 10px;" />
</div>
</div>
</div>
</div> -->
<div class="section">
<div class="container">
<h2 class="section-title">How many people are affected?</h2>
<p>
A total of 9216 confirmed, probable, and suspected cases of Ebola virus disease (EVD) have been reported in seven affected countries (Guinea, Liberia, Nigeria, Senegal, Sierra Leone, Spain, and the United States of America) up to the end of 14 October. There have been 4555 deaths.
The latest information on cases and deaths can be found on the <a href="http://www.who.int/csr/don/en/" target="_blank">WHO Disease Outbreak News</a>.
</p>
<div>
<br />
<h4>Cases by country as of 14 October 2014</h4>
<br />
<img src="img/ctry-epi/guinea.png" style="border: 1px none #ccc; width:373px;" />
<img src="img/ctry-epi/liberia.png" style="border: 1px none #ccc; width:373px;" />
<img src="img/ctry-epi/sierra_leone.png" style="border: 1px none #ccc; width:373px;" />
</div>
<div>
<br />
<h4>Current assessment</h4>
<br />
<ul>
<li>
9191 (probable, confirmed and suspected) cases and 4546 deaths from EVD have been reported up to the end of 13 October 2014 by the Ministry of Health of Liberia, and 14 October by the Ministries of Health of Guinea and Sierra Leone.
</li>
<li>
As of 14 October 2014 for Guinea and Sierra Leone, and 13 October for Liberia, 423 HCWs are known to have developed EVD (76 in Guinea, 209 in Liberia, 11 in Nigeria and 124 in Sierra Leone, one in Spain, and two in the United States of America). 239 HCWs have died as a result of EVD infection (40 in Guinea, 96 in Liberia, five in Nigeria, 98 in Sierra Leone). Investigations into HCW exposures are ongoing.
</li>
<li>
To date, four countries, Nigeria, Senegal, Spain, and the United States of America have reported a case or cases imported from a country with widespread and intense transmission. In Nigeria, there have been 20 cases and eight deaths. In Senegal, there has been one case.
</li>
<li>
In Nigeria, all 891 contacts have now completed 21-day follow-up (362 contacts in Lagos, 529 contacts in Port Harcourt). A second EVD-negative sample was obtained from the last confirmed case on 8 September (39 days ago). In Senegal, a second EVD-negative sample was obtained from the single confirmed case on 5 September (42 days ago). WHO officially declares the Ebola outbreak in Senegal over. In Spain, 72 people, including 13 high-risk contacts, are being monitored. In the United States of America, 125 contacts are being monitored.
</li>
<li>
852 contacts have now completed 21-day follow-up in the Democratic Republic of the Congo. Of 269 contacts currently being monitored, all (100%) were seen on 9 October, the last date for which data has been reported. The last confirmed case was isolated on 4 October. This outbreak is unrelated to that affecting Guinea, Liberia, Nigeria, Sierra Leone, Spain, and the United States of America.
</li>
</ul>
</div>
</div>
</div>
<div class="section section-action">
<div class="container">
<h2 class="section-title">What needs to be done?</h2>
<div class="row">
<div class="col-md-4">
<div class="media">
<div class="icon">1</div>
<div class="media-body">
<h4>Achieve full geographic coverage with Ebola response activities in countries with widespread and intense transmission</h4>
<ul>
<li>Apply full Ebola intervention package to the extent of available resources</li>
<li>Develop and apply complementary approaches for intense transmission areas</li>
<li>Assess short-term extraordinary measures to limit national spread</li>
<li>Implement WHO’s Temporary Recommendations under IHR to prevent international spread</li>
<li>Ensure essential services and lay the foundation for health sector recovery and strengthening of national core capacities for outbreak response</li>
</ul>
</div>
</div>
</div>
<div class="col-md-4">
<div class="media">
<div class="icon">2</div>
<div class="media-body">
<h4>Ensure emergency and immediate action in countries with an initial case(s) or with localized transmission</h4>
<ul>
<li>Initiate emergency health procedures</li>
<li>Immediately activate Ebola response protocols and facilities, in keeping with WHO IPC guidance and universal precautions</li>
<li>Implement IHR Temporary Recommendations to prevent international spread</li>
</ul>
</div>
</div>
</div>
<div class="col-md-4">
<div class="media">
<div class="icon">3</div>
<div class="media-body">
<h4>Strengthen preparedness of all countries to rapidly detect and respond to an Ebola exposure</h4>
<ul>
<li>Establish active surveillance for clusters of unexplained deaths or febrile illness</li>
<li>Provide the general public with accurate and relevant information to reduce the risk of exposure</li>
<li>Establish a protocol for managing travellers who arrive at major land crossing points with unexplained febrile illness</li>
<li>Identify isolation units where any suspect Ebola case can be properly investigated and managed</li>
<li>Arrange a process for rapidly shipping diagnostic specimens to a WHO-recognized laboratory</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="response" class="page">
<div class="jumbotron subhead">
<div class="container">
<h1>Response operations</h1>
</div>
</div>
<div class="section">
<div class="container">
<h2 class="section-title">Countries with widespread and intense transmission </h2>
<p class="lead" style="text-align: left;">
In countries with widespread and intense transmission the objective is to achieve full geographic coverage with complementary Ebola response
activities. The
key milestone is to reverse the trend in new cases and infected areas within 3 months, stop
transmission in capital cities and major ports, and stop all residual transmission within 6-9 months.
</p>
<div>
<p>
The map below shows the status of the emergency response operations in the countries with widespread and intense transmission as of 17 October 2014. The map shows for each affeted location the status of the relevant Ebola intervention activities such as treatment centers, contact tracing, safe burial, laboratory testing and social mobilisation.
</p>
<br />
<img src="img/response-oct17.png" style="width: 100%; border: 1px solid #ccc; border-radius: 10px; padding: 40px;" />
</div>
<br />
<div>
<h4>Current response status</h4>
<ul>
<li>
The first-ever UN emergency health mission, the UN Mission for Ebola Emergency Response (UNMEER) has been set up to address the unprecedented EVD epidemic. The strategic priorities of the Mission are be to stop the spread of the disease, treat infected patients, ensure essential services, preserve stability, and prevent the spread of EVD to countries currently unaffected by EVD. WHO will continue to be responsible for overall health strategy and advice within the Mission, and has now moved its base of operations from Conakry, Guinea, to the UNMEER Mission headquarters in Accra, Ghana.
</li>
<li>
Efforts to scale-up the number of available EVD-specific beds have been intensified in countries with widespread and persistent transmission. Finding donors to fund the construction of new treatment facilities, and foreign medical teams to staff them, remains an ongoing challenge.
</li>
<li>
Two of four planned ETUs are now fully operation in Guinea. In Liberia, however, only six of a planned 28 ETUs are currently operational, providing 620 (21%) of 2930 planned beds. Health-care partners able to staff and manage ETUs are yet to be found for 16 of 28 planned facilities in the country, contributing to a current shortfall of 2310 beds. In Sierra Leone, almost half of the 18 planned ETUs are now operational. Three facilities accounting for 250 beds require further support before being brought into use.
</li>
<li>
The total number of operational laboratories in the three intense-transmission countries will increase to 13 in the coming weeks, as a Russian Mobile Laboratory becomes operational in Macenta, Guinea, and a Public Health England laboratory begins to provide diagnostic testing in the Western Rural area of Sierra Leone. At present, overall testing capacity stands at 200 samples per day in Guinea, 470 in Liberia, and 300 in Sierra Leone.
</li>
<li>
On 8 October, the Ebola Communication Network (ECN) was launched. ECN is an online collection of Ebola resources for Ebola communication developed by the Health Communication Capacity Collaborative with inputs from UNICEF, the US Centers for Disease Control and Prevention, USAID, IFRC, and WHO to strengthen the capacity of countries to implement state-of-the-art health-communication programs.
</li>
</ul>
</div>
</div>
</div>
<!-- <div class="section">
<div class="container">
<h2 class="section-title">Countries with initial cases or localized transmission</h2>
<p class="lead">
In countries with initial cases or localized transmission the objective is to ensure emergency and immediate application of comprehensive Ebola
response interventions. The key milestone is to stop all transmission within 8 weeks of index case.
</p>
<div>
<ul>
<li>
In Nigeria, all cases in the transmission chain are linked to a single person who travelled from Liberia to Lagos on 20 July. Among the contacts of this case, one person travelled to Port Harcourt and was the source of further local transmission; this transmission is at present limited to four cases. As a top priority, contact follow-up, supported by the highest authorities, has been implemented in Lagos and Port Harcourt.
</li>
<li>
In Senegal, one person, who travelled by road from Guinea to Dakar on 20 August, tested positive for EVD on 27 August. 67 contacts are being followed-up; none of these have tested positive so far.
</li>
</ul>
</div>
</div>
</div> -->
<div class="section">
<div class="container">
<h2 class="section-title">Strengthen preparedness</h2>
<p class="lead">
A second meeting of the Emergency Committee convened by the Director-General under the International Health Regulations (2005) [IHR (2005)] regarding the 2014 Ebola outbreak in West Africa has begun discussion via email this week. The meeting will review the status of the outbreak as a public health emergency of international concern, and assess the impact of current temporary measures to contain the outbreak and reduce international spread.
</p>
<p class="lead">
WHO and a range of partners are supporting the development of Ebola surveillance, preparedness and response plans in all non-affected African countries. Priority activities include active surveillance for clusters of unexplained death due to fever; provision of information to the general public and travellers; the identification of isolation units; provision of verified access to a WHO-accredited laboratory; and the establishment of a strategy for identifying and monitoring contacts of any suspected case.
</p>
<p class="lead">
Work is ongoing to strengthen laboratory capacity in the WHO African region, including a collaboration between all members of the Emerging and Dangerous Pathogen Laboratory Network in the WHO African region that has now mapped the location and capacity of all laboratories able to test for Ebola infection. Logistical systems for sample shipment and the procurement of essential reagents and supplies, including Ebola-positive controls, are now in place at key locations.
</p>
<p class="lead">
WHO is monitoring daily travel, trade, and transport measures adopted in response to Ebola, and together with international partners has established an international travel and transport task force to provide a coordinated international response, and to monitor the situation and provide timely information to the maritime and aviation sectors.
</p>
</div>
</div>
<!--<div class="section">
<div class="container">
<h2 class="section-title">Major issues to operationalize the roadmap</h2>
<p class="lead" style="text-align: left;">
</p>
</div>
</div>-->
</div>
<div id="resources" class="page">
<div class="jumbotron subhead">
<div class="container">
<h1>Funding and resource requirements</h1>
</div>
</div>
<div class="section section-lead">
<div class="container">
<h2 class="section-title">Estimated costs</h2>
<p class="lead">
On 16 September OCHA presented a US $975 million summary of the collective requirements – and activities and plans of all UN agencies and other stakeholders – to defeat the ebola outbreak and mitigate the immediate and longer-term social, economic, development and security consequences in ebola-affected affected countries and the region. These requirements – outlined in the <a href='http://www.unocha.org/top-stories/all-stories/ebola-un-and-aid-groups-launch-central-contribution-ebola-response'>Overview of Needs and Requirements document</a> – depicts the shared plans and financial requirements of the growing number of international partners involved in the response.
</p>
<p class="lead">WHO’s ebola response roadmap presented here summarizes a consolidated view of the estimated US $570 million global resources required over the next six months – by national governments, WHO and other partners – for the core health response to stop Ebola transmission.</p>
<p class="lead" style='margin-top:20px;'>To donate to the Ebola response, please visit the United Nations Foundation Ebola website.
<a href="http://www.unfoundation.org/ebolafund">
<button style='margin-left:10px;width:100px;' type="button" id="donate-button" class="btn btn-success">Donate</button>
</a>
</p>
<p style="float:right;font-size:12px;"><em>Updated as of October 24, 2014</em></p>
<!--<p class="lead">
This indicative budget does not include the
costs of broader support for essential services in the countries worst affected, nor the costs of
health systems recovery and strengthening in these areas.
</p>-->
<br />
<br />
<table class="table table-bordered" style="border-top: none; border-bottom: none;">
<tr>
<th style="text-align: center;">Mission Critical Action</th>
<th style="width: 20%;">Total Estimated Resource Requirements (USD)</th>
<th style="width: 20%;">WHO Roadmap Estimated Resource Requirements (USD)</th>
<th style="width: 20%;">Estimated Resources to be Implemented through WHO (USD)</th>
</tr>
<tr>
<td>1. Identify and trace people with Ebola</td>
<td style='text-align: center;'>189,500,000</td>
<td style='text-align: center;' class='hidden-xs'>186,781,597</td>
<td style='text-align: center; font-weight: bold;' class='hidden-xs'>73,000,000</td>
</tr>
<tr>
<td>2. Safe and dignified burials </td>
<td style='text-align: center;'>23,800,000</td>
<td style='text-align: center;' class='hidden-xs'>23,796,371</td>
<td style='text-align: center; font-weight: bold;' class='hidden-xs'>10,000,000</td>
</tr>
<tr>
<td>3. Care for persons with Ebola and infection control</td>
<td style='text-align: center;'>331,200,000</td>
<td style='text-align: center;' class='hidden-xs'>272,662,400</td>
<td style='text-align: center; font-weight: bold;' class='hidden-xs'>105,000,000</td>
</tr>
<tr>
<td>4. Medical care for responders</td>
<td style='text-align: center;'>14,000,000</td>
<td style='text-align: center;' class='hidden-xs'>14,000,000</td>
<td style='text-align: center; font-weight: bold;' class='hidden-xs'>10,000,000</td>
</tr>
<tr>
<td>5. Provision of food security and nutrition</td>
<td style='text-align: center;'>107,000,000</td>
<td style='text-align: center;' class='hidden-xs'></td>
<td style='text-align: center; font-weight: bold;' class='hidden-xs'></td>
</tr>
<tr>
<td>6. Access to basic (including non-Ebola health) services</td>
<td style='text-align: center;'>97,100,000</td>
<td style='text-align: center;' class='hidden-xs'>41,493,959</td>
<td style='text-align: center; font-weight: bold;' class='hidden-xs'>36,000,000</td>
</tr>
<tr>
<td>7. Cash incentives for workers</td>
<td style='text-align: center;'>2,500,000</td>
<td style='text-align: center;' class='hidden-xs'></td>
<td style='text-align: center; font-weight: bold;' class='hidden-xs'></td>
</tr>
<tr>
<td>8. Recovery and economy</td>
<td style='text-align: center;'>64,800,000</td>
<td style='text-align: center;' class='hidden-xs'></td>
<td style='text-align: center; font-weight: bold;' class='hidden-xs'></td>
</tr>
<tr>
<td>9. Reliable supplies of materials and equipment</td>
<td style='text-align: center;'>42,600,000</td>
<td style='text-align: center;' class='hidden-xs'></td>
<td style='text-align: center; font-weight: bold;' class='hidden-xs'></td>
</tr>
<tr>
<td>10. Transport and fuel</td>
<td style='text-align: center;'>23,400,000</td>
<td style='text-align: center;' class='hidden-xs'></td>
<td style='text-align: center; font-weight: bold;' class='hidden-xs'></td>
</tr>
<tr>
<td>11. Social mobilization and community engagement</td>
<td style='text-align: center;'>45,800,000</td>
<td style='text-align: center;' class='hidden-xs'>10,314,185</td>
<td style='text-align: center; font-weight: bold;' class='hidden-xs'>8,000,000</td>
</tr>
<tr>
<td>12. Messaging</td>
<td style='text-align: center;'>3,200,000</td>
<td style='text-align: center;' class='hidden-xs'>2,600,000</td>
<td style='text-align: center; font-weight: bold;' class='hidden-xs'>2,000,000</td>
</tr>
<tr>
<td>Multi-Facted/Preparedness </td>
<td style='text-align: center;'>30,500,000</td>
<td style='text-align: center;' class='hidden-xs'>20,000,000</td>
<td style='text-align: center; font-weight: bold;' class='hidden-xs'>16,000,000</td>
</tr>
<tr>
<td style='background:#f6f6f6;'>Total</td>
<td style='text-align: center; font-weight: bold;background:#f6f6f6;'>975,400,000</td>
<td style='text-align: center; font-weight: bold;background:#f6f6f6;' class='hidden-xs'>571,648,512</td>
<td style='text-align: center; font-weight: bold;background:#f6f6f6;' class='hidden-xs'>260,000,000</td>
</tr>
</table>
</div>
</div>
<div class="section section-lead">
<div class="container">
<h2 class="section-title">Resources available to WHO</h2>
<!--<ul class="nav nav-tabs nav-tabs-lg">
<li class="active">
<a href="#allocation_obj_tab" data-toggle="tab">By Objective</a>
</li>
<li class="">
<a href="#allocation_loc_tab" data-toggle="tab">By Location</a>
</li>
</ul>-->
<!-- <div class="tab-content">
<div class="tab-pane fade in active" id="allocation_obj_tab">
<div id="allocation_obj" class="mychart -tabs"></div>
</div>
</div> -->
<div class="tab-content">
<table class="table table-bordered" style="border-top: none; border-bottom: none;">
<tr>
<th colspan="2" class='row-header' style="text-align: center;">Contributions and Firm Pledges to WHO, as of 24 October 2014 (USD)</th>
</tr>
<tr>
<td style="text-align: center;">Funds needed</td>
<td style='text-align: center;'>260,000,000</td>
</tr>
<tr>
<td style="text-align: center;">Funds received</td>
<td style='text-align: center;'>129,701,599</td>
</tr>
<tr>
<td style="text-align: center;">Firm pledges</td>
<td style='text-align: center;'>50,510,514</td>
</tr>
<tr>
<td style="text-align: center;font-weight: bold;background:#f6f6f6;">Funding shortfall</td>
<td style='text-align: center;font-weight: bold;color:#f44;background:#f6f6f6;'>79,787,887</td>
</tr>
</table>
</div>
</div>
</div>
<div class="section section-lead">
<div class="container">
<h2 class="section-title">Contributions to the WHO's response</h2>
<!--<ul class="nav nav-tabs nav-tabs-lg">
<li class="active">
<a href="#resources_available_tab" data-toggle="tab">Contributions to the roadmap</a>
</li>
<li class="">
<a href="#resources_available_who_tab" data-toggle="tab">Contributions received prior to September 2014</a>
</li>
</ul>-->
<div class="tab-content">
<div class="tab-pane fade in active" id="resources_available_tab" -style="padding: 40px 20px 20px 20px; border-radius: 0 0 10px 10px; border: 1px solid #ddd; border-top: none">
<table class="table table-bordered" style="border-top: none; border-bottom: none;">
<tr>
<th style="text-align: center;">Contributors</th>
<th style="text-align: center; width: 45%; font-weight: bold;">Total</th>
</tr>
<tr>
<td style='text-align: left;'></td>
<td style='text-align: right; font-weight: bold;'></td>
</tr>
<tr>
<td style='text-align: left;' class='row-header'>Funds received (USD)</td>
<td style='text-align: right; font-weight: bold;' class='row-header'></td>
</tr>
<tr>
<td style='text-align: left; font-weight: bold;'>Member State contributions</td>
<td style='text-align: right; font-weight: bold;'></td>
</tr>
<tr>
<td style='text-align: left;'>Andorra</td>
<td style='text-align: right; font-weight: bold;'>20,053</td>
</tr>
<tr>
<td style='text-align: left;'>Australia - Department of Foreign Affairs and Trade </td>
<td style='text-align: right; font-weight: bold;'>2,801,120</td>
</tr>
<tr>
<td style='text-align: left;'>Australia - Department of Health</td>
<td style='text-align: right; font-weight: bold;'>466,853</td>
</tr>
<tr>
<td style='text-align: left;'>Canada - Department of Foreign Affairs, Trade and Development (DFATD)</td>
<td style='text-align: right; font-weight: bold;'>918,274</td>
</tr>
<tr>
<td style='text-align: left;'>Canada - Public Health Agency of Canada (PHAC)</td>
<td style='text-align: right; font-weight: bold;'>169,881</td>
</tr>
<tr>
<td style='text-align: left;'>China</td>
<td style='text-align: right; font-weight: bold;'>2,000,000</td>
</tr>
<tr>
<td style='text-align: left;'>Denmark</td>
<td style='text-align: right; font-weight: bold;'>3,413,552</td>
</tr>
<tr>
<td style='text-align: left;'>Estonia</td>
<td style='text-align: right; font-weight: bold;'>65,876</td>
</tr>
<tr>
<td style='text-align: left;'>Finland</td>
<td style='text-align: right; font-weight: bold;'>668,449</td>
</tr>
<tr>
<td style='text-align: left;'>France</td>
<td style='text-align: right; font-weight: bold;'>668,449</td>
</tr>
<tr>
<td style='text-align: left;'>Germany</td>
<td style='text-align: right; font-weight: bold;'>13,349,609</td>
</tr>
<tr>
<td style='text-align: left;'>India</td>
<td style='text-align: right; font-weight: bold;'>500,000</td>
</tr>
<tr>
<td style='text-align: left;'>Japan</td>
<td style='text-align: right; font-weight: bold;'>850,000</td>
</tr>
<tr>
<td style='text-align: left;'>Kuwait</td>
<td style='text-align: right; font-weight: bold;'>5,000,000</td>
</tr>
<tr>
<td style='text-align: left;'>Luxembourg</td>
<td style='text-align: right; font-weight: bold;'>133,689</td>
</tr>
<tr>
<td style='text-align: left;'>Norway</td>
<td style='text-align: right; font-weight: bold;'>2,713,921</td>
</tr>
<tr>
<td style='text-align: left;'>Republic of Korea</td>
<td style='text-align: right; font-weight: bold;'>450,000</td>
</tr>
<tr>
<td style='text-align: left;'>Republic of Slovenia</td>
<td style='text-align: right; font-weight: bold;'>40,107</td>
</tr>
<tr>
<td style='text-align: left;'>The Slovak Republic</td>
<td style='text-align: right; font-weight: bold;'>20,053</td>
</tr>
<tr>
<td style='text-align: left;'>United Kingdom of Great Britain & Northern Ireland – the Scottish Government</td>
<td style='text-align: right; font-weight: bold;'>844,595</td>
</tr>
<tr>
<td style='text-align: left;'>The United States of America - USAID</td>
<td style='text-align: right; font-weight: bold;'>6,397,175</td>
</tr>
<tr>
<td style='text-align: left;'>US - Department of Defense</td>
<td style='text-align: right; font-weight: bold;'>13,063,018</td>
</tr>
<tr>
<td style='text-align: left; font-weight: bold;'>Non-Member State contributions</td>
<td style='text-align: right; font-weight: bold;'></td>
</tr>
<tr>
<td style='text-align: left;'>African Development Bank - Strengthening West Africa’s Public Health Systems Response to the Ebola Crisis (SWAPHS)</td>
<td style='text-align: right; font-weight: bold;'>38,647,250</td>
</tr>
<tr>
<td style='text-align: left;'>African Development Bank - Liberia</td>
<td style='text-align: right; font-weight: bold;'>1,000,000</td>
</tr>
<tr>
<td style='text-align: left;'>African Development Bank - Sierra Leone</td>
<td style='text-align: right; font-weight: bold;'>1,000,000</td>
</tr>
<tr>
<td style='text-align: left;'>African Development Bank - Nigeria</td>
<td style='text-align: right; font-weight: bold;'>1,000,000</td>
</tr>
<tr>
<td style='text-align: left;'>African Development Bank - Guinea</td>
<td style='text-align: right; font-weight: bold;'>1,000,000</td>
</tr>
<tr>
<td style='text-align: left;'>BHP Billiton</td>
<td style='text-align: right; font-weight: bold;'>400,000</td>
</tr>
<tr>
<td style='text-align: left;'>Bill & Melinda Gates Foundation</td>
<td style='text-align: right; font-weight: bold;'>5,073,925</td>
</tr>
<tr>
<td style='text-align: left;'>CERF - Guinea</td>
<td style='text-align: right; font-weight: bold;'>554,766</td>
</tr>
<tr>
<td style='text-align: left;'>CERF - Nigeria</td>
<td style='text-align: right; font-weight: bold;'>1,063,443</td>
</tr>
<tr>
<td style='text-align: left;'>European Commission - Directorate-General Humanitarian Aid and Civil Protection (ECHO)</td>
<td style='text-align: right; font-weight: bold;'>668,449</td>
</tr>
<tr>
<td style='text-align: left;'>OPEC Fund for International Development (OFID)</td>
<td style='text-align: right; font-weight: bold;'>500,000</td>
</tr>
<tr>
<td style='text-align: left;'>The UnitedNations Development Programme (UNDP)</td>
<td style='text-align: right; font-weight: bold;'>17,688</td>
</tr>
<tr>
<td style='text-align: left;'>World Bank – Guinea </td>
<td style='text-align: right; font-weight: bold;'>2,300,000</td>
</tr>
<tr>
<td style='text-align: left;'>World Bank – Liberia</td>
<td style='text-align: right; font-weight: bold;'>19,121,406</td>
</tr>
<tr>
<td style='text-align: left;'>World Bank – Sierra Leone </td>
<td style='text-align: right; font-weight: bold;'>2,800,000</td>
</tr>
<tr>
<td style='text-align: left; font-weight: bold;background:#f6f6f6;'>Sub-total funds received</td>
<td style='text-align: right; font-weight: bold;background:#f6f6f6;'>129,701,599</td>
</tr>
<tr>
<td style='text-align: left;'></td>
<td style='text-align: right; font-weight: bold;'></td>
</tr>
<tr>
<td style='text-align: left;' class='row-header'>Firm pledges (USD)</td>
<td style='text-align: right; font-weight: bold;' class='row-header'></td>
</tr>
<tr>
<td style='text-align: left; font-weight: bold;'>Member State contributions</td>
<td style='text-align: right; font-weight: bold;'></td>
</tr>
<tr>
<td style='text-align: left;'>Germany - the German Federal Foreign Office</td>
<td style='text-align: right; font-weight: bold;'>267,380</td>
</tr>
<tr>
<td style='text-align: left;'>Japan</td>
<td style='text-align: right; font-weight: bold;'>6,000,000</td>
</tr>
<tr>
<td style='text-align: left;'>Netherlands</td>
<td style='text-align: right; font-weight: bold;'>6,684,492</td>
</tr>
<tr>
<td style='text-align: left;'>New Zealand</td>
<td style='text-align: right; font-weight: bold;'>418,760</td>
</tr>
<tr>
<td style='text-align: left;'>Qatar</td>
<td style='text-align: right; font-weight: bold;'>1,000,000</td>
</tr>
<tr>
<td style='text-align: left;'>Russia</td>
<td style='text-align: right; font-weight: bold;'>50,338</td>
</tr>
<tr>
<td style='text-align: left;'>Sweden</td>
<td style='text-align: right; font-weight: bold;'>2,865,330</td>