article-date-extractor 0.1.1

A library for extracting the publication date from an article or a blog post.
Documentation
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
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
<!DOCTYPE html>
<!-- saved from url=(0050)http://www.bbc.com/news/world-middle-east-39298218 -->
<html lang="en" id="responsive-news" class="orb-js bbcdotcom ads-enabled id-svg ctm ff flex bbcdotcom-init bbcdotcom-responsive bbcdotcom-async bbcdotcom-ads-enabled bbcdotcom-service-news grunticon  bbcdotcom-group-4 se-no-touch"><head prefix="og: http://ogp.me/ns#"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><style type="text/css"></style>
    
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <title>Egypt Pharaoh statue 'not Ramses II but different ruler' - BBC News</title>
    <meta name="description" content="The statue pulled from the mud in Cairo may in fact be Psamtek I, a more recent ruler.">

    <link rel="dns-prefetch" href="https://ssl.bbc.co.uk/">
    <link rel="dns-prefetch" href="http://sa.bbc.co.uk/">
    <link rel="dns-prefetch" href="http://ichef-1.bbci.co.uk/">
    <link rel="dns-prefetch" href="http://ichef.bbci.co.uk/">
    <link rel="dns-prefetch" href="http://c.go-mpulse.net/">

    <meta name="x-country" content="us">
    <meta name="x-audience" content="US">
    <meta name="CPS_AUDIENCE" content="US">
    <meta name="CPS_CHANGEQUEUEID" content="300277856">
    <link rel="canonical" href="http://www.bbc.com/news/world-middle-east-39298218">

                        <link rel="alternate" hreflang="en-gb" href="http://www.bbc.co.uk/news/world-middle-east-39298218">
                                <link rel="alternate" hreflang="en" href="http://www.bbc.com/news/world-middle-east-39298218">
                            <meta property="og:title" content="Egypt Pharaoh statue &#39;not Ramses II but different ruler&#39; - BBC News">
    <meta property="og:type" content="article">
    <meta property="og:description" content="The statue pulled from the mud in Cairo may in fact be Psamtek I, a more recent ruler.">
    <meta property="og:site_name" content="BBC News">
    <meta property="og:locale" content="en_GB">
    <meta property="article:author" content="https://www.facebook.com/bbcnews">
    <meta property="article:section" content="Middle East">
    <meta property="og:url" content="http://www.bbc.com/news/world-middle-east-39298218">
    <meta property="og:image" content="http://ichef.bbci.co.uk/news/1024/cpsprodpb/814A/production/_95189033_ab02cef5-374c-4837-b63b-ab74062e03ce.jpg">

    <meta name="twitter:card" content="summary_large_image">
    <meta name="twitter:site" content="@BBCWorld">
    <meta name="twitter:title" content="Egypt Pharaoh statue &#39;not Ramses II but different ruler&#39; - BBC News">
    <meta name="twitter:description" content="The statue pulled from the mud in Cairo may in fact be Psamtek I, a more recent ruler.">
    <meta name="twitter:creator" content="@BBCWorld">
    <meta name="twitter:image:src" content="http://ichef.bbci.co.uk/news/560/cpsprodpb/814A/production/_95189033_ab02cef5-374c-4837-b63b-ab74062e03ce.jpg">
    <meta name="twitter:image:alt" content="Denmark&quot;s Prince Henrik (L) looks at the statue belonging to King Psamtik I, outside the Egyptian museum in Cairo on March 16, 2017">
    <meta name="twitter:domain" content="www.bbc.com">

    <style>.svg-icon--audio-dark { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M16%204l-6%206H0v12h10l6%206zM25.3.3l-1.8%201.8c3.7%203.5%206%208.5%206%2014s-2.3%2010.4-6%2014l1.8%201.8c4.1-4%206.7-9.6%206.7-15.7C32%209.9%2029.4%204.3%2025.3.3zm-4.5%204.5L19%206.6c2.4%202.4%203.9%205.8%203.9%209.5s-1.5%207-3.9%209.5l1.8%201.8c2.8-2.9%204.6-6.9%204.6-11.2%200-4.5-1.8-8.5-4.6-11.4z%22%20fill%3D%22%23000%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

.svg-icon--audio-light { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M16%204l-6%206H0v12h10l6%206zM25.3.3l-1.8%201.8c3.7%203.5%206%208.5%206%2014s-2.3%2010.4-6%2014l1.8%201.8c4.1-4%206.7-9.6%206.7-15.7C32%209.9%2029.4%204.3%2025.3.3zm-4.5%204.5L19%206.6c2.4%202.4%203.9%205.8%203.9%209.5s-1.5%207-3.9%209.5l1.8%201.8c2.8-2.9%204.6-6.9%204.6-11.2%200-4.5-1.8-8.5-4.6-11.4z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

.svg-icon--email { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M16%2019.37L32%204.43V3H0v26h32V8l-4%204v13H4V8.17l12%2011.2zm0-2.76L5.81%207h20.38L16%2016.61z%22%2F%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

.svg-icon--gallery-dark { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M9%205V3H4v2H0v24h32V5H9zm-2.5%208C5.1%2013%204%2011.9%204%2010.5S5.1%208%206.5%208%209%209.1%209%2010.5%207.9%2013%206.5%2013zM20%2026c-5%200-9-4-9-9s4-9%209-9%209%204%209%209-4%209-9%209z%22%20fill%3D%22%23000%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M20%2011.5c-3%200-5.5%202.5-5.5%205.5s2.5%205.5%205.5%205.5%205.5-2.5%205.5-5.5-2.5-5.5-5.5-5.5z%22%20fill%3D%22%23000%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

.svg-icon--mobile-smart { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M6%200v32h20V0H6zm8%202h4v1h-4V2zm3%2028h-2v-2h2v2zm7-3H8V4h16v23z%22%2F%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

.svg-icon--movement-dark { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M28.6%204.03H3.4v13.99h4.03V8.03h17.14v13.99h-7.08l3.54-3.51-2.5-2.47-8.08%207.98L18.53%2032l2.5-2.47-3.54-3.51H28.6%22%20fill%3D%22%23000%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

.svg-icon--movement-light { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M28.6%204.03H3.4v13.99h4.03V8.03h17.14v13.99h-7.08l3.54-3.51-2.5-2.47-8.08%207.98L18.53%2032l2.5-2.47-3.54-3.51H28.6%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

.svg-icon--movement-off-dark { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M28.1%200l-4.03%204.03H3.9v14.12h4.03V8.07h12.1L2.39%2025.71l1.51%201.51L29.61%201.51m-4.54%2020.67h-7.08l3.29-3.29-2.49-2.49-7.83%207.8%207.83%207.8%202.49-2.5-3.29-3.28h11.12V6.05l-4.04%204.03%22%20fill%3D%22%23000%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

.svg-icon--movement-off-light { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M28.1%200l-4.03%204.03H3.9v14.12h4.03V8.07h12.1L2.39%2025.71l1.51%201.51L29.61%201.51m-4.54%2020.67h-7.08l3.29-3.29-2.49-2.49-7.83%207.8%207.83%207.8%202.49-2.5-3.29-3.28h11.12V6.05l-4.04%204.03%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

.svg-icon--newsletter { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M5%203h22v12h3V0H2v15h3zm5%209h12v3H10zm0%204h12v3H10zm0-8h12v3H10zm19.46%208l-.46.29-13%208.13-13-8.13-.46-.29H0v16h32V16h-2.54zM29%2029H3V17.46l13%208.13%2013-8.13V29z%22%2F%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

.svg-icon--next-dark { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2031.9%2032%22%3E%3Cpath%20d%3D%22M29%2016L3%200v7.2L17.6%2016%203%2024.8V32%22%20fill%3D%22%23000%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

.svg-icon--pause-dark { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M3%200h9v32H3zm17%200h9v32h-9z%22%20fill%3D%22%23000%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

.svg-icon--previous-dark { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M3%2016l26%2016v-7.2L14.4%2016%2029%207.2V0%22%20fill%3D%22%23000%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

.svg-icon--rss { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20cx%3D%225.01%22%20cy%3D%2226.98%22%20r%3D%225%22%2F%3E%3Cpath%20d%3D%22M24.99%2031.98V32h7v-.02C31.99%2014.32%2017.67%200%20.01%200v7c13.78%200%2024.98%2011.2%2024.98%2024.98zm-9.99%200V32h7v-.02C22%2019.84%2012.15%209.99.01%209.99v7C8.28%2016.99%2015%2023.71%2015%2031.98z%22%2F%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

.svg-icon--to-bottom { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M5.35%201.9H0l15.89%2023.4L32%201.9h-5.34L15.88%2017.48zM.4%2025.3h31.2v4.8H.4z%22%2F%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

.svg-icon--twitter { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M32%206.08c-1.18.52-2.45.87-3.77%201.03%201.35-.81%202.4-2.1%202.89-3.64-1.27.75-2.68%201.3-4.17%201.6C25.75%203.8%2024.04%203%2022.16%203c-3.63%200-6.57%202.94-6.57%206.56%200%20.52.06%201.02.17%201.5-5.46-.28-10.3-2.89-13.54-6.86-.56.97-.89%202.1-.89%203.3%200%202.27%201.16%204.28%202.92%205.46-1.08-.04-2.09-.33-2.98-.82v.09c0%203.17%202.27%205.82%205.27%206.43-.54.15-1.12.23-1.72.23-.42%200-.83-.04-1.23-.11.84%202.61%203.25%204.5%206.13%204.55-2.25%201.76-5.08%202.82-8.16%202.82-.53%200-1.05-.04-1.56-.09C2.9%2027.92%206.35%2029%2010.06%2029c12.08%200%2018.68-10%2018.68-18.68%200-.28-.01-.57-.02-.85%201.29-.92%202.4-2.08%203.28-3.39z%22%2F%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

.svg-icon--video-dark { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M3%2032l26-16L3%200z%22%20fill%3D%22%23000%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

.svg-icon--video-light { background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M3%2032l26-16L3%200z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; }

</style><script async="" type="text/javascript" src="./bbc_files/gpt.js"></script><script type="text/javascript" async="" src="http://cdn.krxd.net/controltag?confid=JZTWpGsM"></script><script type="application/ld+json">
    {
        "@context": "http://schema.org"
        ,"@type": "Article"
        
        ,"url": "http://www.bbc.com/news/world-middle-east-39298218"
        ,"publisher": {
            "@type": "Organization",
            "name": "BBC News",
            "logo": "http://www.bbc.co.uk/news/special/2015/newsspec_10857/bbc_news_logo.png?cb=1"
        }
        
        ,"headline": "Egypt Pharaoh statue 'not Ramses II but different ruler'"
        
        ,"mainEntityOfPage": "http://www.bbc.com/news/world-middle-east-39298218"
        ,"articleBody": "The statue pulled from the mud in Cairo may in fact be Psamtek I, a more recent ruler."
        
        ,"image": {
            "@list": [
                "http://ichef.bbci.co.uk/news/560/cpsprodpb/CB82/production/_95189025_f6270587-4072-4cc2-8984-8586d25b69cc.jpg"
                ,"http://ichef-1.bbci.co.uk/news/560/cpsprodpb/16AAB/production/_95134829_18d0103d-181b-4646-aa8d-27f50f3ea5ba.jpg"
                ,"http://ichef.bbci.co.uk/news/560/cpsprodpb/140B2/production/_95189028_a8185dbd-d772-45fd-afc5-ef5cb74df01e.jpg"
                ,"http://ichef-1.bbci.co.uk/news/560/cpsprodpb/0C1A/production/_95189030_ab02cef5-374c-4837-b63b-ab74062e03ce.jpg"
                ,"http://ichef-1.bbci.co.uk/news/560/cpsprodpb/5A3A/production/_95189032_a09c5eae-a2f7-4a5d-bb7d-3a74f3cc346f.jpg"
            ]
        }
        ,"datePublished": "2017-03-16T21:07:02+00:00"
    }
    </script>


            <link rel="amphtml" href="http://www.bbc.co.uk/news/amp/39298218">
    
                    
    <meta name="apple-mobile-web-app-title" content="BBC News">
    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="http://static.bbci.co.uk/news/1.180.01370/apple-touch-icon-57x57-precomposed.png">
    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://static.bbci.co.uk/news/1.180.01370/apple-touch-icon-72x72-precomposed.png">
    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://static.bbci.co.uk/news/1.180.01370/apple-touch-icon-114x114-precomposed.png">
    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://static.bbci.co.uk/news/1.180.01370/apple-touch-icon.png">
    <link rel="apple-touch-icon" href="http://static.bbci.co.uk/news/1.180.01370/apple-touch-icon.png">
    <meta name="application-name" content="BBC News">
    <meta name="msapplication-TileImage" content="http://static.bbci.co.uk/news/1.180.01370/windows-eight-icon-144x144.png">
    <meta name="msapplication-TileColor" content="#bb1919">
    <meta http-equiv="cleartype" content="on">
    <meta name="mobile-web-app-capable" content="yes">
    <meta name="robots" content="NOODP,NOYDIR">
    <meta name="theme-color" content="#bb1919">
    <script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>


    <script>
        (function() {
            if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
                var msViewportStyle = document.createElement("style");
                msViewportStyle.appendChild(
                    document.createTextNode("@-ms-viewport{width:auto!important}")
                );
                document.getElementsByTagName("head")[0].appendChild(msViewportStyle);
            }
        })();
    </script>
    
    <script>window.fig = window.fig || {}; window.fig.async = true;</script>

    <meta property="fb:app_id" content="1609039196070050">

           <meta name="viewport" content="width=device-width, initial-scale=1.0">  <meta property="fb:admins" content="100004154058350">  <style type="text/css">
:root a[href*="/sponsored/"],
:root .sponsor-container,
:root .native-promo-button,
:root .featured-native,
:root .bbccom_sponsor:not(body),
:root #bbccom_bottom[style="width:468px; text-align:right;"]
{ display: none !important; }</style><script type="text/javascript">window.bbcredirection={geo:true}</script>  
<!--[if (gt IE 8) | (IEMobile)]><!-->
<link rel="stylesheet" href="./bbc_files/orb.min.css">
<!--<![endif]-->

<!--[if (lt IE 9) & (!IEMobile)]>
<link rel="stylesheet" href="http://static.bbci.co.uk/frameworks/barlesque/3.20.5/orb/4/style/orb-ie.min.css">
<![endif]-->

  <!--orb.ws.require.lib--> <script class="js-require-lib" src="./bbc_files/lib.js"></script> <script type="text/javascript">  bbcRequireMap = {"jquery-1":"http://static.bbci.co.uk/frameworks/jquery/0.4.1/sharedmodules/jquery-1.7.2", "jquery-1.4":"http://static.bbci.co.uk/frameworks/jquery/0.4.1/sharedmodules/jquery-1.4", "jquery-1.9":"http://static.bbci.co.uk/frameworks/jquery/0.4.1/sharedmodules/jquery-1.9.1", "jquery-1.12":"http://static.bbci.co.uk/frameworks/jquery/0.4.1/sharedmodules/jquery-1.12.0.min", "jquery-2.2":"http://static.bbci.co.uk/frameworks/jquery/0.4.1/sharedmodules/jquery-2.2.0.min", "istats-1":"//nav.files.bbci.co.uk/nav-analytics/0.1.0-43/js/istats-1", "swfobject-2":"http://static.bbci.co.uk/frameworks/swfobject/0.1.10/sharedmodules/swfobject-2", "demi-1":"http://static.bbci.co.uk/frameworks/demi/0.10.0/sharedmodules/demi-1", "gelui-1":"http://static.bbci.co.uk/frameworks/gelui/0.9.13/sharedmodules/gelui-1", "cssp!gelui-1/overlay":"http://static.bbci.co.uk/frameworks/gelui/0.9.13/sharedmodules/gelui-1/overlay.css", "relay-1":"http://static.bbci.co.uk/frameworks/relay/0.2.6/sharedmodules/relay-1", "clock-1":"http://static.bbci.co.uk/frameworks/clock/0.1.9/sharedmodules/clock-1", "canvas-clock-1":"http://static.bbci.co.uk/frameworks/clock/0.1.9/sharedmodules/canvas-clock-1", "cssp!clock-1":"http://static.bbci.co.uk/frameworks/clock/0.1.9/sharedmodules/clock-1.css", "jssignals-1":"http://static.bbci.co.uk/frameworks/jssignals/0.3.6/modules/jssignals-1", "jcarousel-1":"http://static.bbci.co.uk/frameworks/jcarousel/0.1.10/modules/jcarousel-1", "bump-3":"//emp.bbci.co.uk/emp/bump-3/bump-3"}; require({ baseUrl: 'http://static.bbci.co.uk/', paths: bbcRequireMap, waitSeconds: 30 }); </script>   <script type="text/javascript">/*<![CDATA[*/ if (typeof bbccookies_flag === 'undefined') { bbccookies_flag = 'ON'; } showCTA_flag = true; cta_enabled = (showCTA_flag && (bbccookies_flag === 'ON')); (function(){var m="ckns_policy",q="Thu, 01 Jan 1970 00:00:00 GMT",i={ads:true,personalisation:true,performance:true,necessary:true};function c(u){if(c.cache[u]){return c.cache[u]}var t=u.split("/"),v=[""];do{v.unshift((t.join("/")||"/"));t.pop()}while(v[0]!=="/");c.cache[u]=v;return v}c.cache={};function a(u){if(a.cache[u]){return a.cache[u]}var v=u.split("."),t=[];while(v.length&&"|co.uk|com|".indexOf("|"+v.join(".")+"|")===-1){if(v.length){t.push(v.join("."))}v.shift()}c.cache[u]=t;return t}a.cache={};function s(t,y,u){var E=[""].concat(a(window.location.hostname)),B=c(window.location.pathname),D="",w,C;for(var x=0,A=E.length;x<A;x++){w=E[x];for(var v=0,z=B.length;v<z;v++){C=B[v];D=t+"="+y+";"+(w?"domain="+w+";":"")+(C?"path="+C+";":"")+(u?"expires="+u+";":"");bbccookies.set(D,true)}}}window.bbccookies={POLICY_REFRESH_DATE_MILLIS:new Date(2015,4,21,0,0,0,0).getTime(),POLICY_EXPIRY_COOKIENAME:"ckns_policy_exp",_setEverywhere:s,cookiesEnabled:function(){var t="ckns_testcookie"+Math.floor(Math.random()*100000);this.set(t+"=1");if(this.get().indexOf(t)>-1){e(t);return true}return false},get:function(){return document.cookie},getCrumb:function(t){if(!t){return null}return decodeURIComponent(document.cookie.replace(new RegExp("(?:(?:^|.*;)\\s*"+encodeURIComponent(t).replace(/[\-\.\+\*]/g,"\\$&")+"\\s*\\=\\s*([^;]*).*$)|^.*$"),"$1"))||null},policyRequiresRefresh:function(){var u=new Date();u.setHours(0);u.setMinutes(0);u.setSeconds(0);u.setMilliseconds(0);if(bbccookies.POLICY_REFRESH_DATE_MILLIS<=u.getTime()){var t=bbccookies.getCrumb(bbccookies.POLICY_EXPIRY_COOKIENAME);if(t){t=new Date(parseInt(t));t.setYear(t.getFullYear()-1);return bbccookies.POLICY_REFRESH_DATE_MILLIS>=t.getTime()}else{return true}}else{return false}},_setPolicy:function(t){return f.apply(this,arguments)},readPolicy:function(){return l.apply(this,arguments)},_deletePolicy:function(){s(m,"",q)},_isConfirmed:function(){return n()!==null},_acceptsAll:function(){var t=l();return t&&!(j(t).indexOf("0")>-1)},_getCookieName:function(){return b.apply(this,arguments)},_showPrompt:function(){var t=((!this._isConfirmed()||this.policyRequiresRefresh())&&window.cta_enabled&&this.cookiesEnabled()&&!window.bbccookies_disable);return(window.orb&&window.orb.fig)?t&&(window.orb.fig("no")||window.orb.fig("ck")):t},_getPolicy:this.readPolicy};function b(u){var t=(""+u).match(/^([^=]+)(?==)/);return(t&&t.length?t[0]:"")}function j(t){return""+(t.ads?1:0)+(t.personalisation?1:0)+(t.performance?1:0)}function f(x){if(typeof x==="undefined"){x=i}if(typeof arguments[0]==="string"){var u=arguments[0],w=arguments[1];if(u==="necessary"){w=true}x=l();x[u]=w}else{if(typeof arguments[0]==="object"){x.necessary=true}}var v=new Date();v.setYear(v.getFullYear()+1);bbccookies.set(m+"="+j(x)+";domain=bbc.co.uk;path=/;expires="+v.toUTCString()+";");bbccookies.set(m+"="+j(x)+";domain=bbc.com;path=/;expires="+v.toUTCString()+";");bbccookies.set(m+"="+j(x)+";domain=bbci.co.uk;path=/;expires="+v.toUTCString()+";");var t=new Date(v.getTime());t.setMonth(t.getMonth()+1);bbccookies.set(bbccookies.POLICY_EXPIRY_COOKIENAME+"="+v.getTime()+";domain=bbc.co.uk;path=/;expires="+t.toUTCString()+";");bbccookies.set(bbccookies.POLICY_EXPIRY_COOKIENAME+"="+v.getTime()+";domain=bbc.com;path=/;expires="+t.toUTCString()+";");bbccookies.set(bbccookies.POLICY_EXPIRY_COOKIENAME+"="+v.getTime()+";domain=bbci.co.uk;path=/;expires="+t.toUTCString()+";");return x}function o(t){if(t===null){return null}var u=t.split("");return{ads:!!+u[0],personalisation:!!+u[1],performance:!!+u[2],necessary:true}}function n(){var t=new RegExp("(?:^|; ?)"+m+"=(\\d\\d\\d)($|;)"),u=document.cookie.match(t);if(!u){return null}return u[1]}function l(t){var u=o(n());if(!u){u=i}if(t){return u[t]}else{return u}}function e(t){return document.cookie=t+"=;expires="+q+";"}var g=!(window.bbccookies_flag==="ON"&&!bbccookies._acceptsAll()&&!window.bbccookies_disable);var k={},d={"personalisation":"ckps_.+|X-AB-iplayer-.+|ACTVTYMKR|BBC_EXAMPLE_COOKIE|BBCIplayer|BBCiPlayerM|BBCIplayerSession|BBCMediaselector|BBCPostcoder|bbctravel|CGISESSID|ed|food-view|forceDesktop|h4|IMRID|locserv|MyLang|myloc|NTABS|ttduserPrefs|V5|WEATHER|BBCScienceDiscoveryPlaylist_.+|bitratePref|correctAnswerCount|genreCookie|highestQuestionScore|incorrectAnswerCount|longestStreak|MSCSProfile|programmes-oap-expanded|quickestAnswer|score|servicePanel|slowestAnswer|totalTimeForAllFormatted|v|BBCwords|score|correctAnswerCount|highestQuestionScore|hploc|BGUID|BBCWEACITY|mstouch|myway|BBCNewsCustomisation|cbbc_anim|cbeebies_snd|bbcsr_usersx|cbeebies_rd|BBC-Latest_Blogs|zh-enc|pref_loc|m|bbcEmp.+|recs-.+|_lvd2|_lvs2|tick|_fcap_CAM1|_rcc2","performance":"ckpf_.+|BBCLiveStatsClick|id|_em_.+|cookies_enabled|mbox|mbox-admin|mc_.+|omniture_unique|s_.+|sc_.+|adpolicyAdDisplayFrequency|s1|ns_session|ns_cookietest|ns_ux|NO-SA|tr_pr1|gvsurvey|bbcsurvey|si_v|sa_labels|obuid|mm_.+|mmid|mmcore.+|mmpa.+","ads":"ckad_.+|rsi_segs|c","necessary":"ckns_.+|BBC-UID|blq\\.dPref|SSO2-UID|BBC-H2-User|rmRpDetectReal|bbcComSurvey|IDENTITY_ENV|IDENTITY|IDENTITY-HTTPS|IDENTITY_SESSION|BBCCOMMENTSMODULESESSID|bbcBump.+|IVOTE_VOTE_HISTORY|pulse|BBCPG|BBCPGstat|ecos\\.dt"};function r(){var x=document.cookie.replace(/; +/g,";").split(";"),u,v=[];for(var w=0,t=x.length;w<t;w++){u=x[w];v.push(bbccookies._getCookieName(u))}return v}function h(w){var v=JSON.stringify(w);if(typeof(k[v])!=="undefined"){return k[v]}var u="";for(var t in w){if(w.hasOwnProperty(t)&&d[t]){if(w[t]===true){u+=(u?"|":"")+d[t]}}}k[v]=new RegExp("^("+(u?u:".*")+")$","i");return k[v]}bbccookies.getPolicyExpiryDateTime=function(){return bbccookies.POLICY_EXPIRY_COOKIENAME};bbccookies.purge=function(){var u=bbccookies.readPolicy(),w=r(),x;for(var v=0,t=w.length;v<t;v++){if(!bbccookies.isAllowed(w[v],u)){x=new Date();x.setTime(0);x=x.toUTCString();s(w[v],"deleted",x)}}};function p(){if(g){return}bbccookies.purge();contentLoaded(window,bbccookies.purge);if(window.addEventListener){window.addEventListener("beforeunload",bbccookies.purge,false)}else{if(window.attachEvent){window.attachEvent("onbeforeunload",bbccookies.purge)}else{window.onbeforeunload=bbccookies.purge}}}bbccookies.set=function(u,t){if(g){return document.cookie=u}var v=bbccookies._getCookieName(u);if(t||bbccookies.isAllowed(v)){return document.cookie=u}return null};bbccookies.isAllowed=function(v){var u=bbccookies.readPolicy();var t=h(u);return t.test(v)};p()})();
/*!
 * contentloaded.js
 *
 * Author: Diego Perini (diego.perini at gmail.com)
 * Summary: cross-browser wrapper for DOMContentLoaded
 * Updated: 20101020
 * License: MIT
 * Version: 1.2
 *
 * URL:
 * http://javascript.nwbox.com/ContentLoaded/
 * http://javascript.nwbox.com/ContentLoaded/MIT-LICENSE
 *
 */
function contentLoaded(d,i){var c=false,h=true,k=d.document,j=k.documentElement,a=k.addEventListener,n=a?"addEventListener":"attachEvent",l=a?"removeEventListener":"detachEvent",b=a?"":"on",m=function(o){if(o.type==="readystatechange"&&k.readyState!="complete"){return}(o.type==="load"?d:k)[l](b+o.type,m,false);if(!c&&(c=true)){i.call(d,o.type||o)}},g=function(){try{j.doScroll("left")}catch(o){setTimeout(g,50);return}m("poll")};if(k.readyState==="complete"){i.call(d,"lazy")}else{if(!a&&j.doScroll){try{h=!d.frameElement}catch(f){}if(h){g()}}k[n](b+"DOMContentLoaded",m,false);k[n](b+"readystatechange",m,false);d[n](b+"load",m,false)}}if(typeof(require)==="function"&&!require.defined("orb/cookies")){define("orb/cookies",window.bbccookies)}; /*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/
(function(){window.orb={};window.orb.figState={ad:0,ap:0,ck:1,eu:1,mb:0,tb:0,uk:1,df:1};window.orb.fig=function(a){return(arguments.length)?window.orb.figState[a]:window.orb.figState};window.orb.fig.device={};window.orb.fig.geo={};window.orb.fig.user={};window.orb.fig.isDefault=function(){return window.orb.fig("df")};window.orb.fig.device.isTablet=function(){return window.orb.fig("tb")};window.orb.fig.device.isMobile=function(){return window.orb.fig("mb")};window.orb.fig.geo.isUK=function(){return window.orb.fig("uk")};window.orb.fig.geo.isEU=function(){return window.orb.fig("eu")};window.fig=window.fig||{};window.fig.manager={include:function(e){e=e||window;var g=false;var j=e.document,k=j.cookie,i=k.match(/(?:^|; ?)ckns_orb_fig=([^;]+)/),h;if(i){i=this.deserialise(decodeURIComponent(RegExp.$1));this.setFig(e,i)}if(window.fig.async&&typeof JSON!="undefined"){var b=(document.cookie.match("(^|; )ckns_orb_cachedfig=([^;]*)")||0)[2];h=b?JSON.parse(b):null;if(h){this.setFig(e,h);g=true}}var a="https://fig.bbc.co.uk/frameworks/fig/1/fig.js";if(g){j.write('<script src="'+a+'" async><'+"/script>")}else{j.write('<script src="'+a+'"><'+"/script>")}},confirm:function(a){return true},setFig:function(a,b){(function(){a.orb=a.orb||{};a.orb.figState=b})()},deserialise:function(b){var a={};b.replace(/([a-z]{2}):([0-9]+)/g,function(){a[RegExp.$1]=+RegExp.$2});return a}}})();fig.manager.include();/*]]>*/</script><script src="./bbc_files/fig.js"></script>
<!-- Nav Analytics : 63 -->
<script type="text/javascript">window.bbcFlagpoles_istats="ON",require.config({paths:{"istats-1":"//nav.files.bbci.co.uk/nav-analytics/0.1.0-63/js/istats-1"}}),require.defined("orb/cookies")||(window.bbccookies?define("orb/cookies",function(){return window.bbccookies}):define("orb/cookies",function(){return{isAllowed:function(e){return!1}}})),require(["istats-1","orb/cookies"],function(e,o){if(o.isAllowed("s1")){var n="//sa.bbc.co.uk/bbc/bbc/s";e.addCollector({name:"default",url:n,separator:"&"});var i="news.world.middle_east.story.39298218.page";i&&"unknown"!==i&&e.setCountername(i),window.istats_countername&&e.setCountername(window.istats_countername),e.addLabels("ml_name=webmodule&ml_version=63")}});</script>

<script type="text/javascript">/*<![CDATA[*/
    window.bbcFlagpoles_istats = 'ON';
    window.orb = window.orb || {};

    if (typeof bbccookies !== 'undefined' && bbccookies.isAllowed('s1')) {
        var istatsTrackingUrl = '//sa.bbc.co.uk/bbc/bbc/s?name=news.world.middle_east.story.39298218.page&cps_asset_id=39298218&page_type=Story&section=%2Fnews%2Fworld%2Fmiddle_east&first_pub=2017-03-16T19%3A31%3A58%2B00%3A00&last_editorial_update=2017-03-16T21%3A07%3A02%2B00%3A00&curie=12efed36-441c-8b42-977e-cbf74660a0f5&title=Egypt+Pharaoh+statue+%27not+Ramses+II+but+different+ruler%27&has_video=1&topic_names=Archaeology%21Egypt&topic_ids=1b508152-6d1f-46d4-80b2-a2d670e5f660%219519c450-d886-406a-8fc3-aaa847a2cf88&for_nation=us&app_version=1.180.0&bbc_site=news&pal_route=asset&app_type=responsive&language=en-GB&pal_webapp=tabloid&prod_name=news&app_name=news';
        require(['istats-1'], function (istats) {
            var counterName = (window.istats_countername) ? window.istats_countername : istatsTrackingUrl.match(/[\?&]name=([^&]*)/i)[1];
            istats.setCountername(counterName);

            istats.addLabels('cps_asset_id=39298218&page_type=Story&section=%2Fnews%2Fworld%2Fmiddle_east&first_pub=2017-03-16T19%3A31%3A58%2B00%3A00&last_editorial_update=2017-03-16T21%3A07%3A02%2B00%3A00&curie=12efed36-441c-8b42-977e-cbf74660a0f5&title=Egypt+Pharaoh+statue+%27not+Ramses+II+but+different+ruler%27&has_video=1&topic_names=Archaeology%21Egypt&topic_ids=1b508152-6d1f-46d4-80b2-a2d670e5f660%219519c450-d886-406a-8fc3-aaa847a2cf88&for_nation=us&app_version=1.180.0&bbc_site=news&pal_route=asset&app_type=responsive&language=en-GB&pal_webapp=tabloid&prod_name=news&app_name=news');
            var c = (document.cookie.match(/\bckns_policy=(\d\d\d)/) || []).pop() || '';
            istats.addLabels({
                                        'blq_s': '4d',
                    'blq_r': '2.7',
                    'blq_v': 'default',
                    'blq_e': 'pal',
                                        'bbc_mc': (c ? 'ad' + c.charAt(0) + 'ps' + c.charAt(1) + 'pf' + c.charAt(2) : 'not_set')
                }
            );
        });
    }
    /*]]>*/</script>
 <script type="text/javascript">/*<![CDATA[*/ (function(undefined){if(!window.bbc){window.bbc={}}var ROLLING_PERIOD_DAYS=30;window.bbc.Mandolin=function(id,segments,opts){var now=new Date().getTime(),storedItem,DEFAULT_START=now,DEFAULT_RATE=1,COOKIE_NAME="ckpf_mandolin";opts=opts||{};this._id=id;this._segmentSet=segments;this._store=new window.window.bbc.Mandolin.Storage(COOKIE_NAME);this._opts=opts;this._rate=(opts.rate!==undefined)?+opts.rate:DEFAULT_RATE;this._startTs=(opts.start!==undefined)?new Date(opts.start).getTime():new Date(DEFAULT_START).getTime();this._endTs=(opts.end!==undefined)?new Date(opts.end).getTime():daysFromNow(ROLLING_PERIOD_DAYS);this._signupEndTs=(opts.signupEnd!==undefined)?new Date(opts.signupEnd).getTime():this._endTs;this._segment=null;if(typeof id!=="string"){throw new Error("Invalid Argument: id must be defined and be a string")}if(Object.prototype.toString.call(segments)!=="[object Array]"){throw new Error("Invalid Argument: Segments are required.")}if(opts.rate!==undefined&&(opts.rate<0||opts.rate>1)){throw new Error("Invalid Argument: Rate must be between 0 and 1.")}if(this._startTs>this._endTs){throw new Error("Invalid Argument: end date must occur after start date.")}if(!(this._startTs<this._signupEndTs&&this._signupEndTs<=this._endTs)){throw new Error("Invalid Argument: SignupEnd must be between start and end date")}removeExpired.call(this,now);var overrides=window.bbccookies.get().match(/ckns_mandolin_setSegments=([^;]+)/);if(overrides!==null){eval("overrides = "+decodeURIComponent(RegExp.$1)+";");if(overrides[this._id]&&this._segmentSet.indexOf(overrides[this._id])==-1){throw new Error("Invalid Override: overridden segment should exist in segments array")}}if(overrides!==null&&overrides[this._id]){this._segment=overrides[this._id]}else{if((storedItem=this._store.getItem(this._id))){this._segment=storedItem.segment}else{if(this._startTs<=now&&now<this._signupEndTs&&now<=this._endTs&&this._store.isEnabled()===true){this._segment=pick(segments,this._rate);if(opts.end===undefined){this._store.setItem(this._id,{segment:this._segment})}else{this._store.setItem(this._id,{segment:this._segment,end:this._endTs})}log.call(this,"mandolin_segment")}}}log.call(this,"mandolin_view")};window.bbc.Mandolin.prototype.getSegment=function(){return this._segment};function log(actionType,params){var that=this;require(["istats-1"],function(istats){istats.log(actionType,that._id+":"+that._segment,params?params:{})})}function removeExpired(expires){var items=this._store.getItems(),expiresInt=+expires;for(var key in items){if(items[key].end!==undefined&&+items[key].end<expiresInt){this._store.removeItem(key)}}}function getLastExpirationDate(data){var winner=0,rollingExpire=daysFromNow(ROLLING_PERIOD_DAYS);for(var key in data){if(data[key].end===undefined&&rollingExpire>winner){winner=rollingExpire}else{if(+data[key].end>winner){winner=+data[key].end}}}return(winner)?new Date(winner):new Date(rollingExpire)}window.bbc.Mandolin.prototype.log=function(params){log.call(this,"mandolin_log",params)};window.bbc.Mandolin.prototype.convert=function(params){log.call(this,"mandolin_convert",params);this.convert=function(){}};function daysFromNow(n){var endDate;endDate=new Date().getTime()+(n*60*60*24)*1000;return endDate}function pick(segments,rate){var picked,min=0,max=segments.length-1;if(typeof rate==="number"&&Math.random()>rate){return null}do{picked=Math.floor(Math.random()*(max-min+1))+min}while(picked>max);return segments[picked]}window.bbc.Mandolin.Storage=function(name){validateCookieName(name);this._cookieName=name;this._isEnabled=(bbccookies.isAllowed(this._cookieName)===true&&bbccookies.cookiesEnabled()===true)};window.bbc.Mandolin.Storage.prototype.setItem=function(key,value){var storeData=this.getItems();storeData[key]=value;this.save(storeData);return value};window.bbc.Mandolin.Storage.prototype.isEnabled=function(){return this._isEnabled};window.bbc.Mandolin.Storage.prototype.getItem=function(key){var storeData=this.getItems();return storeData[key]};window.bbc.Mandolin.Storage.prototype.removeItem=function(key){var storeData=this.getItems();delete storeData[key];this.save(storeData)};window.bbc.Mandolin.Storage.prototype.getItems=function(){return deserialise(this.readCookie(this._cookieName)||"")};window.bbc.Mandolin.Storage.prototype.save=function(data){window.bbccookies.set(this._cookieName+"="+encodeURIComponent(serialise(data))+"; expires="+getLastExpirationDate(data).toUTCString()+";")};window.bbc.Mandolin.Storage.prototype.readCookie=function(name){var nameEq=name+"=",ca=window.bbccookies.get().split("; "),i,c;validateCookieName(name);for(i=0;i<ca.length;i++){c=ca[i];if(c.indexOf(nameEq)===0){return decodeURIComponent(c.substring(nameEq.length,c.length))}}return null};function serialise(o){var str="";for(var p in o){if(o.hasOwnProperty(p)){str+='"'+p+'"'+":"+(typeof o[p]==="object"?(o[p]===null?"null":"{"+serialise(o[p])+"}"):'"'+o[p].toString()+'"')+","}}return str.replace(/,\}/g,"}").replace(/,$/g,"")}function deserialise(str){var o;str="{"+str+"}";if(!validateSerialisation(str)){throw"Invalid input provided for deserialisation."}eval("o = "+str);return o}var validateSerialisation=(function(){var OBJECT_TOKEN="<Object>",ESCAPED_CHAR='"\\n\\r\\u2028\\u2029\\u000A\\u000D\\u005C',ALLOWED_CHAR="([^"+ESCAPED_CHAR+"]|\\\\["+ESCAPED_CHAR+"])",KEY='"'+ALLOWED_CHAR+'+"',VALUE='(null|"'+ALLOWED_CHAR+'*"|'+OBJECT_TOKEN+")",KEY_VALUE=KEY+":"+VALUE,KEY_VALUE_SEQUENCE="("+KEY_VALUE+",)*"+KEY_VALUE,OBJECT_LITERAL="({}|{"+KEY_VALUE_SEQUENCE+"})",objectPattern=new RegExp(OBJECT_LITERAL,"g");return function(str){if(str.indexOf(OBJECT_TOKEN)!==-1){return false}while(str.match(objectPattern)){str=str.replace(objectPattern,OBJECT_TOKEN)}return str===OBJECT_TOKEN}})();function validateCookieName(name){if(name.match(/ ,;/)){throw"Illegal name provided, must be valid in browser cookie."}}})(); /*]]>*/</script>  <script type="text/javascript">  document.documentElement.className += (document.documentElement.className? ' ' : '') + 'orb-js';  fig.manager.confirm(); </script> <script src="./bbc_files/api.min.js"></script> <script type="text/javascript"> var blq = { environment: function() { return 'live'; } } </script>   <script type="text/javascript"> /*<![CDATA[*/ function oqsSurveyManager(w, flag) { if (flag !== 'OFF' && (w.orb.fig("no") || w.orb.fig("uk"))) { w.document.write('<script type="text/javascript" src="http://static.bbci.co.uk/frameworks/barlesque/3.20.5/orb/4/script/vendor/edr.min.js"><'+'/script>'); } } oqsSurveyManager(window, 'ON'); /*]]>*/ </script>             <!-- BBCDOTCOM template: responsive webservice  -->
        <!-- BBCDOTCOM head --><script type="text/javascript"> /*<![CDATA[*/ var _sf_startpt = (new Date()).getTime(); /*]]>*/ </script><style type="text/css">.bbccom_display_none{display:none;}</style><script type="text/javascript"> /*<![CDATA[*/ var bbcdotcomConfig, googletag = googletag || {}; googletag.cmd = googletag.cmd || []; var bbcdotcom = false; (function(){ if(typeof require !== 'undefined') { require({ paths:{ "bbcdotcom":"http://static.bbci.co.uk/bbcdotcom/1.48.0/script" } }); } })(); /*]]>*/ </script><script type="text/javascript"> /*<![CDATA[*/ var bbcdotcom = { adverts: { keyValues: { set: function() {} } }, advert: { write: function () {}, show: function () {}, isActive: function () { return false; }, layout: function() { return { reset: function() {} } } }, config: { init: function() {}, isActive: function() {}, setSections: function() {}, isAdsEnabled: function() {}, setAdsEnabled: function() {}, isAnalyticsEnabled: function() {}, setAnalyticsEnabled: function() {}, setAssetPrefix: function() {}, setVersion: function () {}, setJsPrefix: function() {}, setSwfPrefix: function() {}, setCssPrefix: function() {}, setConfig: function() {}, getAssetPrefix: function() {}, getJsPrefix: function () {}, getSwfPrefix: function () {}, getCssPrefix: function () {} }, survey: { init: function(){ return false; } }, data: {}, init: function() {}, objects: function(str) { return false; }, locale: { set: function() {}, get: function() {} }, setAdKeyValue: function() {}, utils: { addEvent: function() {}, addHtmlTagClass: function() {}, log: function () {} }, addLoadEvent: function() {} }; /*]]>*/ </script><script type="text/javascript"> /*<![CDATA[*/ (function(){ if (typeof orb !== 'undefined' && typeof orb.fig === 'function') { if (orb.fig('ad') && orb.fig('uk') == 0) { bbcdotcom.data = { ads: (orb.fig('ad') ? 1 : 0), stats: (orb.fig('uk') == 0 ? 1 : 0), statsProvider: orb.fig('ap') }; } } else { document.write('<script type="text/javascript" src="'+('https:' == document.location.protocol ? 'https://ssl.bbc.com' : 'http://tps.bbc.com')+'/wwscripts/data">\x3C/script>'); } })(); /*]]>*/ </script><script type="text/javascript"> /*<![CDATA[*/ (function(){ if (typeof orb === 'undefined' || typeof orb.fig !== 'function') { bbcdotcom.data = { ads: bbcdotcom.data.a, stats: bbcdotcom.data.b, statsProvider: bbcdotcom.data.c }; } if (bbcdotcom.data.ads == 1) { document.write('<script type="text/javascript" src="'+('https:' == document.location.protocol ? 'https://ssl.bbc.co.uk' : 'http://www.bbc.co.uk')+'/wwscripts/flag">\x3C/script>'); } })(); /*]]>*/ </script><script type="text/javascript" src="./bbc_files/flag"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="istats-1" src="./bbc_files/istats-1.js"></script><script type="text/javascript"> /*<![CDATA[*/ (function(){ if (window.bbcdotcom && (typeof bbcdotcom.flag == 'undefined' || (typeof bbcdotcom.data.ads !== 'undefined' && bbcdotcom.flag.a != 1))) { bbcdotcom.data.ads = 0; } if (/[?|&]ads/.test(window.location.href) || /(^|; )ads=on; /.test(document.cookie) || /; ads=on(; |$)/.test(document.cookie)) { bbcdotcom.data.ads = 1; bbcdotcom.data.stats = 1; } if (window.bbcdotcom && (bbcdotcom.data.ads == 1 || bbcdotcom.data.stats == 1)) { bbcdotcom.assetPrefix = "http://static.bbci.co.uk/bbcdotcom/1.48.0/"; if (/(sandbox|int)(.dev)*.bbc.co*/.test(window.location.href) || /[?|&]ads-debug/.test(window.location.href) || document.cookie.indexOf('ads-debug=') !== -1) { document.write('<script type="text/javascript" src="http://static.bbci.co.uk/bbcdotcom/1.48.0/script/dist/bbcdotcom.dev.js">\x3C/script>'); } else { document.write('<script type="text/javascript" src="http://static.bbci.co.uk/bbcdotcom/1.48.0/script/dist/bbcdotcom.js">\x3C/script>'); } } })(); /*]]>*/ </script><script type="text/javascript" src="./bbc_files/bbcdotcom.js"></script><script type="text/javascript"> if (window.bbcdotcom && bbcdotcom.data.stats == 1) { document.write('<link rel="dns-prefetch" href="//secure-us.imrworldwide.com/">'); document.write('<link rel="dns-prefetch" href="//me-cdn.effectivemeasure.net/">'); document.write('<link rel="dns-prefetch" href="//ssc.api.bbc.com/">'); } if (window.bbcdotcom && bbcdotcom.data.ads == 1) { document.write('<link rel="dns-prefetch" href="//www.googletagservices.com/">'); } </script><link rel="dns-prefetch" href="http://secure-us.imrworldwide.com/"><link rel="dns-prefetch" href="http://me-cdn.effectivemeasure.net/"><link rel="dns-prefetch" href="http://ssc.api.bbc.com/"><link rel="dns-prefetch" href="http://www.googletagservices.com/"><script type="text/javascript"> /*<![CDATA[*/ (function(){ if (window.bbcdotcom && (bbcdotcom.data.ads == 1 || bbcdotcom.data.stats == 1)) { bbcdotcomConfig = {"adFormat":"standard","adKeyword":"","adMode":"smart","adsEnabled":true,"appAnalyticsSections":"news>world","asyncEnabled":true,"disableInitialLoad":false,"advertInfoPageUrl":"http:\/\/www.bbc.com\/privacy\/cookies\/international\/","advertisementText":"Advertisement","analyticsEnabled":true,"kruxEnabled":true,"newsTopStoriesMorph":true,"appName":"tabloid","assetPrefix":"http:\/\/static.bbci.co.uk\/bbcdotcom\/1.48.0\/","customAdParams":[],"customStatsParams":[],"headline":"Egypt Pharaoh statue 'not Ramses II but different ruler'","id":"39298218","inAssociationWithText":"in association with","keywords":"","language":"","orbTransitional":false,"outbrainEnabled":true,"palEnv":"live","productName":"","sections":[],"comScoreEnabled":true,"comscoreSite":"bbc","comscoreID":"19293874","comscorePageName":"news.world-middle-east-39298218","slots":"","sponsoredByText":"is sponsored by","adsByGoogleText":"Ads by Google","summary":"The statue pulled from the mud in Cairo may in fact be Psamtek I, a more recent ruler.","type":"STORY","features":{"testfeature":{"name":"testfeature","envs":["sandbox","int","test"],"on":true,"options":{},"override":null},"lxadverts":{"name":"lxadverts","envs":[],"on":true,"options":{},"override":null}},"staticBase":"\/bbcdotcom","staticHost":"http:\/\/static.bbci.co.uk","staticVersion":"1.48.0","staticPrefix":"http:\/\/static.bbci.co.uk\/bbcdotcom\/1.48.0","dataHttp":"tps.bbc.com","dataHttps":"ssl.bbc.com","flagHttp":"www.bbc.co.uk","flagHttps":"ssl.bbc.co.uk","analyticsHttp":"sa.bbc.com","analyticsHttps":"ssa.bbc.com"}; bbcdotcom.config.init(bbcdotcomConfig, bbcdotcom.data, window.location, window.document); bbcdotcom.config.setAssetPrefix("http://static.bbci.co.uk/bbcdotcom/1.48.0/"); bbcdotcom.config.setVersion("1.48.0"); document.write('<!--[if IE 7]><script type="text/javascript">bbcdotcom.config.setIE7(true);\x3C/script><![endif]-->'); document.write('<!--[if IE 8]><script type="text/javascript">bbcdotcom.config.setIE8(true);\x3C/script><![endif]-->'); document.write('<!--[if IE 9]><script type="text/javascript">bbcdotcom.config.setIE9(true);\x3C/script><![endif]-->'); if (/[?|&]ex-dp/.test(window.location.href) || document.cookie.indexOf('ex-dp=') !== -1) { bbcdotcom.utils.addHtmlTagClass('bbcdotcom-ex-dp'); } } })(); /*]]>*/ </script><!--[if IE 7]><script type="text/javascript">bbcdotcom.config.setIE7(true);</script><![endif]--><!--[if IE 8]><script type="text/javascript">bbcdotcom.config.setIE8(true);</script><![endif]--><!--[if IE 9]><script type="text/javascript">bbcdotcom.config.setIE9(true);</script><![endif]-->             <!--Searchbox:126-->  <script type="text/javascript">
  // Globally available search context
  window.SEARCHBOX={"variant":"default","locale":"en","navSearchboxStaticPrefix":"//nav.files.bbci.co.uk/searchbox/1.0.0-126","searchboxAppStaticPrefix":"//search.files.bbci.co.uk/searchbox-app/1.0.13","searchFormHtml":"<div tabindex=\"-1\" data-reactid=\".1ank8apmzuo\" data-react-checksum=\"1313156196\"><div data-reactid=\".1ank8apmzuo.0\"><section class=\"se-searchbox-panel\" data-reactid=\".1ank8apmzuo.0.0\"><div class=\"se-g-wrap\" data-reactid=\".1ank8apmzuo.0.0.0\"><div class=\"se-g-layout\" data-reactid=\".1ank8apmzuo.0.0.0.0\"><div class=\"se-g-layout__item se-searchbox-title\" aria-hidden=\"true\" data-reactid=\".1ank8apmzuo.0.0.0.0.0\">search</div><div class=\"se-g-layout__item se-searchbox\" data-reactid=\".1ank8apmzuo.0.0.0.0.1\"><form accept-charset=\"utf-8\" id=\"searchboxDrawerForm\" method=\"get\" action=\"//search.bbc.co.uk/search\" data-reactid=\".1ank8apmzuo.0.0.0.0.1.0\"><label class=\"se-searchbox__input\" for=\"se-searchbox-input-field\" data-reactid=\".1ank8apmzuo.0.0.0.0.1.0.0\"><span class=\"se-sr-only\" data-reactid=\".1ank8apmzuo.0.0.0.0.1.0.0.0\">Search Term</span><input name=\"q\" type=\"text\" value=\"\" id=\"se-searchbox-input-field\" class=\"se-searchbox__input__field\" maxlength=\"512\" autocomplete=\"off\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" tabindex=\"0\" data-reactid=\".1ank8apmzuo.0.0.0.0.1.0.0.1\"/></label><input type=\"hidden\" name=\"scope\" value=\"\" data-reactid=\".1ank8apmzuo.0.0.0.0.1.0.2\"/><button type=\"submit\" class=\"se-searchbox__submit\" tabindex=\"0\" data-reactid=\".1ank8apmzuo.0.0.0.0.1.0.3\">Search</button><button type=\"button\" class=\"se-searchbox__clear se-searchbox__clear--visible\" tabindex=\"0\" data-reactid=\".1ank8apmzuo.0.0.0.0.1.0.4\">Close</button></form></div></div></div></section><div aria-live=\"polite\" aria-atomic=\"true\" class=\"se-suggestions-container\" data-reactid=\".1ank8apmzuo.0.1\"><section class=\"se-g-wrap\" data-reactid=\".1ank8apmzuo.0.1.0\"></section></div></div></div>","searchScopePlaceholder":"","searchScopeParam":"","searchScopeTemplate":"","searchPlaceholderWrapperStart":"","searchPlaceholderWrapperEnd":""};
  window.SEARCHBOX.suppress = false;
  window.SEARCHBOX.searchScope = SEARCHBOX.searchScopeTemplate.split('-')[0];
</script>
<link rel="stylesheet" href="./bbc_files/main.css">
<!--[if IE 8]>
  <script type="text/javascript" src="//nav.files.bbci.co.uk/searchbox/1.0.0-126/script/html5shiv.min.js"></script>
  <script type="text/javascript">window['searchboxIEVersion'] = 8;</script>
  <link rel="stylesheet" href="//nav.files.bbci.co.uk/searchbox/1.0.0-126/css/ie8.css">
<![endif]-->
<!--[if IE 9]>
  <script type="text/javascript">window['searchboxIEVersion'] = 9;</script>
<![endif]-->
  <!--NavID:0.2.0-143--> <link rel="stylesheet" href="./bbc_files/id-cta.css"> <link rel="stylesheet" href="./bbc_files/id-cta-v5.css"> <!--[if IE 8]><link href="//static.bbc.co.uk/id/0.36.25/style/ie8.css" rel="stylesheet"/> <![endif]--> <script type="text/javascript"> /* <![CDATA[ */ var map = {};  if (typeof(map['jssignals-1']) == 'undefined') { map['jssignals-1'] = 'https://static.bbc.co.uk/frameworks/jssignals/0.3.6/modules/jssignals-1'; }  require({paths: map}); /* ]]> */ </script>   <script src="./bbc_files/idcta-1.min.js"></script>  <script type="text/javascript"> (function () { if (!window.require) { throw new Error('idcta: could not find require module'); } if(typeof(map) == 'undefined') { var map = {}; } if(!!document.createElementNS && !!document.createElementNS('http://www.w3.org/2000/svg', "svg").createSVGRect) { document.documentElement.className += ' id-svg'; } var ptrt = RegExp("[\\?&]ptrt=([^&#]*)").exec(document.location.href); var ENDPOINT_URL = '//' + ((window.location.protocol == "https:") ? ('ssl.bbc.co.uk').replace("www.", "ssl.") : ('ssl.bbc.co.uk').replace("ssl.", "www.")); var ENDPOINT_CONFIG = ('/idcta/config?callback&amp;locale=en-GB&ptrt=' + encodeURI((ptrt ? ptrt[1] : document.location.href))).replace(/\&amp;/g, '&'); var ENDPOINT_TRANSLATIONS = '/idcta/translations?callback&locale=en-GB'; map['idapp-1'] = '//static.bbc.co.uk/idapp/0.72.58/modules/idapp/idapp-1'; map['idcta'] = '//static.bbc.co.uk/id/0.36.25/modules/idcta'; map['idcta/config'] = [ENDPOINT_URL + ENDPOINT_CONFIG, '//static.bbc.co.uk/id/0.36.25/modules/idcta/fallbackConfig']; map['idcta/translations'] = [ENDPOINT_URL + ENDPOINT_TRANSLATIONS, '//static.bbc.co.uk/id/0.36.25/modules/idcta/fallbackTranslations']; require({paths: map}); /* * Temporary code * To be removed when old id-statusbar-config is no longer supported */ define('id-statusbar-config', ['idcta/id-config'], function(conf) { return conf; }); define('idcta/id-statusbar-config', ['idcta/id-config'], function(conf) { return conf; }); })(); </script>

    <link rel="stylesheet" href="./bbc_files/main.min.css">
             
        <link type="text/css" rel="stylesheet" href="./bbc_files/core.css">
    <!--[if lt IE 9]>
        <link type="text/css" rel="stylesheet" href="http://static.bbci.co.uk/news/1.180.01370/stylesheets/services/news/old-ie.css">
        <script src="http://static.bbci.co.uk/news/1.180.01370/js/vendor/html5shiv/html5shiv.js"></script>
    <![endif]-->
 <link rel="stylesheet" type="text/css" href="./bbc_files/tablet.css" media="(min-width: 600px)"><link rel="stylesheet" type="text/css" href="./bbc_files/wide.css" media="(min-width: 1008px)"><script id="news-loader"> if (document.getElementById("responsive-news")) { window.bbcNewsResponsive = true; } var isIE = (function() { var undef, v = 3, div = document.createElement('div'), all = div.getElementsByTagName('i'); while ( div.innerHTML = '<!--[if gt IE ' + (++v) + ']><i></i><![endif]-->', all[0] ); return v > 4 ? v : undef; }()); var modernDevice = 'querySelector' in document && 'localStorage' in window && 'addEventListener' in window, forceCore = document.cookie.indexOf('ckps_force_core') !== -1; window.cutsTheMustard = modernDevice && !forceCore; if (window.cutsTheMustard) { document.documentElement.className += ' ctm'; var insertPoint = document.getElementById('news-loader'), config = {"asset":{"asset_id":"39298218","asset_uri":"\/news\/world-middle-east-39298218","original_asset_uri":null,"first_created":{"date":"2017-03-16 19:31:58","timezone_type":3,"timezone":"Europe\/London"},"last_updated":{"date":"2017-03-16 21:07:02","timezone_type":3,"timezone":"Europe\/London"},"options":{"allowRightHandSide":true,"allowRelatedStoriesBox":true,"includeComments":false,"isIgorSeoTagsEnabled":false,"hasNewsTracker":false,"isFactCheck":false,"allowAdvertising":true,"hasContentWarning":false,"allowDateStamp":true,"allowHeadline":true,"isKeyContent":false,"allowPrintingSharingLinks":true,"isBreakingNews":false,"suitableForSyndication":true},"section":{"name":"Middle East","id":"99125","uri":"\/news\/world\/middle_east","urlIdentifier":"\/news\/world\/middle_east"},"edition":"US","audience":null,"iStats_counter_name":"news.world.middle_east.story.39298218.page","type":"STY","curie":"asset:12efed36-441c-8b42-977e-cbf74660a0f5","length":1264,"byline":{},"headline":"Egypt Pharaoh statue 'not Ramses II but different ruler'","mediaType":"video","topicTags":null},"smpBrand":null,"staticHost":"http:\/\/static.bbci.co.uk","environment":"live","locatorVersion":"0.46.3","pathPrefix":"\/news","staticPrefix":"http:\/\/static.bbci.co.uk\/news\/1.180.01370","jsPath":"http:\/\/static.bbci.co.uk\/news\/1.180.01370\/js","cssPath":"http:\/\/static.bbci.co.uk\/news\/1.180.01370\/stylesheets\/services\/news","cssPostfix":"","dynamic":null,"features":{"localnews":true,"video":true,"liveeventcomponent":true,"mediaassetpage":true,"gallery":true,"rollingnews":true,"sportstories":true,"radiopromo":true,"fromothernewssites":true,"locallive":true,"weather":true},"features2":{"svg_brand":true,"chartbeat":true,"connected_stream":true,"connected_stream_promo":true,"nav":true,"pulse_survey":false,"local_survey":true,"correspondents":true,"blogs":true,"open_graph":true,"follow_us":true,"marketdata_markets":true,"marketdata_shares":true,"nations_pseudo_nav":true,"politics_election2015_topic_pages":true,"responsive_breaking_news":true,"live_event":true,"most_popular":true,"most_popular_tabs":true,"most_popular_by_day":true,"routing":true,"radiopromonownext":true,"config_based_layout":true,"orb":true,"map_most_watched":true,"top_stories_promo":true,"features_and_analysis":true,"section_labels":true,"index_title":true,"share_tools":true,"local_live_promo":true,"adverts":true,"adverts_async":true,"adexpert":true,"igor_geo_redirect":true,"igor_device_redirect":true,"live":true,"comscore_mmx":true,"find_local_news":true,"comments":true,"comments_enhanced":true,"browser_notify":true,"stream_grid_promo":true,"breaking_news":false,"top_stories_max_volume":true,"record_livestats":true,"contact_form":true,"channel_page":true,"portlet_global_variants":true,"suppress_lep_timezone":true,"story_sticky_player":true,"cedexis":true,"mpulse":true,"story_single_column_layout":true,"story_image_copyright_labels":true,"ovp_resolve_primary_media_vpids":false,"media_player":true,"services_bar":true,"live_v2_stream":true,"ldp_tag_augmentation":true,"map_related_topic_tags":true,"maxymiser":true,"rio2016_medals":true},"configuration":{"showtimestamp":"1","showweather":"1","showsport":"1","showolympics":"1","showfeaturemain":"1","candyplatform":"EnhancedMobile","showwatchlisten":"1","showspecialreports":"","videotopiccandyid":"","showvideofeedsections":"1","showstorytopstories":"","showstoryfeaturesandanalysis":"1","showstorymostpopular":"","showgallery":"1","cms":"cps","channelpagecandyid":"10318089"},"pollingHost":"http:\/\/polling.bbc.co.uk","service":"news","locale":"en-GB","locatorHost":null,"locatorFlagPole":true,"local":{"allowLocationLookup":true},"isWorldService":false,"isChannelPage":false,"languageVariant":"","commentsHost":"https:\/\/www.bbc.co.uk","search":null,"comscoreAnalytics":null}; config.configuration['get'] = function (key) { return this[key.toLowerCase()]; };  var bootstrapUI=function(){var e=function(){if(navigator.userAgent.match(/(Android (2.0|2.1))|(Nokia)|(OSRE\/)|(Opera (Mini|Mobi))|(w(eb)?OSBrowser)|(UCWEB)|(Windows Phone)|(XBLWP)|(ZuneWP)/))return!1;if(navigator.userAgent.match(/MSIE 10.0/))return!0;var e,t=document,n=t.head||t.getElementsByTagName("head")[0],r=t.createElement("style"),s=t.implementation||{hasFeature:function(){return!1}};r.type="text/css",n.insertBefore(r,n.firstChild),e=r.sheet||r.styleSheet;var i=s.hasFeature("CSS2","")?function(t){if(!e||!t)return!1;var n=!1;try{e.insertRule(t,0),n=!/unknown/i.test(e.cssRules[0].cssText),e.deleteRule(e.cssRules.length-1)}catch(r){}return n}:function(t){return e&&t?(e.cssText=t,0!==e.cssText.length&&!/unknown/i.test(e.cssText)&&0===e.cssText.replace(/\r+|\n+/g,"").indexOf(t.split(" ")[0])):!1};return i('@font-face{ font-family:"font";src:"font.ttf"; }')}();e&&(document.getElementsByTagName("html")[0].className+=" ff"),function(){var e=document.documentElement.style;("flexBasis"in e||"WebkitFlexBasis"in e||"msFlexBasis"in e)&&(document.documentElement.className+=" flex")}();var t,n,r,s,i,a={},o=function(){var e=document.documentElement.clientWidth,n=window.innerWidth,r=n>1.5*e;t=r?e:n},u=function(e){var t=document.createElement("link");t.setAttribute("rel","stylesheet"),t.setAttribute("type","text/css"),t.setAttribute("href",n+e+r+".css"),t.setAttribute("media",i[e]),s.parentNode.insertBefore(t,s),delete i[e]},c=function(e,n,r){n&&!r&&t>=n&&u(e),r&&!n&&r>=t&&u(e),n&&r&&t>=n&&r>=t&&u(e)},l=function(e){if(a[e])return a[e];var t=e.match(/\(min\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/),n=e.match(/\(max\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/),r=t&&parseFloat(t[1])||null,s=n&&parseFloat(n[1])||null;return a[e]=[r,s],a[e]},f=function(){var e=0;for(var t in i)e++;return e},m=function(){f()||window.removeEventListener("resize",d,!1);for(var e in i){var t=i[e],n=l(t);c(e,n[0],n[1])}},d=function(){o(),m()},h=function(e,t){i=e,n=t.path+("/"!==t.path.substr(-1)?"/":""),r=t.postfix,s=t.insertBefore,o(),m(),window.addEventListener("resize",d,!1)};return{stylesheetLoaderInit:h}}(); var stylesheets = {"compact":"(max-width: 599px)","tablet":"(min-width: 600px)","wide":"(min-width: 1008px)"}; bootstrapUI.stylesheetLoaderInit(stylesheets, { path: 'http://static.bbci.co.uk/news/1.180.01370/stylesheets/services/news', postfix: '', insertBefore: insertPoint }); var loadRequire = function(){ var js_paths = {"jquery-1.9":"vendor\/jquery-1\/jquery","jquery-1":"http:\/\/static.bbci.co.uk\/frameworks\/jquery\/0.4.1\/sharedmodules\/jquery-1.7.2","demi-1":"http:\/\/static.bbci.co.uk\/frameworks\/demi\/0.10.0\/sharedmodules\/demi-1","swfobject-2":"http:\/\/static.bbci.co.uk\/frameworks\/swfobject\/0.1.10\/sharedmodules\/swfobject-2","jquery":"vendor\/jquery-2\/jquery.min","domReady":"vendor\/require\/domReady","translation":"module\/translations\/en-GB","bump-3":"\/\/emp.bbci.co.uk\/emp\/bump-3\/bump-3"};  js_paths.navigation = 'module/nav/navManager';  requirejs.config({ baseUrl: 'http://static.bbci.co.uk/news/1.180.01370/js', map: { 'vendor/locator': { 'module/bootstrap': 'vendor/locator/bootstrap', 'locator/stats': 'vendor/locator/stats', 'locator/locatorView': 'vendor/locator/locatorView' } }, paths: js_paths, waitSeconds: 30 }); define('config', function () { return config; });             require(["compiled\/all"], function() {
      require(['domReady'], function (domReady) { domReady(function () { require(["module\/dotcom\/handlerAdapter","module\/stats\/statsSubscriberAdapter","module\/alternativeJsStrategy\/controller","module\/iconLoaderAdapter","module\/polyfill\/location.origin","module\/components\/breakingNewsAdapter","module\/indexTitleAdaptor","module\/navigation\/handlerAdaptor","module\/noTouchDetectionForCss","module\/components\/stickyPlayer\/mainAdapter","module\/components\/responsiveImage","module\/components\/timestampAdaptor","module\/components\/twiteAdapter","module\/tableScrollAdapter"], function() {  require(["module\/strategiserAdaptor"]);  }); }); });              });
     };  loadRequire();  } else { var l = document.createElement('link'); l.href = 'http://static.bbci.co.uk/news/1.180.01370/icons/generated/icons.fallback.css'; l.rel = 'stylesheet'; document.getElementsByTagName('head')[0].appendChild(l); } </script>  <script type="text/javascript"> /*<![CDATA[*/ bbcdotcom.init({adsToDisplay:['leaderboard', 'sponsor_section', 'mpu', 'outbrain_ar_5', 'outbrain_ar_7', 'outbrain_ar_8', 'outbrain_ar_9', 'native', 'mpu_bottom', 'adsense', 'inread']}); /*]]>*/ </script><link type="text/css" rel="stylesheet" href="./bbc_files/bbcdotcom-async.css"><script class="kxct" data-id="JZTWpGsM" data-timing="async" data-version="1.9" type="text/javascript">if (window.bbcdotcom && (bbcdotcom.data.ads == 1 || bbcdotcom.data.stats == 1)) {    window.Krux||((Krux=function(){Krux.q.push(arguments)}).q=[]);    (function(){        var k=document.createElement("script");k.type="text/javascript";k.async=true;        var m,src=(m=location.href.match(/\bkxsrc=([^&]+)/))&&decodeURIComponent(m[1]);        k.src = /^https?:\/\/([a-z0-9_\-\.]+\.)?krxd\.net(:\d{1,5})?\//i.test(src) ?            src : src === "disable" ? "" :        (location.protocol==="https:"?"https:":"http:")+"//cdn.krxd.net/controltag?confid=JZTWpGsM";        var s=document.getElementsByTagName("script")[0];s.parentNode.insertBefore(k,s);    }());}</script><script type="text/javascript">    if (window.bbcdotcom && (bbcdotcom.data.ads == 1 || bbcdotcom.data.stats == 1)) {        window.Krux||((Krux=function(){Krux.q.push(arguments);}).q=[]);        (function(){            function  retrieve(n){                var  m,  k="kx"+n;                if  (window.localStorage)  {                    return  window.localStorage[k]  ||  "";                }  else  if  (navigator.cookieEnabled)  {                    m  =  document.cookie.match(k+"=([^;]*)");                    return  (m  &&  unescape(m[1]))  ||  "";                }  else  {                    return  "";                }            }            Krux.user  =  retrieve("user");            Krux.segments  =  retrieve("segs")  &&  retrieve("segs").split(",")  ||  [];        })();    }</script><script async="async" defer="defer" type="text/javascript" src="./bbc_files/edr.min.js"></script>      <noscript>&lt;link href="http://static.bbci.co.uk/news/1.180.01370/icons/generated/icons.fallback.css" rel="stylesheet"&gt;</noscript>

                
        <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=1">

                                                                                            <script>
    (function () {
        var matches = window.location.href.match(/[?&]maxymiser=(on|off)/g),
            maxymise = false;

        if (matches) {
            maxymise = (matches[0].substr(11) === 'on');
        } else if ('object' === typeof bbccookies && bbccookies.cookiesEnabled() && bbccookies.readPolicy('personalisation')) {
            matches = (' ' + window.bbccookies.get()).match(/[; ]BBC-UID=([^\\s;]*)/);
            if (matches) {
                bucket = "0123456789abcdef".indexOf(unescape(matches[1] + 'X').charAt(0));
                maxymise = (bucket >= 0 && bucket <= 3);
            }
        }

        if (maxymise) {
            document.write('<scr'+'ipt type="text/javascript" src="//service.maxymiser.net/cdn/mbbccoUK/js/mmcore.js"></scr'+'ipt>');
        }
    })();
</script>
                                                                    
    <script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="compiled/all" src="./bbc_files/all.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="idcta/statusbar" src="./bbc_files/statusbar.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="idcta/config" src="./bbc_files/config"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="idcta/translations" src="./bbc_files/translations"></script><script type="text/javascript" async="" src="http://me-cdn.effectivemeasure.net/em.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mybbc/notifications/NotificationsMain" src="./bbc_files/NotificationsMain.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="search/searchbox/searchboxDrawer" src="./bbc_files/searchboxDrawer.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery" src="./bbc_files/jquery.min.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="translation" src="./bbc_files/en-GB.js"></script><style type="text/css">
:root .mpu-ad,
:root .native-ad,
:root .adsense-ad,
:root .bbccom_advert,
:root #bbccom_leaderboard,
:root #bbccom_mpu
{ display: none !important; }
:root *[ata9c1m][hidden] { display: none !important; }</style><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="bump-3" src="./bbc_files/bump-3.js"></script><style type="text/css"></style><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery-1.9" src="./bbc_files/jquery.js"></script><link rel="stylesheet" type="text/css" href="chrome-extension://pkehgijcmpdhfbdbbnkijodmdjhbjlgp/skin/socialwidgets.css"><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="echo-9.0.0" src="./bbc_files/echo-9.0.0.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="bbcdotcom/av/emp/analytics" src="./bbc_files/analytics.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="bbcdotcom/av/emp/adverts" src="./bbc_files/adverts.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery-1" src="./bbc_files/jquery-1.7.2.js"></script><link type="text/css" rel="stylesheet" href="./bbc_files/enhanced.css"><style type="text/css">#edr_survey .edr_lwrap iframe {width:100%;height:100%;}#edr_survey .edr_go {opacity:0;display:block;filter:alpha(opacity = 0);position:absolute;font-size:0;background-color:#000;margin:0;padding:0;z-index:1000000;}#edr_survey .edr_go:focus {opacity:1;filter:alpha(opacity = 50);background-color:rgba(0, 0, 0, 0.01);}#edr_survey .edr_lb {position:fixed;top:0;left:0;right:0;bottom:0;z-index:999998;display:none;}</style><style type="text/css">#edr_lwrap_first {position:absolute;left:-100000px;top:-100000px;width:100%;height:100%;}</style></head>
<!--[if IE]><body id="asset-type-sty" class="ie device--feature"><![endif]-->
<!--[if !IE]>--><body id="asset-type-sty" class="bbccom_outbrain_ar_5 bbccom_outbrain_ar_7 bbccom_outbrain_ar_8 bbccom_outbrain_ar_9 device--group4 device--wide no-touch"><div id="edr_survey"><div id="edr_lwrap_first" class="edr_lwrap"><iframe name="edr_l_first" id="edr_l_first" frameborder="0" src="./bbc_files/l.html" scrolling="no" title="Online Quality Survey" hidden="" style="display: none !important;"></iframe></div></div><!--<![endif]-->
    <div class="direction">

    
             <!-- BBCDOTCOM bodyFirst --><div id="bbccom_interstitial_ad" class="bbccom_display_none"></div><div id="bbccom_interstitial" class="bbccom_display_none"><script type="text/javascript"> /*<![CDATA[*/ (function() { if (window.bbcdotcom && bbcdotcom.config.isActive('ads')) { googletag.cmd.push(function() { googletag.display('bbccom_interstitial'); }); } }()); /*]]>*/ </script></div><div id="bbccom_wallpaper_ad" class="bbccom_display_none"></div><div id="bbccom_wallpaper" class="bbccom_display_none"><script type="text/javascript"> /*<![CDATA[*/ (function() { var wallpaper; if (window.bbcdotcom && bbcdotcom.config.isActive('ads')) { if (bbcdotcom.config.isAsync()) { googletag.cmd.push(function() { googletag.display('bbccom_wallpaper'); }); } else { googletag.display("wallpaper"); } wallpaper = bbcdotcom.adverts.adRegister.getAd('wallpaper'); } }()); /*]]>*/ </script></div><script type="text/javascript"> /*<![CDATA[*/ (function() { if (window.bbcdotcom && bbcdotcom.config.isActive('ads')) { document.write(unescape('%3Cscript id="gnlAdsEnabled" class="bbccom_display_none"%3E%3C/script%3E')); } if (window.bbcdotcom && bbcdotcom.config.isActive('analytics')) { document.write(unescape('%3Cscript id="gnlAnalyticsEnabled" class="bbccom_display_none"%3E%3C/script%3E')); } }()); /*]]>*/ </script><script id="gnlAdsEnabled" class="bbccom_display_none"></script><script id="gnlAnalyticsEnabled" class="bbccom_display_none"></script> <div id="blq-global"> <div id="blq-pre-mast">  </div> </div>  <script type="text/html" id="blq-bbccookies-tmpl"><![CDATA[ <section> <div id="bbccookies" class="bbccookies-banner orb-banner-wrapper bbccookies-d"> <div id="bbccookies-prompt" class="orb-banner b-g-p b-r b-f"> <h2 class="orb-banner-title"> Cookies on the BBC website </h2> <p class="orb-banner-content" dir="ltr"> The BBC has updated its cookie policy. We use cookies to ensure that we give you the best experience on our website. This includes cookies from third party social media websites if you visit a page which contains embedded content from social media. Such third party cookies may track your use of the BBC website.<span class="bbccookies-international-message"> We and our partners also use cookies to ensure we show you advertising that is relevant to you.</span> If you continue without changing your settings, we'll assume that you are happy to receive all cookies on the BBC website. However, you can change your cookie settings at any time. </p> <ul class="orb-banner-options"> <li id="bbccookies-continue"> <button type="button" id="bbccookies-continue-button">Continue</button> </li> <li id="bbccookies-settings"> <a href="/privacy/cookies/managing/cookie-settings.html">Change settings</a> </li> <li id="bbccookies-more"><a href="/privacy/cookies/bbc">Find out more</a></li></ul> </div> </div> </section> ]]></script> <script type="text/javascript">/*<![CDATA[*/ (function(){if(bbccookies._showPrompt()){var g=document,b=g.getElementById("blq-pre-mast"),e=g.getElementById("blq-bbccookies-tmpl"),a,f;if(b&&g.createElement){a=g.createElement("div");f=e.innerHTML;f=f.replace("<"+"![CDATA[","").replace("]]"+">","");a.innerHTML=f;b.appendChild(a);blqCookieContinueButton=g.getElementById("bbccookies-continue-button");blqCookieContinueButton.onclick=function(){a.parentNode.removeChild(a);return false};bbccookies._setPolicy(bbccookies.readPolicy())}var c=g.getElementById("bbccookies");if(c&&!window.orb.fig("uk")){c.className=c.className.replace(/\bbbccookies-d\b/,"");c.className=c.className+(" bbccookies-w")}}})(); /*]]>*/</script>   <noscript>&lt;p style="position: absolute; top: -999em"&gt;&lt;img src="//sa.bbc.co.uk/bbc/bbc/s?name=news.world.middle_east.story.39298218.page&amp;amp;ml_name&amp;#x3D;webmodule&amp;amp;ml_version&amp;#x3D;63&amp;amp;blq_js_enabled=0&amp;blq_s=4d&amp;blq_r=2.7&amp;blq_v=default&amp;blq_e=pal&amp;cps_asset_id=39298218&amp;page_type=Story&amp;section=%2Fnews%2Fworld%2Fmiddle_east&amp;first_pub=2017-03-16T19%3A31%3A58%2B00%3A00&amp;last_editorial_update=2017-03-16T21%3A07%3A02%2B00%3A00&amp;curie=12efed36-441c-8b42-977e-cbf74660a0f5&amp;title=Egypt+Pharaoh+statue+%27not+Ramses+II+but+different+ruler%27&amp;has_video=1&amp;topic_names=Archaeology%21Egypt&amp;topic_ids=1b508152-6d1f-46d4-80b2-a2d670e5f660%219519c450-d886-406a-8fc3-aaa847a2cf88&amp;for_nation=us&amp;app_version=1.180.0&amp;bbc_site=news&amp;pal_route=asset&amp;app_type=responsive&amp;language=en-GB&amp;pal_webapp=tabloid&amp;prod_name=news&amp;app_name=news" height="1" width="1" alt=""&gt;&lt;/p&gt;</noscript>  <!-- Begin iStats 20100118 (UX-CMC 1.1009.3) --> <script type="text/javascript">/*<![CDATA[*/ if (typeof bbccookies !== 'undefined' && bbccookies.isAllowed('s1')) { (function () { require(['istats-1'], function (istats) { istatsTrackingUrl = istats.getDefaultURL(); if (istats.isEnabled() && bbcFlagpoles_istats === 'ON') { sitestat(istatsTrackingUrl); } else { window.ns_pixelUrl = istatsTrackingUrl; /* used by Flash library to track */ } function sitestat(n) { var j = document, f = j.location, b = ""; if (j.cookie.indexOf("st_ux=") != -1) { var k = j.cookie.split(";"); var e = "st_ux", h = document.domain, a = "/"; if (typeof ns_ != "undefined" && typeof ns_.ux != "undefined") { e = ns_.ux.cName || e; h = ns_.ux.cDomain || h; a = ns_.ux.cPath || a } for (var g = 0, f = k.length; g < f; g++) { var m = k[g].indexOf("st_ux="); if (m != -1) { b = "&" + decodeURI(k[g].substring(m + 6)) } } bbccookies.set(e + "=; expires=" + new Date(new Date().getTime() - 60).toGMTString() + "; path=" + a + "; domain=" + h); } window.ns_pixelUrl = n;  } }); })(); } else { window.istats = {enabled: false}; } /*]]>*/</script> <!-- End iStats (UX-CMC) -->  
 <!--[if (gt IE 8) | (IEMobile)]><!--> <header id="orb-banner" role="banner"> <!--<![endif]--> <!--[if (lt IE 9) & (!IEMobile)]> <![if (IE 8)]> <header id="orb-banner" role="banner" class="orb-old-ie orb-ie8"> <![endif]> <![if (IE 7)]> <header id="orb-banner" role="banner" class="orb-old-ie orb-ie7"> <![endif]> <![if (IE 6)]> <header id="orb-banner" role="banner" class="orb-old-ie orb-ie6"> <![endif]> <![endif]--> <div id="orb-header" class="orb-nav-pri orb-nav-pri-white b-header--white--black orb-location-w orb-nav-dyn"> <div class="orb-nav-pri-container b-r b-g-p"> <div class="orb-nav-section orb-nav-blocks"> <a href="http://www.bbc.com/"> <img src="./bbc_files/bbc-blocks-dark.png" width="84" height="24" alt="BBC"> </a> </div> <section> <div class="orb-skip-links"> <h2>Accessibility links</h2> <ul>  <li><a href="http://www.bbc.com/news/world-middle-east-39298218#page">Skip to content</a></li>  <li><a id="orb-accessibility-help" href="http://www.bbc.com/accessibility/">Accessibility Help</a></li> </ul> </div> </section>  <div id="mybbc-wrapper" class="orb-nav-section orb-nav-id orb-nav-focus"> <div id="idcta-statusbar" class="orb-nav-section orb-nav-focus"> <a id="idcta-link" href="https://www.bbc.com/session?ptrt=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218&amp;userOrigin=news&amp;context=news"> <span id="idcta-username">Sign in</span> </a> </div>  <script type="text/javascript"> require(['idcta/statusbar'], function(statusbar) { new statusbar.Statusbar({"id":"idcta-statusbar","publiclyCacheable":true}); }); </script>

    <a id="notification-link" class="js-notification-link animated three" href="http://www.bbc.com/news/world-middle-east-39298218#">
        <span class="hidden-span">Notifications</span>
        <div class="notification-link--triangle"></div>
        <div class="notification-link--triangle"></div>
        <span id="not-num"></span>
    </a>
 </div>  <nav role="navigation" class="orb-nav"> <div class="orb-nav-section orb-nav-links orb-nav-focus" id="orb-nav-links"> <h2>BBC navigation</h2> <ul>        <li class="orb-nav-newsdotcom orb-w"> <a href="http://www.bbc.com/news/">News</a> </li>    <li class="orb-nav-sport"> <a href="http://www.bbc.com/sport/">Sport</a> </li>    <li class="orb-nav-weather"> <a href="http://www.bbc.com/weather/">Weather</a> </li>    <li class="orb-nav-shop orb-w"> <a href="http://shop.bbc.com/">Shop</a> </li>    <li class="orb-nav-earthdotcom orb-w"> <a href="http://www.bbc.com/earth/">Earth</a> </li>    <li class="orb-nav-travel-dotcom orb-w"> <a href="http://www.bbc.com/travel/">Travel</a> </li>    <li class="orb-nav-capital orb-w orb-nav-hide"> <a href="http://www.bbc.com/capital/">Capital</a> </li>        <li class="orb-nav-culture orb-w orb-nav-hide"> <a href="http://www.bbc.com/culture/">Culture</a> </li>    <li class="orb-nav-autos orb-w orb-nav-hide"> <a href="http://www.bbc.com/autos/">Autos</a> </li>    <li class="orb-nav-future orb-w orb-nav-hide"> <a href="http://www.bbc.com/future/">Future</a> </li>    <li class="orb-nav-tv orb-nav-hide"> <a href="http://www.bbc.com/tv/">TV</a> </li>    <li class="orb-nav-radio orb-nav-hide"> <a href="http://www.bbc.com/radio/">Radio</a> </li>    <li class="orb-nav-cbbc orb-nav-hide"> <a href="http://www.bbc.com/cbbc">CBBC</a> </li>    <li class="orb-nav-cbeebies orb-nav-hide"> <a href="http://www.bbc.com/cbeebies">CBeebies</a> </li>    <li class="orb-nav-food orb-nav-hide"> <a href="http://www.bbc.com/food/">Food</a> </li>    <li class="orb-nav-hide"> <a href="http://www.bbc.com/iwonder">iWonder</a> </li>    <li class="orb-nav-hide"> <a href="http://www.bbc.com/education">Bitesize</a> </li>        <li class="orb-nav-music orb-nav-hide"> <a href="http://www.bbc.com/music/">Music</a> </li>        <li class="orb-nav-arts orb-nav-hide"> <a href="http://www.bbc.com/arts/">Arts</a> </li>    <li class="orb-nav-makeitdigital orb-nav-hide"> <a href="http://www.bbc.com/makeitdigital">Make It Digital</a> </li>    <li class="orb-nav-hide"> <a href="http://www.bbc.com/taster">Taster</a> </li>    <li class="orb-nav-nature orb-w orb-nav-hide"> <a href="http://www.bbc.com/nature/">Nature</a> </li>    <li class="orb-nav-local orb-nav-hide"> <a href="http://www.bbc.com/local/">Local</a> </li>    <li id="orb-nav-more" class="" style="width: 133px;" aria-controls="orb-panel-more"><a href="http://www.bbc.com/news/world-middle-east-39298218#orb-footer" data-alt="More" style="null" class="istats-notrack">More<span class="orb-icon orb-icon-arrow"></span></a></li> </ul> </div> </nav>   <div class="orb-nav-section orb-nav-search"> <a class="orb-search__button" href="http://search.bbc.co.uk/search" title="Search the BBC">Search</a>

<form class="b-f" id="orb-search-form" role="search" method="get" action="http://search.bbc.co.uk/search" accept-charset="utf-8">
    <div>
        
        <label for="orb-search-q">Search the BBC</label>
            <input id="orb-search-q" type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" name="q" placeholder="Search">
            <button id="orb-search-button" class="orb-search__button">Search the BBC</button>
            <input type="hidden" name="suggid" id="orb-search-suggid">
    </div>
</form>


 </div>  </div> <div id="orb-panels">  <div id="orb-panel-more" class="orb-panel" aria-labelledby="orb-nav-more"> <div class="orb-panel-content b-g-p b-r orb-nav-sec"> <h2 id="orb-panel-more-title">More<span class="orb-icon orb-icon-arrow"></span></h2><ul>        <li class="orb-nav-newsdotcom orb-w orb-panel-hide"> <a href="http://www.bbc.com/news/">News</a> </li>    <li class="orb-nav-sport orb-panel-hide"> <a href="http://www.bbc.com/sport/">Sport</a> </li>    <li class="orb-nav-weather orb-panel-hide"> <a href="http://www.bbc.com/weather/">Weather</a> </li>    <li class="orb-nav-shop orb-w orb-panel-hide"> <a href="http://shop.bbc.com/">Shop</a> </li>    <li class="orb-nav-earthdotcom orb-w orb-panel-hide"> <a href="http://www.bbc.com/earth/">Earth</a> </li>    <li class="orb-nav-travel-dotcom orb-w orb-panel-hide"> <a href="http://www.bbc.com/travel/">Travel</a> </li>    <li class="orb-nav-capital orb-w orb-first-visible"> <a href="http://www.bbc.com/capital/">Capital</a> </li>        <li class="orb-nav-culture orb-w"> <a href="http://www.bbc.com/culture/">Culture</a> </li>    <li class="orb-nav-autos orb-w"> <a href="http://www.bbc.com/autos/">Autos</a> </li>    <li class="orb-nav-future orb-w"> <a href="http://www.bbc.com/future/">Future</a> </li>    <li class="orb-nav-tv"> <a href="http://www.bbc.com/tv/">TV</a> </li>    <li class="orb-nav-radio"> <a href="http://www.bbc.com/radio/">Radio</a> </li>    <li class="orb-nav-cbbc"> <a href="http://www.bbc.com/cbbc">CBBC</a> </li>    <li class="orb-nav-cbeebies"> <a href="http://www.bbc.com/cbeebies">CBeebies</a> </li>    <li class="orb-nav-food"> <a href="http://www.bbc.com/food/">Food</a> </li>    <li class=""> <a href="http://www.bbc.com/iwonder">iWonder</a> </li>    <li class=""> <a href="http://www.bbc.com/education">Bitesize</a> </li>        <li class="orb-nav-music"> <a href="http://www.bbc.com/music/">Music</a> </li>        <li class="orb-nav-arts"> <a href="http://www.bbc.com/arts/">Arts</a> </li>    <li class="orb-nav-makeitdigital"> <a href="http://www.bbc.com/makeitdigital">Make It Digital</a> </li>    <li class=""> <a href="http://www.bbc.com/taster">Taster</a> </li>    <li class="orb-nav-nature orb-w"> <a href="http://www.bbc.com/nature/">Nature</a> </li>    <li class="orb-nav-local"> <a href="http://www.bbc.com/local/">Local</a> </li>    </ul> </div> </div><div class="orb-panel se-searchbox-app" id="se-searchbox-app"><div tabindex="-1" data-reactid=".1ank8apmzuo" data-react-checksum="1313156196"><div data-reactid=".1ank8apmzuo.0"><section class="se-searchbox-panel" data-reactid=".1ank8apmzuo.0.0"><div class="se-g-wrap" data-reactid=".1ank8apmzuo.0.0.0"><div class="se-g-layout" data-reactid=".1ank8apmzuo.0.0.0.0"><div class="se-g-layout__item se-searchbox-title" aria-hidden="true" data-reactid=".1ank8apmzuo.0.0.0.0.0">search</div><div class="se-g-layout__item se-searchbox" data-reactid=".1ank8apmzuo.0.0.0.0.1"><form accept-charset="utf-8" id="searchboxDrawerForm" method="get" action="http://search.bbc.co.uk/search" data-reactid=".1ank8apmzuo.0.0.0.0.1.0"><label class="se-searchbox__input" for="se-searchbox-input-field" data-reactid=".1ank8apmzuo.0.0.0.0.1.0.0"><span class="se-sr-only" data-reactid=".1ank8apmzuo.0.0.0.0.1.0.0.0">Search Term</span><input name="q" type="text" value="" id="se-searchbox-input-field" class="se-searchbox__input__field" maxlength="512" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" tabindex="0" data-reactid=".1ank8apmzuo.0.0.0.0.1.0.0.1"></label><input type="hidden" name="scope" value="" data-reactid=".1ank8apmzuo.0.0.0.0.1.0.2"><button type="submit" class="se-searchbox__submit" tabindex="0" data-reactid=".1ank8apmzuo.0.0.0.0.1.0.3">Search</button><button type="button" class="se-searchbox__clear se-searchbox__clear--visible" tabindex="0" data-reactid=".1ank8apmzuo.0.0.0.0.1.0.4">Close</button></form></div></div></div></section><div aria-live="polite" aria-atomic="true" class="se-suggestions-container" data-reactid=".1ank8apmzuo.0.1"><section class="se-g-wrap" data-reactid=".1ank8apmzuo.0.1.0"></section></div></div></div></div></div> </div> </header> <!-- Styling hook for shared modules only --> <div id="orb-modules">             
    <div id="site-container">

    <!--[if lt IE 9]>
<div class="browser-notify">
    <div class="browser-notify__banner">
        <div class="browser-notify__icon"></div>
        <span>This site is optimised for modern web browsers, and does not fully support your version of Internet Explorer</span>
    </div>
</div>
<![endif]-->            <div class="site-brand site-brand--height" role="banner" aria-label="News">
                        <div class="site-brand-inner site-brand-inner--height">
                <div class="navigation navigation--primary">
                    <a href="http://www.bbc.com/news" id="brand">
            <svg class="brand__svg" aria-label="BBC News" width="102" height="30">
            <title>BBC News</title>
            <image xlink:href="http://static.bbci.co.uk/news/1.180.01370/img/brand/generated/news-light.svg" src="http://static.bbci.co.uk/news/1.180.01370/img/brand/generated/news-light.png" width="100%" height="100%"></image>
        </svg>
        </a>
                                        <h2 class="navigation__heading off-screen">News navigation</h2>
                    <a href="http://www.bbc.com/news/world-middle-east-39298218#core-navigation" class="navigation__section navigation__section--core" data-event="header">
                        Sections                    </a>
                                    </div>
            </div>
                        

<div class="navigation navigation--wide">
    <ul class="navigation-wide-list" role="navigation" aria-label="News" data-panel-id="js-navigation-panel-primary" style="padding-right: 71px; max-width: 921px;">
                    <li class="">
                <a href="http://www.bbc.com/news" class="navigation-wide-list__link">
                    <span>Home</span>
                </a>
                            </li>
                    <li class="">
                <a href="http://www.bbc.com/news/video_and_audio/headlines" class="navigation-wide-list__link">
                    <span>Video</span>
                </a>
                            </li>
                    <li class="selected">
                <a href="http://www.bbc.com/news/world" data-panel-id="js-navigation-panel-World" class="navigation-wide-list__link navigation-arrow--open">
                    <span>World</span>
                </a>
                 <span class="off-screen">selected</span>            </li>
                    <li class="">
                <a href="http://www.bbc.com/news/world/us_and_canada" data-panel-id="js-navigation-panel-US___Canada" class="navigation-wide-list__link">
                    <span>US &amp; Canada</span>
                </a>
                            </li>
                    <li class="">
                <a href="http://www.bbc.com/news/uk" data-panel-id="js-navigation-panel-UK" class="navigation-wide-list__link">
                    <span>UK</span>
                </a>
                            </li>
                    <li class="">
                <a href="http://www.bbc.com/news/business" data-panel-id="js-navigation-panel-Business" class="navigation-wide-list__link">
                    <span>Business</span>
                </a>
                            </li>
                    <li class="">
                <a href="http://www.bbc.com/news/technology" class="navigation-wide-list__link">
                    <span>Tech</span>
                </a>
                            </li>
                    <li class="">
                <a href="http://www.bbc.com/news/science_and_environment" class="navigation-wide-list__link">
                    <span>Science</span>
                </a>
                            </li>
                    <li class="">
                <a href="http://www.bbc.com/news/magazine" class="navigation-wide-list__link">
                    <span>Magazine</span>
                </a>
                            </li>
                    <li class="">
                <a href="http://www.bbc.com/news/entertainment_and_arts" class="navigation-wide-list__link">
                    <span>Entertainment &amp; Arts</span>
                </a>
                            </li>
                    <li class="">
                <a href="http://www.bbc.com/news/health" class="navigation-wide-list__link">
                    <span>Health</span>
                </a>
                            </li>
                    <li class="  invisible">
                <a href="http://www.bbc.com/news/in_pictures" class="navigation-wide-list__link">
                    <span>In Pictures</span>
                </a>
                            </li>
                    <li class="  invisible">
                <a href="http://www.bbc.com/news/also_in_the_news" class="navigation-wide-list__link">
                    <span>Also in the News</span>
                </a>
                            </li>
                    <li class="  invisible">
                <a href="http://www.bbc.com/news/special_reports" class="navigation-wide-list__link">
                    <span>Special Reports</span>
                </a>
                            </li>
                    <li class="  invisible">
                <a href="http://www.bbc.com/news/world_radio_and_tv" class="navigation-wide-list__link">
                    <span>World News TV</span>
                </a>
                            </li>
                    <li class="  invisible">
                <a href="http://www.bbc.com/news/explainers" class="navigation-wide-list__link">
                    <span>Explainers</span>
                </a>
                            </li>
                    <li class="  invisible">
                <a href="http://www.bbc.com/news/the_reporters" class="navigation-wide-list__link">
                    <span>The Reporters</span>
                </a>
                            </li>
                    <li class="  invisible">
                <a href="http://www.bbc.com/news/have_your_say" class="navigation-wide-list__link navigation-wide-list__link--last">
                    <span>Have Your Say</span>
                </a>
                            </li>
            <li class="navigation__more-button-container" style="left: 843px;">                    <button class="navigation__more-button navigation-arrow" data-panel-id="js-navigation-panel-primary">More<span class="off-screen"> sections</span></button>                </li></ul>
</div><div class="navigation-panel navigation-panel--wide navigation-panel--closed js-navigation-panel-primary"><div class="navigation-panel__content"><div class="navigation-panel__inner"><ul class="navigation-panel-toplevel navigation-panel-toplevel--columnised-4"><li class=" ">
                <a href="http://www.bbc.com/news/in_pictures" class="navigation-panel-toplevel__link">
                    <span>In Pictures</span>
                </a>
                            </li><li class=" ">
                <a href="http://www.bbc.com/news/also_in_the_news" class="navigation-panel-toplevel__link">
                    <span>Also in the News</span>
                </a>
                            </li></ul><ul class="navigation-panel-toplevel navigation-panel-toplevel--columnised-4"><li class=" ">
                <a href="http://www.bbc.com/news/special_reports" class="navigation-panel-toplevel__link">
                    <span>Special Reports</span>
                </a>
                            </li><li class=" ">
                <a href="http://www.bbc.com/news/world_radio_and_tv" class="navigation-panel-toplevel__link">
                    <span>World News TV</span>
                </a>
                            </li></ul><ul class="navigation-panel-toplevel navigation-panel-toplevel--columnised-4"><li class=" ">
                <a href="http://www.bbc.com/news/explainers" class="navigation-panel-toplevel__link">
                    <span>Explainers</span>
                </a>
                            </li><li class=" ">
                <a href="http://www.bbc.com/news/the_reporters" class="navigation-panel-toplevel__link">
                    <span>The Reporters</span>
                </a>
                            </li></ul><ul class="navigation-panel-toplevel navigation-panel-toplevel--columnised-4"><li class=" ">
                <a href="http://www.bbc.com/news/have_your_say" class="navigation-panel-toplevel__link">
                    <span>Have Your Say</span>
                </a>
                            </li></ul></div></div></div>

    <div class="secondary-navigation secondary-navigation--wide">
        <nav class="navigation-wide-list navigation-wide-list--secondary" role="navigation" aria-label="World">
            <a class="secondary-navigation__title navigation-wide-list__link " href="http://www.bbc.com/news/world"><span>World</span></a> <span class="off-screen">selected</span>                            <ul data-panel-id="js-navigation-panel-secondary">
                                            <li>
                            <a href="http://www.bbc.com/news/world/africa" class="navigation-wide-list__link navigation-wide-list__link--first ">
                                <span>Africa</span>
                            </a>
                                                    </li>
                                            <li>
                            <a href="http://www.bbc.com/news/world/asia" class="navigation-wide-list__link  ">
                                <span>Asia</span>
                            </a>
                                                    </li>
                                            <li>
                            <a href="http://www.bbc.com/news/world/australia" class="navigation-wide-list__link  ">
                                <span>Australia</span>
                            </a>
                                                    </li>
                                            <li>
                            <a href="http://www.bbc.com/news/world/europe" class="navigation-wide-list__link  ">
                                <span>Europe</span>
                            </a>
                                                    </li>
                                            <li>
                            <a href="http://www.bbc.com/news/world/latin_america" class="navigation-wide-list__link  ">
                                <span>Latin America</span>
                            </a>
                                                    </li>
                                            <li class="selected">
                            <a href="http://www.bbc.com/news/world/middle_east" class="navigation-wide-list__link  navigation-wide-list__link--last">
                                <span>Middle East</span>
                            </a>
                             <span class="off-screen">selected</span>                        </li>
                                    </ul>
                    </nav>
    </div>
                    </div>
            
    
<div id="bbccom_leaderboard_1_2_3_4" class="bbccom_slot  bbccom_standard_slot bbccom_shut" aria-hidden="true">
    <div class="bbccom_advert bbccom_shut" id="bbccom_leaderboard" ata9c1m="" hidden="" style="display: none !important;">
        <script type="text/javascript">
            /*<![CDATA[*/
            (function() {
                if (window.bbcdotcom && bbcdotcom.adverts && bbcdotcom.adverts.slotAsync) {
                    bbcdotcom.adverts.slotAsync('leaderboard', [1,2,3,4]);
                }
            })();
            /*]]>*/
        </script><a class="bbccom_text" href="http://www.bbc.com/privacy/cookies/international/">Advertisement</a>
    </div>
</div>

    <div id="breaking-news-container" data-polling-url="http://polling.bbc.co.uk/news/latest_breaking_news?audience=US" aria-live="polite"></div>

                        <div class="container-width-only">
                            <span class="index-title index-title--redundant" id="comp-index-title" data-index-title-meta="{&quot;id&quot;:&quot;comp-index-title&quot;,&quot;type&quot;:&quot;index-title&quot;,&quot;handler&quot;:&quot;indexTitle&quot;,&quot;deviceGroups&quot;:null,&quot;opts&quot;:{&quot;alwaysVisible&quot;:false,&quot;onFrontPage&quot;:false},&quot;template&quot;:&quot;index-title&quot;}">
        <span class="index-title__container">
            <a href="http://www.bbc.com/news/world/middle_east">Middle East</a>
        </span>
    </span>
            
<div id="bbccom_sponsor_section_1_2_3_4" class="bbccom_slot " aria-hidden="true">
    <div class="bbccom_advert" ata9c1m="" hidden="" style="display: none !important;">
        <script type="text/javascript">
            /*<![CDATA[*/
            (function() {
                if (window.bbcdotcom && bbcdotcom.adverts && bbcdotcom.adverts.slotAsync) {
                    bbcdotcom.adverts.slotAsync('sponsor_section', [1,2,3,4]);
                }
            })();
            /*]]>*/
        </script>
    </div>
</div>
            </div>
            
         <div id="page" class="configurable story " data-story-id="world-middle-east-39298218"> <div id="breaking-news-banner-focus-target" tabindex="-1"></div>      <div role="main"> <div class="container-width-only">       <span class="index-title index-title--redundant " id="comp-index-title" data-index-title-meta="{&quot;id&quot;:&quot;comp-index-title&quot;,&quot;type&quot;:&quot;index-title&quot;,&quot;handler&quot;:&quot;indexTitle&quot;,&quot;deviceGroups&quot;:null,&quot;opts&quot;:{&quot;alwaysVisible&quot;:false,&quot;onFrontPage&quot;:false},&quot;template&quot;:&quot;index-title&quot;}">
        <span class="index-title__container">
            <a href="http://www.bbc.com/news/world/middle_east">Middle East</a>
        </span>
    </span>
 
<div id="bbccom_sponsor_section_1_2_3_4" class="bbccom_slot " aria-hidden="true">
    <div class="bbccom_advert" ata9c1m="" hidden="" style="display: none !important;">
        <script type="text/javascript">
            /*<![CDATA[*/
            (function() {
                if (window.bbcdotcom && bbcdotcom.adverts && bbcdotcom.adverts.slotAsync) {
                    bbcdotcom.adverts.slotAsync('sponsor_section', [1,2,3,4]);
                }
            })();
            /*]]>*/
        </script>
    </div>
</div>
   </div>      <div class="container">       <div class="container--primary-and-secondary-columns column-clearfix">                         <div class="column--primary">
                                                                            
<div class="story-body">
    <h1 class="story-body__h1">Egypt Pharaoh statue 'not Ramses II but different ruler'</h1>

    
    <div class="story-body__mini-info-list-and-share">
        <ul class="mini-info-list">
    <li class="mini-info-list__item">    <div class="date date--v2" data-seconds="1489698422" data-datetime="16 March 2017" data-timestamp-inserted="true">16 March 2017</div>
</li>
            <li class="mini-info-list__item"><span class="mini-info-list__section-desc off-screen">From the section </span><a href="http://www.bbc.com/news/world/middle_east" class="mini-info-list__section" data-entityid="section-label">Middle East</a></li>
</ul>
             </div>

            <div class="share-tools--no-event-tag">
        

    <div id="comp-pattern-library-7" class="distinct-component-group container-twite">
        
            <div class="twite">
    <a href="http://www.bbc.com/news/world-middle-east-39298218#share-tools" class="twite__share-button" aria-label="Open share panel" data-origin="page" aria-expanded="false" aria-haspopup="true">
        <svg class="twite__share-icon" aria-hidden="true" viewBox="0 0 29.266 32"><path d="M5.473 22.153c1.586 0 3.01-.684 4.012-1.762l9 4.845c-.102.412-.16.85-.16 1.297 0 3.02 2.452 5.468 5.472 5.468 3.017 0 5.47-2.446 5.47-5.468 0-3.023-2.453-5.47-5.47-5.47-1.587 0-3.02.68-4.015 1.757l-9.457-5.175-.074-2.792 9.74-5.456c.99.953 2.327 1.543 3.807 1.543 3.017 0 5.47-2.45 5.47-5.474 0-3.022-2.453-5.467-5.47-5.467-3.02 0-5.473 2.444-5.473 5.466 0 .554.08 1.09.243 1.597L9.27 12.75c-.988-.95-2.326-1.537-3.797-1.537C2.447 11.213 0 13.657 0 16.68c0 3.03 2.447 5.473 5.473 5.473"></path></svg><span class="twite__share-text">Share</span>
    </a>
    <div class="twite__panel arrow-top" data-share-uri="">
        <p class="twite__title" aria-hidden="true">Share this with</p>
        <span class="off-screen">These are external links and will open in a new window</span>
        <ul class="twite__channels">
            <li class="twite__channel twite__channel--email">
                <a class="twite__channel-link" href="mailto:?subject=Shared%20from%20BBC%20News&amp;body=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218">
                    <span class="twite__icon twite__icon--email"></span>
                    <p class="twite__channel-text" aria-hidden="true">Email</p>
                    <span class="off-screen">Share this with Email</span>
                </a>
            </li>
            <li class="twite__channel twite__channel--facebook">
                <a class="twite__channel-link" onclick="window.open(&#39;http://www.facebook.com/dialog/feed?app_id=58567469885&amp;redirect_uri=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fspecial%2Fshared%2Fvj_sharetools%2Ffb_red_uri.html&amp;link=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218%3FSThisFB&amp;display=popup&#39;, &#39;_blank&#39;, &#39;toolbar=yes,scrollbars=yes,resizable=no,fullscreen=no,top=50,left=50,width=555,height=615&#39;)" href="http://www.bbc.com/news/world-middle-east-39298218#">
                    <span class="twite__icon twite__icon--facebook"></span>
                    <p class="twite__channel-text" aria-hidden="true">Facebook</p>
                    <span class="off-screen">Share this with Facebook</span>
                </a>
            </li>
            <li class="twite__channel twite__channel--messengerdesktop" style="display: block;">
                <a class="twite__channel-link" onclick="window.open(&#39;http://www.facebook.com/dialog/send?app_id=58567469885&amp;redirect_uri=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fspecial%2Fshared%2Fvj_sharetools%2Ffb_red_uri.html&amp;link=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218%3FSThisFB&amp;display=popup&#39;, &#39;_blank&#39;, &#39;toolbar=yes,scrollbars=yes,resizable=no,fullscreen=no,top=50,left=50,width=645,height=580&#39;)" href="http://www.bbc.com/news/world-middle-east-39298218#">
                    <span class="twite__icon twite__icon--messengerdesktop"></span>
                    <p class="twite__channel-text" aria-hidden="true">Messenger</p>
                    <span class="off-screen">Share this with Messenger</span>
                </a>
            </li>
            <li class="twite__channel twite__channel--messengermobile" style="display: none;">
                <a class="twite__channel-link" onclick="window.open(&#39;fb-messenger://share?app_id=58567469885&amp;redirect_uri=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fspecial%2Fshared%2Fvj_sharetools%2Ffb_red_uri.html&amp;link=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218%3FCMP%3Dshare_btn_me&#39;, &#39;_blank&#39;, &#39;toolbar=yes,scrollbars=yes,resizable=no,fullscreen=no,top=50,left=50,width=600,height=600&#39;)" href="http://www.bbc.com/news/world-middle-east-39298218#" target="_blank">
                    <span class="twite__icon twite__icon--messengermobile"></span>
                    <p class="twite__channel-text" aria-hidden="true">Messenger</p>
                    <span class="off-screen">Share this with Messenger</span>
                </a>
            </li>
            <li class="twite__channel twite__channel--twitter">
                <a class="twite__channel-link" onclick="window.open(&#39;https://twitter.com/intent/tweet?text=BBC%20News%20-%20Egypt%20Pharaoh%20statue%20%27not%20Ramses%20II%20but%20different%20ruler%27&amp;url=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218&#39;, &#39;_blank&#39;, &#39;toolbar=yes,scrollbars=yes,resizable=no,fullscreen=no,top=50,left=50,width=550,height=250&#39;)" href="http://www.bbc.com/news/world-middle-east-39298218#" data-social-url="https://twitter.com/intent/tweet?text=BBC+News+-+Egypt+Pharaoh+statue+%27not+Ramses+II+but+different+ruler%27&amp;amp;url=" data-target-url="http://www.bbc.com/news/world-middle-east-39298218">
                    <span class="twite__icon twite__icon--twitter"></span>
                    <p class="twite__channel-text" aria-hidden="true">Twitter</p>
                    <span class="off-screen">Share this with Twitter</span>
                </a>
            </li>
            <li class="twite__channel twite__channel--pinterest">
                <a class="twite__channel-link" onclick="window.open(&#39;https://uk.pinterest.com/pin/create/bookmarklet/?url=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218&amp;description=The%20statue%20pulled%20from%20the%20mud%20in%20Cairo%20may%20in%20fact%20be%20Psamtek%20I%2C%20a%20more%20recent%20ruler.&amp;title=Egypt%20Pharaoh%20statue%20%27not%20Ramses%20II%20but%20different%20ruler%27&amp;media=http%3A%2F%2Fc.files.bbci.co.uk%2F814A%2Fproduction%2F_95189033_ab02cef5-374c-4837-b63b-ab74062e03ce.jpg&#39;, &#39;_blank&#39;, &#39;toolbar=yes,scrollbars=yes,resizable=no,fullscreen=no,top=50,left=50,width=750,height=675&#39;)" href="http://www.bbc.com/news/world-middle-east-39298218#">
                    <span class="twite__icon twite__icon--pinterest"></span>
                    <p class="twite__channel-text" aria-hidden="true">Pinterest</p>
                    <span class="off-screen">Share this with Pinterest</span>
                </a>
            </li>
            <li class="twite__channel twite__channel--whatsapp">
                <a class="twite__channel-link" onclick="window.open(&#39;whatsapp://send?text=BBC%20News%20%7C%20Egypt%20Pharaoh%20statue%20%27not%20Ramses%20II%20but%20different%20ruler%27%20-%20http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218%3Focid%3Dwsnews.chat-apps.in-app-msg.whatsapp.trial.link1_.auin&#39;, &#39;_blank&#39;, &#39;toolbar=yes,scrollbars=yes,resizable=no,fullscreen=no,top=50,left=50,width=600,height=600&#39;)" href="http://www.bbc.com/news/world-middle-east-39298218#">
                    <span class="twite__icon twite__icon--whatsapp"></span>
                    <p class="twite__channel-text" aria-hidden="true">WhatsApp</p>
                    <span class="off-screen">Share this with WhatsApp</span>
                </a>
            </li>
            <li class="twite__channel twite__channel--linkedin">
                <a class="twite__channel-link" onclick="window.open(&#39;https://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218&amp;title=Egypt%20Pharaoh%20statue%20%27not%20Ramses%20II%20but%20different%20ruler%27&amp;summary=The%20statue%20pulled%20from%20the%20mud%20in%20Cairo%20may%20in%20fact%20be%20Psamtek%20I%2C%20a%20more%20recent%20ruler.&amp;source=BBC&#39;, &#39;_blank&#39;, &#39;toolbar=yes,scrollbars=yes,resizable=no,fullscreen=no,top=50,left=50,width=550,height=500&#39;)" href="http://www.bbc.com/news/world-middle-east-39298218#">
                    <span class="twite__icon twite__icon--linkedin"></span>
                    <p class="twite__channel-text" aria-hidden="true">LinkedIn</p>
                    <span class="off-screen">Share this with LinkedIn</span>
                </a>
            </li>
        </ul>
        <p class="twite__copy-text">Copy this link</p>
        <div class="twite__copy-input">
            <a class="twite__share-link" href="http://www.bbc.com/news/world-middle-east-39298218" tabindex="-1" contenteditable="true">http://www.bbc.com/news/world-middle-east-39298218</a>
        </div>
        <a class="twite__read-more" href="http://www.bbc.co.uk/faqs/questions/bbc_online/sharing">Read more about sharing.</a>
        <p class="twite__new-window" aria-hidden="true">These are external links and will open in a new window</p>
        <button class="twite__close-button">
            <span class="off-screen">Close share panel</span>
            <div class="twite__close-button-graphic" aria-hidden="true"></div>
        </button>
    </div>
</div>

        
    </div>

        </div>
    
    <div class="story-body__inner" property="articleBody">
        <figure class="media-landscape has-caption full-width lead">
            <span class="image-and-copyright-container">
                
                <img class="js-image-replace" alt="Denmark&#39;s Prince Henrik (left) looks at the statue belonging to King Psamtik I, outside the Egyptian museum in Cairo on 16 March 2017" src="./bbc_files/_95189030_ab02cef5-374c-4837-b63b-ab74062e03ce.jpg" width="976" height="549" data-highest-encountered-width="660">
                
                
                
                 <span class="off-screen">Image copyright</span>
                 <span class="story-image-copyright">Reuters</span>
                
            </span>
            
            <figcaption class="media-caption">
                <span class="off-screen">Image caption</span>
                <span class="media-caption__text">
                    The massive statue - pictured with Denmark's Prince Henrik, left - was at first thought to be Ramses II, also known as Ramses the Great
                </span>
            </figcaption>
            
        </figure><p class="story-body__introduction">An ancient statue which was pulled from the mud in Cairo is not the Pharaoh Ramses II, but could be another king, Egypt's antiquities minister has said.</p><p>Khaled el-Anani told a news conference the statue was almost certainly Psamtek I, who ruled between 664 and 610BC.</p><p>Experts had thought the statue was Ramses, who ruled 600 years earlier, because it was close to a temple dedicated to the ruler.</p><p>But one of Psamtek's five names was found engraved on the huge statue.</p><p>Even so, the find is still significant, Mr Anani said.</p><div id="bbccom_mpu_1_2_3" class="bbccom_slot mpu-ad" aria-hidden="true" ata9c1m="" hidden="">
    <div class="bbccom_advert" ata9c1m="" hidden="" style="display: none !important;">
        <script type="text/javascript">
            /**/
            (function() {
                if (window.bbcdotcom && bbcdotcom.adverts && bbcdotcom.adverts.slotAsync) {
                    bbcdotcom.adverts.slotAsync('mpu', [1,2,3]);
                }
            })();
            /**/
        </script>
    </div>
</div><p>"If it belongs to this king, then it is the largest statue of the Late Period that was ever discovered in Egypt," <a href="http://english.ahram.org.eg/NewsContent/9/40/261102/Heritage/Ancient-Egypt/Newly-discovered-Matariya-colossus-is-probably-of-.aspx" class="story-body__link-external">Ahram Online reported</a> him as saying.</p><figure class="media-landscape has-caption full-width">
            <span class="image-and-copyright-container">
                
                
                <img src="./bbc_files/_95189032_a09c5eae-a2f7-4a5d-bb7d-3a74f3cc346f.jpg" datasrc="http://ichef.bbci.co.uk/news/320/cpsprodpb/5A3A/production/_95189032_a09c5eae-a2f7-4a5d-bb7d-3a74f3cc346f.jpg" class="responsive-image__img js-image-replace" alt="Egyptian Minister of Antiquities Khaled Al-Anani stands beside the colossus explaining new evidence pointing to it depicting Psamtek I in Cairo" width="976" height="650" data-highest-encountered-width="624">
                
                
                 <span class="off-screen">Image copyright</span>
                 <span class="story-image-copyright">Reuters</span>
                
            </span>
            
            <figcaption class="media-caption">
                <span class="off-screen">Image caption</span>
                <span class="media-caption__text">
                    Egyptian Minister of Antiquities Khaled Al-Anani explains new evidence pointing to it depicting Psamtek I in Cairo
                </span>
            </figcaption>
            
        </figure><figure class="media-landscape has-caption full-width">
            <span class="image-and-copyright-container">
                
                
                <img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" datasrc="http://ichef-1.bbci.co.uk/news/320/cpsprodpb/16AAB/production/_95134829_18d0103d-181b-4646-aa8d-27f50f3ea5ba.jpg" class="responsive-image__img responsive-image__img--loading js-image-replace" alt="Egyptians look on as a crane lifts parts of a statue for restoration after it was unearthed at Souq al-Khamis district, at al-Matareya area, Cairo, Egypt, 13 March 2017" width="976" height="900">
                
                
                 <span class="off-screen">Image copyright</span>
                 <span class="story-image-copyright">EPA</span>
                
            </span>
            
            <figcaption class="media-caption">
                <span class="off-screen">Image caption</span>
                <span class="media-caption__text">
                    Part of the torso was hauled from deep muddy groundwater using a crane on Monday
                </span>
            </figcaption>
            
        </figure><p>The discovery was made after they moved the statue - which was nine metres (29ft) tall originally - from a wasteland in between apartment blocks on the site of the ancient capital, Heliopolis, to the Egyptian museum in central Cairo.</p><p>It was found by an Egyptian-German archaeological team, and was partially submerged in water, and had split into a number of parts. Its torso alone weighed three tonnes.</p><p>The Ministry of Antiquities said it hoped the two parts could be put back together again.</p><figure class="media-with-caption">
        <div class="media-player-wrapper">
            <div id="sticky-player-1">                <div class="sticky-player__wrapper">                    <div class="sticky-player__player"><figure class="media-player" data-playable="{&quot;settings&quot;:{&quot;counterName&quot;:&quot;news.world.middle_east.story.39298218.page&quot;,&quot;edition&quot;:&quot;US&quot;,&quot;pageType&quot;:&quot;eav2&quot;,&quot;uniqueID&quot;:&quot;39298218&quot;,&quot;ui&quot;:{&quot;locale&quot;:{&quot;lang&quot;:&quot;en-gb&quot;}},&quot;externalEmbedUrl&quot;:&quot;http:\/\/www.bbc.com\/news\/world-middle-east-39298218\/embed&quot;,&quot;insideIframe&quot;:false,&quot;statsObject&quot;:{&quot;clipPID&quot;:&quot;p04wbwv1&quot;},&quot;playlistObject&quot;:{&quot;title&quot;:&quot;Egyptian Antiquities Minister Khaled Al-Anani described \&quot;the big discovery of a colossus of a king\&quot;&quot;,&quot;holdingImageURL&quot;:&quot;http:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p04wbx1q.jpg&quot;,&quot;guidance&quot;:&quot;&quot;,&quot;simulcast&quot;:false,&quot;liveRewind&quot;:false,&quot;embedRights&quot;:&quot;blocked&quot;,&quot;items&quot;:[{&quot;vpid&quot;:&quot;p04wbwv4&quot;,&quot;live&quot;:false,&quot;duration&quot;:47,&quot;kind&quot;:&quot;programme&quot;}],&quot;summary&quot;:&quot;Egyptian Antiquities Minister Khaled Al-Anani described \&quot;the big discovery of a colossus of a king\&quot;&quot;}},&quot;otherSettings&quot;:{&quot;advertisingAllowed&quot;:true,&quot;continuousPlayCfg&quot;:{&quot;enabled&quot;:false},&quot;isAutoplayOnForAudience&quot;:false}}" id="media-player-1"><div id="smphtml5iframemedia-player-1wrp" style="border-bottom: 0px; z-index: 999; position: relative; height: 100%; width: 100%; padding-bottom: 56.25%;"><iframe id="smphtml5iframemedia-player-1" name="smphtml5iframemedia-player-1" frameborder="0" scrolling="no" src="./bbc_files/iframe.html" allowfullscreen="" style="position: absolute; left: 0px; top: 0px; width: 100%; height: 100%;"></iframe></div></figure></div>                    <div class="sticky-player__body">                        <h2 class="sticky-player__headline">Egyptian Antiquities Minister Khaled Al-Anani described "the big discovery of a colossus of a king"</h2>                    </div>                    <button class="sticky-player__close-button falcon__button">                        <span class="off-screen">Exit player</span>                    </button>                </div>            </div>            <div id="sticky-player-1-placeholder" class="sticky-player__image responsive-image"></div>
        </div>
    <figcaption class="media-with-caption__caption"><span class="off-screen">Media caption</span>Egyptian Antiquities Minister Khaled Al-Anani described "the big discovery of a colossus of a king"</figcaption>
</figure>
    </div>
</div>
                                                                                            <div class="tags-container">
    <h2 class="tags-title story-body__crosshead">Related Topics</h2>
        <ul class="tags-list">
            <li class="tags-list__tags" data-entityid="topic_link">
                <a href="http://www.bbc.com/news/topics/1b508152-6d1f-46d4-80b2-a2d670e5f660/archaeology">Archaeology</a>
            </li>
            <li class="tags-list__tags" data-entityid="topic_link">
                <a href="http://www.bbc.com/news/topics/9519c450-d886-406a-8fc3-aaa847a2cf88/egypt">Egypt</a>
            </li>
        </ul>
</div>

                                                                                                <div class="share share--lightweight  show ghost-column">
            <div id="share-tools"></div>
            <h2 class="share__title share__title--lightweight">
        Share this story        <a href="http://www.bbc.co.uk/help/web/sharing.shtml">About&nbsp;sharing</a>
    </h2>
        <ul class="share__tools share__tools--lightweight">
                            <li class="share__tool share__tool--email">
        <a href="mailto:?subject=Shared%20from%20BBC%20News&amp;body=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218">
            <span>Email</span>
        </a>
    </li>
                            <li class="share__tool share__tool--facebook">
        <a href="http://www.facebook.com/dialog/feed?app_id=58567469885&amp;redirect_uri=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218&amp;link=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218%3FSThisFB&amp;display=popup">
            <span>Facebook</span>
        </a>
    </li>
                            <li class="share__tool share__tool--messengerdesktop">
        <a href="http://www.facebook.com/dialog/send?app_id=58567469885&amp;redirect_uri=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218&amp;link=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218%3FSThisFB&amp;display=popup">
            <span>Messenger</span>
        </a>
    </li>
                            <li class="share__tool share__tool--messengermobile">
        <a href="fb-messenger://share?app_id=58567469885&amp;redirect_uri=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218&amp;link=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218%3FCMP%3Dshare_btn_me" target="_blank">
            <span>Messenger</span>
        </a>
    </li>
                            <li class="share__tool share__tool--twitter">
        <a href="https://twitter.com/intent/tweet?text=BBC%20News%20-%20Egypt%20Pharaoh%20statue%20%27not%20Ramses%20II%20but%20different%20ruler%27&amp;url=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218" class="shortenUrl" data-social-url="https://twitter.com/intent/tweet?text=BBC+News+-+Egypt+Pharaoh+statue+%27not+Ramses+II+but+different+ruler%27&amp;url=" data-target-url="http://www.bbc.com/news/world-middle-east-39298218">
            <span>Twitter</span>
        </a>
    </li>
                            <li class="share__tool share__tool--pinterest">
        <a href="https://uk.pinterest.com/pin/create/bookmarklet/?url=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218&amp;description=The%20statue%20pulled%20from%20the%20mud%20in%20Cairo%20may%20in%20fact%20be%20Psamtek%20I%2C%20a%20more%20recent%20ruler.&amp;title=Egypt%20Pharaoh%20statue%20%27not%20Ramses%20II%20but%20different%20ruler%27&amp;media=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fspecial%2F2015%2Fnewsspec_10857%2Fbbc_news_logo.png%3Fcb%3D1">
            <span>Pinterest</span>
        </a>
    </li>
                            <li class="share__tool share__tool--whatsapp">
        <a href="whatsapp://send?text=BBC%20News%20%7C%20Egypt%20Pharaoh%20statue%20%27not%20Ramses%20II%20but%20different%20ruler%27%20-%20http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218%3Focid%3Dwsnews.chat-apps.in-app-msg.whatsapp.trial.link1_.auin">
            <span>WhatsApp</span>
        </a>
    </li>
                            <li class="share__tool share__tool--linkedin">
        <a href="https://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218&amp;title=Egypt%20Pharaoh%20statue%20%27not%20Ramses%20II%20but%20different%20ruler%27&amp;summary=The%20statue%20pulled%20from%20the%20mud%20in%20Cairo%20may%20in%20fact%20be%20Psamtek%20I%2C%20a%20more%20recent%20ruler.&amp;source=BBC">
            <span>LinkedIn</span>
        </a>
    </li>
            </ul>
</div>

                                                                                                <div class="story-more">
          <div class="group story-alsos more-on-this-story"> <div class="group__header"> <h2 class="group__title">More on this story</h2> </div> <div class="group__body"> <ul class="units-list ">    <li class="unit unit--regular" data-entityid="more-on-this-story#1">  <a href="http://www.bbc.com/news/world-middle-east-39259336" class="unit__link-wrapper"> <div class="unit__body"> <div class="unit__header">  <div class="unit__title">     <span class="cta"> Egypt extracts torso of 'Pharaoh Ramses II' statue from mud </span> </div>    <div class="unit__meta"> <div class="date date--v1" data-seconds="1489421296" data-datetime="13 March 2017" data-timestamp-inserted="true">13 March 2017</div> </div>  </div> </div> </a>  </li>     <li class="unit unit--regular" data-entityid="more-on-this-story#2">  <a href="http://www.bbc.com/news/world-europe-31543713" class="unit__link-wrapper"> <div class="unit__body"> <div class="unit__header">  <div class="unit__title">        
    <span class="icon-new icon-new--video-square-red"><span class="off-screen"> Video</span></span>
    
    
   <span class="cta"> Ancient Egyptian bronze cat salvaged from bin </span> </div>    <div class="unit__meta"> <div class="date date--v1" data-seconds="1424373903" data-datetime="19 February 2015" data-timestamp-inserted="true">19 February 2015</div> </div>  </div> </div> </a>  </li>     <li class="unit unit--regular" data-entityid="more-on-this-story#3">  <a href="http://www.bbc.com/news/world-middle-east-30931369" class="unit__link-wrapper"> <div class="unit__body"> <div class="unit__header">  <div class="unit__title">     <span class="cta"> Egypt inquiry after Tutankhamun's beard glued back on </span> </div>    <div class="unit__meta"> <div class="date date--v1" data-seconds="1421963402" data-datetime="22 January 2015" data-timestamp-inserted="true">22 January 2015</div> </div>  </div> </div> </a>  </li>   </ul> </div> </div>      </div>
                                                                                            
                                                                                                    

    <div id="comp-pattern-library" class="distinct-component-group container-more-from-this-index">
        
            <h2 class="group-title ">
    <a href="http://www.bbc.com/news/world/middle_east" class="group-title__link">Middle East</a>
    
</h2>
<div class="sparrow-container sparrow-columns">
    <div class="sparrow sparrow__3 sparrow__">
        <div class="sparrow-item faux-block-link" data-entityid="more-section#1">
            <div class="sparrow-item__image">
                <div class="responsive-image responsive-image--16by9">
                    
                        <img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" datasrc="http://ichef-1.bbci.co.uk/news/200/cpsprodpb/ED1C/production/_95300706_e110ac68-73b7-4150-b743-bffca47a2551.jpg" class="responsive-image__img responsive-image__img--loading js-image-replace" alt="Hosni Mubarak (April 2016)" width="976" height="549">
                        <!--[if lt IE 9]>
                        <img src="http://ichef-1.bbci.co.uk/news/200/cpsprodpb/ED1C/production/_95300706_e110ac68-73b7-4150-b743-bffca47a2551.jpg" class="js-image-replace" alt="Hosni Mubarak (April 2016)" width="976" height="549" />
                        <![endif]-->
                    
                </div>
            </div>

            <div class="sparrow-item__body">
                <a href="http://www.bbc.com/news/world-middle-east-39378045" class="title-link">
                    
                    <h3 class="title-link__title">
                        
                        <span class="title-link__title-text">Egypt's Hosni Mubarak walks free</span>
                    </h3>
                </a>                <div class="sparrow-item__info">

                    <ul class="mini-info-list">
                        <li class="mini-info-list__item"><div class="date date--v2" data-seconds="1490351762" data-datetime="24 March 2017">24 March 2017</div></li>
                                <li class="mini-info-list__item"><span class="mini-info-list__section-desc off-screen">From the section </span><a href="http://www.bbc.com/news/world/middle_east" class="mini-info-list__section" data-entityid="section-label">Middle East</a></li>
                    </ul>
                </div>
            </div>

            <a href="http://www.bbc.com/news/world-middle-east-39378045" class="faux-block-link__overlay-link" tabindex="-1" aria-hidden="true">Full article Egypt's Hosni Mubarak walks free</a>
        </div>
        <div class="sparrow-item faux-block-link" data-entityid="more-section#2">
            <div class="sparrow-item__image">
                <div class="responsive-image responsive-image--16by9">
                    
                        <img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" datasrc="http://ichef.bbci.co.uk/news/200/cpsprodpb/14C13/production/_95311058_mosul.jpg" class="responsive-image__img responsive-image__img--loading js-image-replace" alt="Residents carry the bodies of several people killed during fights between Iraqi security forces and Islamic State on the western side of Mosul, Iraq, on 24 March, 2017." width="976" height="549">
                        <!--[if lt IE 9]>
                        <img src="http://ichef.bbci.co.uk/news/200/cpsprodpb/14C13/production/_95311058_mosul.jpg" class="js-image-replace" alt="Residents carry the bodies of several people killed during fights between Iraqi security forces and Islamic State on the western side of Mosul, Iraq, on 24 March, 2017." width="976" height="549" />
                        <![endif]-->
                    
                </div>
            </div>

            <div class="sparrow-item__body">
                <a href="http://www.bbc.com/news/world-middle-east-39383989" class="title-link">
                    
                    <h3 class="title-link__title">
                        
                        <span class="title-link__title-text">UN fears 200 died in US-led Mosul strike</span>
                    </h3>
                </a>                <div class="sparrow-item__info">

                    <ul class="mini-info-list">
                        <li class="mini-info-list__item"><div class="date date--v2" data-seconds="1490396076" data-datetime="24 March 2017">24 March 2017</div></li>
                                <li class="mini-info-list__item"><span class="mini-info-list__section-desc off-screen">From the section </span><a href="http://www.bbc.com/news/world/middle_east" class="mini-info-list__section" data-entityid="section-label">Middle East</a></li>
                    </ul>
                </div>
            </div>

            <a href="http://www.bbc.com/news/world-middle-east-39383989" class="faux-block-link__overlay-link" tabindex="-1" aria-hidden="true">Full article UN fears 200 died in US-led Mosul strike</a>
        </div>
        <div class="sparrow-item faux-block-link" data-entityid="more-section#3">
            <div class="sparrow-item__image">
                <div class="responsive-image responsive-image--16by9">
                    
                        <img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" datasrc="http://ichef-1.bbci.co.uk/news/200/cpsprodpb/120B5/production/_95290937_tv038641778-1.jpg" class="responsive-image__img responsive-image__img--loading js-image-replace" alt="the teen in court" width="768" height="432">
                        <!--[if lt IE 9]>
                        <img src="http://ichef-1.bbci.co.uk/news/200/cpsprodpb/120B5/production/_95290937_tv038641778-1.jpg" class="js-image-replace" alt="the teen in court" width="768" height="432" />
                        <![endif]-->
                    
                </div>
            </div>

            <div class="sparrow-item__body">
                <a href="http://www.bbc.com/news/world-us-canada-39369090" class="title-link">
                    
                    <h3 class="title-link__title">
                        
                        <span class="title-link__title-text">Israel holds teen over US bomb threats</span>
                    </h3>
                </a>                <div class="sparrow-item__info">

                    <ul class="mini-info-list">
                        <li class="mini-info-list__item"><div class="date date--v2" data-seconds="1490300277" data-datetime="23 March 2017">23 March 2017</div></li>
                                <li class="mini-info-list__item"><span class="mini-info-list__section-desc off-screen">From the section </span><a href="http://www.bbc.com/news/world/us_and_canada" class="mini-info-list__section" data-entityid="section-label">US &amp; Canada</a></li>
                    </ul>
                </div>
            </div>

            <a href="http://www.bbc.com/news/world-us-canada-39369090" class="faux-block-link__overlay-link" tabindex="-1" aria-hidden="true">Full article Israel holds teen over US bomb threats</a>
        </div>
    </div>
</div>

        
    </div>

                                                                                                    <div id="comp-from-other-news-sites" class="hidden" data-comp-meta="{&quot;id&quot;:&quot;comp-from-other-news-sites&quot;,&quot;type&quot;:&quot;from-other-news-sites&quot;,&quot;handler&quot;:&quot;default&quot;,&quot;deviceGroups&quot;:null,&quot;opts&quot;:{&quot;assetId&quot;:&quot;39298218&quot;,&quot;conditions&quot;:[&quot;is_local_page&quot;],&quot;loading_strategy&quot;:&quot;post_load&quot;,&quot;asset_id&quot;:&quot;world-middle-east-39298218&quot;,&quot;position_info&quot;:{&quot;instanceNo&quot;:1,&quot;positionInRegion&quot;:7,&quot;lastInRegion&quot;:true,&quot;lastOnPage&quot;:false,&quot;column&quot;:&quot;primary_column&quot;}},&quot;template&quot;:&quot;\/component\/from-other-news-sites&quot;}">
        </div>                                
<div id="bbccom_outbrain_ar_5_1_2_3_4" class="bbccom_slot outbrain-ad bbccom_outbrain_slot bbccom_visible" aria-hidden="true">
    <div class="bbccom_advert bbccom_responsive" id="bbccom_outbrain_ar_5" ata9c1m="" hidden="" style="display: none !important;">
        <script type="text/javascript">
            /*<![CDATA[*/
            (function() {
                if (window.bbcdotcom && bbcdotcom.adverts && bbcdotcom.adverts.slotAsync) {
                    bbcdotcom.adverts.slotAsync('outbrain_ar_5', [1,2,3,4]);
                }
            })();
            /*]]>*/
        </script><div class="bbccom_outbrain_container bbccom_outbrain_ar_5"><div class="OUTBRAIN" data-src="http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218" data-widget-id="AR_5" data-ob-template="bbc.com/News"></div><script type="text/javascript">    document.write(decodeURI('%3Cscript src="//widgets.outbrain.com/outbrain.js" type="text/javascript"%3E%3C/script%3E'));</script><script src="http://widgets.outbrain.com/outbrain.js" type="text/javascript"></script></div>
    </div>
</div>

<div id="bbccom_outbrain_ar_7_1_2_3_4" class="bbccom_slot outbrain-ad bbccom_outbrain_slot bbccom_visible" aria-hidden="true">
    <div class="bbccom_advert bbccom_responsive" id="bbccom_outbrain_ar_7" ata9c1m="" hidden="" style="display: none !important;">
        <script type="text/javascript">
            /*<![CDATA[*/
            (function() {
                if (window.bbcdotcom && bbcdotcom.adverts && bbcdotcom.adverts.slotAsync) {
                    bbcdotcom.adverts.slotAsync('outbrain_ar_7', [1,2,3,4]);
                }
            })();
            /*]]>*/
        </script><div class="bbccom_outbrain_container bbccom_outbrain_ar_7"><div class="OUTBRAIN" data-src="http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218" data-widget-id="AR_7" data-ob-template="bbc.com/News"></div><script type="text/javascript">    document.write(decodeURI('%3Cscript src="//widgets.outbrain.com/outbrain.js" type="text/javascript"%3E%3C/script%3E'));</script><script src="http://widgets.outbrain.com/outbrain.js" type="text/javascript"></script></div>
    </div>
</div>

<div id="bbccom_outbrain_ar_8_1_2_3_4" class="bbccom_slot outbrain-ad bbccom_outbrain_slot bbccom_visible" aria-hidden="true">
    <div class="bbccom_advert bbccom_responsive" id="bbccom_outbrain_ar_8" ata9c1m="" hidden="" style="display: none !important;">
        <script type="text/javascript">
            /*<![CDATA[*/
            (function() {
                if (window.bbcdotcom && bbcdotcom.adverts && bbcdotcom.adverts.slotAsync) {
                    bbcdotcom.adverts.slotAsync('outbrain_ar_8', [1,2,3,4]);
                }
            })();
            /*]]>*/
        </script><div class="bbccom_outbrain_container bbccom_outbrain_ar_8"><div class="OUTBRAIN" data-src="http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218" data-widget-id="AR_8" data-ob-template="bbc.com/News"></div><script type="text/javascript">    document.write(decodeURI('%3Cscript src="//widgets.outbrain.com/outbrain.js" type="text/javascript"%3E%3C/script%3E'));</script><script src="http://widgets.outbrain.com/outbrain.js" type="text/javascript"></script></div>
    </div>
</div>
                                        </div>
                                     <div class="column--secondary" role="complementary">
                                                                            <div id="comp-top-stories-promo" class="top-stories-promo">
    <h2 class="top-stories-promo__title">Top Stories</h2>
                    <a href="http://www.bbc.com/news/world-us-canada-39387550" class="top-stories-promo-story" data-asset-id="/news/world-us-canada-39387550" data-entityid="top-stories#1">
        <strong class="top-stories-promo-story__title">Republicans drop Trump healthcare bill</strong>
                    <p class="top-stories-promo-story__summary ">It is seen as a huge blow to Mr Trump, who had pledged to repeal and replace Obamacare.</p>
                    <div class="date date--v2 relative-time" data-seconds="1490395038" data-datetime="24 March 2017" data-timestamp-inserted="true">1 hour ago</div>
    </a>
                    <a href="http://www.bbc.com/news/world-us-canada-39384007" class="top-stories-promo-story" data-asset-id="/news/world-us-canada-39384007" data-entityid="top-stories#3">
        <strong class="top-stories-promo-story__title">How disastrous is this for Trump?</strong>
                    <div class="date date--v2 relative-time" data-seconds="1490395249" data-datetime="24 March 2017" data-timestamp-inserted="true">1 hour ago</div>
    </a>
                    <a href="http://www.bbc.com/news/world-us-canada-39388450" class="top-stories-promo-story" data-asset-id="/news/world-us-canada-39388450" data-entityid="top-stories#5">
        <strong class="top-stories-promo-story__title">Gloats and warnings over failed bill</strong>
                    <div class="date date--v2 relative-time" data-seconds="1490397587" data-datetime="24 March 2017" data-timestamp-inserted="true">23 minutes ago</div>
    </a>
        </div>                                
<div id="bbccom_mpu_4" class="bbccom_slot mpu-ad bbccom_standard_slot bbccom_shut" aria-hidden="true" ata9c1m="" hidden="">
    <div class="bbccom_advert bbccom_shut" id="bbccom_mpu" ata9c1m="" hidden="" style="display: none !important;">
        <script type="text/javascript">
            /*<![CDATA[*/
            (function() {
                if (window.bbcdotcom && bbcdotcom.adverts && bbcdotcom.adverts.slotAsync) {
                    bbcdotcom.adverts.slotAsync('mpu', [4]);
                }
            })();
            /*]]>*/
        </script><a class="bbccom_text" href="http://www.bbc.com/privacy/cookies/international/">Advertisement</a>
    </div>
</div>
                                                            
<div class="features-and-analysis" id="comp-features-and-analysis">
    <h2 class="features-and-analysis__title">
        
        Features
    </h2>
    <div class="features-and-analysis__stories promo-unit-spacer">
        
        <div class="features-and-analysis__story" data-entityid="features-and-analysis#1">
            <a href="http://www.bbc.com/news/world-us-canada-39388610" class="bold-image-promo">
                <div class="bold-image-promo__image">
                            <div class="responsive-image responsive-image--16by9">
                                <div class="responsive-image__inner-for-label"><!-- closed in responsive-image-end -->
                                    <img src="./bbc_files/_95311868_p04xyj0q.jpg" datasrc="http://ichef.bbci.co.uk/news/304/cpsprodpb/1531B/production/_95311868_p04xyj0q.jpg" class="responsive-image__img js-image-replace" alt="Donald Trump" width="1024" height="576" data-highest-encountered-width="270">
                                    <!--[if lt IE 9]>
                                    <img src="http://ichef.bbci.co.uk/news/304/cpsprodpb/1531B/production/_95311868_p04xyj0q.jpg" class="js-image-replace" alt="Donald Trump" width="1024" height="576" />
                                    <![endif]-->
                                    <div class="responsive-image__label" aria-hidden="true">
                                                <span class="icon video"><span class="off-screen"> Video</span></span>
                                                
                                                
                                                
                                    </div>
                                <!-- opened in responsive-image-start --></div>
                            </div>
                </div>
                <h3 class="bold-image-promo__title">Trump's 'Obamacare nightmare' - in his own words</h3>
                <p class="bold-image-promo__summary"> </p>
            </a>
        </div>
        
        
        <div class="features-and-analysis__story" data-entityid="features-and-analysis#2">
            <a href="http://www.bbc.com/news/world-us-canada-39375228" class="bold-image-promo">
                <div class="bold-image-promo__image">
                            <div class="responsive-image responsive-image--16by9">
                                
                                    <img src="./bbc_files/_95296372_pence_976.jpg" datasrc="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/6AE9/production/_95296372_pence_976.jpg" class="responsive-image__img js-image-replace" alt="Mike Pence and Freedom Caucus" width="976" height="549" data-highest-encountered-width="270">
                                    <!--[if lt IE 9]>
                                    <img src="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/6AE9/production/_95296372_pence_976.jpg" class="js-image-replace" alt="Mike Pence and Freedom Caucus" width="976" height="549" />
                                    <![endif]-->
                                
                            </div>
                </div>
                <h3 class="bold-image-promo__title">All-male US health bill photo sparks anger</h3>
                <p class="bold-image-promo__summary">The picture puts a spotlight on benefits being stripped out of latest healthcare bill revisions.</p>
            </a>
        </div>
        
        
        <div class="features-and-analysis__story" data-entityid="features-and-analysis#3">
            <a href="http://www.bbc.com/news/world-us-canada-39371204" class="bold-image-promo">
                <div class="bold-image-promo__image">
                            <div class="responsive-image responsive-image--16by9">
                                
                                    <img src="./bbc_files/_95277349_beristain.jpg" datasrc="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/170A9/production/_95277349_beristain.jpg" class="responsive-image__img js-image-replace" alt="Trump supporter family" width="800" height="450" data-highest-encountered-width="270">
                                    <!--[if lt IE 9]>
                                    <img src="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/170A9/production/_95277349_beristain.jpg" class="js-image-replace" alt="Trump supporter family" width="800" height="450" />
                                    <![endif]-->
                                
                            </div>
                </div>
                <h3 class="bold-image-promo__title">Trump voter's husband faces deportation</h3>
                <p class="bold-image-promo__summary"> </p>
            </a>
        </div>
        
        
        <div class="features-and-analysis__story" data-entityid="features-and-analysis#4">
            <a href="http://www.bbc.com/news/magazine-37024334" class="bold-image-promo">
                <div class="bold-image-promo__image">
                            <div class="responsive-image responsive-image--16by9">
                                
                                    <img src="./bbc_files/_95305144_stripe.jpg" datasrc="http://ichef.bbci.co.uk/news/304/cpsprodpb/AC76/production/_95305144_stripe.jpg" class="responsive-image__img js-image-replace" alt="Jenna embraces a woman who relinquished her child" width="976" height="549" data-highest-encountered-width="270">
                                    <!--[if lt IE 9]>
                                    <img src="http://ichef.bbci.co.uk/news/304/cpsprodpb/AC76/production/_95305144_stripe.jpg" class="js-image-replace" alt="Jenna embraces a woman who relinquished her child" width="976" height="549" />
                                    <![endif]-->
                                
                            </div>
                </div>
                <h3 class="bold-image-promo__title">The adopted girl claimed by 50 birth families</h3>
                <p class="bold-image-promo__summary"> </p>
            </a>
        </div>
        
        
        <div class="features-and-analysis__story" data-entityid="features-and-analysis#5">
            <a href="http://www.bbc.com/news/world-europe-39375966" class="bold-image-promo">
                <div class="bold-image-promo__image">
                            <div class="responsive-image responsive-image--16by9">
                                
                                    <img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" datasrc="http://ichef.bbci.co.uk/news/304/cpsprodpb/14865/production/_95296048_9f155aba-24aa-4691-85ea-f8ac3cff2f42.jpg" class="responsive-image__img responsive-image__img--loading js-image-replace" alt="A British flag flies in front of a banner to mark the 60th anniversary of the EU at the European Commission&#39;s headquarters in Brussels. Photo: 21 March 2017" width="976" height="549">
                                    <!--[if lt IE 9]>
                                    <img src="http://ichef.bbci.co.uk/news/304/cpsprodpb/14865/production/_95296048_9f155aba-24aa-4691-85ea-f8ac3cff2f42.jpg" class="js-image-replace" alt="A British flag flies in front of a banner to mark the 60th anniversary of the EU at the European Commission's headquarters in Brussels. Photo: 21 March 2017" width="976" height="549" />
                                    <![endif]-->
                                
                            </div>
                </div>
                <h3 class="bold-image-promo__title">EU 'not in hostile mood' as Brexit talks beckon</h3>
                <p class="bold-image-promo__summary"> </p>
            </a>
        </div>
        
        
        <div class="features-and-analysis__story" data-entityid="features-and-analysis#6">
            <a href="http://www.bbc.com/news/world-asia-39361984" class="bold-image-promo">
                <div class="bold-image-promo__image">
                            <div class="responsive-image responsive-image--16by9">
                                
                                    <img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" datasrc="http://ichef.bbci.co.uk/news/304/cpsprodpb/E680/production/_95280095_4abb443d-1c90-4f4f-97bb-4cb67b096494.jpg" class="responsive-image__img responsive-image__img--loading js-image-replace" alt="Picture of Kim Jong-un piggybacking a military officer in a photo released on 19 March 2017" width="976" height="549">
                                    <!--[if lt IE 9]>
                                    <img src="http://ichef.bbci.co.uk/news/304/cpsprodpb/E680/production/_95280095_4abb443d-1c90-4f4f-97bb-4cb67b096494.jpg" class="js-image-replace" alt="Picture of Kim Jong-un piggybacking a military officer in a photo released on 19 March 2017" width="976" height="549" />
                                    <![endif]-->
                                
                            </div>
                </div>
                <h3 class="bold-image-promo__title">Who dares piggyback on a dictator?</h3>
                <p class="bold-image-promo__summary"> </p>
            </a>
        </div>
        
        
        <div class="features-and-analysis__story" data-entityid="features-and-analysis#7">
            <a href="http://www.bbc.com/news/world-middle-east-39364784" class="bold-image-promo">
                <div class="bold-image-promo__image">
                            <div class="responsive-image responsive-image--16by9">
                                <div class="responsive-image__inner-for-label"><!-- closed in responsive-image-end -->
                                    <img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" datasrc="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/FB70/production/_95286346_p04xscqv.jpg" class="responsive-image__img responsive-image__img--loading js-image-replace" alt="Damaged section of Palmyra&#39;s Roman-era theatre" width="976" height="549">
                                    <!--[if lt IE 9]>
                                    <img src="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/FB70/production/_95286346_p04xscqv.jpg" class="js-image-replace" alt="Damaged section of Palmyra's Roman-era theatre" width="976" height="549" />
                                    <![endif]-->
                                    <div class="responsive-image__label" aria-hidden="true">
                                                <span class="icon video"><span class="off-screen"> Video</span></span>
                                                
                                                
                                                
                                    </div>
                                <!-- opened in responsive-image-start --></div>
                            </div>
                </div>
                <h3 class="bold-image-promo__title">IS leaves trail of destruction in Palmyra</h3>
                <p class="bold-image-promo__summary"> </p>
            </a>
        </div>
        
        
        <div class="features-and-analysis__story" data-entityid="features-and-analysis#8">
            <a href="http://www.bbc.com/news/in-pictures-39353541" class="bold-image-promo">
                <div class="bold-image-promo__image">
                            <div class="responsive-image responsive-image--16by9">
                                
                                    <img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" datasrc="http://ichef.bbci.co.uk/news/304/cpsprodpb/F420/production/_95269426_1024-10.-mode2.jpg" class="responsive-image__img responsive-image__img--loading js-image-replace" alt="Graffiti art by Mode 2" width="976" height="549">
                                    <!--[if lt IE 9]>
                                    <img src="http://ichef.bbci.co.uk/news/304/cpsprodpb/F420/production/_95269426_1024-10.-mode2.jpg" class="js-image-replace" alt="Graffiti art by Mode 2" width="976" height="549" />
                                    <![endif]-->
                                
                            </div>
                </div>
                <h3 class="bold-image-promo__title">The evolution of graffiti, from tagging to intricate art</h3>
                <p class="bold-image-promo__summary"> </p>
            </a>
        </div>
        
        
        <div class="features-and-analysis__story" data-entityid="features-and-analysis#9">
            <a href="http://www.bbc.com/news/magazine-39366589" class="bold-image-promo">
                <div class="bold-image-promo__image">
                            <div class="responsive-image responsive-image--16by9">
                                
                                    <img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" datasrc="http://ichef.bbci.co.uk/news/304/cpsprodpb/4810/production/_95284481_muppet.jpg" class="responsive-image__img responsive-image__img--loading js-image-replace" alt="Muppet" width="976" height="549">
                                    <!--[if lt IE 9]>
                                    <img src="http://ichef.bbci.co.uk/news/304/cpsprodpb/4810/production/_95284481_muppet.jpg" class="js-image-replace" alt="Muppet" width="976" height="549" />
                                    <![endif]-->
                                
                            </div>
                </div>
                <h3 class="bold-image-promo__title">Weekly quiz: What's special about Sesame St's new muppet?</h3>
                <p class="bold-image-promo__summary"> </p>
            </a>
        </div>
        
    </div>
</div>
                                
<div id="bbccom_native_1_2_3_4" class="bbccom_slot native-ad bbccom_standard_slot" ata9c1m="" hidden="">
    <div class="bbccom_advert" id="bbccom_native" ata9c1m="" hidden="" style="display: none !important;">
        <script type="text/javascript">
            /*<![CDATA[*/
            (function() {
                if (window.bbcdotcom && bbcdotcom.adverts && bbcdotcom.adverts.slotAsync) {
                    bbcdotcom.adverts.slotAsync('native', [1,2,3,4]);
                }
            })();
            /*]]>*/
        </script>
    </div>
</div>
                                                                    <div id="comp-most-popular" class="most-popular">
    <h2 class="most-popular__title">Most Popular<span class="off-screen"> popular</span></h2>
            <ul class="most-popular__header__tabs" role="tablist">
            <li class="most-popular__header__tabs--read open" id="most-popular__tab-1" role="presentation"><a href="http://www.bbc.com/news/world-middle-east-39298218#" role="tab" tabindex="0">Read<span class="off-screen"> selected</span></a></li>
            <li class="most-popular__header__tabs--watched" id="most-popular__tab-2" role="presentation"><a href="http://www.bbc.com/news/world-middle-east-39298218#" role="tab" tabindex="-1">Watched</a></li>
        </ul>
        <div class="most-popular__panels">
                <div class="most-popular__list-container panel-1 open" aria-labelledby="most-popular__tab-1" role="tabpanel">
                        <h3 class="off-screen">Most read</h3>
                        <ul class="most-popular__list panel-read collection">
                <li class="most-popular-list-item column-1" data-entityid="most-popular-read#1">
        <a href="http://www.bbc.com/news/world-us-canada-39387550" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">1</span>
            <span class="most-popular-list-item__headline">Republicans drop Trump healthcare bill</span>
        </a>
            </li>
        <li class="most-popular-list-item column-1" data-entityid="most-popular-read#2">
        <a href="http://www.bbc.com/news/world-us-canada-39384007" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">2</span>
            <span class="most-popular-list-item__headline">How disastrous for Trump is healthcare collapse?</span>
        </a>
            </li>
        <li class="most-popular-list-item column-1" data-entityid="most-popular-read#3">
        <a href="http://www.bbc.com/news/world-us-canada-39388450" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">3</span>
            <span class="most-popular-list-item__headline">Gloats and warnings as 'Trumpcare' falls</span>
        </a>
            </li>
        <li class="most-popular-list-item column-1" data-entityid="most-popular-read#4">
        <a href="http://www.bbc.com/news/world-us-canada-39384008" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">4</span>
            <span class="most-popular-list-item__headline">Are DC's girls really going missing?</span>
        </a>
            </li>
        <li class="most-popular-list-item column-1" data-entityid="most-popular-read#5">
        <a href="http://www.bbc.com/news/world-asia-39361984" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">5</span>
            <span class="most-popular-list-item__headline">Who dares to piggyback on Kim Jong-un?</span>
        </a>
            </li>
        <li class="most-popular-list-item column-2" data-entityid="most-popular-read#6">
        <a href="http://www.bbc.com/news/world-europe-39383988" class="most-popular-list-item__link column-2--first-item">
            <span class="most-popular-list-item__rank">6</span>
            <span class="most-popular-list-item__headline">Naked people kill sheep at Auschwitz</span>
        </a>
            </li>
        <li class="most-popular-list-item column-2" data-entityid="most-popular-read#7">
        <a href="http://www.bbc.com/news/magazine-37024334" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">7</span>
            <span class="most-popular-list-item__headline">The adopted girl claimed by 50 birth families</span>
        </a>
            </li>
        <li class="most-popular-list-item column-2" data-entityid="most-popular-read#8">
        <a href="http://www.bbc.com/news/live/uk-39355505" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">8</span>
            <span class="most-popular-list-item__headline">As it happened: Coverage of London attacks</span>
        </a>
            </li>
        <li class="most-popular-list-item column-2" data-entityid="most-popular-read#9">
        <a href="http://www.bbc.com/news/world-us-canada-39375228" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">9</span>
            <span class="most-popular-list-item__headline">All-male US health bill photo sparks anger</span>
        </a>
            </li>
        <li class="most-popular-list-item column-2" data-entityid="most-popular-read#10">
        <a href="http://www.bbc.com/news/world-europe-39379724" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">10</span>
            <span class="most-popular-list-item__headline">Crash families angered by pilot's father</span>
        </a>
            </li>
    </ul>
        </div>
                        <div class="most-popular__list-container panel-2 closed" aria-labelledby="most-popular__tab-2" role="tabpanel">
                        <h3 class="off-screen">Most watched</h3>
                        <ul class="most-popular__list panel-watched collection">
                <li class="most-popular-list-item column-1" data-entityid="most-popular-watched#1">
        <a href="http://www.bbc.com/news/uk-39385007" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">1</span>
            <span class="most-popular-list-item__headline">Ryan: 'We came really close today'</span>
        </a>
            </li>
        <li class="most-popular-list-item column-1" data-entityid="most-popular-watched#2">
        <a href="http://www.bbc.com/news/world-us-canada-39388610" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">2</span>
            <span class="most-popular-list-item__headline">A year of Trump Obamacare promises</span>
        </a>
            </li>
        <li class="most-popular-list-item column-1" data-entityid="most-popular-watched#3">
        <a href="http://www.bbc.com/news/uk-39377968" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">3</span>
            <span class="most-popular-list-item__headline">Bridge victim 'was to get wedding proposal'</span>
        </a>
            </li>
        <li class="most-popular-list-item column-1" data-entityid="most-popular-watched#4">
        <a href="http://www.bbc.com/news/uk-england-39350922" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">4</span>
            <span class="most-popular-list-item__headline">The woman with 'butterfly skin'</span>
        </a>
            </li>
        <li class="most-popular-list-item column-1" data-entityid="most-popular-watched#5">
        <a href="http://www.bbc.com/news/magazine-39284294" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">5</span>
            <span class="most-popular-list-item__headline">Will circular runways ever take off?</span>
        </a>
            </li>
        <li class="most-popular-list-item column-2" data-entityid="most-popular-watched#6">
        <a href="http://www.bbc.com/news/world-middle-east-39364784" class="most-popular-list-item__link column-2--first-item">
            <span class="most-popular-list-item__rank">6</span>
            <span class="most-popular-list-item__headline">IS leaves trail of destruction in Palmyra</span>
        </a>
            </li>
        <li class="most-popular-list-item column-2" data-entityid="most-popular-watched#7">
        <a href="http://www.bbc.com/news/10462520" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">7</span>
            <span class="most-popular-list-item__headline">One-minute World News</span>
        </a>
            </li>
        <li class="most-popular-list-item column-2" data-entityid="most-popular-watched#8">
        <a href="http://www.bbc.com/news/world-middle-east-39382250" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">8</span>
            <span class="most-popular-list-item__headline">High tensions in the battle for Mosul</span>
        </a>
            </li>
        <li class="most-popular-list-item column-2" data-entityid="most-popular-watched#9">
        <a href="http://www.bbc.com/news/uk-england-essex-39350942" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">9</span>
            <span class="most-popular-list-item__headline">Car modifications 'caused pair's deaths'</span>
        </a>
            </li>
        <li class="most-popular-list-item column-2" data-entityid="most-popular-watched#10">
        <a href="http://www.bbc.com/news/science-environment-39355424" class="most-popular-list-item__link ">
            <span class="most-popular-list-item__rank">10</span>
            <span class="most-popular-list-item__headline">Nasa error: Schoolboy finds data flaw</span>
        </a>
            </li>
    </ul>
        </div>
            </div>
</div>

                                
<div id="bbccom_mpu_bottom_1_2_3_4" class="bbccom_slot mpu-bottom-ad bbccom_standard_slot bbccom_shut" aria-hidden="true">
    <div class="bbccom_advert bbccom_shut" id="bbccom_mpu_bottom" ata9c1m="" hidden="" style="display: none !important;">
        <script type="text/javascript">
            /*<![CDATA[*/
            (function() {
                if (window.bbcdotcom && bbcdotcom.adverts && bbcdotcom.adverts.slotAsync) {
                    bbcdotcom.adverts.slotAsync('mpu_bottom', [1,2,3,4]);
                }
            })();
            /*]]>*/
        </script><a class="bbccom_text" href="http://www.bbc.com/privacy/cookies/international/">Advertisement</a>
    </div>
</div>

<div id="bbccom_outbrain_ar_9_1_2_3_4" class="bbccom_slot outbrain-ad bbccom_outbrain_slot bbccom_visible" aria-hidden="true">
    <div class="bbccom_advert bbccom_responsive" id="bbccom_outbrain_ar_9" ata9c1m="" hidden="" style="display: none !important;">
        <script type="text/javascript">
            /*<![CDATA[*/
            (function() {
                if (window.bbcdotcom && bbcdotcom.adverts && bbcdotcom.adverts.slotAsync) {
                    bbcdotcom.adverts.slotAsync('outbrain_ar_9', [1,2,3,4]);
                }
            })();
            /*]]>*/
        </script><div class="bbccom_outbrain_container bbccom_outbrain_ar_9"><div class="OUTBRAIN" data-src="http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-middle-east-39298218" data-widget-id="AR_9" data-ob-template="bbc.com/News"></div><script type="text/javascript">    document.write(decodeURI('%3Cscript src="//widgets.outbrain.com/outbrain.js" type="text/javascript"%3E%3C/script%3E'));</script><script src="http://widgets.outbrain.com/outbrain.js" type="text/javascript"></script></div>
    </div>
</div>

<div id="bbccom_adsense_1_2_3_4" class="bbccom_slot adsense-ad bbccom_adsense_slot" aria-hidden="true" ata9c1m="" hidden="" style="display: none !important;">
    <div class="bbccom_advert" id="bbccom_adsense" ata9c1m="" hidden="" style="display: none !important;">
        <script type="text/javascript">
            /*<![CDATA[*/
            (function() {
                if (window.bbcdotcom && bbcdotcom.adverts && bbcdotcom.adverts.slotAsync) {
                    bbcdotcom.adverts.slotAsync('adsense', [1,2,3,4]);
                }
            })();
            /*]]>*/
        </script><script type="text/javascript" src="./bbc_files/show_ads.js"></script><iframe style="display: none !important;" data-ad-client="ca-bbccom" id="google_esf" name="google_esf" src="./bbc_files/zrt_lookup.html" hidden=""></iframe><script src="https://pagead2.googlesyndication.com/pagead/js/r20170320/r20170110/show_ads_impl.js"></script>
    </div>
</div>

<div id="bbccom_inread_1_2_3_4" class="bbccom_slot inread bbccom_inread_slot" aria-hidden="true">
    <div class="bbccom_advert" id="bbccom_inread" ata9c1m="" hidden="" style="display: none !important;">
        <script type="text/javascript">
            /*<![CDATA[*/
            (function() {
                if (window.bbcdotcom && bbcdotcom.adverts && bbcdotcom.adverts.slotAsync) {
                    bbcdotcom.adverts.slotAsync('inread', [1,2,3,4]);
                }
            })();
            /*]]>*/
        </script>
    </div>
</div>
                                        </div>
             </div>          </div> </div>      </div> 
   

<div id="core-navigation" class="navigation--footer">
    <h2 class="navigation--footer__heading">News navigation</h2>

            <nav id="secondary-navigation--bottom" class="secondary-navigation--bottom" role="navigation" aria-label="World">
            <a class="secondary-navigation__title navigation-arrow " href="http://www.bbc.com/news/world"><span>World</span></a>
                            <span class="navigation-core-title"><span>Sections</span></span>
                <ul class="secondary-navigation--bottom__toplevel">
                                                            <li>
                        <a href="http://www.bbc.com/news/world/africa"><span>Africa</span></a>
                                            </li>
                                        <li>
                        <a href="http://www.bbc.com/news/world/asia"><span>Asia</span></a>
                                            </li>
                                        <li>
                        <a href="http://www.bbc.com/news/world/australia"><span>Australia</span></a>
                                            </li>
                                        <li>
                        <a href="http://www.bbc.com/news/world/europe"><span>Europe</span></a>
                                            </li>
                                        <li>
                        <a href="http://www.bbc.com/news/world/latin_america"><span>Latin America</span></a>
                                            </li>
                                        <li class="selected">
                        <a href="http://www.bbc.com/news/world/middle_east"><span>Middle East</span></a>
                         <span class="off-screen">selected</span>                    </li>
                                    </ul>
                    </nav>
    
    <nav id="navigation--bottom" class="navigation navigation--bottom core--with-secondary" role="navigation" aria-label="News">
                <ul class="navigation--bottom__toplevel">
                        <li class="">
                    <a href="http://www.bbc.com/news" class="">
                        <span>Home</span>
                    </a>
                                                        </li>
                            <li class="">
                    <a href="http://www.bbc.com/news/video_and_audio/headlines" class="">
                        <span>Video</span>
                    </a>
                                                        </li>
                            <li class="selected navigation-list-item--open">
                    <a href="http://www.bbc.com/news/world" data-panel-id="js-navigation-panel-World" class="navigation-arrow navigation-arrow--open">
                        <span>World</span>
                    </a>
                     <span class="off-screen">selected</span>                                            <div class="navigation-panel js-navigation-panel-World">
                            <div class="navigation-panel__content">
                                <ul class="navigation-panel-secondary">
                                    <li><a href="http://www.bbc.com/news/world"><span>World Home</span></a></li>
                                                                                                                    <li>
                                            <a href="http://www.bbc.com/news/world/africa"><span>Africa</span></a>                                        </li>
                                                                                                                                                            <li>
                                            <a href="http://www.bbc.com/news/world/asia"><span>Asia</span></a>                                        </li>
                                                                                                                                                            <li>
                                            <a href="http://www.bbc.com/news/world/australia"><span>Australia</span></a>                                        </li>
                                                                                                                                                            <li>
                                            <a href="http://www.bbc.com/news/world/europe"><span>Europe</span></a>                                        </li>
                                                                                                                                                            <li>
                                            <a href="http://www.bbc.com/news/world/latin_america"><span>Latin America</span></a>                                        </li>
                                                                                                                                                            <li class="selected">
                                            <a href="http://www.bbc.com/news/world/middle_east"><span>Middle East</span></a> <span class="off-screen">selected</span>                                        </li>
                                                                                                            </ul>
                            </div>
                        </div>
                                    </li>
                            <li class="">
                    <a href="http://www.bbc.com/news/world/us_and_canada" data-panel-id="js-navigation-panel-US___Canada" class="navigation-arrow">
                        <span>US &amp; Canada</span>
                    </a>
                                                                <div class="navigation-panel navigation-panel--closed js-navigation-panel-US___Canada">
                            <div class="navigation-panel__content">
                                <ul class="navigation-panel-secondary">
                                    <li><a href="http://www.bbc.com/news/world/us_and_canada"><span>US &amp; Canada Home</span></a></li>
                                                                                                                                                </ul>
                            </div>
                        </div>
                                    </li>
                            <li class="">
                    <a href="http://www.bbc.com/news/uk" data-panel-id="js-navigation-panel-UK" class="navigation-arrow">
                        <span>UK</span>
                    </a>
                                                                <div class="navigation-panel navigation-panel--closed js-navigation-panel-UK">
                            <div class="navigation-panel__content">
                                <ul class="navigation-panel-secondary">
                                    <li><a href="http://www.bbc.com/news/uk"><span>UK Home</span></a></li>
                                                                                                                    <li>
                                            <a href="http://www.bbc.com/news/england"><span>England</span></a>                                        </li>
                                                                                                                                                            <li>
                                            <a href="http://www.bbc.com/news/northern_ireland"><span>N. Ireland</span></a>                                        </li>
                                                                                                                                                            <li>
                                            <a href="http://www.bbc.com/news/scotland"><span>Scotland</span></a>                                        </li>
                                                                                                                                                            <li>
                                            <a href="http://www.bbc.com/news/wales"><span>Wales</span></a>                                        </li>
                                                                                                                                                            <li>
                                            <a href="http://www.bbc.com/news/politics"><span>Politics</span></a>                                        </li>
                                                                                                            </ul>
                            </div>
                        </div>
                                    </li>
                            <li class="">
                    <a href="http://www.bbc.com/news/business" data-panel-id="js-navigation-panel-Business" class="navigation-arrow">
                        <span>Business</span>
                    </a>
                                                                <div class="navigation-panel navigation-panel--closed js-navigation-panel-Business">
                            <div class="navigation-panel__content">
                                <ul class="navigation-panel-secondary">
                                    <li><a href="http://www.bbc.com/news/business"><span>Business Home</span></a></li>
                                                                                                                    <li>
                                            <a href="http://www.bbc.co.uk/news/business/market_data"><span>Market Data</span></a>                                        </li>
                                                                                                                                                            <li>
                                            <a href="http://www.bbc.com/news/business/markets"><span>Markets</span></a>                                        </li>
                                                                                                                                                            <li>
                                            <a href="http://www.bbc.com/news/business/economy"><span>Economy</span></a>                                        </li>
                                                                                                                                                            <li>
                                            <a href="http://www.bbc.com/news/business/companies"><span>Companies</span></a>                                        </li>
                                                                                                                                                            <li>
                                            <a href="http://www.bbc.com/news/business-22434141"><span>Entrepreneurship</span></a>                                        </li>
                                                                                                                                                            <li>
                                            <a href="http://www.bbc.com/news/business-11428889"><span>Technology of Business</span></a>                                        </li>
                                                                                                                                                            <li>
                                            <a href="http://www.bbc.com/news/business/business_of_sport"><span>Business of Sport</span></a>                                        </li>
                                                                                                                                                            <li>
                                            <a href="http://www.bbc.com/news/business-12686570"><span>Global Education</span></a>                                        </li>
                                                                                                            </ul>
                            </div>
                        </div>
                                    </li>
                            <li class="">
                    <a href="http://www.bbc.com/news/technology" class="">
                        <span>Tech</span>
                    </a>
                                                        </li>
                            <li class="">
                    <a href="http://www.bbc.com/news/science_and_environment" class="">
                        <span>Science</span>
                    </a>
                                                        </li>
                            <li class="">
                    <a href="http://www.bbc.com/news/magazine" class="">
                        <span>Magazine</span>
                    </a>
                                                        </li>
                            <li class="">
                    <a href="http://www.bbc.com/news/entertainment_and_arts" class="">
                        <span>Entertainment &amp; Arts</span>
                    </a>
                                                        </li>
                            <li class="">
                    <a href="http://www.bbc.com/news/health" class="">
                        <span>Health</span>
                    </a>
                                                        </li>
                            <li class="">
                    <a href="http://www.bbc.com/news/in_pictures" class="">
                        <span>In Pictures</span>
                    </a>
                                                        </li>
                            <li class="">
                    <a href="http://www.bbc.com/news/also_in_the_news" class="">
                        <span>Also in the News</span>
                    </a>
                                                        </li>
                            <li class="">
                    <a href="http://www.bbc.com/news/special_reports" class="">
                        <span>Special Reports</span>
                    </a>
                                                        </li>
                            <li class="">
                    <a href="http://www.bbc.com/news/world_radio_and_tv" class="">
                        <span>World News TV</span>
                    </a>
                                                        </li>
                            <li class="">
                    <a href="http://www.bbc.com/news/explainers" class="">
                        <span>Explainers</span>
                    </a>
                                                        </li>
                            <li class="">
                    <a href="http://www.bbc.com/news/the_reporters" class="">
                        <span>The Reporters</span>
                    </a>
                                                        </li>
                            <li class="">
                    <a href="http://www.bbc.com/news/have_your_say" class="">
                        <span>Have Your Say</span>
                    </a>
                                                        </li>
                    </ul>
    </nav>
</div>
   

    <div id="comp-pattern-library-2" class="distinct-component-group ">
        
            <div id="bbc-news-services" class="blue-tit" role="navigation" aria-label="BBC News Services">
    <div class="blue-tit__inner">
        <h2 class="blue-tit__title">BBC News Services</h2>
        <ul class="blue-tit__list">
            <li class="blue-tit__list-item">
                <a href="http://www.bbc.co.uk/news/10628994" class="blue-tit__list-item-link mobile">On your mobile</a>
            </li>
            <li class="blue-tit__list-item">
                <a href="http://www.bbc.co.uk/news/help-17655000" class="blue-tit__list-item-link connected-tv">On your connected tv</a>
            </li>
            <li class="blue-tit__list-item">
                <a href="http://www.bbc.co.uk/news/10628323" class="blue-tit__list-item-link newsletter">Get news alerts</a>
            </li>
            <li class="blue-tit__list-item">
                <a href="http://www.bbc.co.uk/news/20039682" class="blue-tit__list-item-link contact-us">Contact BBC News</a>
            </li>
        </ul>
    </div>
</div>

        
    </div>

  </div><!-- closes #site-container -->      </div> <div id="orb-footer" class="orb-footer orb-footer-grey b-footer--grey--white orb-location-w">  <div id="navp-orb-footer-promo" class="orb-footer-grey"></div>  <aside role="complementary"> <div id="orb-aside" class="orb-nav-sec b-r b-g-p"> <div class="orb-footer-inner" role="navigation"> <h2 class="orb-footer-lead">Explore the BBC</h2> <div class="orb-footer-primary-links"> <ul>        <li class="orb-nav-newsdotcom orb-w"> <a href="http://www.bbc.com/news/">News</a> </li>    <li class="orb-nav-sport"> <a href="http://www.bbc.com/sport/">Sport</a> </li>    <li class="orb-nav-weather"> <a href="http://www.bbc.com/weather/">Weather</a> </li>    <li class="orb-nav-shop orb-w"> <a href="http://shop.bbc.com/">Shop</a> </li>    <li class="orb-nav-earthdotcom orb-w"> <a href="http://www.bbc.com/earth/">Earth</a> </li>    <li class="orb-nav-travel-dotcom orb-w"> <a href="http://www.bbc.com/travel/">Travel</a> </li>    <li class="orb-nav-capital orb-w"> <a href="http://www.bbc.com/capital/">Capital</a> </li>        <li class="orb-nav-culture orb-w"> <a href="http://www.bbc.com/culture/">Culture</a> </li>    <li class="orb-nav-autos orb-w"> <a href="http://www.bbc.com/autos/">Autos</a> </li>    <li class="orb-nav-future orb-w"> <a href="http://www.bbc.com/future/">Future</a> </li>    <li class="orb-nav-tv"> <a href="http://www.bbc.com/tv/">TV</a> </li>    <li class="orb-nav-radio"> <a href="http://www.bbc.com/radio/">Radio</a> </li>    <li class="orb-nav-cbbc"> <a href="http://www.bbc.com/cbbc">CBBC</a> </li>    <li class="orb-nav-cbeebies"> <a href="http://www.bbc.com/cbeebies">CBeebies</a> </li>    <li class="orb-nav-food"> <a href="http://www.bbc.com/food/">Food</a> </li>    <li> <a href="http://www.bbc.com/iwonder">iWonder</a> </li>    <li> <a href="http://www.bbc.com/education">Bitesize</a> </li>        <li class="orb-nav-music"> <a href="http://www.bbc.com/music/">Music</a> </li>        <li class="orb-nav-arts"> <a href="http://www.bbc.com/arts/">Arts</a> </li>    <li class="orb-nav-makeitdigital"> <a href="http://www.bbc.com/makeitdigital">Make It Digital</a> </li>    <li> <a href="http://www.bbc.com/taster">Taster</a> </li>    <li class="orb-nav-nature orb-w"> <a href="http://www.bbc.com/nature/">Nature</a> </li>    <li class="orb-nav-local"> <a href="http://www.bbc.com/local/">Local</a> </li>    </ul> </div> </div> </div> </aside> <footer role="contentinfo"> <div id="orb-contentinfo" class="orb-nav-sec b-r b-g-p"> <div class="orb-footer-inner"> <ul>        <li> <a href="http://www.bbc.com/terms/">Terms of Use</a> </li>    <li> <a href="http://www.bbc.com/aboutthebbc/">About the BBC</a> </li>    <li> <a href="http://www.bbc.com/privacy/">Privacy Policy</a> </li>    <li> <a href="http://www.bbc.com/privacy/cookies/about">Cookies</a> </li>    <li> <a href="http://www.bbc.com/accessibility/">Accessibility Help</a> </li>    <li> <a href="http://www.bbc.com/guidance/">Parental Guidance</a> </li>    <li> <a href="http://www.bbc.com/contact/">Contact the BBC</a> </li>        <li class=" orb-w"> <a href="http://advertising.bbcworldwide.com/">Advertise with us</a> </li>    <li class=" orb-w"> <a href="http://www.bbc.com/privacy/cookies/international/">Ad choices</a> </li>    </ul> <small> <span class="orb-hilight">Copyright © 2017 BBC.</span> The BBC is not responsible for the content of external sites. <a href="http://www.bbc.com/help/web/links/" class="orb-hilight">Read about our approach to external linking.</a> </small> </div> </div> </footer> </div>     <!-- BBCDOTCOM bodyLast --><div class="bbccom_display_none"><script type="text/javascript"> /*<![CDATA[*/ if (window.bbcdotcom && window.bbcdotcom.analytics) { bbcdotcom.analytics.page(); } /*]]>*/ </script><noscript>&lt;img src="//ssc.api.bbc.com/?c1=2&amp;c2=19293874&amp;ns_site=bbc&amp;name=news.world-middle-east-39298218" height="1" width="1" alt=""&gt;</noscript><script type="text/javascript"> /*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.currencyProviders) { bbcdotcom.currencyProviders.write(); } /*]]>*/ </script><script type="text/javascript"> /*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.currencyProviders) { bbcdotcom.currencyProviders.postWrite(); } /*]]>*/ </script><script type="text/javascript"> /*<![CDATA[*/ /** * ASYNC waits to make any gpt requests until the bottom of the page */ if ( window.bbcdotcom && bbcdotcom.data && bbcdotcom.data.ads && bbcdotcom.data.ads == 1 && bbcdotcom.config && bbcdotcom.config.isAsync && bbcdotcom.config.isAsync() ) { (function () { var gads = document.createElement('script'); gads.async = true; gads.type = 'text/javascript'; var useSSL = 'https:' == document.location.protocol; gads.src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js'; var node = document.getElementsByTagName('script')[0]; node.parentNode.insertBefore(gads, node); })(); } /*]]>*/ </script><script type="text/javascript"> /*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.data && bbcdotcom.data.stats && bbcdotcom.data.stats === 1 && bbcdotcom.utils && window.location.pathname === '/' && window.bbccookies && bbccookies.readPolicy('performance') ) { var wwhpEdition = bbcdotcom.utils.getMetaPropertyContent('wwhp-edition'); var _sf_async_config={}; /** CONFIGURATION START **/ _sf_async_config.uid = 50924; _sf_async_config.domain = "bbc.co.uk"; _sf_async_config.title = "Homepage"+(wwhpEdition !== '' ? ' - '+wwhpEdition : ''); _sf_async_config.sections = "Homepage"+(wwhpEdition !== '' ? ', Homepage - '+wwhpEdition : ''); _sf_async_config.region = wwhpEdition; _sf_async_config.path = "/"+(wwhpEdition !== '' ? '?'+wwhpEdition : ''); /** CONFIGURATION END **/ (function(){ function loadChartbeat() { window._sf_endpt=(new Date()).getTime(); var e = document.createElement("script"); e.setAttribute("language", "javascript"); e.setAttribute("type", "text/javascript"); e.setAttribute('src', '//static.chartbeat.com/js/chartbeat.js'); document.body.appendChild(e); } var oldonload = window.onload; window.onload = (typeof window.onload != "function") ? loadChartbeat : function() { oldonload(); loadChartbeat(); }; })(); } /*]]>*/ </script></div><!-- BBCDOTCOM all code in page -->  <script type="text/javascript" id="orb-js-script" data-assetpath="http://static.bbci.co.uk/frameworks/barlesque/3.20.5/orb/4/" src="./bbc_files/orb.min.js"></script>  <script type="text/javascript"> (function() {
    'use strict';

    var promoManager = {
        url: '',
        promoLoaded: false,
                makeUrl: function (theme, site, win) {
            var loc = win? win.location : window.location,
                proto = loc.protocol,
                host = loc.host,
                url = proto + '//' + ((proto.match(/s:/i) && !host.match(/^www\.(int|test)\./i))? 'ssl.' : 'www.'),
                themes = ['light', 'dark'];

            if ( host.match(/^(?:www|ssl|m)\.(int|test|stage|live)\.bbc\./i) ) {
                url += RegExp.$1 + '.';
            }
            else if ( host.match(/^pal\.sandbox\./i) ) {
                url += 'test.';
            }

                        theme = themes[ +(theme === themes[0]) ];
           
           return url + 'bbc.co.uk/navpromo/card/' + site + '/' + theme;
        },
                init: function(node) {
            var disabledByCookie = (document.cookie.indexOf('ckns_orb_nopromo=1') > -1),
                that = this;
            
            if (window.promomanagerOverride) {
                for (var p in promomanagerOverride) {
                    that[p] = promomanagerOverride[p];
                }
            }
                
            if ( window.orb.fig('uk') && !disabledByCookie ) {
                require(['orb/async/_footerpromo', 'istats-1'], function(promo, istats) {

                    var virtualSite = istats.getSite() || 'default';
                    that.url = (window.promomanagerOverride || that).makeUrl('light', virtualSite);

                    if (that.url) { 
                        promo.load(that.url, node, {
                                                          onSuccess: function(e) {
                                if(e.status === 'success') {
                                    node.parentNode.className = node.parentNode.className + ' orb-footer-promo-loaded';
                                    promoManager.promoLoaded = true;
                                    promoManager.event('promo-loaded').fire(e);
                                }
                             },
                             onError: function() {
                                istats.log('error', 'orb-footer-promo-failed');
                                bbccookies.set('ckns_orb_nopromo=1; expires=' + new Date(new Date().getTime() + 1000 * 60 * 10).toGMTString() + ';path=/;');
                             }
                        });   
                    }
                });
            }
        }
    };
    
        
    define('orb/promomanager', ['orb/lib/_event'], function (event) {
        event.mixin(promoManager);
        return promoManager;
    });
    
    require(['orb/promomanager'], function (promoManager) {
        promoManager.init(document.getElementById('navp-orb-footer-promo'));
    })
})();
 </script>   
    <script type="text/javascript">

        require.config({
            paths: {
                "mybbc/templates": '//mybbc.files.bbci.co.uk/notification-ui/3.6.1/templates',
                "mybbc/notifications": '//mybbc.files.bbci.co.uk/notification-ui/3.6.1/js'
            }
        });

        require(['mybbc/notifications/NotificationsMain', 'idcta/idcta-1'], function (NotificationsMain, idcta) {
            var loadNotifications = function (fig) {
                if (fig.geo.isUK()) {
                    NotificationsMain.run(idcta, '//mybbc.files.bbci.co.uk/notification-ui/3.6.1/');
                }
            };
            var orbFig = window.orb.fig;
            if (typeof orbFig.load === 'function') {
                // Use new async API from Orbit
                orbFig.load(loadNotifications, loadNotifications);
            } else {
                // Use old sync-only API from PAL orbfig project
                loadNotifications(orbFig);
            }
        });
    </script>

 <script type="text/javascript"> if (typeof require !== 'undefined') { require(['istats-1'], function(istats){ istats.track('external', { region: document.getElementsByTagName('body')[0] }); istats.track('download', { region: document.getElementsByTagName('body')[0] }); }); } </script>   <script type="text/javascript">

 if( window.SEARCHBOX.suppress === false && window.SEARCHBOX.locale && /^en-?.*?/.test(window.SEARCHBOX.locale) ){
   require.config({
     paths: {
       "search/searchbox": window.SEARCHBOX.searchboxAppStaticPrefix
     }
   });

   require(['search/searchbox/searchboxDrawer'], function(SearchboxDrawer) {
     SearchboxDrawer.run(window.SEARCHBOX);
   });
 }

</script>
             <script type="text/javascript">require(["istats-1","orb/cookies"],function(t,o){if(o.isAllowed("s1"))try{if(!require.s.contexts._.config.paths.idcta)return void t.invoke();require(["idcta/idcta-1"],function(o){o&&"function"==typeof o.getIStatsLabels&&t.addLabels(o.getIStatsLabels()),t.invoke()},function(t){throw t})}catch(o){console&&"function"==typeof console.log&&console.log("an exception occurred while adding idcta labels to istats, invoking istats without them",o),t.invoke()}});</script>  <img alt="" id="livestats" src="http://stats.bbc.co.uk/o.gif?~RS~s~RS~News~RS~t~RS~HighWeb_Story~RS~i~RS~39298218~RS~p~RS~99125~RS~a~RS~US~RS~u~RS~/news/world-middle-east-39298218~RS~r~RS~0~RS~q~RS~0~RS~z~RS~729~RS~" hidden="" style="display: none !important;">  </div><!-- closes .direction -->  <script> window.old_onload = window.onload; window.onload = function() { if(window.old_onload) { window.old_onload(); } window.loaded = true; }; </script> <!-- Chartbeat Web Analytics code - start -->
<script type="text/javascript">
    /** CONFIGURATION START **/
    var _sf_async_config = {};
    
    _sf_async_config.uid = "50924";
    _sf_async_config.domain = "www.bbc.co.uk";
    _sf_async_config.sections = "News, News - middle-east, News - STY, News - middle-east - STY";
    <!-- if page is an index, add the edition to the path -->
    _sf_async_config.path = "bbc.co.uk/news/world-middle-east-39298218";
    
        (function() {
        var noCookies = true;
        var cookiePrefix = '_chartbeat';
        if ("object" === typeof bbccookies && typeof bbccookies.readPolicy == 'function') {
            noCookies = !bbccookies.readPolicy().performance;
        }
        if (noCookies && document.cookie.indexOf(cookiePrefix) !== -1) {
            //Find and remove cookies whose names begin with '_chartbeat'
            var cookieSplit = document.cookie.split(';');
            var cookieLength = cookieSplit.length;
            while (cookieLength--) {
                var cookie = cookieSplit[cookieLength].replace(/^\s+|\s+$/g, '');
                var cookieName = cookie.split('=')[0];

                if (cookieName.indexOf(cookiePrefix) === 0) {
                    document.cookie = cookieName + '=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;';
                }
            }
        }
        _sf_async_config.noCookies = noCookies;
    }());

    /** CONFIGURATION END **/
    (function(){
        function loadChartbeat() {
            window._sf_endpt=(new Date()).getTime();
            var e = document.createElement("script");
            e.setAttribute("language", "javascript");
            e.setAttribute("type", "text/javascript");
            e.setAttribute('src', '//static.chartbeat.com/js/chartbeat.js');
            document.body.appendChild(e);
        }
        var oldonload = window.onload;
        window.onload = (typeof window.onload != "function") ?
            loadChartbeat : function() { oldonload(); loadChartbeat(); };
    }());
</script>
<!-- Chartbeat Web Analytics code - end -->
     <!-- mpulse start -->
<script>
(function(){
    window.bbcnewsperformance = {};
    var perf = window.performance;

    function firstScrollTimer() {
        document.removeEventListener('scroll', firstScrollTimer);

        perf.mark('firstScroll');
        perf.measure('scrolltime', 'firstScroll');
        var timing = perf.getEntriesByName('scrolltime');
        bbcnewsperformance.firstScrollTime = timing[0].startTime;
    }

    if (perf && perf.mark && perf.measure) {
        document.addEventListener('scroll', firstScrollTimer);
    }

    var random = Math.random();
    var rate   = 0.25;
    var throttle = 0.02;
    var forceMpulse = window.location.href.match(/force_mpulse/);

    if (rate && throttle && (random < (rate * throttle)) || forceMpulse) {
        if(window.BOOMR && window.BOOMR.version){return;}
        var dom,doc,where,iframe = document.createElement('iframe'),win = window;

        function boomerangSaveLoadTime(e) {
            win.BOOMR_onload=(e && e.timeStamp) || new Date().getTime();
        }
        if (win.addEventListener) {
            win.addEventListener("load", boomerangSaveLoadTime, false);
        } else if (win.attachEvent) {
            win.attachEvent("onload", boomerangSaveLoadTime);
        }

        iframe.src = "javascript:false";
        iframe.title = ""; iframe.role="presentation";
        (iframe.frameElement || iframe).style.cssText = "width:0;height:0;border:0;display:none;";
        where = document.getElementsByTagName('script')[0];
        where.parentNode.insertBefore(iframe, where);

        try {
            doc = iframe.contentWindow.document;
        } catch(e) {
            dom = document.domain;
            iframe.src="javascript:var d=document.open();d.domain='"+dom+"';void(0);";
            doc = iframe.contentWindow.document;
        }
        doc.open()._l = function() {
            var js = this.createElement("script");
            if(dom) this.domain = dom;
            js.id = "boomr-if-as";
            js.src = '//c.go-mpulse.net/boomerang/' +
            '86ZLR-T78UG-6FNFN-UVDPZ-VZFWR';
            BOOMR_lstart=new Date().getTime();
            this.body.appendChild(js);
        };
        doc.write('<body onload="document._l();">');
        doc.close();
    }
})();
</script>
<!-- mpulse end -->
   











<script language="javascript" type="text/javascript" src="http://static.chartbeat.com/js/chartbeat.js"></script></body><autoscroll></autoscroll><div></div></html>