forked from twbs/bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
1792 lines (1284 loc) · 182 KB
/
test.html
File metadata and controls
1792 lines (1284 loc) · 182 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html> <html class=" b-pw-1280" lang="en" > <head> <!-- Barlesque 3.8.0 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="description" content="Breaking news, sport, TV, radio and a whole lot more. The BBC informs, educates and entertains - wherever you are, whatever your age." /> <meta name="keywords" content="BBC, bbc.co.uk, bbc.com, Search, British Broadcasting Corporation, BBC iPlayer, BBCi" /> <title>BBC - Homepage</title> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta property="fb:admins" content="100004154058350" /> <script type="text/javascript">window.bbcredirection={geo:true}</script>
<!--[if (gt IE 8) | (IEMobile)]><!-->
<link rel="stylesheet" href="http://static.bbci.co.uk/frameworks/barlesque/3.8.0/orb/4/style/orb.min.css">
<!--<![endif]-->
<!--[if (lt IE 9) & (!IEMobile)]>
<link rel="stylesheet" href="http://static.bbci.co.uk/frameworks/barlesque/3.8.0/orb/4/style/orb-ie.min.css">
<![endif]-->
<!--orb.ws.require.lib--> <script type="text/javascript">/*<![CDATA[*/ if (typeof window.define !== 'function' || typeof window.require !== 'function') { document.write('<script class="js-require-lib" src="http://static.bbci.co.uk/frameworks/requirejs/lib.js"><'+'/script>'); } /*]]>*/</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", "ads":"http://static.bbci.co.uk/wwhp/1.100.0/modules/ads", "app":"http://static.bbci.co.uk/wwhp/1.100.0/modules/app", "compiled":"http://static.bbci.co.uk/wwhp/1.100.0/modules/compiled", "homepage":"http://static.bbci.co.uk/wwhp/1.100.0/modules/homepage", "lib/core":"http://static.bbci.co.uk/wwhp/1.100.0/modules/lib/core", "lib/module/base":"http://static.bbci.co.uk/wwhp/1.100.0/modules/lib/module/base", "lib/module/manager":"http://static.bbci.co.uk/wwhp/1.100.0/modules/lib/module/manager", "lib/timeInterval":"http://static.bbci.co.uk/wwhp/1.100.0/modules/lib/timeInterval", "lib/util":"http://static.bbci.co.uk/wwhp/1.100.0/modules/lib/util", "modules/header":"http://static.bbci.co.uk/wwhp/1.100.0/modules/modules/header", "modules/images":"http://static.bbci.co.uk/wwhp/1.100.0/modules/modules/images", "modules/media":"http://static.bbci.co.uk/wwhp/1.100.0/modules/modules/media", "modules/video":"http://static.bbci.co.uk/wwhp/1.100.0/modules/modules/video", "modules/video/dataProvider":"http://static.bbci.co.uk/wwhp/1.100.0/modules/modules/video/dataProvider", "modules/video/player":"http://static.bbci.co.uk/wwhp/1.100.0/modules/modules/video/player", "modules/video/playlist":"http://static.bbci.co.uk/wwhp/1.100.0/modules/modules/video/playlist", "modules/video/playlistBuilder":"http://static.bbci.co.uk/wwhp/1.100.0/modules/modules/video/playlistBuilder", "modules/weather":"http://static.bbci.co.uk/wwhp/1.100.0/modules/modules/weather", "vendor/pre-built/bbc-video-experience/continuousPlay/module":"http://static.bbci.co.uk/wwhp/1.100.0/modules/vendor/pre-built/bbc-video-experience/continuousPlay/module", "cssp!vendor/pre-built/bbc-video-experience/continuousPlay/smp/css/en":"http://static.bbci.co.uk/wwhp/1.100.0/modules/vendor/pre-built/bbc-video-experience/continuousPlay/smp/css/en.css", "cssp!vendor/pre-built/bbc-video-experience/continuousPlay/smp/css/ja":"http://static.bbci.co.uk/wwhp/1.100.0/modules/vendor/pre-built/bbc-video-experience/continuousPlay/smp/css/ja.css", "cssp!vendor/pre-built/bbc-video-experience/continuousPlay/smp/css/ru":"http://static.bbci.co.uk/wwhp/1.100.0/modules/vendor/pre-built/bbc-video-experience/continuousPlay/smp/css/ru.css", "vendor/pre-built/bbc-video-experience/continuousPlay/smp/js/continuousPlayPlugin":"http://static.bbci.co.uk/wwhp/1.100.0/modules/vendor/pre-built/bbc-video-experience/continuousPlay/smp/js/continuousPlayPlugin", "cssp!vendor/pre-built/bbc-video-experience/continuousPlay/smp/swf/css/en":"http://static.bbci.co.uk/wwhp/1.100.0/modules/vendor/pre-built/bbc-video-experience/continuousPlay/smp/swf/css/en.css", "cssp!vendor/pre-built/bbc-video-experience/continuousPlay/smp/swf/css/ja":"http://static.bbci.co.uk/wwhp/1.100.0/modules/vendor/pre-built/bbc-video-experience/continuousPlay/smp/swf/css/ja.css", "cssp!vendor/pre-built/bbc-video-experience/continuousPlay/smp/swf/css/ru":"http://static.bbci.co.uk/wwhp/1.100.0/modules/vendor/pre-built/bbc-video-experience/continuousPlay/smp/swf/css/ru.css"}; 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 e="ckns_policy",m="Thu, 01 Jan 1970 00:00:00 GMT",k={ads:true,personalisation:true,performance:true,necessary:true};function f(p){if(f.cache[p]){return f.cache[p]}var o=p.split("/"),q=[""];do{q.unshift((o.join("/")||"/"));o.pop()}while(q[0]!=="/");f.cache[p]=q;return q}f.cache={};function a(p){if(a.cache[p]){return a.cache[p]}var q=p.split("."),o=[];while(q.length&&"|co.uk|com|".indexOf("|"+q.join(".")+"|")===-1){if(q.length){o.push(q.join("."))}q.shift()}f.cache[p]=o;return o}a.cache={};function i(o,t,p){var z=[""].concat(a(window.location.hostname)),w=f(window.location.pathname),y="",r,x;for(var s=0,v=z.length;s<v;s++){r=z[s];for(var q=0,u=w.length;q<u;q++){x=w[q];y=o+"="+t+";"+(r?"domain="+r+";":"")+(x?"path="+x+";":"")+(p?"expires="+p+";":"");bbccookies.set(y,true)}}}window.bbccookies={POLICY_REFRESH_DATE_MILLIS:new Date(2015,4,21,0,0,0,0).getTime(),POLICY_EXPIRY_COOKIENAME:"ckns_policy_exp",_setEverywhere:i,cookiesEnabled:function(){var o="ckns_testcookie"+Math.floor(Math.random()*100000);this.set(o+"=1");if(this.get().indexOf(o)>-1){g(o);return true}return false},set:function(o){return document.cookie=o},get:function(){return document.cookie},getCrumb:function(o){if(!o){return null}return decodeURIComponent(document.cookie.replace(new RegExp("(?:(?:^|.*;)\\s*"+encodeURIComponent(o).replace(/[\-\.\+\*]/g,"\\$&")+"\\s*\\=\\s*([^;]*).*$)|^.*$"),"$1"))||null},policyRequiresRefresh:function(){var p=new Date();p.setHours(0);p.setMinutes(0);p.setSeconds(0);p.setMilliseconds(0);if(bbccookies.POLICY_REFRESH_DATE_MILLIS<=p.getTime()){var o=bbccookies.getCrumb(bbccookies.POLICY_EXPIRY_COOKIENAME);if(o){o=new Date(parseInt(o));o.setYear(o.getFullYear()-1);return bbccookies.POLICY_REFRESH_DATE_MILLIS>=o.getTime()}else{return true}}else{return false}},_setPolicy:function(o){return h.apply(this,arguments)},readPolicy:function(){return b.apply(this,arguments)},_deletePolicy:function(){i(e,"",m)},isAllowed:function(){return true},_isConfirmed:function(){return c()!==null},_acceptsAll:function(){var o=b();return o&&!(j(o).indexOf("0")>-1)},_getCookieName:function(){return d.apply(this,arguments)},_showPrompt:function(){var o=((!this._isConfirmed()||this.policyRequiresRefresh())&&window.cta_enabled&&this.cookiesEnabled()&&!window.bbccookies_disable);return(window.orb&&window.orb.fig)?o&&(window.orb.fig("no")||window.orb.fig("ck")):o}};bbccookies._getPolicy=bbccookies.readPolicy;function d(p){var o=(""+p).match(/^([^=]+)(?==)/);return(o&&o.length?o[0]:"")}function j(o){return""+(o.ads?1:0)+(o.personalisation?1:0)+(o.performance?1:0)}function h(s){if(typeof s==="undefined"){s=k}if(typeof arguments[0]==="string"){var p=arguments[0],r=arguments[1];if(p==="necessary"){r=true}s=b();s[p]=r}else{if(typeof arguments[0]==="object"){s.necessary=true}}var q=new Date();q.setYear(q.getFullYear()+1);bbccookies.set(e+"="+j(s)+";domain=bbc.co.uk;path=/;expires="+q.toUTCString()+";");bbccookies.set(e+"="+j(s)+";domain=bbc.com;path=/;expires="+q.toUTCString()+";");bbccookies.set(e+"="+j(s)+";domain=bbci.co.uk;path=/;expires="+q.toUTCString()+";");var o=new Date(q.getTime());o.setMonth(o.getMonth()+1);bbccookies.set(bbccookies.POLICY_EXPIRY_COOKIENAME+"="+q.getTime()+";domain=bbc.co.uk;path=/;expires="+o.toUTCString()+";");bbccookies.set(bbccookies.POLICY_EXPIRY_COOKIENAME+"="+q.getTime()+";domain=bbc.com;path=/;expires="+o.toUTCString()+";");bbccookies.set(bbccookies.POLICY_EXPIRY_COOKIENAME+"="+q.getTime()+";domain=bbci.co.uk;path=/;expires="+o.toUTCString()+";");return s}function l(o){if(o===null){return null}var p=o.split("");return{ads:!!+p[0],personalisation:!!+p[1],performance:!!+p[2],necessary:true}}function c(){var o=new RegExp("(?:^|; ?)"+e+"=(\\d\\d\\d)($|;)"),p=document.cookie.match(o);if(!p){return null}return p[1]}function b(o){var p=l(c());if(!p){p=k}if(o){return p[o]}else{return p}}function g(o){return document.cookie=o+"=;expires="+m+";"}function n(){var o='<script type="text/javascript" src="http://static.bbci.co.uk/frameworks/bbccookies/0.7.1/script/bbccookies.js"><\/script>';if(window.bbccookies_flag==="ON"&&!bbccookies._acceptsAll()&&!window.bbccookies_disable){document.write(o)}}n()})();if(typeof(require)==="function"&&!require.defined("orb/cookies")){define("orb/cookies",window.bbccookies)}; /*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/
(function(){window.fig=window.fig||{};window.fig.manager={include:function(e){e=e||window;var i=e.document,j=i.cookie,h=j.match(/(?:^|; ?)ckns_orb_fig=([^;]+)/),g,b="";if(!h&&j.indexOf("ckns_orb_nofig=1")>-1){this.setFig(e,{no:1})}else{if(h){h=this.deserialise(decodeURIComponent(RegExp.$1));this.setFig(e,h)}if(window.fig.async&&typeof JSON!="undefined"){var a=(document.cookie.match("(^|; )ckns_orb_cachedfig=([^;]*)")||0)[2];g=a?JSON.parse(a):null;if(g){this.setFig(e,g);b="async"}}i.write('<script src="https://fig.bbc.co.uk/frameworks/fig/1/fig.js"'+b+"><"+"/script>")}},confirm:function(a){a=a||window;if(a.orb&&a.orb.fig&&a.orb.fig("no")){this.setNoFigCookie(a)}if(a.orb===undefined||a.orb.fig===undefined){this.setFig(a,{no:1});this.setNoFigCookie(a)}},setNoFigCookie:function(a){a.document.cookie="ckns_orb_nofig=1; expires="+new Date(new Date().getTime()+1000*60*10).toGMTString()+";"},setFig:function(a,b){(function(){var c=b;a.orb=a.orb||{};a.orb.fig=function(d){return(arguments.length)?c[d]:c}})()},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>
<!-- Nav Analytics : 50 -->
<script type="text/javascript">window.bbcFlagpoles_istats="ON",require.config({paths:{"istats-1":"//nav.files.bbci.co.uk/nav-analytics/0.1.0-50/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="SET-COUNTER";i&&"unknown"!==i&&e.setCountername(i),window.istats_countername&&e.setCountername(window.istats_countername),e.addLabels("ml_name=webmodule&ml_version=50")}});</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=SET-COUNTER&pal_route=index&app_type=responsive&language=en-GB&pal_webapp=wwhp';
require(['istats-1'], function (istats) {
var counterName = (window.istats_countername) ? window.istats_countername : istatsTrackingUrl.match(/[\?&]name=([^&]*)/i)[1];
istats.setCountername(counterName);
istats.addLabels('pal_route=index&app_type=responsive&language=en-GB&pal_webapp=wwhp');
var c = (document.cookie.match(/\bckns_policy=(\d\d\d)/) || []).pop() || '';
istats.addLabels({
'blq_s': '4d',
'blq_r': '3.5',
'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="http://static.bbci.co.uk/frameworks/barlesque/3.8.0/orb/4/script/orb/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.document.write('<script type="text/javascript" src="http://static.bbci.co.uk/frameworks/barlesque/3.8.0/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.12.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"> /*<![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.12.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.12.0/script/orb/individual.js">\x3C/script>'); } else { document.write('<script type="text/javascript" src="http://static.bbci.co.uk/bbcdotcom/1.12.0/script/orb/bbcdotcom.js">\x3C/script>'); } if(/[\\?&]ads=([^&#]*)/.test(window.location.href)) { document.write('<script type="text/javascript" src="http://static.bbci.co.uk/bbcdotcom/1.12.0/script/orb/adverts/adSuites.js">\x3C/script>'); } } })(); /*]]>*/ </script><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":"","asyncEnabled":true,"disableInitialLoad":false,"advertInfoPageUrl":"http:\/\/www.bbc.co.uk\/faqs\/online\/adverts_general","advertisementText":"Advertisement","analyticsEnabled":true,"appName":"wwhp","assetPrefix":"http:\/\/static.bbci.co.uk\/bbcdotcom\/1.12.0\/","customAdParams":[],"customStatsParams":[],"headline":"","id":"","inAssociationWithText":"in association with","keywords":"","language":"","orbTransitional":false,"outbrainEnabled":true,"palEnv":"live","productName":"","sections":[],"siteCatalystEnabled":true,"comScoreEnabled":true,"comscoreSite":"bbc","comscoreID":"19293874","comscorePageName":"home","slots":"","sponsoredByText":"is sponsored by","adsByGoogleText":"Ads by Google","summary":"","type":"","staticBase":"\/bbcdotcom","staticHost":"http:\/\/static.bbci.co.uk","staticVersion":"1.12.0","staticPrefix":"http:\/\/static.bbci.co.uk\/bbcdotcom\/1.12.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.12.0/"); bbcdotcom.config.setVersion("1.12.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> <!--NavID:0.2.0-130--> <link rel="stylesheet" href="//static.bbc.co.uk/id/0.34.73/style/id-cta.css" /> <!--[if IE 8]><link href="//static.bbc.co.uk/id/0.34.73/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 type="text/javascript"> try { require(['istats-1'], function(istats){ if (typeof(document) != 'undefined' && typeof(document.cookie) != 'undefined') { var cookieAphidMatch = document.cookie.match(/ckpf_APHID=([^;]*)/); if (cookieAphidMatch && typeof(cookieAphidMatch[1]) == 'string') { istats.addLabels({'bbc_hid': cookieAphidMatch[1]}); } } })(); } catch (err) { /* If istats can't be loaded, fail silently */ } </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_CONFIG = ('/idcta/config?callback&lang=en-GB&ptrt=' + encodeURI((ptrt ? ptrt[1] : document.location.href))).replace(/\&/g, '&'); var ENDPOINT_TRANSLATIONS = '/idcta/translations?callback&locale=en-GB'; map['idapp-1'] = '//static.bbc.co.uk/idapp/0.72.16/modules/idapp/idapp-1'; map['idcta'] = '//static.bbc.co.uk/id/0.34.73/modules/idcta'; map['idcta/config'] = ['//ssl.bbc.co.uk' + ENDPOINT_CONFIG, '//static.bbc.co.uk/id/0.34.73/modules/idcta/fallbackConfig']; map['idcta/translations'] = ['//ssl.bbc.co.uk' + ENDPOINT_TRANSLATIONS, '//static.bbc.co.uk/id/0.34.73/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> <script type="text/javascript"> try { /* Users downgraded after IDP tokens were invalidated */ require(['idcta/idCookie'], function(idCookie){ idCookie.downgradeUser(); }); } catch(error) { /* Fail silently in case idCookie is not defined */ } </script>
<script type="text/javascript">
require(['istats-1'], function(istats) {
if (/\bIDENTITY=/.test(document.cookie)) {
istats.addLabels({'bbc_identity': '1'});
}
});
</script>
<link rel="stylesheet" href="//mybbc.files.bbci.co.uk/s/notification-ui/1.4.1/css/main.min.css"/>
<!-- Webapp: WWHP international homepage -->
<script src="//cdn.optimizely.com/js/3531950243.js"></script>
<meta property="fb:page_id" content="228735667216" />
<meta property="fb:admins" content="297814326937641" />
<meta property="fb:app_id" content="187214818032936" />
<meta property="og:title" content="BBC - Homepage" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://www.bbc.com/" />
<meta name="msvalidate.01" content="A09EF0BF1FC5CDBB37D921CBC3776943" />
<meta property="wwhp-edition" content="australia" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="canonical" href="http://www.bbc.com/" />
<link rel="alternate" hreflang="en-gb" href="http://www.bbc.co.uk/" />
<link rel="alternate" hreflang="gd-gb" href="http://www.bbc.co.uk/alba/" />
<link rel="alternate" hreflang="cy-gb" href="http://www.bbc.co.uk/cymru/" />
<link rel="alternate" hreflang="en" href="http://www.bbc.com/" />
<link rel="apple-touch-icon" href="http://static.bbci.co.uk/wwhp/1.100.0/responsive/img/apple-touch/apple-touch-180.jpg">
<!--[if (gt IE 8) | (IEMobile)]><!-->
<link href="http://static.bbci.co.uk/wwhp/1.100.0/responsive/css/wwhp.min.css" rel="stylesheet" />
<!--<![endif]-->
<!--[if (lt IE 9) & (!IEMobile)]>
<link href="http://static.bbci.co.uk/wwhp/1.100.0/responsive/css/old-ie.min.css" rel="stylesheet" />
<![endif]--> <script src="http://static.bbci.co.uk/wwhp/1.100.0/modules/vendor/bower/modernizr/modernizr.js"></script>
<script>
(function () {
if (window.bbcdotcom) {
bbcdotcom.init({ adsToDisplay: ["parallax","leaderboard","native","mpu","mpu_middle","module_feature-1","module_feature-2","mpu_bottom","module_channel-australia"] });
}
require.config({
paths: {
'bump-3': window.location.protocol === 'https:' ? 'https://ssl.live.bbc.co.uk/emp/bump-3/ssl' : 'http://emp.bbci.co.uk/emp/bump-3/bump-3'
},
map: {
'*': {
jquery: 'jquery-1.9'
}
},
shim: {
'vendor/bower/underscore/underscore': {
exports: '_'
},
'vendor/bower/js-breakpoints/breakpoints': {
exports: 'Breakpoints'
},
'vendor/bower/cookie-monster/cookie-monster': {
exports: 'monster'
}
}
});
require(["domReady","compiled"], function (domReady) {
domReady(function () {
require(['app'], function (app) {
app.init(window, {
staticPrefix: 'http://static.bbci.co.uk/wwhp/1.100.0/',
continuousPlayEnabled: true });
});
});
});
}());
</script>
</head> <body id="wwhp" class="wwhp disable-wide-advert responsive default australia responsive-default responsive-australia default-australia"> <!-- 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'); if (wallpaper !== null && wallpaper !== undefined) { wallpaper.setDomElement('bbccom_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> <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><p style="position: absolute; top: -999em"><img src="//sa.bbc.co.uk/bbc/bbc/s?name=SET-COUNTER&ml_name=webmodule&ml_version=50&blq_js_enabled=0&blq_s=4d&blq_r=3.5&blq_v=default&blq_e=pal&pal_route=index&app_type=responsive&language=en-GB&pal_webapp=wwhp" height="1" width="1" alt=""></p></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-black b-header--black--white orb-nav-empty" > <div class="orb-nav-pri-container b-r b-g-p"> <div class="orb-nav-section orb-nav-blocks"> <a href="/"> <img class="orb-nav-theme-dynamic" src="http://static.bbci.co.uk/frameworks/barlesque/3.8.0/orb/4/img/bbc-blocks-light.png" width="84" height="24" alt="BBC" data-activesrc="http://static.bbci.co.uk/frameworks/barlesque/3.8.0/orb/4/img/bbc-blocks-dark.png"/> </a> </div> <section> <div class="orb-skip-links"> <h2>Accessibility links</h2> <ul> <li><a id="orb-accessibility-help" href="/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="/id/status?ptrt=http%3A%2F%2Fwww.bbc.com%2F"> <span id="idcta-username">BBC iD</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="#">
<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-news orb-d" > <a href="http://www.bbc.co.uk/news/">News</a> </li> <li class="orb-nav-newsdotcom orb-w" > <a href="http://www.bbc.com/news/">News</a> </li> <li class="orb-nav-sport" > <a href="/sport/">Sport</a> </li> <li class="orb-nav-weather" > <a href="/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-iplayer orb-d" > <a href="/iplayer/">iPlayer</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="/tv/">TV</a> </li> <li class="orb-nav-radio" > <a href="/radio/">Radio</a> </li> <li class="orb-nav-cbbc" > <a href="/cbbc">CBBC</a> </li> <li class="orb-nav-cbeebies" > <a href="/cbeebies">CBeebies</a> </li> <li class="orb-nav-food" > <a href="/food/">Food</a> </li> <li > <a href="/iwonder">iWonder</a> </li> <li > <a href="/education">Bitesize</a> </li> <li class="orb-nav-travel orb-d" > <a href="/travel/">Travel</a> </li> <li class="orb-nav-music" > <a href="/music/">Music</a> </li> <li class="orb-nav-earth orb-d" > <a href="http://www.bbc.com/earth/">Earth</a> </li> <li class="orb-nav-arts" > <a href="/arts/">Arts</a> </li> <li class="orb-nav-makeitdigital" > <a href="/makeitdigital">Make It Digital</a> </li> <li > <a href="/taster">Taster</a> </li> <li class="orb-nav-nature orb-w" > <a href="/nature/">Nature</a> </li> <li class="orb-nav-local" > <a href="/local/">Local</a> </li> <li id="orb-nav-more"><a href="#orb-footer" data-alt="More">Menu<span class="orb-icon orb-icon-arrow"></span></a></li> </ul> </div> </nav> <div class="orb-nav-section orb-nav-search"> <a href="http://search.bbc.co.uk/search"> <img class="orb-nav-theme-dynamic" src="http://static.bbci.co.uk/frameworks/barlesque/3.8.0/orb/4/img/orb-search-light.png" width="18" height="18" alt="Search the BBC" data-activesrc="http://static.bbci.co.uk/frameworks/barlesque/3.8.0/orb/4/img/orb-search-dark.png"/> </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> <input type="hidden" name="uri" value="/" /> <label for="orb-search-q">Search the BBC</label> <input id="orb-search-q" type="text" name="q" placeholder="Search" /> <input type="image" id="orb-search-button" src="http://static.bbci.co.uk/frameworks/barlesque/3.8.0/orb/4/img/orb-search-dark.png" width="17" height="17" alt="Search the BBC" /> <input type="hidden" name="suggid" id="orb-search-suggid" /> </div> </form> </div> </div> <div id="orb-panels" > <script type="text/template" id="orb-panel-template"><![CDATA[ <div id="orb-panel-<%= panelname %>" class="orb-panel" aria-labelledby="orb-nav-<%= panelname %>"> <div class="orb-panel-content b-g-p b-r"> <%= panelcontent %> </div> </div> ]]></script> </div> </div> </header> <!-- Styling hook for shared modules only --> <div id="orb-modules">
<!--[if lt IE 9]>
<div class="browser-notify">
<p class="browser-notify__message">This site is optimised for modern web browsers, and does not fully support your version of Internet Explorer.</p>
</div>
<![endif]-->
<h1 id="page-title">BBC Homepage</h1>
<div id="page" role="main" class="content" data-wwhp-module="images, media">
<section class="module module--date module--highlight" data-wwhp-module="header">
<h2 class="module__title"> </h2>
</section> <section class="module module--promo module--highlight"> <div class="module__content"> <ul class="media-list">
<li class="media-list__item media-list__item--1">
<div class="media media--hero media--primary media--overlay block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/cpsprodpb/12304/production/_88900547_88900400.jpg" data-alt="CCTV image of suspects"><img src="http://ichef.bbci.co.uk/wwhp/144/cpsprodpb/12304/production/_88900547_88900400.jpg" alt="CCTV image of suspects" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="/news/world-europe-35876809"
rev="hero1|headline" >
Belgian police hunt bombings suspect </a>
</h3>
<p class="media__summary">
Belgian police hunt a suspect and raid several locations after suicide and bomb attacks at a Brussels airport and a metro station kill more than 30 people. </p>
<a class="media__tag tag tag--news" href="/news/world/europe"
rev="hero1|source" >Europe</a>
</div>
<a class="block-link__overlay-link"
href="/news/world-europe-35876809"
rev="hero1|overlay" tabindex="-1"
aria-hidden="true">
Belgian police hunt bombings suspect </a>
</div>
</li>
<li class="media-list__item media-list__item--2">
<div class="media media--overlay block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/ibroadcast/images/live/p0/3n/ql/p03nqlzb.jpg" data-alt="(Credit: Getty)"><img src="http://ichef.bbci.co.uk/wwhp/144/ibroadcast/images/live/p0/3n/ql/p03nqlzb.jpg" alt="(Credit: Getty)" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="http://www.bbc.co.uk/news/live/world-europe-35869266"
rev="hero2|headline" >
Brussels attacks: As it happened </a>
</h3>
<a class="media__tag tag tag--europe" href="/news/world/europe"
rev="hero2|source" >Europe</a>
</div>
<a class="block-link__overlay-link"
href="http://www.bbc.co.uk/news/live/world-europe-35869266"
rev="hero2|overlay" tabindex="-1"
aria-hidden="true">
Brussels attacks: As it happened </a>
</div>
</li>
<li class="media-list__item media-list__item--3">
<div class="media media--overlay block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/ibroadcast/images/live/p0/3n/qg/p03nqgcg.jpg" data-alt="Brussels"><img src="http://ichef.bbci.co.uk/wwhp/144/ibroadcast/images/live/p0/3n/qg/p03nqgcg.jpg" alt="Brussels" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="http://www.bbc.com/news/world-europe-35870957"
rev="hero3|headline" >
Why was Brussels attacked? </a>
</h3>
<a class="media__tag tag tag--europe" href="/news/world/europe"
rev="hero3|source" >Europe</a>
</div>
<a class="block-link__overlay-link"
href="http://www.bbc.com/news/world-europe-35870957"
rev="hero3|overlay" tabindex="-1"
aria-hidden="true">
Why was Brussels attacked? </a>
</div>
</li>
<li class="media-list__item media-list__item--4">
<div class="media media--overlay block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/ibroadcast/images/live/p0/3n/nf/p03nnfkd.jpg" data-alt="Rajasthan, Shekhawati, India, billionaires, havelis, mansions"><img src="http://ichef.bbci.co.uk/wwhp/144/ibroadcast/images/live/p0/3n/nf/p03nnfkd.jpg" alt="Rajasthan, Shekhawati, India, billionaires, havelis, mansions" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="http://www.bbc.com/travel/story/20160311-a-crumbling-birthplace-of-billionaires"
rev="hero4|headline" >
Abandoned mansions in the birthplace of billionaires </a>
</h3>
<a class="media__tag tag tag--travel" href="http://www.bbc.com/travel"
rev="hero4|source" >Travel</a>
</div>
<a class="block-link__overlay-link"
href="http://www.bbc.com/travel/story/20160311-a-crumbling-birthplace-of-billionaires"
rev="hero4|overlay" tabindex="-1"
aria-hidden="true">
Abandoned mansions in the birthplace of billionaires </a>
</div>
</li>
<li class="media-list__item media-list__item--5">
<div class="media media--overlay block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/mcs/media/images/80397000/jpg/_80397346_closeup.jpg" data-alt="Herculaneum scroll"><img src="http://ichef.bbci.co.uk/wwhp/144/mcs/media/images/80397000/jpg/_80397346_closeup.jpg" alt="Herculaneum scroll" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="http://www.bbc.com/news/science-environment-35865470"
rev="hero5|headline" >
Ancient scrolls reveal their secrets </a>
</h3>
<a class="media__tag tag tag--science---environment" href="/news/science_and_environment"
rev="hero5|source" >Science & Environment</a>
</div>
<a class="block-link__overlay-link"
href="http://www.bbc.com/news/science-environment-35865470"
rev="hero5|overlay" tabindex="-1"
aria-hidden="true">
Ancient scrolls reveal their secrets </a>
</div>
</li>
</ul> </div> </section> <div class="advert advert--leaderboard"><!-- BBCDOTCOM slot leaderboard --><div id="bbccom_leaderboard_1_2_3_4" class="bbccom_slot" aria-hidden="true"><div class="bbccom_advert"><script type="text/javascript"> /*<![CDATA[*/ (function() { if (window.bbcdotcom && bbcdotcom.asyncSlot) { bbcdotcom.slotAsync('leaderboard', [1,2,3,4]); } })(); /*]]>*/ </script></div></div></div> <section class="module module--compound module--news-sport"> <div class="module__content module__content--compound"> <div class="container"> <section class="module module--news module--collapse-images"> <h2 class="module__title">
<a class="module__title__link tag tag--news" href="/news"
rev="news|header" >News</a>
</h2>
<div class="module__content"> <ul class="media-list media-list--fixed-height">
<li class="media-list__item media-list__item--1">
<div class="media block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/cpsprodpb/18024/production/_88904389_gettyimages-516910420.jpg" data-alt="Some Timorese protesters carried signs urging Australia to "stop stealing our oil""><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="Some Timorese protesters carried signs urging Australia to "stop stealing our oil"" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="/news/world-australia-35877915"
rev="news|headline" >
Dili rallies over Australia oil dispute </a>
</h3>
<p class="media__summary">
Thousands of protesters blockade Australia's East Timor embassy in Dili calling for the border in the oil-rich Timor Sea to be redrawn. </p>
<a class="media__tag tag tag--australian-news" href="/news/world/australia"
rev="news|source" >Australia</a>
</div>
<a class="block-link__overlay-link"
href="/news/world-australia-35877915"
rev="news|overlay" tabindex="-1"
aria-hidden="true">
Dili rallies over Australia oil dispute </a>
</div>
</li>
<li class="media-list__item media-list__item--2">
<div class="media block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/cpsprodpb/1643F/production/_88899119_88899118.jpg" data-alt="US President Barack Obama delivers his speech at the Grand Theater of Havana, Tuesday, March 22, 2016."><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="US President Barack Obama delivers his speech at the Grand Theater of Havana, Tuesday, March 22, 2016." /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="/news/world-latin-america-35874559"
rev="news|headline" >
Obama invokes 'future of hope' for Cuba </a>
</h3>
<p class="media__summary">
In his keynote speech during his visit to Cuba, US President Barack Obama says it is time to bury the past and build a brighter future of US-Cuban relations. </p>
<a class="media__tag tag tag--news" href="/news/world/latin_america"
rev="news|source" >Latin America & Caribbean</a>
</div>
<a class="block-link__overlay-link"
href="/news/world-latin-america-35874559"
rev="news|overlay" tabindex="-1"
aria-hidden="true">
Obama invokes 'future of hope' for Cuba </a>
</div>
</li>
<li class="media-list__item media-list__item--3">
<div class="media block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/cpsprodpb/BAAD/production/_88898774_robford.jpg" data-alt="Rob Ford"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="Rob Ford" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="/news/world-us-canada-35872594"
rev="news|headline" >
Former Toronto Mayor Rob Ford dies </a>
</h3>
<p class="media__summary">
Former Toronto mayor Rob Ford has died at 46 after fighting cancer, his family says. </p>
<a class="media__tag tag tag--news" href="/news/world/us_and_canada"
rev="news|source" >US & Canada</a>
</div>
<a class="block-link__overlay-link"
href="/news/world-us-canada-35872594"
rev="news|overlay" tabindex="-1"
aria-hidden="true">
Former Toronto Mayor Rob Ford dies </a>
</div>
</li>
</ul> </div> </section> <section class="module module--sport module--collapse-images"> <h2 class="module__title">
<a class="module__title__link tag tag--sport" href="/sport"
rev="sport|header" >Sport</a>
</h2>
<div class="module__content"> <ul class="media-list media-list--fixed-height">
<li class="media-list__item media-list__item--1">
<div class="media block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/cpsprodpb/001E/production/_88903000_516941824.jpg" data-alt="Security has been increased in Brussels following Tuesday's attacks"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="Security has been increased in Brussels following Tuesday's attacks" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="/sport/football/35869845"
rev="sport|headline" >
Attacks should not stop Euros - Coleman </a>
</h3>
<p class="media__summary">
Wales boss Chris Coleman says Euro 2016 should go ahead despite increased security fears following the attacks in Belgium. </p>
<a class="media__tag tag tag--sport" href="/sport/football/european"
rev="sport|source" >European Football</a>
</div>
<a class="block-link__overlay-link"
href="/sport/football/35869845"
rev="sport|overlay" tabindex="-1"
aria-hidden="true">
Attacks should not stop Euros - Coleman </a>
</div>
</li>
<li class="media-list__item media-list__item--2">
<div class="media block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/cpsprodpb/1136E/production/_88901507_guptill_reuters.jpg" data-alt="Martin Guptill"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="Martin Guptill" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="/sport/cricket/35873664"
rev="sport|headline" >
Guptill steers New Zealand into semis </a>
</h3>
<p class="media__summary">
New Zealand seal their place in the World Twenty20 semi-finals as Martin Guptill's 80 helps them to a 22-run win over Pakistan. </p>
<a class="media__tag tag tag--sport" href="/sport/cricket"
rev="sport|source" >Cricket</a>
</div>
<a class="block-link__overlay-link"
href="/sport/cricket/35873664"
rev="sport|overlay" tabindex="-1"
aria-hidden="true">
Guptill steers New Zealand into semis </a>
</div>
</li>
<li class="media-list__item media-list__item--3">
<div class="media media--icon block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/cpsprodpb/7B7A/production/_88901613_88901612.jpg" data-alt="Fifa on the Mega Drive"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="Fifa on the Mega Drive" /></div></div> </div>
<span class="media__icon icon icon--video" aria-hidden="true"></span>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="/sport/football/35873703"
rev="sport|headline" >
From Kick-off to PES - Football games through the years </a>
</h3>
<p class="media__summary">
OJ Borg 'helps' Oliver Chesses prepare for the Fifa Interactive World Cup with a journey through football gaming history. </p>
<a class="media__tag tag tag--sport" href="/sport/football"
rev="sport|source" >Football</a>
</div>
<a class="block-link__overlay-link"
href="/sport/football/35873703"
rev="sport|overlay" tabindex="-1"
aria-hidden="true">
From Kick-off to PES - Football games through the years </a>
</div>
</li>
</ul> </div> </section> <div class="advert advert--mpu"><!-- BBCDOTCOM slot mpu --><div id="bbccom_mpu_1_2_3_4" class="bbccom_slot" aria-hidden="true"><div class="bbccom_advert"><script type="text/javascript"> /*<![CDATA[*/ (function() { if (window.bbcdotcom && bbcdotcom.asyncSlot) { bbcdotcom.slotAsync('mpu', [1,2,3,4]); } })(); /*]]>*/ </script></div></div></div> </div> </div> </section> <section class="module module--weather" data-wwhp-module="weather"> <div class="module__content"> <div class="weather"> <h2 class="weather__location"> Sydney Weather <a class="weather__edit" role="link" href="#">Edit</a> </h2> <form class="weather__form" action="/wwhp"> <div class="weather__search"> <input class="weather__input" placeholder="Enter city, town or region" name="location_term" autocomplete="off"> <button class="weather__submit" type="submit" value=""> <span class="icon icon--search"></span> </button> </div> <p class="weather__error"></p> <ul class="weather__results"></ul> </form> <ul class="weather__forecasts"> <li class="forecast--1 forecast"> <a class="forecast__link" href="/weather/2147714?day=0" rev="weather|link" > <img class="forecast__image" src="http://static.bbci.co.uk/weather/0.5.284/images/icons/individual_56_icons/en_on_light_bg/1.gif" alt="Sunny"> <h3 class="forecast__day">Wed</h3> <p class="forecast__high">26°C</p> <p class="forecast__low">18°C</p> </a> </li> <li class="forecast--2 forecast"> <a class="forecast__link" href="/weather/2147714?day=1" rev="weather|link" > <img class="forecast__image" src="http://static.bbci.co.uk/weather/0.5.284/images/icons/individual_56_icons/en_on_light_bg/1.gif" alt="Sunny"> <h3 class="forecast__day">Thu</h3> <p class="forecast__high">26°C</p> <p class="forecast__low">20°C</p> </a> </li> <li class="forecast--3 forecast"> <a class="forecast__link" href="/weather/2147714?day=2" rev="weather|link" > <img class="forecast__image" src="http://static.bbci.co.uk/weather/0.5.284/images/icons/individual_56_icons/en_on_light_bg/7.gif" alt="Light Cloud"> <h3 class="forecast__day">Fri</h3> <p class="forecast__high">25°C</p> <p class="forecast__low">19°C</p> </a> </li> <li class="forecast--4 forecast"> <a class="forecast__link" href="/weather/2147714?day=3" rev="weather|link" > <img class="forecast__image" src="http://static.bbci.co.uk/weather/0.5.284/images/icons/individual_56_icons/en_on_light_bg/10.gif" alt="Light Rain Shower"> <h3 class="forecast__day">Sat</h3> <p class="forecast__high">24°C</p> <p class="forecast__low">18°C</p> </a> </li> </ul> </div> </div> </section> <section class="module module--regional-news module--collapse-images"> <h2 class="module__title">
<a class="module__title__link tag tag--news" href="/news/world/australia"
rev="regional-news|header" >Australia News</a>
</h2>
<div class="module__content"> <ul class="media-list media-list--fixed-height">
<li class="media-list__item media-list__item--1">
<div class="media media--primary block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/cpsprodpb/1FFC/production/_88888180_c84acb0b-304a-41a4-9cc0-5417d1233dcd.jpg" data-alt="CCTV shows six hostages escaping from the Lindt Cafe in Sydney during the 2014 siege that left three dead"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="CCTV shows six hostages escaping from the Lindt Cafe in Sydney during the 2014 siege that left three dead" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="/news/world-australia-35868572"
rev="regional-news|headline" >
Dramatic Sydney siege footage shown </a>
</h3>
<p class="media__summary">
An inquest in Sydney has watched dramatic video of police raiding the Lindt Cafe, ending a 17-hour siege in which three people died. </p>
<a class="media__tag tag tag--australian-news" href="/news/world/australia"
rev="regional-news|source" >Australia</a>
</div>
<a class="block-link__overlay-link"
href="/news/world-australia-35868572"
rev="regional-news|overlay" tabindex="-1"
aria-hidden="true">
Dramatic Sydney siege footage shown </a>
</div>
</li>
<li class="media-list__item media-list__item--2">
<div class="media block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/cpsprodpb/16EC/production/_88886850_gettyimages-463103210-1.jpg" data-alt="Malcolm Turnbull (left) Tony Abbott (right)"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="Malcolm Turnbull (left) Tony Abbott (right)" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="/news/world-australia-35868113"
rev="regional-news|headline" >
Turnbull and Abbott clash over record </a>
</h3>
<p class="media__summary">
Australian PM Malcolm Turnbull rejects claims from his predecessor Tony Abbott that the next election will be run on Mr Abbott's record. </p>
<a class="media__tag tag tag--australian-news" href="/news/world/australia"
rev="regional-news|source" >Australia</a>
</div>
<a class="block-link__overlay-link"
href="/news/world-australia-35868113"
rev="regional-news|overlay" tabindex="-1"
aria-hidden="true">
Turnbull and Abbott clash over record </a>
</div>
</li>
<li class="media-list__item media-list__item--3">
<div class="media block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/cpsprodpb/68C3/production/_87191862_gettyimages-456355884.jpg" data-alt="A close up of the Australian Federal Police badge"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="A close up of the Australian Federal Police badge" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="/news/world-australia-35868119"
rev="regional-news|headline" >
Sydney girl, 16, faces terror charge </a>
</h3>
<p class="media__summary">
A teenage girl and a 20-year-old man are accused of sending money to the so-called Islamic State. </p>
<a class="media__tag tag tag--australian-news" href="/news/world/australia"
rev="regional-news|source" >Australia</a>
</div>
<a class="block-link__overlay-link"
href="/news/world-australia-35868119"
rev="regional-news|overlay" tabindex="-1"
aria-hidden="true">
Sydney girl, 16, faces terror charge </a>
</div>
</li>
<li class="media-list__item media-list__item--4">
<div class="media block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/cpsprodpb/B803/production/_88870174_peleton.jpg" data-alt="Kangaroos can be a hazard on country roads in Australia"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="Kangaroos can be a hazard on country roads in Australia" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="/news/world-australia-35858562"
rev="regional-news|headline" >
Seven cyclists hurt in kangaroo crash </a>
</h3>
<p class="media__summary">
A cyclist is in a critical condition and six others are injured after they hit a dead kangaroo and crashed into a car in Australia's Victoria state. </p>
<a class="media__tag tag tag--australian-news" href="/news/world/australia"
rev="regional-news|source" >Australia</a>
</div>
<a class="block-link__overlay-link"
href="/news/world-australia-35858562"
rev="regional-news|overlay" tabindex="-1"
aria-hidden="true">
Seven cyclists hurt in kangaroo crash </a>
</div>
</li>
</ul> </div> </section> <section class="module module--collapse-images module--collapse-images module--highlight module--editors-picks"> <h2 class="module__title">
<span class="module__title__link tag tag--feature">Editor’s Picks</span>
</h2>
<div class="module__content"> <div class="container"> <div class="editors-picks "> <ul class="media-list media-list--fixed-height layout--featured">
<li class="media-list__item media-list__item--1">
<div class="media media--padded media--primary block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/ibroadcast/images/live/p0/3n/mq/p03nmq83.jpg" data-alt="Seven ways the autonomous car will change your daily routine"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="Seven ways the autonomous car will change your daily routine" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="http://www.bbc.com/autos/story/20160321-seven-ways-the-driverless-car-will-change-your-life"
rev="editors-picks|headline" >
This is your driverless life </a>
</h3>
<p class="media__summary">
Seven ways the autonomous car will change your daily routine </p>
<a class="media__tag tag tag--autos" href="http://www.bbc.com/autos"
rev="editors-picks|source" >Autos</a>
</div>
<a class="block-link__overlay-link"
href="http://www.bbc.com/autos/story/20160321-seven-ways-the-driverless-car-will-change-your-life"
rev="editors-picks|overlay" tabindex="-1"
aria-hidden="true">
This is your driverless life </a>
</div>
</li>
<li class="media-list__item media-list__item--2">
<div class="media media--padded block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/ibroadcast/images/live/p0/3n/4y/p03n4y5h.jpg" data-alt="(Credit: Boeing)"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="(Credit: Boeing)" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="http://www.bbc.com/future/story/20160321-the-american-concordes-that-never-flew"
rev="editors-picks|headline" >
The Concordes that never flew </a>
</h3>
<p class="media__summary">
The failed US project to soar at twice the speed of sound </p>
<a class="media__tag tag tag--future" href="http://www.bbc.com/future"
rev="editors-picks|source" >Future</a>
</div>
<a class="block-link__overlay-link"
href="http://www.bbc.com/future/story/20160321-the-american-concordes-that-never-flew"
rev="editors-picks|overlay" tabindex="-1"
aria-hidden="true">
The Concordes that never flew </a>
</div>
</li>
<li class="media-list__item media-list__item--3">
<div class="media media--padded block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/ibroadcast/images/live/p0/3n/jw/p03njwwr.jpg" data-alt="Amazing photos of the ‘flying Cholitas’"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="Amazing photos of the ‘flying Cholitas’" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="http://www.bbc.com/culture/story/20160321-the-female-wrestlers-of-bolivia"
rev="editors-picks|headline" >
The female wrestlers of Bolivia </a>
</h3>
<p class="media__summary">
Amazing photos of the ‘flying Cholitas’ </p>
<a class="media__tag tag tag--culture" href="http://www.bbc.com/culture"
rev="editors-picks|source" >Culture</a>
</div>
<a class="block-link__overlay-link"
href="http://www.bbc.com/culture/story/20160321-the-female-wrestlers-of-bolivia"
rev="editors-picks|overlay" tabindex="-1"
aria-hidden="true">
The female wrestlers of Bolivia </a>
</div>
</li>
<li class="media-list__item media-list__item--4">
<div class="media media--padded block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/ibroadcast/images/live/p0/3n/n1/p03nn19d.jpg" data-alt="A daring scheme could help corals from extinction"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="A daring scheme could help corals from extinction" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="http://www.bbc.com/earth/story/20160322-the-women-with-a-controversial-plan-to-save-corals"
rev="editors-picks|headline" >
The controversial plan to save corals </a>
</h3>
<p class="media__summary">
A daring scheme could help corals from extinction </p>
<a class="media__tag tag tag--earth" href="http://www.bbc.com/earth"
rev="editors-picks|source" >Earth</a>
</div>
<a class="block-link__overlay-link"
href="http://www.bbc.com/earth/story/20160322-the-women-with-a-controversial-plan-to-save-corals"
rev="editors-picks|overlay" tabindex="-1"
aria-hidden="true">
The controversial plan to save corals </a>
</div>
</li>
<li class="media-list__item media-list__item--5">
<div class="media media--padded block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/ibroadcast/images/live/p0/3n/2h/p03n2hj4.jpg" data-alt="Want to spend your golden years in the sun? Read this first"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="Want to spend your golden years in the sun? Read this first" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="http://www.bbc.com/capital/story/20160318-the-surprising-downside-of-a-sunny-retirement"
rev="editors-picks|headline" >
The downside to retiring in paradise </a>
</h3>
<p class="media__summary">
Want to spend your golden years in the sun? Read this first </p>
<a class="media__tag tag tag--capital" href="http://www.bbc.com/capital"
rev="editors-picks|source" >Capital</a>
</div>
<a class="block-link__overlay-link"
href="http://www.bbc.com/capital/story/20160318-the-surprising-downside-of-a-sunny-retirement"
rev="editors-picks|overlay" tabindex="-1"
aria-hidden="true">
The downside to retiring in paradise </a>
</div>
</li>
<li class="media-list__item media-list__item--6">
<div class="media media--padded block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/ibroadcast/images/live/p0/3n/ft/p03nftk8.jpg" data-alt="Where chaos and caffeine go hand in hand"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="Where chaos and caffeine go hand in hand" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="http://www.bbc.com/travel/story/20160308-the-coffee-that-fuels-chaos"
rev="editors-picks|headline" >
The most expensive coffee on Earth </a>
</h3>
<p class="media__summary">
Where chaos and caffeine go hand in hand </p>
<a class="media__tag tag tag--travel" href="http://www.bbc.com/travel"
rev="editors-picks|source" >Travel</a>
</div>
<a class="block-link__overlay-link"
href="http://www.bbc.com/travel/story/20160308-the-coffee-that-fuels-chaos"
rev="editors-picks|overlay" tabindex="-1"
aria-hidden="true">
The most expensive coffee on Earth </a>
</div>
</li>
<li class="media-list__item media-list__item--7">
<div class="media media--padded block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/cpsprodpb/F4CC/production/_88886626_dikwa.jpg" data-alt="Hauwa"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="Hauwa" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="http://www.bbc.com/news/world-africa-35864054"
rev="editors-picks|headline" >
'How I almost became a Boko Haram suicide bomber' </a>
</h3>
<p class="media__summary">
She refused to take part in the militants' plan. This is her story </p>
<a class="media__tag tag tag--africa" href="/news/world/africa"
rev="editors-picks|source" >Africa</a>
</div>
<a class="block-link__overlay-link"
href="http://www.bbc.com/news/world-africa-35864054"
rev="editors-picks|overlay" tabindex="-1"
aria-hidden="true">
'How I almost became a Boko Haram suicide bomber' </a>
</div>
</li>
</ul> </div> <div class="most-popular"> <div class="top-list"> <h2 class="top-list__heading">Latest Business News</h2> <ul class="top-list__list"> <li class="top-list-item top-list-item__1 top-list-item--ranked top-list-item--odd"> <a class="top-list-item__link" href="/news/business-35873786" rev="most-popular|link" > <span class="top-list-item__bullet">1</span> <h3 class="top-list-item__headline">EDF decision on Hinkley Point due in May</h3> </a> </li> <li class="top-list-item top-list-item__2 top-list-item--ranked top-list-item--even"> <a class="top-list-item__link" href="/news/business-35871292" rev="most-popular|link" > <span class="top-list-item__bullet">2</span> <h3 class="top-list-item__headline">Nigeria state oil firm 'withheld $25bn'</h3> </a> </li> <li class="top-list-item top-list-item__3 top-list-item--ranked top-list-item--odd"> <a class="top-list-item__link" href="/news/business-35873886" rev="most-popular|link" > <span class="top-list-item__bullet">3</span> <h3 class="top-list-item__headline">China's challenges: A bumpy road ahead</h3> </a> </li> <li class="top-list-item top-list-item__4 top-list-item--ranked top-list-item--even"> <a class="top-list-item__link" href="/news/business-35874531" rev="most-popular|link" > <span class="top-list-item__bullet">4</span> <h3 class="top-list-item__headline">Bangladesh eyes lawsuit against NY Fed</h3> </a> </li> <li class="top-list-item top-list-item__5 top-list-item--ranked top-list-item--odd"> <a class="top-list-item__link" href="/news/technology-35221693" rev="most-popular|link" > <span class="top-list-item__bullet">5</span> <h3 class="top-list-item__headline">Former Intel chief Andrew Grove dies</h3> </a> </li> </ul> </div> </div> <div class="advert advert--native"><!-- BBCDOTCOM slot native --><div id="bbccom_native_1_2_3_4" class="bbccom_slot" aria-hidden="true"><div class="bbccom_advert"><script type="text/javascript"> /*<![CDATA[*/ (function() { if (window.bbcdotcom && bbcdotcom.asyncSlot) { bbcdotcom.slotAsync('native', [1,2,3,4]); } })(); /*]]>*/ </script></div></div></div> </div> </div> </section> <section class="module module--collapse-images module--special-features module--primary-special-features"> <div class="module__content"> <ul class="features"> <li class="feature feature--1"> <h2 class="feature__title"> <a class="feature__link" href="http://www.bbc.com/news/business-31157861" rev="primary-special-features|header" > Life of Luxury </a> </h2> <div class="feature__content">
<div class="media media--overlay media--primary block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef-1.bbci.co.uk/news/624/cpsprodpb/A92B/production/_88870334_bulgarihotels.jpg" data-alt="Bulgari hotel"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="Bulgari hotel" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="http://www.bbc.com/news/business-35857946"
rev="primary-special-features|headline" >
When does a luxury brand go too far? </a>
</h3>
<a class="media__tag tag tag--business" href="/news/business"
rev="primary-special-features|source" >Business</a>
</div>
<a class="block-link__overlay-link"
href="http://www.bbc.com/news/business-35857946"
rev="primary-special-features|overlay" tabindex="-1"
aria-hidden="true">
When does a luxury brand go too far? </a>
</div>
</div> <div class="feature__ad"> <div class="advert advert--module_feature-1 advert--sponsor"><!-- BBCDOTCOM slot module_feature-1 --><div id="bbccom_module_feature-1_1_2_3_4" class="bbccom_slot" aria-hidden="true"><div class="bbccom_advert"><script type="text/javascript"> /*<![CDATA[*/ (function() { if (window.bbcdotcom && bbcdotcom.asyncSlot) { bbcdotcom.slotAsync('module_feature-1', [1,2,3,4]); } })(); /*]]>*/ </script></div></div></div> </div> </li> <li class="feature-ad"> <div class="advert advert--mpu_middle"><!-- BBCDOTCOM slot mpu_middle --><div id="bbccom_mpu_middle_1_2_3_4" class="bbccom_slot" aria-hidden="true"><div class="bbccom_advert"><script type="text/javascript"> /*<![CDATA[*/ (function() { if (window.bbcdotcom && bbcdotcom.asyncSlot) { bbcdotcom.slotAsync('mpu_middle', [1,2,3,4]); } })(); /*]]>*/ </script></div></div></div> </li> <li class="feature feature--2"> <h2 class="feature__title"> <a class="feature__link" href="http://www.bbc.com/capital/columns/expat-guide" rev="primary-special-features|header" > Expat guide </a> </h2> <div class="feature__content">
<div class="media media--overlay media--primary block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/ibroadcast/images/live/p0/3n/n9/p03nn94g.jpg" data-alt="Beijing"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="Beijing" /></div></div> </div>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="http://www.bbc.com/capital/story/20140415-beijing-bound-expat-guide"
rev="primary-special-features|headline" >
Is Beijing the hot spot for expat jobs? </a>
</h3>
<a class="media__tag tag tag--capital" href="http://www.bbc.com/capital"
rev="primary-special-features|source" >Capital</a>
</div>
<a class="block-link__overlay-link"
href="http://www.bbc.com/capital/story/20140415-beijing-bound-expat-guide"
rev="primary-special-features|overlay" tabindex="-1"
aria-hidden="true">
Is Beijing the hot spot for expat jobs? </a>
</div>
</div> <div class="feature__ad"> <div class="advert advert--module_feature-2 advert--sponsor"><!-- BBCDOTCOM slot module_feature-2 --><div id="bbccom_module_feature-2_1_2_3_4" class="bbccom_slot" aria-hidden="true"><div class="bbccom_advert"><script type="text/javascript"> /*<![CDATA[*/ (function() { if (window.bbcdotcom && bbcdotcom.asyncSlot) { bbcdotcom.slotAsync('module_feature-2', [1,2,3,4]); } })(); /*]]>*/ </script></div></div></div> </div> </li> </ul> </div> </section> <section class="module module--collapse-images module--video module--highlight"> <h2 class="module__title">
<span class="module__title__link tag tag--default">Featured video</span>
</h2>
<div class="module__content"> <div class="video video--noslick" id="video" data-wwhp-module="video"> <div class="video__player"> <div id="player" class="video__smp"></div>
<div class="media media--primary media--overlay block-link--no-filter media--icon block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/cpsprodpb/144AF/production/_88891138_88891136.jpg" data-alt="Passengers leave Brussels metro after blast"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="Passengers leave Brussels metro after blast" /></div></div> </div>
<span class="media__icon icon icon--video" aria-hidden="true"></span>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="http://www.bbc.com/news/world-europe-35869493"
rev="video|headline" >
Passengers leave Brussels metro after blast </a>
</h3>
<p class="media__summary">
People filed out of the train and had to walk through the tunnel to get out. </p>
<a class="media__tag tag tag--europe-news" href="http://www.bbc.com/news/world/europe"
rev="video|source" >Europe</a>
</div>
<a class="block-link__overlay-link"
href="http://www.bbc.com/news/world-europe-35869493"
rev="video|overlay" tabindex="-1"
aria-hidden="true">
Passengers leave Brussels metro after blast </a>
</div>
</div> <div class="video__content"> <ul class="video__tabs"> <li class="video__tab"> <a class="video__tab__link" role="link" data-category="recommended" href="#"> Recommended </a> </li> <li class="video__tab"> <a class="video__tab__link" role="link" data-category="most-watched" href="#"> Most Watched </a> </li> <li class="video__tab"> <a class="video__tab__link" role="link" data-category="latest" href="#"> Latest </a> </li> </ul> <div class="video__viewport"> <ul class="video__items"> <li class="video__item video__item video__item--0 video__item--recommended" data-category="recommended" data-index="0" data-category-index="0" data-video="{"id":"201603221303-passengers-leave-brussels-metro-after-blast","type":"video","title":"Passengers leave Brussels metro after blast","url":"http:\/\/www.bbc.com\/news\/world-europe-35869493","img":"http:\/\/ichef.bbci.co.uk\/wwhp\/800\/cpsprodpb\/144AF\/production\/_88891138_88891136.jpg","imgalttext":"Passengers leave Brussels metro after blast","pid":"p03nn5fq","duration":"PT20S","gelicon":"video","summary":"People filed out of the train and had to walk through the tunnel to get out.","allowadvertising":true,"source":"europe-news","customsource":false,"sourcename":"Europe","sourceurl":"http:\/\/www.bbc.com\/news\/world\/europe","sourceid":"europe-news","itemtype":"curated"}">
<div class="media media--video media--horizontal media--primary media--icon block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/cpsprodpb/144AF/production/_88891138_88891136.jpg" data-alt="Passengers leave Brussels metro after blast"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="Passengers leave Brussels metro after blast" /></div></div> </div>
<span class="media__icon icon icon--video" aria-hidden="true"></span>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="http://www.bbc.com/news/world-europe-35869493"
rev="video|headline" >
Passengers leave Brussels metro after blast </a>
</h3>
<a class="media__tag tag tag--europe-news" href="http://www.bbc.com/news/world/europe"
rev="video|source" >Europe</a>
</div>
<a class="block-link__overlay-link"
href="http://www.bbc.com/news/world-europe-35869493"
rev="video|overlay" tabindex="-1"
aria-hidden="true">
Passengers leave Brussels metro after blast </a>
</div>
</li> <li class="video__item video__item video__item--1 video__item--recommended" data-category="recommended" data-index="1" data-category-index="1" data-video="{"id":"201603221056-my-colleague-hid-in-the-luggage-carousel","type":"video","title":"'My colleague hid in the luggage carousel'","url":"http:\/\/www.bbc.co.uk\/news\/world-europe-35869490","img":"http:\/\/ichef.bbci.co.uk\/wwhp\/800\/ibroadcast\/images\/live\/p0\/3n\/my\/p03nmy8m.jpg","imgalttext":"'My colleague hid in the luggage carousel'","pid":"p03nmy7d","duration":"PT2M13S","gelicon":"video","summary":"A man who was in the departure lounge when there was an explosion has been describing what he saw.","allowadvertising":true,"source":"europe-news","customsource":false,"sourcename":"Europe","sourceurl":"http:\/\/www.bbc.com\/news\/world\/europe","sourceid":"europe-news","itemtype":"curated"}">
<div class="media media--video media--horizontal media--icon block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/ibroadcast/images/live/p0/3n/my/p03nmy8m.jpg" data-alt="'My colleague hid in the luggage carousel'"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="'My colleague hid in the luggage carousel'" /></div></div> </div>
<span class="media__icon icon icon--video" aria-hidden="true"></span>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="http://www.bbc.co.uk/news/world-europe-35869490"
rev="video|headline" >
'My colleague hid in the luggage carousel' </a>
</h3>
<a class="media__tag tag tag--europe-news" href="http://www.bbc.com/news/world/europe"
rev="video|source" >Europe</a>
</div>
<a class="block-link__overlay-link"
href="http://www.bbc.co.uk/news/world-europe-35869490"
rev="video|overlay" tabindex="-1"
aria-hidden="true">
'My colleague hid in the luggage carousel' </a>
</div>
</li> <li class="video__item video__item video__item--2 video__item--recommended" data-category="recommended" data-index="2" data-category-index="2" data-video="{"contenttype":"video","num":"10","type":"MAP","title":"Brussels attacks: Vigils and tributes","url":"\/news\/world-europe-35878086","summary":"Tributes have been paid to those who have died and were injured in the terrorist attacks in Brussels.","img":"http:\/\/ichef.bbci.co.uk\/wwhp\/800\/cpsprodpb\/34E4\/production\/_88904531_88904529.jpg","imgalttext":"Vigil in Brussels","pid":"p03nqcy6","duration":"PT1M14S","pidtype":"Version","sourcename":"Europe","sourceurl":"\/news\/world\/europe","created":"2016-03-22T22:19:41+00:00","updated":"2016-03-22T22:19:41+00:00","origincode":"cpsprodpb","gelicon":"video","sourceid":"videos","itemtype":"feed","allowadvertising":false}">
<div class="media media--video media--horizontal media--icon block-link">
<div class="media__image">
<div class="responsive-image"><div class="delayed-image-load" data-src="http://ichef.bbci.co.uk/wwhp/{width}/cpsprodpb/34E4/production/_88904531_88904529.jpg" data-alt="Vigil in Brussels"><img src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7" alt="Vigil in Brussels" /></div></div> </div>
<span class="media__icon icon icon--video" aria-hidden="true"></span>
<div class="media__content">
<h3 class="media__title">
<a class="media__link" href="/news/world-europe-35878086"
rev="video|headline" >
Brussels attacks: Vigils and tributes </a>
</h3>
<a class="media__tag tag tag--videos" href="/news/world/europe"
rev="video|source" >Europe</a>