This repository has been archived by the owner on Aug 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwww.bbc.com.html
1218 lines (1076 loc) · 119 KB
/
www.bbc.com.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" id="responsive-news" prefix="og: http://ogp.me/ns#">
<head >
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Robert Downey Jr pardoned for 20-year-old drug conviction - BBC News</title>
<meta name="description" content="The governor of California pardons US actor Robert Downey Jr for a nearly 20-year-old drug conviction for which he spent a year in jail.">
<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/">
<meta name="x-country" content="us">
<meta name="x-audience" content="US">
<meta name="CPS_AUDIENCE" content="US">
<meta name="CPS_CHANGEQUEUEID" content="265619677">
<link rel="canonical" href="http://www.bbc.com/news/world-us-canada-35177339">
<link rel="alternate" hreflang="en-gb" href="http://www.bbc.co.uk/news/world-us-canada-35177339">
<link rel="alternate" hreflang="en" href="http://www.bbc.com/news/world-us-canada-35177339">
<meta property="og:title" content="Robert Downey Jr pardoned for 20-year-old drug conviction - BBC News" />
<meta property="og:type" content="article" />
<meta property="og:description" content="The governor of California pardons US actor Robert Downey Jr for a nearly 20-year-old drug conviction for which he spent a year in jail." />
<meta property="og:site_name" content="BBC News" />
<meta property="og:locale" content="en_GB" />
<meta property="og:article:author" content="BBC News" />
<meta property="og:article:section" content="US & Canada" />
<meta property="og:url" content="http://www.bbc.com/news/world-us-canada-35177339" />
<meta property="og:image" content="http://ichef-1.bbci.co.uk/news/1024/cpsprodpb/162D/production/_87377650_hi030688408.jpg" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@BBCWorld">
<meta name="twitter:title" content="Robert Downey Jr pardoned for 20-year-old drug conviction - BBC News">
<meta name="twitter:description" content="The governor of California pardons US actor Robert Downey Jr for a nearly 20-year-old drug conviction for which he spent a year in jail.">
<meta name="twitter:creator" content="@BBCWorld">
<meta name="twitter:image:src" content="http://ichef-1.bbci.co.uk/news/560/cpsprodpb/162D/production/_87377650_hi030688408.jpg">
<meta name="twitter:image:alt" content="Robert Downey Jr" />
<meta name="twitter:domain" content="www.bbc.com">
<script type="application/ld+json">
{
"@context": "http://schema.org"
,"@type": "Article"
,"url": "http://www.bbc.com/news/world-us-canada-35177339"
,"publisher": {
"@type": "Organization",
"name": "BBC News",
"logo": "http://www.bbc.co.uk/news/special/2015/newsspec_10857/bbc_news_logo.png?cb=1"
}
,"headline": "Robert Downey Jr pardoned for 20-year-old drug conviction"
,"mainEntityOfPage": "http://www.bbc.com/news/world-us-canada-35177339"
,"articleBody": "The governor of California pardons US actor Robert Downey Jr for a nearly 20-year-old drug conviction for which he spent a year in jail."
,"image": {
"@list": [
"http://ichef.bbci.co.uk/news/560/cpsprodpb/171D5/production/_87377649_hi030688408.jpg"
]
}
,"datePublished": "2015-12-24T21:09:06+00:00"
}
</script>
<link rel="amphtml" href="http://www.bbc.co.uk/news/amp/35177339">
<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.105.0494/apple-touch-icon-57x57-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://static.bbci.co.uk/news/1.105.0494/apple-touch-icon-72x72-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://static.bbci.co.uk/news/1.105.0494/apple-touch-icon-114x114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://static.bbci.co.uk/news/1.105.0494/apple-touch-icon.png">
<link rel="apple-touch-icon" href="http://static.bbci.co.uk/news/1.105.0494/apple-touch-icon.png">
<meta name="application-name" content="BBC News">
<meta name="msapplication-TileImage" content="http://static.bbci.co.uk/news/1.105.0494/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_async_config = _sf_async_config || {};
var _sf_startpt=(new Date()).getTime();
_sf_async_config.domain = "www.bbc.co.uk";
_sf_async_config.uid = "50924";
_sf_async_config.path = "bbc.co.uk/news/world-us-canada-35177339";
</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 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> <!--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.3.0/sharedmodules/jquery-1.7.2", "jquery-1.4":"http://static.bbci.co.uk/frameworks/jquery/0.3.0/sharedmodules/jquery-1.4", "jquery-1.9":"http://static.bbci.co.uk/frameworks/jquery/0.3.0/sharedmodules/jquery-1.9.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", "istats-1":"http://static.bbci.co.uk/frameworks/istats/0.28.7/modules/istats-1", "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 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()+";");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()+";");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.6.15/script/bbccookies.js"><\/script>';if(window.bbccookies_flag==="ON"&&!bbccookies._acceptsAll()&&!window.bbccookies_disable){document.write(o)}}n()})(); /*]]>*/</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>
<!--[if (gt IE 8) | (IEMobile)]><!-->
<link rel="stylesheet" href="http://static.bbci.co.uk/frameworks/barlesque/3.7.3/orb/4/style/orb.min.css">
<!--<![endif]-->
<!--[if (lt IE 9) & (!IEMobile)]>
<link rel="stylesheet" href="http://static.bbci.co.uk/frameworks/barlesque/3.7.3/orb/4/style/orb-ie.min.css">
<![endif]-->
<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.7.3/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.7.3/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/0.3.346/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/0.3.346/"; 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/0.3.346/script/orb/individual.js">\x3C/script>'); } else { document.write('<script type="text/javascript" src="http://static.bbci.co.uk/bbcdotcom/0.3.346/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/0.3.346/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":"news>world","asyncEnabled":true,"disableInitialLoad":false,"advertInfoPageUrl":"http:\/\/www.bbc.co.uk\/faqs\/online\/adverts_general","advertisementText":"Advertisement","analyticsEnabled":true,"appName":"tabloid","assetPrefix":"http:\/\/static.bbci.co.uk\/bbcdotcom\/0.3.346\/","continuousPlayEnabled":true,"customAdParams":[],"customStatsParams":[],"headline":"Robert Downey Jr pardoned for 20-year-old drug conviction","id":"35177339","inAssociationWithText":"in association with","keywords":"","language":"","orbTransitional":false,"outbrainEnabled":true,"palEnv":"live","productName":"","sections":[],"siteCatalystEnabled":true,"comScoreEnabled":true,"comscoreSite":"bbc-global-test","comscoreID":"18897612","comscorePageName":"news.world-us-canada-35177339","slots":"","sponsoredByText":"is sponsored by","adsByGoogleText":"Ads by Google","summary":"The governor of California pardons US actor Robert Downey Jr for a nearly 20-year-old drug conviction for which he spent a year in jail.","type":"STORY","staticBase":"\/bbcdotcom","staticHost":"http:\/\/static.bbci.co.uk","staticVersion":"0.3.346","staticPrefix":"http:\/\/static.bbci.co.uk\/bbcdotcom\/0.3.346","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/0.3.346/"); bbcdotcom.config.setVersion("0.3.346"); 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> <script type="text/javascript">/*<![CDATA[*/
window.bbcFlagpoles_istats = 'ON';
window.orb = window.orb || {};
if (bbccookies.isAllowed('s1')) {
var istatsTrackingUrl = '//sa.bbc.co.uk/bbc/bbc/s?name=news.world.us_and_canada.story.35177339.page&cps_asset_id=35177339&page_type=Story§ion=%2Fnews%2Fworld%2Fus_and_canada&first_pub=2015-12-24T20%3A26%3A57%2B00%3A00&last_editorial_update=2015-12-24T21%3A09%3A06%2B00%3A00&curie=asset%3A3ef8e45a-9dd2-544d-b34b-2e93abe94a62&title=Robert+Downey+Jr+pardoned+for+20-year-old+drug+conviction&for_nation=us&app_version=1.105.0&bbc_site=news&pal_route=asset&ml_name=barlesque&app_type=responsive&language=en-GB&ml_version=0.28.7&pal_webapp=tabloid&prod_name=news&app_name=news';
require(['istats-1'], function (istats) {
istats.addCollector({'name': 'default', 'url': '//sa.bbc.co.uk/bbc/bbc/s', 'separator': '&' });
var counterName = (window.istats_countername) ? window.istats_countername : istatsTrackingUrl.match(/[\?&]name=([^&]*)/i)[1];
istats.setCountername(counterName);
if (/\bIDENTITY=/.test(document.cookie)) {
istats.addLabels({'bbc_identity': '1'});
}
if (/\bckns_policy=\d\d0/.test(document.cookie)) {
istats.addLabels({'ns_nc': '1'});
}
var c = (document.cookie.match(/\bckns_policy=(\d\d\d)/) || []).pop() || '';
var screenWidthAndHeight = 'unavailable';
if (window.screen && screen.width && screen.height) {
screenWidthAndHeight = screen.width + 'x' + screen.height;
}
istats.addLabels('cps_asset_id=35177339&page_type=Story§ion=%2Fnews%2Fworld%2Fus_and_canada&first_pub=2015-12-24T20%3A26%3A57%2B00%3A00&last_editorial_update=2015-12-24T21%3A09%3A06%2B00%3A00&curie=asset%3A3ef8e45a-9dd2-544d-b34b-2e93abe94a62&title=Robert+Downey+Jr+pardoned+for+20-year-old+drug+conviction&for_nation=us&app_version=1.105.0&bbc_site=news&pal_route=asset&ml_name=barlesque&app_type=responsive&language=en-GB&ml_version=0.28.7&pal_webapp=tabloid&prod_name=news&app_name=news');
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'),
'screen_resolution': screenWidthAndHeight,
'ns_referrer': encodeURI(((window.orb.referrer) ? window.orb.referrer : document.referrer))
}
);
});
}
/*]]>*/</script>
<!--NavID:0.2.0-112--> <link rel="stylesheet" href="//static.bbc.co.uk/id/0.33.19/style/id-cta.css" /> <!--[if IE 8]><link href="//static.bbc.co.uk/id/0.33.19/style/ie8.css" rel="stylesheet"/> <![endif]--> <script type="text/javascript"> /* <![CDATA[ */ define('id-statusbar-config', { 'translation_signedout': "Sign in", 'translation_signedin': "Your account", 'use_overlay' : false, 'locale' : "en-GB", 'policyname' : "", 'signin_url' : "//ssl.bbc.co.uk/id/signin?ptrt=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-us-canada-35177339", 'ptrt' : "http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-us-canada-35177339" }); var map = {}; if (typeof(map['jssignals-1']) == 'undefined') { map['jssignals-1'] = '//static.bbc.co.uk/frameworks/jssignals/0.3.6/modules/jssignals-1'; } map['idcta/statusbar'] = '//static.bbc.co.uk/id/0.33.19/modules/idcta/statusbar'; 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'); } var map = {}; map['idapp-1'] = '//static.bbc.co.uk/idapp/0.71.84/modules/idapp/idapp-1'; map['idcta/idcta-1'] = '//static.bbc.co.uk/id/0.33.19/modules/idcta/idcta-1'; map['idcta/idCookie'] = '//static.bbc.co.uk/id/0.33.19/modules/idcta/idCookie'; map['idcta/overlayManager'] = '//static.bbc.co.uk/id/0.33.19/modules/idcta/overlayManager'; require({paths: map}); define('id-config', {"idapp":{"version":"0.71.84","hostname":"ssl.bbc.co.uk","insecurehostname":"www.bbc.co.uk","tld":"bbc.co.uk"},"idtranslations":{"version":"0.33.27"},"identity":{"baseUrl":"https:\/\/talkback.live.bbc.co.uk\/identity","cookieAgeDays":730,"accessTokenCookieName":"ckns_IDA-ATKN"},"pathway":{"name":null,"staticAssetUrl":"https:\/\/static.bbc.co.uk\/idapp\/0.71.84\/modules\/idapp\/idapp-1\/View.css"},"idpurl":"https:\/\/idp.api.bbc.co.uk\/idp\/oauth2\/authorize?client_id=bbc-co-uk&response_type=code&scope=openid+play.bbcstore.r+plays.any.w+plays.any.r+follows.any.w+follows.any.r+favourites.any.w+favourites.any.r+idm.basic.r+feedback.any.r+feedback.any.w+loves.any.r+loves.any.w&module=bbc-co-uk&state=ptrt%3Dhttp%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-us-canada-35177339%26locale%3Den-GB&redirect_uri=https%3A%2F%2Fssl.bbc.co.uk%2Fid%2Foauth2%2Fconsume%2Fidp.bbc.co.uk"}); })(); </script> <script type="text/javascript"> require(['idcta/idCookie'], function(idCookie){ if (typeof(document) != 'undefined' && typeof(document.cookie) != 'undefined') { var idCookieInstance = idCookie.getInstance(); /* Timestamp in milliseconds for the 6am on 27th of October 2015 */ var timestamp27thOct = 1445925600000; /* Only select users who signed in before the dooms day and were not downgraded yet */ if (idCookieInstance.hasCookie() && idCookieInstance.timestamp != '' && parseInt(idCookieInstance.timestamp) > 0 && parseInt(idCookieInstance.timestamp) < timestamp27thOct && !idCookieInstance.isDowngraded()) { /* iPlayer uplift is session cookie, so downgrade based on this cookie missed 20% users. To cover all the users with our fix, ut is nor uncoditional: all users that have not been downgraded before will now be downgraded */ idCookieInstance.downgrade(); } } }); </script>
<link rel="stylesheet" href="//mybbc.files.bbci.co.uk/s/notification-ui/18/css/main.min.css"/>
<link type="text/css" rel="stylesheet" href="http://static.bbci.co.uk/news/1.105.0494/stylesheets/services/news/core.css">
<!--[if lt IE 9]>
<link type="text/css" rel="stylesheet" href="http://static.bbci.co.uk/news/1.105.0494/stylesheets/services/news/old-ie.css">
<script src="http://static.bbci.co.uk/news/1.105.0494/js/vendor/html5shiv/html5shiv.js"></script>
<![endif]-->
<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":"35177339","asset_uri":"\/news\/world-us-canada-35177339","first_created":{"date":"2015-12-24 20:26:57","timezone_type":3,"timezone":"Europe\/London"},"last_updated":{"date":"2015-12-24 21:09:06","timezone_type":3,"timezone":"Europe\/London"},"options":{"allowRightHandSide":true,"allowRelatedStoriesBox":true,"includeComments":false,"isIgorSeoTagsEnabled":false,"hasNewsTracker":false,"allowAdvertising":true,"hasContentWarning":false,"allowDateStamp":true,"allowHeadline":true,"isKeyContent":false,"allowPrintingSharingLinks":true,"isBreakingNews":false,"suitableForSyndication":true},"section":{"name":"US & Canada","id":"99127","uri":"\/news\/world\/us_and_canada","urlIdentifier":"\/news\/world\/us_and_canada"},"edition":"US","audience":null,"iStats_counter_name":"news.world.us_and_canada.story.35177339.page","type":"STY","length":1345,"byline":{},"headline":"Robert Downey Jr pardoned for 20-year-old drug conviction","mediaType":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.105.0494","jsPath":"http:\/\/static.bbci.co.uk\/news\/1.105.0494\/js","cssPath":"http:\/\/static.bbci.co.uk\/news\/1.105.0494\/stylesheets\/services\/news","cssPostfix":"","dynamic":null,"features":{"localnews":true,"video":true,"liveeventcomponent":true,"mediaassetpage":true,"travel":true,"gallery":true,"rollingnews":true,"rumanalytics":true,"sportstories":true,"radiopromo":true,"fromothernewssites":true,"locallive":true,"weather":true},"features2":{"svg_brand":true,"chartbeat":true,"chartbeat_mvt":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,"politics_election2016_az_pages":true,"politics_election2016_council_police_pages":true,"politics_election2016_ni_results_page":true,"politics_election2016_scotland_results_page":true,"politics_election2016_wales_results_page":true,"responsive_breaking_news":true,"live_event":true,"most_popular":true,"most_popular_tabs":true,"most_popular_by_day":true,"routing":true,"rum":true,"radiopromonownext":true,"config_based_layout":true,"orb":true,"enhanced_gallery":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_recommendations":true,"cedexis":true,"mpulse":true,"story_single_column_layout":true,"story_image_copyright_labels":true,"ovp_resolve_primary_media_vpids":false,"media_player":true,"travel":true,"services_bar":true,"live_v2_stream":true},"configuration":{"showtimestamp":"1","showweather":"1","showsport":"1","showolympics":"1","showfeaturemain":"1","showsitecatalyst":"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,"rumAnalytics":{"server":"http:\/\/ingest.rum.bbc.co.uk","key":"news","sample_rate":0.1,"url_params":null,"edition":"us"},"isChannelPage":false,"suitenameMap":"","languageVariant":"","commentsHost":"http:\/\/feeds.bbci.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={},u=function(){var e=document.documentElement.clientWidth,r=document.documentElement.clientHeight,s=window.innerWidth,i=window.innerHeight,a=s>1.5*e;t=a?e:s,n=a?r:i},c=function(e){var t=document.createElement("link");t.setAttribute("rel","stylesheet"),t.setAttribute("type","text/css"),t.setAttribute("href",r+e+s+".css"),t.setAttribute("media",a[e]),i.parentNode.insertBefore(t,i),delete a[e]},l=function(e,r,s){r&&!s&&(t>=r||n>=r)&&c(e),s&&!r&&(s>=t||s>=n)&&c(e),r&&s&&(t>=r||n>=r)&&(s>=t||s>=n)&&c(e)},f=function(e){if(o[e])return o[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 o[e]=[r,s],o[e]},m=function(){var e=0;for(var t in a)e++;return e},d=function(){m()||window.removeEventListener("resize",h,!1);for(var e in a){var t=a[e],n=f(t);l(e,n[0],n[1])}},h=function(){u(),d()},v=function(e,t){a=e,r=t.path+("/"!==t.path.substr(-1)?"/":""),s=t.postfix,i=t.insertBefore,u(),d(),window.addEventListener("resize",h,!1)};return{stylesheetLoaderInit:v}}(); 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.105.0494/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.3.0\/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.105.0494/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\/rumAdaptor","module\/stats\/statsSubscriberAdapter","module\/alternativeJsStrategy\/controller","module\/iconLoaderAdapter","module\/polyfill\/location.origin","module\/components\/breakingNewsAdapter","module\/indexTitleAdaptor","module\/navigation\/handlerAdaptor","module\/noTouchDetectionForCss","module\/components\/responsiveImage","module\/components\/timestampAdaptor","module\/tableScrollAdapter","module\/components\/mediaPlayer\/mainAdapter","module\/stats\/statsBindingAdapter","module\/hotspot\/handlerAdapter"], function() { require(["module\/strategiserAdaptor"]); }); }); }); });
}; loadRequire(); } else { var l = document.createElement('link'); l.href = 'http://static.bbci.co.uk/news/1.105.0494/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> <noscript><link href="http://static.bbci.co.uk/news/1.105.0494/icons/generated/icons.fallback.css" rel="stylesheet"></noscript>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=1">
</head>
<!--[if IE]><body id="asset-type-sty" class="ie device--feature"><![endif]-->
<!--[if !IE]>--><body id="asset-type-sty" class="device--feature"><!--<![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'); 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')); } if (window.bbcdotcom && bbcdotcom.config.isActive('continuousPlay')) { document.write(unescape('%3Cscript id="gnlContinuousPlayEnabled" 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> <script type="text/javascript">/*<![CDATA[*/ if (bbccookies.isAllowed('s1')) { require(['istats-1'], function (istats) { istats.invoke(); }); } /*]]>*/</script> <!-- Begin iStats 20100118 (UX-CMC 1.1009.3) --> <script type="text/javascript">/*<![CDATA[*/ if (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> <noscript><p style="position: absolute; top: -999em;"><img src="//sa.bbc.co.uk/bbc/bbc/s?name=news.world.us_and_canada.story.35177339.page&cps_asset_id=35177339&page_type=Story&section=%2Fnews%2Fworld%2Fus_and_canada&first_pub=2015-12-24T20%3A26%3A57%2B00%3A00&last_editorial_update=2015-12-24T21%3A09%3A06%2B00%3A00&curie=asset%3A3ef8e45a-9dd2-544d-b34b-2e93abe94a62&title=Robert+Downey+Jr+pardoned+for+20-year-old+drug+conviction&for_nation=us&app_version=1.105.0&bbc_site=news&pal_route=asset&ml_name=barlesque&app_type=responsive&language=en-GB&ml_version=0.28.7&pal_webapp=tabloid&prod_name=news&app_name=news&blq_js_enabled=0&blq_s=4d&blq_r=2.7&blq_v=default&blq_e=pal " height="1" width="1" alt=""/></p></noscript> <!-- 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-nav-empty" > <div class="orb-nav-pri-container b-r b-g-p"> <div class="orb-nav-section orb-nav-blocks"> <a href="/"> <img src="http://static.bbci.co.uk/frameworks/barlesque/3.7.3/orb/4/img/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="#page">Skip to content</a></li> <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%2Fnews%2Fworld-us-canada-35177339"> <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 src="http://static.bbci.co.uk/frameworks/barlesque/3.7.3/orb/4/img/orb-search-dark.png" width="18" height="18" alt="Search the BBC" /> </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="/news/world-us-canada-35177339" /> <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.7.3/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">
<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="/news" id="brand">
<svg class="brand__svg" aria-label="BBC News">
<title>BBC News</title>
<image xlink:href="http://static.bbci.co.uk/news/1.105.0494/img/brand/generated/news-light.svg" src="http://static.bbci.co.uk/news/1.105.0494/img/brand/generated/news-light.png" width="100%" height="100%"/>
</svg>
</a>
<h2 class="navigation__heading off-screen">News navigation</h2>
<a href="#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">
<li>
<a href="/news" class="navigation-wide-list__link">
<span>Home</span>
</a>
</li>
<li>
<a href="/news/video_and_audio/international" class="navigation-wide-list__link">
<span>Video</span>
</a>
</li>
<li>
<a href="/news/world" data-panel-id="js-navigation-panel-World" class="navigation-wide-list__link">
<span>World</span>
</a>
</li>
<li class="selected">
<a href="/news/world/us_and_canada" data-panel-id="js-navigation-panel-US___Canada" class="navigation-wide-list__link navigation-arrow--open">
<span>US & Canada</span>
</a>
<span class="off-screen">selected</span> </li>
<li>
<a href="/news/uk" data-panel-id="js-navigation-panel-UK" class="navigation-wide-list__link">
<span>UK</span>
</a>
</li>
<li>
<a href="/news/business" data-panel-id="js-navigation-panel-Business" class="navigation-wide-list__link">
<span>Business</span>
</a>
</li>
<li>
<a href="/news/technology" class="navigation-wide-list__link">
<span>Tech</span>
</a>
</li>
<li>
<a href="/news/science_and_environment" class="navigation-wide-list__link">
<span>Science</span>
</a>
</li>
<li>
<a href="/news/magazine" class="navigation-wide-list__link">
<span>Magazine</span>
</a>
</li>
<li>
<a href="/news/entertainment_and_arts" class="navigation-wide-list__link">
<span>Entertainment & Arts</span>
</a>
</li>
<li>
<a href="/news/health" class="navigation-wide-list__link">
<span>Health</span>
</a>
</li>
<li>
<a href="/news/in_pictures" class="navigation-wide-list__link">
<span>In Pictures</span>
</a>
</li>
<li>
<a href="/news/also_in_the_news" class="navigation-wide-list__link">
<span>Also in the News</span>
</a>
</li>
<li>
<a href="/news/special_reports" class="navigation-wide-list__link">
<span>Special Reports</span>
</a>
</li>
<li>
<a href="/news/world_radio_and_tv" class="navigation-wide-list__link">
<span>World News TV</span>
</a>
</li>
<li>
<a href="/news/explainers" class="navigation-wide-list__link">
<span>Explainers</span>
</a>
</li>
<li>
<a href="/news/the_reporters" class="navigation-wide-list__link">
<span>The Reporters</span>
</a>
</li>
<li>
<a href="/news/have_your_say" class="navigation-wide-list__link navigation-wide-list__link--last">
<span>Have Your Say</span>
</a>
</li>
</ul>
</div>
<div class="secondary-navigation secondary-navigation--wide">
<nav class="navigation-wide-list navigation-wide-list--secondary" role="navigation" aria-label="US & Canada">
<a class="secondary-navigation__title navigation-wide-list__link selected" href="/news/world/us_and_canada"><span>US & Canada</span></a> <span class="off-screen">selected</span> <ul data-panel-id="js-navigation-panel-secondary">
<li>
<a href="/news/election/us2016"
class="navigation-wide-list__link navigation-wide-list__link--first navigation-wide-list__link--last">
<span>US Election 2016</span>
</a>
</li>
</ul>
</nav>
</div>
</div>
<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.adverts && bbcdotcom.adverts.slotAsync) {
bbcdotcom.adverts.slotAsync('leaderboard', [1,2,3,4]);
}
})();
/*]]>*/
</script>
</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="{"id":"comp-index-title","type":"index-title","handler":"indexTitle","deviceGroups":null,"opts":{"alwaysVisible":false,"onFrontPage":false},"template":"index-title"}">
<span class="index-title__container">
<a href="/news/world/us_and_canada">US & Canada</a>
</span>
</span>
<div id="bbccom_sponsor_section_1_2_3_4" class="bbccom_slot " aria-hidden="true">
<div class="bbccom_advert">
<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-us-canada-35177339"> <div role="main"> <div class="container-width-only"> <span class="index-title index-title--redundant " id="comp-index-title" data-index-title-meta="{"id":"comp-index-title","type":"index-title","handler":"indexTitle","deviceGroups":null,"opts":{"alwaysVisible":false,"onFrontPage":false},"template":"index-title"}">
<span class="index-title__container">
<a href="/news/world/us_and_canada">US & Canada</a>
</span>
</span>
<div id="bbccom_sponsor_section_1_2_3_4" class="bbccom_slot " aria-hidden="true">
<div class="bbccom_advert">
<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">Robert Downey Jr pardoned for 20-year-old drug conviction</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="1450991346" data-datetime="24 December 2015">24 December 2015</div>
</li>
<li class="mini-info-list__item"><span class="mini-info-list__section-desc off-screen">From the section </span><a href="/news/world/us_and_canada" class="mini-info-list__section" data-entityid="section-label">US & Canada</a></li>
</ul>
</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="Robert Downey Jr" src="http://ichef-1.bbci.co.uk/news/320/cpsprodpb/171D5/production/_87377649_hi030688408.jpg" width="976" height="549">
<span class="off-screen">Image copyright</span>
<span class="story-image-copyright">AP</span>
</span>
<figcaption class="media-caption">
<span class="off-screen">Image caption</span>
<span class="media-caption__text">
Mr Downey Jr plays "Iron Man" in the Disney series
</span>
</figcaption>
</figure><p class="story-body__introduction">US actor Robert Downey Jr has been granted an official pardon for a drug conviction that sent him to prison nearly 20 years ago. </p><p>California Governor Jerry Brown announced pardons for 91 people who had been out of custody for 10 years and proved they had turned their lives around.</p><p>The conviction will remain on his record but the actor twice-nominated for an Oscar will have his voting rights restored.</p><p>In 1996, police found cocaine, heroin and a pistol in his car when they stopped him for speeding.</p><p>Downey Jr, who is best known today for his role as 'Iron Man' in a series of Marvel films, was sent to prison in 1999 after violating his probation.</p><div id="bbccom_mpu_1_2_3" class="bbccom_slot mpu-ad" aria-hidden="true">
<div class="bbccom_advert">
<script type="text/javascript">
/**/
(function() {
if (window.bbcdotcom && bbcdotcom.adverts && bbcdotcom.adverts.slotAsync) {
bbcdotcom.adverts.slotAsync('mpu', [1,2,3]);
}
})();
/**/
</script>
</div>
</div><p>He had achieved early success in Hollywood after making his screen debut at the age of five, but went on to fall victim to drink and drugs, before spending time in rehab and rekindling his commercial success. </p><p>A proclamation from Mr Brown's office says Downey Jr has "lived an honest and upright life, exhibited good moral character, and conducted himself as a law-abiding citizen".</p><p>It went on to say he "has paid his debt to society and earned a full and unconditional pardon".</p> <p>Mr Brown has issued hundreds of pardons in each of his four terms in office, usually doing it around Christian holidays.</p><p>Most people pardoned along with Downey Jr had been found guilty of nonviolent drug and property crimes.</p>
</div>
</div>
<div class="share share--lightweight show ghost-column">
<a name="share-tools"></a>
<h2 class="share__title share__title--lightweight">
Share this story <a href="http://www.bbc.co.uk/help/web/sharing.shtml">About 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&body=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-us-canada-35177339" >
<span>Email</span>
</a>
</li>
<li class="share__tool share__tool--facebook">
<a href="http://www.facebook.com/dialog/feed?app_id=58567469885&redirect_uri=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-us-canada-35177339&link=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-us-canada-35177339%3FSThisFB" >
<span>Facebook</span>
</a>
</li>
<li class="share__tool share__tool--twitter">
<a href="https://twitter.com/intent/tweet?text=BBC%20News%20-%20Robert%20Downey%20Jr%20pardoned%20for%2020-year-old%20drug%20conviction&url=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-us-canada-35177339" class=shortenUrl data-social-url=https://twitter.com/intent/tweet?text=BBC+News+-+Robert+Downey+Jr+pardoned+for+20-year-old+drug+conviction&url= data-target-url=http://www.bbc.com/news/world-us-canada-35177339>
<span>Twitter</span>
</a>
</li>
<li class="share__tool share__tool--whatsapp">
<a href="whatsapp://send?text=BBC%20News%20%7C%20Robert%20Downey%20Jr%20pardoned%20for%2020-year-old%20drug%20conviction%20-%20http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-us-canada-35177339%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&url=http%3A%2F%2Fwww.bbc.com%2Fnews%2Fworld-us-canada-35177339&title=Robert%20Downey%20Jr%20pardoned%20for%2020-year-old%20drug%20conviction&summary=The%20governor%20of%20California%20pardons%20US%20actor%20Robert%20Downey%20Jr%20for%20a%20nearly%2020-year-old%20drug%20conviction%20for%20which%20he%20spent%20a%20year%20in%20jail.&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="/news/entertainment-arts-32510837" class="unit__link-wrapper"> <div class="unit__body"> <div class="unit__header"> <div class="unit__title"> <span class="cta"> Robert Downey Jr opens up on C4 interview walk-out </span> </div> <div class="unit__meta"> <div class="date date--v1" data-seconds="1430304131" data-datetime="29 April 2015">29 April 2015</div> </div> </div> </div> </a> </li> </ul> </div> </div> </div>
<div id=comp-pattern-library
class="hidden"
data-post-load-url="/news/pattern-library-components?options%5Bcontainer_class%5D=container-more-from-this-index&options%5Bdata%5D%5Bsource%5D=candy_parent_index&options%5Bdata%5D%5Bsource_params%5D%5Bsection_title%5D=1&options%5Bcomponents%5D%5B0%5D%5Bname%5D=sparrow&options%5Bcomponents%5D%5B0%5D%5Blimit%5D=3&options%5Bloading_strategy%5D=post_load&options%5Bstats%5D%5Blink_location%5D=more-section&options%5Basset_id%5D=world-us-canada-35177339&presenter=pattern-library-presenter">
</div> <div id=comp-from-other-news-sites
class="hidden"
data-comp-meta="{"id":"comp-from-other-news-sites","type":"from-other-news-sites","handler":"default","deviceGroups":null,"opts":{"conditions":["is_local_page"],"loading_strategy":"post_load","asset_id":"world-us-canada-35177339","position_info":{"instanceNo":1,"positionInRegion":9,"lastInRegion":true,"lastOnPage":false,"column":"primary_column"}},"template":"\/component\/from-other-news-sites"}">
</div>
<div id="bbccom_outbrain_ar_5_1_2_3_4" class="bbccom_slot outbrain-ad" aria-hidden="true">
<div class="bbccom_advert">
<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>
</div>
<div id="bbccom_outbrain_ar_7_1_2_3_4" class="bbccom_slot outbrain-ad" aria-hidden="true">
<div class="bbccom_advert">
<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>
</div>
<div id="bbccom_outbrain_ar_8_1_2_3_4" class="bbccom_slot outbrain-ad" aria-hidden="true">
<div class="bbccom_advert">
<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>
</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="/news/world-europe-35178228" class="top-stories-promo-story" data-asset-id="/news/world-europe-35178228"data-entityid="top-stories#1">
<strong class="top-stories-promo-story__title">World intoxicated by consumerism - Pope</strong>
<p class="top-stories-promo-story__summary ">Pope Francis warns the world's 1.2 billion Roman Catholics not to be "intoxicated by consumerism" in his annual Christmas homily.</p>
<div class="date date--v2" data-seconds="1451006586" data-datetime="25 December 2015">25 December 2015</div>
</a>
<a href="/news/world-africa-35178194" class="top-stories-promo-story" data-asset-id="/news/world-africa-35178194"data-entityid="top-stories#3">
<strong class="top-stories-promo-story__title">Many reported dead in Nigeria gas blast</strong>
<div class="date date--v2" data-seconds="1451022643" data-datetime="25 December 2015">25 December 2015</div>
</a>
<a href="/news/world-us-canada-35173624" class="top-stories-promo-story" data-asset-id="/news/world-us-canada-35173624"data-entityid="top-stories#5">
<strong class="top-stories-promo-story__title">Eleven killed in heavy US storms</strong>
<div class="date date--v2" data-seconds="1451000650" data-datetime="24 December 2015">24 December 2015</div>
</a>
</div>
<div id="bbccom_mpu_4" class="bbccom_slot mpu-ad" aria-hidden="true">
<div class="bbccom_advert">
<script type="text/javascript">
/*<![CDATA[*/
(function() {
if (window.bbcdotcom && bbcdotcom.adverts && bbcdotcom.adverts.slotAsync) {
bbcdotcom.adverts.slotAsync('mpu', [4]);
}
})();
/*]]>*/
</script>
</div>
</div>
<div class="hotspot hotspot--empty hotspot--hidden"></div>
<div class="features-and-analysis" id="comp-features-and-analysis" >
<h2 class="features-and-analysis__title">
Features & Analysis
</h2>
<div class="features-and-analysis__stories promo-unit-spacer">
<div class="features-and-analysis__story" data-entityid="features-and-analysis#1">
<a href="/news/magazine-35170829" class="bold-image-promo">
<div class="bold-image-promo__image">
<div class="responsive-image responsive-image--16by9">
<div class="js-delayed-image-load" data-src="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/14B65/production/_87373848_stormtrooper_getty976c.jpg" data-width="976" data-height="549" data-alt="Stormtroopers"></div>
<!--[if lt IE 9]>
<img src="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/14B65/production/_87373848_stormtrooper_getty976c.jpg" class="js-image-replace" alt="Stormtroopers" width="976" height="549" />
<![endif]-->
</div>
</div>
<h3 class="bold-image-promo__title">Plastic force </h3>
<p class="bold-image-promo__summary"> Are Star Wars Stormtrooper toys the largest army on Earth?</p>
</a>
</div>
<div class="features-and-analysis__story" data-entityid="features-and-analysis#2">
<a href="/news/entertainment-arts-35000002" class="bold-image-promo">
<div class="bold-image-promo__image">
<div class="responsive-image responsive-image--16by9">
<div class="js-delayed-image-load" data-src="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/16DD5/production/_87035639_composite1_976.jpg" data-width="976" data-height="549" data-alt="Clockwise from top left: Angry Birds, Deadpool, Zoolander 2, The Jungle Book"></div>
<!--[if lt IE 9]>
<img src="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/16DD5/production/_87035639_composite1_976.jpg" class="js-image-replace" alt="Clockwise from top left: Angry Birds, Deadpool, Zoolander 2, The Jungle Book" width="976" height="549" />
<![endif]-->
</div>
</div>
<h3 class="bold-image-promo__title">2016 in film </h3>
<p class="bold-image-promo__summary">Caped crusaders, fantastic beasts and very angry birds</p>
</a>
</div>
<div class="features-and-analysis__story" data-entityid="features-and-analysis#3">
<a href="/news/magazine-35124145" class="bold-image-promo">
<div class="bold-image-promo__image">
<div class="responsive-image responsive-image--16by9">
<div class="responsive-image__inner-for-label">
<div class="js-delayed-image-load" data-src="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/83B0/production/_87321733_halfnon-tren.jpg" data-width="1920" data-height="1080" data-alt="Two separate composite images showing two halves of a couple's face, and two halves of one of their hands"></div>
<!--[if lt IE 9]>
<img src="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/83B0/production/_87321733_halfnon-tren.jpg" class="js-image-replace" alt="Two separate composite images showing two halves of a couple's face, and two halves of one of their hands" width="1920" height="1080" />
<![endif]-->
<div class="responsive-image__label" aria-hidden="true">
<span class="icon video"><span class="off-screen"> Video</span></span>
<span class="responsive-image__label-text">1:49</span>
</div>
</div>
</div>
</div>
<h3 class="bold-image-promo__title">Love, digitally </h3>
<p class="bold-image-promo__summary"> The lonely long-distance couple that found a way to join their worlds</p>
</a>
</div>
<div class="features-and-analysis__story" data-entityid="features-and-analysis#4">
<a href="/news/business-35114551" class="bold-image-promo">
<div class="bold-image-promo__image">
<div class="responsive-image responsive-image--16by9">
<div class="js-delayed-image-load" data-src="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/609E/production/_87243742_santas.bbc.jpg" data-width="976" data-height="549" data-alt="Yiwu wholesale market"></div>
<!--[if lt IE 9]>
<img src="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/609E/production/_87243742_santas.bbc.jpg" class="js-image-replace" alt="Yiwu wholesale market" width="976" height="549" />
<![endif]-->
</div>
</div>
<h3 class="bold-image-promo__title">No escape</h3>
<p class="bold-image-promo__summary">The city where it is Christmas every day</p>
</a>
</div>
<div class="features-and-analysis__story" data-entityid="features-and-analysis#5">
<a href="/news/world-latin-america-35159149" class="bold-image-promo">
<div class="bold-image-promo__image">
<div class="responsive-image responsive-image--16by9">
<div class="js-delayed-image-load" data-src="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/7B69/production/_87339513_unias1.jpg" data-width="976" data-height="549" data-alt="A man has his nails done in Bogota"></div>
<!--[if lt IE 9]>
<img src="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/7B69/production/_87339513_unias1.jpg" class="js-image-replace" alt="A man has his nails done in Bogota" width="976" height="549" />
<![endif]-->
</div>
</div>
<h3 class="bold-image-promo__title">Perfectly polished</h3>
<p class="bold-image-promo__summary">Why Colombian men like to have manicures</p>
</a>
</div>
<div class="features-and-analysis__story" data-entityid="features-and-analysis#6">
<a href="/news/world-asia-35173909" class="bold-image-promo">
<div class="bold-image-promo__image">
<div class="responsive-image responsive-image--16by9">
<div class="js-delayed-image-load" data-src="http://ichef.bbci.co.uk/news/304/cpsprodpb/6A15/production/_87375172_gettyimages-461474287.jpg" data-width="2048" data-height="1152" data-alt="Security personnel escort a vehicle carrying former Pakistani president Asif Ali Zardari, 9 January 2014"></div>
<!--[if lt IE 9]>
<img src="http://ichef.bbci.co.uk/news/304/cpsprodpb/6A15/production/_87375172_gettyimages-461474287.jpg" class="js-image-replace" alt="Security personnel escort a vehicle carrying former Pakistani president Asif Ali Zardari, 9 January 2014" width="2048" height="1152" />
<![endif]-->
</div>
</div>
<h3 class="bold-image-promo__title">Death of a toddler</h3>
<p class="bold-image-promo__summary">How a tragic incident sparked a row over 'VIP culture'</p>
</a>
</div>
<div class="features-and-analysis__story" data-entityid="features-and-analysis#7">
<a href="/news/magazine-35120965" class="bold-image-promo">
<div class="bold-image-promo__image">
<div class="responsive-image responsive-image--16by9">
<div class="js-delayed-image-load" data-src="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/148D9/production/_87358148_jesuspromonew.jpg" data-width="976" data-height="549" data-alt="Painting - the heart of Jesus, Padua"></div>
<!--[if lt IE 9]>
<img src="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/148D9/production/_87358148_jesuspromonew.jpg" class="js-image-replace" alt="Painting - the heart of Jesus, Padua" width="976" height="549" />
<![endif]-->
</div>
</div>
<h3 class="bold-image-promo__title">Divine image</h3>
<p class="bold-image-promo__summary">Did Jesus really have long hair?</p>
</a>
</div>
<div class="features-and-analysis__story" data-entityid="features-and-analysis#8">
<a href="/news/magazine-35168169" class="bold-image-promo">
<div class="bold-image-promo__image">
<div class="responsive-image responsive-image--16by9">
<div class="js-delayed-image-load" data-src="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/6545/production/_87352952_istock_000011217757_large.jpg" data-width="2048" data-height="1152" data-alt="Golden toilet"></div>
<!--[if lt IE 9]>
<img src="http://ichef-1.bbci.co.uk/news/304/cpsprodpb/6545/production/_87352952_istock_000011217757_large.jpg" class="js-image-replace" alt="Golden toilet" width="2048" height="1152" />
<![endif]-->
</div>
</div>
<h3 class="bold-image-promo__title">52 weeks quiz</h3>
<p class="bold-image-promo__summary">Which country's president denied he had a golden toilet?</p>
</a>
</div>
<div class="features-and-analysis__story" data-entityid="features-and-analysis#9">
<a href="/news/magazine-35161791" class="bold-image-promo">
<div class="bold-image-promo__image">
<div class="responsive-image responsive-image--16by9">
<div class="js-delayed-image-load" data-src="http://ichef.bbci.co.uk/news/304/cpsprodpb/18528/production/_87342699_norieen_3_976.jpg" data-width="976" data-height="549" data-alt="Norieen Yaakob"></div>
<!--[if lt IE 9]>
<img src="http://ichef.bbci.co.uk/news/304/cpsprodpb/18528/production/_87342699_norieen_3_976.jpg" class="js-image-replace" alt="Norieen Yaakob" width="976" height="549" />
<![endif]-->
</div>
</div>
<h3 class="bold-image-promo__title">Death in the forest</h3>
<p class="bold-image-promo__summary">The runaway children too short to survive by picking fruit</p>
</a>
</div>
</div>
</div>
<div id="bbccom_native_1_2_3_4" class="bbccom_slot native-ad" >
<div class="bbccom_advert">
<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="hidden"
data-comp-meta="{"id":"comp-most-popular","type":"most-popular","handler":"mostPopular","deviceGroups":null,"opts":{"loading_strategy":"post_load","position_info":{"instanceNo":1,"positionInRegion":4,"lastInRegion":true,"lastOnPage":true,"column":"secondary_column"}}}">
</div>
<div id="bbccom_mpu_bottom_1_2_3_4" class="bbccom_slot mpu-bottom-ad" aria-hidden="true">
<div class="bbccom_advert">
<script type="text/javascript">
/*<![CDATA[*/
(function() {
if (window.bbcdotcom && bbcdotcom.adverts && bbcdotcom.adverts.slotAsync) {
bbcdotcom.adverts.slotAsync('mpu_bottom', [1,2,3,4]);
}
})();
/*]]>*/
</script>
</div>
</div>
<div id="bbccom_outbrain_ar_9_1_2_3_4" class="bbccom_slot outbrain-ad" aria-hidden="true">
<div class="bbccom_advert">
<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>
</div>
<div id="bbccom_adsense_1_2_3_4" class="bbccom_slot adsense-ad" aria-hidden="true">
<div class="bbccom_advert">
<script type="text/javascript">
/*<![CDATA[*/
(function() {
if (window.bbcdotcom && bbcdotcom.adverts && bbcdotcom.adverts.slotAsync) {
bbcdotcom.adverts.slotAsync('adsense', [1,2,3,4]);
}
})();
/*]]>*/
</script>
</div>
</div>
<div id="bbccom_inread_1_2_3_4" class="bbccom_slot inread" aria-hidden="true">
<div class="bbccom_advert">
<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="US & Canada">
<a class="secondary-navigation__title navigation-arrow selected" href="/news/world/us_and_canada"><span>US & Canada</span></a>
<span class="navigation-core-title"><span>Sections</span></span>
<ul class="secondary-navigation--bottom__toplevel">
<li>
<a href="/news/election/us2016"><span>US Election 2016</span></a>
</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="/news" class="">
<span>Home</span>
</a>
</li>
<li class="">
<a href="/news/video_and_audio/international" class="">
<span>Video</span>
</a>
</li>
<li class="">
<a href="/news/world" data-panel-id="js-navigation-panel-World" class="navigation-arrow">
<span>World</span>
</a>
<div class="navigation-panel navigation-panel--closed js-navigation-panel-World">
<div class="navigation-panel__content">
<ul class="navigation-panel-secondary">
<li><a href="/news/world"><span>World Home</span></a></li>
<li>
<a href="/news/world/africa"><span>Africa</span></a> </li>
<li>
<a href="/news/world/asia"><span>Asia</span></a> </li>
<li>
<a href="/news/world/australia"><span>Australia</span></a> </li>
<li>
<a href="/news/world/europe"><span>Europe</span></a> </li>
<li>
<a href="/news/world/latin_america"><span>Latin America</span></a> </li>
<li>
<a href="/news/world/middle_east"><span>Middle East</span></a> </li>
</ul>
</div>
</div>
</li>
<li class="selected navigation-list-item--open">
<a href="/news/world/us_and_canada" data-panel-id="js-navigation-panel-US___Canada" class="navigation-arrow navigation-arrow--open">
<span>US & Canada</span>
</a>
<span class="off-screen">selected</span> <div class="navigation-panel js-navigation-panel-US___Canada">
<div class="navigation-panel__content">
<ul class="navigation-panel-secondary">
<li><a href="/news/world/us_and_canada"><span>US & Canada Home</span></a></li>
<li>
<a href="/news/election/us2016"><span>US Election 2016</span></a> </li>
</ul>
</div>
</div>
</li>
<li class="">
<a href="/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="/news/uk"><span>UK Home</span></a></li>
<li>
<a href="/news/england"><span>England</span></a> </li>
<li>
<a href="/news/northern_ireland"><span>N. Ireland</span></a> </li>
<li>
<a href="/news/scotland"><span>Scotland</span></a> </li>
<li>
<a href="/news/wales"><span>Wales</span></a> </li>
<li>
<a href="/news/politics"><span>Politics</span></a> </li>
</ul>
</div>
</div>
</li>
<li class="">
<a href="/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="/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="/news/business/markets"><span>Markets</span></a> </li>
<li>
<a href="/news/business/economy"><span>Economy</span></a> </li>
<li>
<a href="/news/business/companies"><span>Companies</span></a> </li>
<li>
<a href="/news/business-22434141"><span>Entrepreneurship</span></a> </li>
<li>
<a href="/news/business-11428889"><span>Technology of Business</span></a> </li>
<li>
<a href="/news/business/business_of_sport"><span>Business of Sport</span></a> </li>
<li>
<a href="/news/business-12686570"><span>Knowledge economy</span></a> </li>
</ul>
</div>
</div>
</li>
<li class="">
<a href="/news/technology" class="">
<span>Tech</span>
</a>
</li>
<li class="">
<a href="/news/science_and_environment" class="">
<span>Science</span>
</a>
</li>
<li class="">
<a href="/news/magazine" class="">
<span>Magazine</span>
</a>
</li>
<li class="">
<a href="/news/entertainment_and_arts" class="">
<span>Entertainment & Arts</span>
</a>
</li>
<li class="">
<a href="/news/health" class="">
<span>Health</span>
</a>
</li>
<li class="">
<a href="/news/in_pictures" class="">
<span>In Pictures</span>
</a>
</li>
<li class="">
<a href="/news/also_in_the_news" class="">
<span>Also in the News</span>
</a>
</li>
<li class="">
<a href="/news/special_reports" class="">
<span>Special Reports</span>
</a>
</li>
<li class="">
<a href="/news/world_radio_and_tv" class="">
<span>World News TV</span>
</a>
</li>
<li class="">
<a href="/news/explainers" class="">
<span>Explainers</span>
</a>
</li>
<li class="">
<a href="/news/the_reporters" class="">
<span>The Reporters</span>
</a>
</li>
<li class="">
<a href="/news/have_your_say" class="">
<span>Have Your Say</span>
</a>
</li>
</ul>
</nav>
</div>
<div id="comp-pattern-library" 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" > <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-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> </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="/terms/">Terms of Use</a> </li> <li > <a href="/aboutthebbc/">About the BBC</a> </li> <li > <a href="/privacy/">Privacy Policy</a> </li> <li > <a href="/privacy/cookies/about">Cookies</a> </li> <li > <a href="/accessibility/">Accessibility Help</a> </li> <li > <a href="/guidance/">Parental Guidance</a> </li> <li > <a href="/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="/privacy/cookies/international/">Ad choices</a> </li> </ul> <small> <span class="orb-hilight">Copyright © 2015 BBC.</span> The BBC is not responsible for the content of external sites. <a href="/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><img src="http://b.scorecardresearch.com/p?c1=2&c2=18897612&ns_site=bbc-global-test&name=news.world-us-canada-35177339" height="1" width="1" alt=""></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[*/ /** * ASNYC waits to make any gpt requests until the bottom of the page */ (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"> document.write('<' + 'script id="orb-js-script" data-assetpath="http://static.bbci.co.uk/frameworks/barlesque/3.7.3/orb/4/" src="http://static.bbci.co.uk/frameworks/barlesque/3.7.3/orb/4/script/orb.min.js"><' + '/script>'); </script> <script type="text/javascript"> (function() {
'use strict';
var promoManager = {