-
Notifications
You must be signed in to change notification settings - Fork 0
/
fakenwsbysol.html
1091 lines (1019 loc) · 288 KB
/
fakenwsbysol.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>
<head>
<meta charset="UTF-8"><script type="text/javascript">(window.NREUM||(NREUM={})).init={ajax:{deny_list:["bam.nr-data.net"]}};(window.NREUM||(NREUM={})).loader_config={licenseKey:"53cef82690",applicationID:"189190456"};window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var i=e[n]={exports:{}};t[n][0].call(i.exports,function(e){var i=t[n][1][e];return r(i||e)},i,i.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var i=0;i<n.length;i++)r(n[i]);return r}({1:[function(t,e,n){function r(){}function i(t,e,n,r){return function(){return s.recordSupportability("API/"+e+"/called"),o(t+e,[u.now()].concat(c(arguments)),n?null:this,r),n?void 0:this}}var o=t("handle"),a=t(9),c=t(10),f=t("ee").get("tracer"),u=t("loader"),s=t(4),d=NREUM;"undefined"==typeof window.newrelic&&(newrelic=d);var p=["setPageViewName","setCustomAttribute","setErrorHandler","finished","addToTrace","inlineHit","addRelease"],l="api-",v=l+"ixn-";a(p,function(t,e){d[e]=i(l,e,!0,"api")}),d.addPageAction=i(l,"addPageAction",!0),d.setCurrentRouteName=i(l,"routeName",!0),e.exports=newrelic,d.interaction=function(){return(new r).get()};var m=r.prototype={createTracer:function(t,e){var n={},r=this,i="function"==typeof e;return o(v+"tracer",[u.now(),t,n],r),function(){if(f.emit((i?"":"no-")+"fn-start",[u.now(),r,i],n),i)try{return e.apply(this,arguments)}catch(t){throw f.emit("fn-err",[arguments,this,t],n),t}finally{f.emit("fn-end",[u.now()],n)}}}};a("actionText,setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(t,e){m[e]=i(v,e)}),newrelic.noticeError=function(t,e){"string"==typeof t&&(t=new Error(t)),s.recordSupportability("API/noticeError/called"),o("err",[t,u.now(),!1,e])}},{}],2:[function(t,e,n){function r(t){if(NREUM.init){for(var e=NREUM.init,n=t.split("."),r=0;r<n.length-1;r++)if(e=e[n[r]],"object"!=typeof e)return;return e=e[n[n.length-1]]}}e.exports={getConfiguration:r}},{}],3:[function(t,e,n){var r=!1;try{var i=Object.defineProperty({},"passive",{get:function(){r=!0}});window.addEventListener("testPassive",null,i),window.removeEventListener("testPassive",null,i)}catch(o){}e.exports=function(t){return r?{passive:!0,capture:!!t}:!!t}},{}],4:[function(t,e,n){function r(t,e){var n=[a,t,{name:t},e];return o("storeMetric",n,null,"api"),n}function i(t,e){var n=[c,t,{name:t},e];return o("storeEventMetrics",n,null,"api"),n}var o=t("handle"),a="sm",c="cm";e.exports={constants:{SUPPORTABILITY_METRIC:a,CUSTOM_METRIC:c},recordSupportability:r,recordCustom:i}},{}],5:[function(t,e,n){function r(){return c.exists&&performance.now?Math.round(performance.now()):(o=Math.max((new Date).getTime(),o))-a}function i(){return o}var o=(new Date).getTime(),a=o,c=t(11);e.exports=r,e.exports.offset=a,e.exports.getLastTimestamp=i},{}],6:[function(t,e,n){function r(t,e){var n=t.getEntries();n.forEach(function(t){"first-paint"===t.name?l("timing",["fp",Math.floor(t.startTime)]):"first-contentful-paint"===t.name&&l("timing",["fcp",Math.floor(t.startTime)])})}function i(t,e){var n=t.getEntries();if(n.length>0){var r=n[n.length-1];if(u&&u<r.startTime)return;var i=[r],o=a({});o&&i.push(o),l("lcp",i)}}function o(t){t.getEntries().forEach(function(t){t.hadRecentInput||l("cls",[t])})}function a(t){var e=navigator.connection||navigator.mozConnection||navigator.webkitConnection;if(e)return e.type&&(t["net-type"]=e.type),e.effectiveType&&(t["net-etype"]=e.effectiveType),e.rtt&&(t["net-rtt"]=e.rtt),e.downlink&&(t["net-dlink"]=e.downlink),t}function c(t){if(t instanceof y&&!w){var e=Math.round(t.timeStamp),n={type:t.type};a(n),e<=v.now()?n.fid=v.now()-e:e>v.offset&&e<=Date.now()?(e-=v.offset,n.fid=v.now()-e):e=v.now(),w=!0,l("timing",["fi",e,n])}}function f(t){"hidden"===t&&(u=v.now(),l("pageHide",[u]))}if(!("init"in NREUM&&"page_view_timing"in NREUM.init&&"enabled"in NREUM.init.page_view_timing&&NREUM.init.page_view_timing.enabled===!1)){var u,s,d,p,l=t("handle"),v=t("loader"),m=t(8),g=t(3),y=NREUM.o.EV;if("PerformanceObserver"in window&&"function"==typeof window.PerformanceObserver){s=new PerformanceObserver(r);try{s.observe({entryTypes:["paint"]})}catch(h){}d=new PerformanceObserver(i);try{d.observe({entryTypes:["largest-contentful-paint"]})}catch(h){}p=new PerformanceObserver(o);try{p.observe({type:"layout-shift",buffered:!0})}catch(h){}}if("addEventListener"in document){var w=!1,b=["click","keydown","mousedown","pointerdown","touchstart"];b.forEach(function(t){document.addEventListener(t,c,g(!1))})}m(f)}},{}],7:[function(t,e,n){function r(t,e){if(!i)return!1;if(t!==i)return!1;if(!e)return!0;if(!o)return!1;for(var n=o.split("."),r=e.split("."),a=0;a<r.length;a++)if(r[a]!==n[a])return!1;return!0}var i=null,o=null,a=/Version\/(\S+)\s+Safari/;if(navigator.userAgent){var c=navigator.userAgent,f=c.match(a);f&&c.indexOf("Chrome")===-1&&c.indexOf("Chromium")===-1&&(i="Safari",o=f[1])}e.exports={agent:i,version:o,match:r}},{}],8:[function(t,e,n){function r(t){function e(){t(c&&document[c]?document[c]:document[o]?"hidden":"visible")}"addEventListener"in document&&a&&document.addEventListener(a,e,i(!1))}var i=t(3);e.exports=r;var o,a,c;"undefined"!=typeof document.hidden?(o="hidden",a="visibilitychange",c="visibilityState"):"undefined"!=typeof document.msHidden?(o="msHidden",a="msvisibilitychange"):"undefined"!=typeof document.webkitHidden&&(o="webkitHidden",a="webkitvisibilitychange",c="webkitVisibilityState")},{}],9:[function(t,e,n){function r(t,e){var n=[],r="",o=0;for(r in t)i.call(t,r)&&(n[o]=e(r,t[r]),o+=1);return n}var i=Object.prototype.hasOwnProperty;e.exports=r},{}],10:[function(t,e,n){function r(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,i=n-e||0,o=Array(i<0?0:i);++r<i;)o[r]=t[e+r];return o}e.exports=r},{}],11:[function(t,e,n){e.exports={exists:"undefined"!=typeof window.performance&&window.performance.timing&&"undefined"!=typeof window.performance.timing.navigationStart}},{}],ee:[function(t,e,n){function r(){}function i(t){function e(t){return t&&t instanceof r?t:t?u(t,f,a):a()}function n(n,r,i,o,a){if(a!==!1&&(a=!0),!l.aborted||o){t&&a&&t(n,r,i);for(var c=e(i),f=m(n),u=f.length,s=0;s<u;s++)f[s].apply(c,r);var p=d[w[n]];return p&&p.push([b,n,r,c]),c}}function o(t,e){h[t]=m(t).concat(e)}function v(t,e){var n=h[t];if(n)for(var r=0;r<n.length;r++)n[r]===e&&n.splice(r,1)}function m(t){return h[t]||[]}function g(t){return p[t]=p[t]||i(n)}function y(t,e){l.aborted||s(t,function(t,n){e=e||"feature",w[n]=e,e in d||(d[e]=[])})}var h={},w={},b={on:o,addEventListener:o,removeEventListener:v,emit:n,get:g,listeners:m,context:e,buffer:y,abort:c,aborted:!1};return b}function o(t){return u(t,f,a)}function a(){return new r}function c(){(d.api||d.feature)&&(l.aborted=!0,d=l.backlog={})}var f="nr@context",u=t("gos"),s=t(9),d={},p={},l=e.exports=i();e.exports.getOrSetContext=o,l.backlog=d},{}],gos:[function(t,e,n){function r(t,e,n){if(i.call(t,e))return t[e];var r=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(o){}return t[e]=r,r}var i=Object.prototype.hasOwnProperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){i.buffer([t],r),i.emit(t,e,n)}var i=t("ee").get("handle");e.exports=r,r.ee=i},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:a(t,o,function(){return i++})}var i=1,o="nr@id",a=t("gos");e.exports=r},{}],loader:[function(t,e,n){function r(){if(!M++){var t=T.info=NREUM.info,e=m.getElementsByTagName("script")[0];if(setTimeout(u.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&e))return u.abort();f(x,function(e,n){t[e]||(t[e]=n)});var n=a();c("mark",["onload",n+T.offset],null,"api"),c("timing",["load",n]);var r=m.createElement("script");0===t.agent.indexOf("http://")||0===t.agent.indexOf("https://")?r.src=t.agent:r.src=l+"://"+t.agent,e.parentNode.insertBefore(r,e)}}function i(){"complete"===m.readyState&&o()}function o(){c("mark",["domContent",a()+T.offset],null,"api")}var a=t(5),c=t("handle"),f=t(9),u=t("ee"),s=t(7),d=t(2),p=t(3),l=d.getConfiguration("ssl")===!1?"http":"https",v=window,m=v.document,g="addEventListener",y="attachEvent",h=v.XMLHttpRequest,w=h&&h.prototype,b=!1;NREUM.o={ST:setTimeout,SI:v.setImmediate,CT:clearTimeout,XHR:h,REQ:v.Request,EV:v.Event,PR:v.Promise,MO:v.MutationObserver};var E=""+location,x={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-1216.min.js"},O=h&&w&&w[g]&&!/CriOS/.test(navigator.userAgent),T=e.exports={offset:a.getLastTimestamp(),now:a,origin:E,features:{},xhrWrappable:O,userAgent:s,disabled:b};if(!b){t(1),t(6),m[g]?(m[g]("DOMContentLoaded",o,p(!1)),v[g]("load",r,p(!1))):(m[y]("onreadystatechange",i),v[y]("onload",r)),c("mark",["firstbyte",a.getLastTimestamp()],null,"api");var M=0}},{}],"wrap-function":[function(t,e,n){function r(t,e){function n(e,n,r,f,u){function nrWrapper(){var o,a,s,p;try{a=this,o=d(arguments),s="function"==typeof r?r(o,a):r||{}}catch(l){i([l,"",[o,a,f],s],t)}c(n+"start",[o,a,f],s,u);try{return p=e.apply(a,o)}catch(v){throw c(n+"err",[o,a,v],s,u),v}finally{c(n+"end",[o,a,p],s,u)}}return a(e)?e:(n||(n=""),nrWrapper[p]=e,o(e,nrWrapper,t),nrWrapper)}function r(t,e,r,i,o){r||(r="");var c,f,u,s="-"===r.charAt(0);for(u=0;u<e.length;u++)f=e[u],c=t[f],a(c)||(t[f]=n(c,s?f+r:r,i,f,o))}function c(n,r,o,a){if(!v||e){var c=v;v=!0;try{t.emit(n,r,o,e,a)}catch(f){i([f,n,r,o],t)}v=c}}return t||(t=s),n.inPlace=r,n.flag=p,n}function i(t,e){e||(e=s);try{e.emit("internal-error",t)}catch(n){}}function o(t,e,n){if(Object.defineProperty&&Object.keys)try{var r=Object.keys(t);return r.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(o){i([o],n)}for(var a in t)l.call(t,a)&&(e[a]=t[a]);return e}function a(t){return!(t&&t instanceof Function&&t.apply&&!t[p])}function c(t,e){var n=e(t);return n[p]=t,o(t,n,s),n}function f(t,e,n){var r=t[e];t[e]=c(r,n)}function u(){for(var t=arguments.length,e=new Array(t),n=0;n<t;++n)e[n]=arguments[n];return e}var s=t("ee"),d=t(10),p="nr@original",l=Object.prototype.hasOwnProperty,v=!1;e.exports=r,e.exports.wrapFunction=c,e.exports.wrapInPlace=f,e.exports.argsToArray=u},{}]},{},["loader"]);</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<title>Walgreens NY Robbers Crash on Taconic, Run Into Woods: State Police – NBC New York</title>
<meta name='robots' content='max-image-preview:large' />
<link rel="preload" href="https://www.nbcnewyork.com/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-Black.woff2" as="font" crossorigin />
<link rel="preload" href="https://www.nbcnewyork.com/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-Bold.woff2" as="font" crossorigin />
<link rel="preload" href="https://www.nbcnewyork.com/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-Medium.woff2" as="font" crossorigin />
<link rel="preload" href="https://www.nbcnewyork.com/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-Light.woff2" as="font" crossorigin />
<link rel="preload" href="https://www.nbcnewyork.com/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2" as="font" crossorigin />
<link rel='dns-prefetch' href='//z.moatads.com' />
<link rel='dns-prefetch' href='//assets.adobedtm.com' />
<link rel='dns-prefetch' href='//ak.sail-horizon.com' />
<link rel='dns-prefetch' href='//native.sharethrough.com' />
<link rel='dns-prefetch' href='//js-sec.indexww.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="NBC New York » Feed" href="https://www.nbcnewyork.com/?rss=y" />
<style class="wp-asset-manager nbc-common-css" type="text/css">.forecast__location-search{background-color:#fff;border-radius:.3125rem;height:100%;left:0;opacity:0;position:absolute;top:0;-webkit-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s;width:100%;z-index:-1}.forecast__location-search.showSearch{-webkit-animation:fade-in .3s ease forwards;animation:fade-in .3s ease forwards;height:100%;z-index:10}.forecast__location-search.hideSearch{-webkit-animation:fade-out .3s ease forwards;animation:fade-out .3s ease forwards}.location-search{background:#fff;border-radius:.3125rem;height:100%;opacity:0;padding:1.75rem 1.875rem 1.875rem;width:100%}.showSearch .location-search{-webkit-animation:fade-in .3s ease .3s forwards;animation:fade-in .3s ease .3s forwards}.location-search__form,.site-content .location-search form{margin-top:-0.875rem;max-width:100%;position:relative;width:100%}.location-search__form input[type=text],.site-content .location-search form input[type=text]{background-color:rgba(0,0,0,0);border:rgba(0,0,0,0);font-family:"Arthouse",sans-serif;font-size:1.25rem;height:3.125rem;margin-bottom:0;padding:.3125rem 1.5625rem}.location-search__submit,.location-search__close{left:0;position:absolute}.location-search__close,.site-content .location-search form button{background-color:rgba(0,0,0,0);background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0iIzFlNmVkOCIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0xMiAxMS4yOTNsMTAuMjkzLTEwLjI5My43MDcuNzA3LTEwLjI5MyAxMC4yOTMgMTAuMjkzIDEwLjI5My0uNzA3LjcwNy0xMC4yOTMtMTAuMjkzLTEwLjI5MyAxMC4yOTMtLjcwNy0uNzA3IDEwLjI5My0xMC4yOTMtMTAuMjkzLTEwLjI5My43MDctLjcwNyAxMC4yOTMgMTAuMjkzeiIvPjwvc3ZnPg==);background-repeat:no-repeat;background-size:1rem;border:none;cursor:pointer;height:1.0625rem;left:auto;padding:.3125rem;right:0;top:.75rem;width:1rem;z-index:5}.location-search__close:hover,.location-search__close:focus,.site-content .location-search form button:hover,.site-content .location-search form button:focus{background-color:rgba(0,0,0,0)}@media(min-width: 80rem){.location-search__close,.site-content .location-search form button{right:0;top:1rem}}.location-search__results{border-top:.0625rem solid #979797;max-height:290px;overflow-y:auto}.location-search__location{color:#171717;cursor:pointer;font-family:"Arthouse",sans-serif;font-size:1.25rem;font-weight:500;margin:.9375rem 0}.location-search__location.selected,.location-search__location:hover{color:#1e6ed8}.location-search__no-results{color:#8a8a8a;font-family:"Arthouse",sans-serif;font-size:1.125rem;font-weight:700;padding:.625rem 0;text-align:center}.location-search__suggested-regions-header{color:#777;font-family:"Roboto",sans-serif;font-size:.5625rem;margin:.9375rem 0 .3125rem 0;text-transform:uppercase}.location-search__suggested-region{color:#1e6ed8;font-family:"Arthouse",sans-serif;font-size:.8125rem;font-weight:500;margin-left:-0.75rem;padding:.625rem .75rem}.location-search__suggested-region:hover{background-color:#deebff;cursor:pointer}@-webkit-keyframes fade-in{0%{opacity:0}100%{opacity:1}}@keyframes fade-in{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes fade-out{0%{opacity:1}100%{opacity:0;z-index:-1}}@keyframes fade-out{0%{opacity:1}100%{opacity:0;z-index:-1}}
.currentCond__wrapper{font-family:"Arthouse",sans-serif;font-weight:500}@media(max-width: 63.9375rem){.currentCond__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}}@media(max-width: 47.9375rem){.currentCond__wrapper{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}@media(min-width: 48rem)and (max-width: 63.9375rem){.currentCond__wrapper{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}.radar-expanded .currentCond__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media(max-width: 47.9375rem){.currentCond__top{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;margin-right:2.5rem}}@media(min-width: 48rem)and (max-width: 63.9375rem){.currentCond__top{-webkit-box-flex:0;-ms-flex:0 1 30%;flex:0 1 30%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}@media(max-width: 47.9375rem){.currentCond__details{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;max-width:10.9375rem}}@media(min-width: 48rem)and (max-width: 63.9375rem){.currentCond__details{-webkit-box-flex:0;-ms-flex:0 1 70%;flex:0 1 70%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.currentCond__location{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:none;border:none;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;height:2.875rem;margin-bottom:.9375rem;padding-left:0}@media(min-width: 64rem){.currentCond__location{margin-bottom:1.375rem}}.currentCond__search-icon{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTkuOTg3IDExLjAwN2MtMi4xNTEgMS43MDktNS4yNDMgMS42MTItNy4xNzYtLjMyQy43MjYgOC42Ljc3NyA1LjE3IDIuOTI1IDMuMDIxIDUuMDczLjg3NCA4LjUwNS44MjMgMTAuNTkgMi45MDhjMi4wMDUgMi4wMDQgMi4wMzQgNS4yNTQuMTI0IDcuNDFsMy41NzcgMy41NzdjLjI1LjI1LjI5NS42MTEuMS44MDYtLjE5Ni4xOTYtLjU1Ny4xNTEtLjgwNy0uMDk5bC0zLjU5Ni0zLjU5NXptLS4xOTktMS4xMjJjMS43NTgtMS43NTcgMS44LTQuNTY0LjA5NC02LjI3LTEuNzA2LTEuNzA2LTQuNTEzLTEuNjY0LTYuMjcuMDk0LTEuNzU4IDEuNzU3LTEuOCA0LjU2NC0uMDk0IDYuMjcgMS43MDYgMS43MDYgNC41MTMgMS42NjQgNi4yNy0uMDk0eiIgZmlsbD0iIzFlNmVkOCIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9IiMxZTZlZDgiLz48L3N2Zz4K);background-repeat:no-repeat;display:block;height:1rem;position:relative;width:1.625rem;z-index:11}.currentCond__label{font-size:1.25rem;font-weight:500;max-width:12.5rem;width:auto}.currentCond__temp-icon{-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:1.25rem}@media(min-width: 48rem){.currentCond__temp-icon{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}}.currentCond__temp{-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}.currentCond__temp--current{font-size:4.0625rem}@media(min-width: 64rem){.currentCond__temp--current{font-size:4.1875rem}}.radar-expanded .currentCond__temp--current{font-size:4.0625rem}.currentCond__temp--hi{display:none}@media(min-width: 64rem){.currentCond__temp--hi{color:#777;display:block;font-size:1.5rem}.currentCond__temp--hi::before{content:"/"}}.radar-expanded .currentCond__temp--hi{display:none}.currentCond__icon{height:3.4375rem;max-width:unset;position:relative;top:.3125rem;width:3.4375rem}@media(max-width: 63.9375rem){.currentCond__icon{margin-left:.3125rem}}.radar-expanded .currentCond__icon{height:2.5rem}.currentCond__conditions{color:#8a8a8a;font-size:1.125rem;margin-bottom:1.25rem}@media(min-width: 48rem)and (max-width: 63.9375rem){.currentCond__conditions{margin-bottom:0}}.radar-expanded .currentCond__conditions{font-size:1rem}@media(min-width: 48rem)and (max-width: 63.9375rem){.currentCond__details{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.currentCond__detail{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:.8125rem;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:1rem 0}@media(min-width: 48rem)and (max-width: 63.9375rem){.currentCond__detail{display:block;margin:0rem 1.875rem}}.radar-expanded .currentCond__detail{min-width:8.0625rem}.currentCond__detail-label{color:#8a8a8a;padding-right:.3125rem;text-transform:uppercase}@media(min-width: 48rem)and (max-width: 63.9375rem){.currentCond__detail-label{display:block;margin-bottom:.625rem}}.currentCond__detail-value{font-weight:700}@media(min-width: 48rem)and (max-width: 63.9375rem){.currentCond__detail-value{display:block;font-size:1.125rem}}.forecast__current .currentCond__top .currentCond__icon{height:52px;max-width:52px;width:52px}@media(min-width: 48rem){.forecast__current .currentCond__top .currentCond__icon{margin-left:10px}}
.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;touch-action:pan-y;-webkit-tap-highlight-color:rgba(0,0,0,0)}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{transform:translate3d(0, 0, 0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:before,.slick-track:after{display:table;content:""}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid rgba(0,0,0,0)}.slick-arrow.slick-hidden{display:none}
.hourlyForecast__hour{font-family:"Arthouse",sans-serif;padding-top:0;text-align:center}@media(max-width: 63.9375rem){.hourlyForecast__hour{-webkit-box-flex:1;-ms-flex:1 0 3.125rem;flex:1 0 3.125rem}}.radar-expanded .hourlyForecast__hour{-webkit-box-flex:1;-ms-flex:1 0 3.125rem;flex:1 0 3.125rem;margin-bottom:1.25rem}.hourlyForecast__hour .hour__temp-precip{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:solid 1px #d8d8d8;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:10rem;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-bottom:.625rem;padding-bottom:.625rem}.hourlyForecast__hour .hour__temp-precip-bar{background-color:#fdd240;border-radius:5px;height:var(--height);-webkit-transition:height .3s ease-out;-o-transition:height .3s ease-out;transition:height .3s ease-out;width:.3125rem}.hourlyForecast__hour .hour__temp-precip-bar.precip{background-color:#144aa8}.hourlyForecast__hour .hour__temp{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#8a8a8a;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:.8125rem;font-weight:700;height:1.5rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;left:2px;margin-bottom:.3125rem;position:relative}.hourlyForecast__hour .hour__time{color:#777;font-size:.6875rem;margin-bottom:.625rem;text-transform:lowercase}.hourlyForecast__hour .hour__icon{height:24px;margin:0 auto .625rem;max-width:24px;width:24px}@media(max-width: 63.9375rem){.hourlyForecast__hour .hour__icon{max-width:24px}}.hourlyForecast__hour .hour__precip{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#777;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:.6875rem;height:1.5rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:.625rem}.hourlyForecast__hour .hour__precip::before{background-image:url(../media/droplet.svg);background-repeat:no-repeat;background-size:contain;content:"";display:block;height:.625rem;width:.625rem}
.hourlyForecast__wrapper{max-width:100%;position:relative;width:100%}@media(max-width: 63.9375rem){.hourlyForecast__wrapper{overflow:hidden;padding:2.5rem .625rem .625rem}}.radar-expanded .hourlyForecast__wrapper{overflow:hidden;padding:2.5rem 1.125rem 1.4375rem}.hourlyForecast__selector{display:-webkit-box;display:-ms-flexbox;display:flex;z-index:1}@media(min-width: 64rem){.hourlyForecast__selector{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;position:absolute;right:20px;top:20px}}.radar-expanded .hourlyForecast__selector{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;position:relative;right:0;top:0}.hourlyForecast__selector-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:rgba(0,0,0,0);border:0;border-bottom:2px solid rgba(0,0,0,0);color:#777;cursor:pointer;font-size:.8125rem;font-weight:700;margin-right:.625rem;padding:0 0 .5rem}.radar-expanded .hourlyForecast__selector-button{font-size:.8125rem}.hourlyForecast__selector-button:hover,.hourlyForecast__selector-button:focus,.hourlyForecast__selector-button.current{border-bottom-color:#144aa8;color:#144aa8;outline:0}.hourlyForecast__hours{position:relative}@media(max-width: 63.9375rem){.hourlyForecast__hours::after{background-image:-webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(white));background-image:-o-linear-gradient(left, rgba(255, 255, 255, 0), white);background-image:linear-gradient(to right, rgba(255, 255, 255, 0), white);content:"";height:100%;position:absolute;right:0;top:0;width:20px}}@media(min-width: 64rem){.hourlyForecast__hours{min-height:22.9375rem}}@media(max-width: 63.9375rem){.hourlyForecast__hours-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-overflow-scrolling:touch;overflow-x:scroll}}.hourlyForecast__hours-inner.radar-open{display:none}.radar-expanded .hourlyForecast__hours-inner.radar-open{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-overflow-scrolling:touch;overflow-x:scroll}.radar-expanded .hourlyForecast__hours-inner.radar-open ::-webkit-scrollbar{-webkit-appearance:none;width:7px}.radar-expanded .hourlyForecast__hours-inner.radar-open ::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.5);border-radius:4px;-webkit-box-shadow:0 0 1px rgba(255,255,255,.5)}.radar-expanded .hourlyForecast__hours-inner.radar-open+.slick-slider{display:none}@media(max-width: 63.9375rem){.radar-expanded .hourlyForecast__hours-inner.radar-open{display:none}}
.weather-landing .slick-slider,.traffic-landing .slick-slider{padding:4.375rem 1.875rem 1.25rem}.weather-landing .slick-arrow,.traffic-landing .slick-arrow{background-color:rgba(0,0,0,0);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='9' height='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.85 7.63L1.64.16A.465.465 0 0 0 1.28 0c-.13 0-.25.05-.36.16l-.77.8a.53.53 0 0 0 0 .74L6.23 8 .15 14.3a.53.53 0 0 0 0 .74l.77.8c.1.11.22.16.36.16.13 0 .25-.05.36-.16l7.21-7.47a.53.53 0 0 0 0-.74z' fill='%231e6ed8' fill-rule='nonzero'/%3E%3C/svg%3E");background-position:center;background-repeat:no-repeat;border:0;cursor:pointer;height:70%;margin-top:7.5%;overflow:hidden;position:absolute;text-indent:-999px;top:0;width:2.75rem}.weather-landing .slick-arrow:focus,.traffic-landing .slick-arrow:focus{outline:0}.weather-landing .slick-arrow:hover:not(.slick-disabled),.weather-landing .slick-arrow:focus:not(.slick-disabled),.traffic-landing .slick-arrow:hover:not(.slick-disabled),.traffic-landing .slick-arrow:focus:not(.slick-disabled){background-color:rgba(255,255,255,.5)}.weather-landing .slick-arrow.slick-prev,.traffic-landing .slick-arrow.slick-prev{left:0;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.weather-landing .slick-arrow.slick-next,.traffic-landing .slick-arrow.slick-next{right:0}.weather-landing .slick-arrow.slick-disabled,.traffic-landing .slick-arrow.slick-disabled{border:0;opacity:.5}
.weather-alerts-bar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row;flex-flow:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 1.25rem 1rem}@media(min-width: 48rem){.weather-alerts-bar{margin:0 1.875rem .3125rem}}@media(min-width: 64rem){.weather-alerts-bar{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:.4375rem}}@media(min-width: 90rem){.weather-alerts-bar{margin:0 0 .4375rem}}.weather-alerts-notice{-ms-flex-preferred-size:auto;flex-basis:auto;margin-right:1.5rem;position:relative;z-index:1}.weather-alerts-notice:last-of-type{margin-right:0;text-align:right}@media(min-width: 64rem){.weather-alerts-notice{margin-right:0;margin-top:.3125rem}}.weather-alerts-notice a,.weather-alerts-notice a:hover{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;text-decoration:none}.weather-alerts-notice__count{background-color:rgba(255,0,16,.25);border:1px solid #ff435a;border-radius:5px;color:#fff;display:inline-block;font-family:"Roboto Flex",sans-serif;font-size:.8125rem;font-weight:700;height:1.5rem;line-height:1.5rem;margin:0 .5rem 0 0;padding:0 .5rem;text-align:center}@media(min-width: 48rem){.weather-alerts-notice__count{margin-right:1.125rem}}.weather-alerts-notice__label{color:#f32a43;display:inline-block;font-family:"Arthouse",sans-serif;font-size:.8125rem;font-weight:700;letter-spacing:.43px;line-height:1.5rem;text-transform:uppercase}.weather-alerts-notice:hover .weather-alerts-notice__view-all{text-decoration:underline}@media(min-width: 30rem){.weather-alerts-notice__label{font-size:.9375rem;letter-spacing:.5px}.weather-alerts-notice__count{line-height:1.375rem}}@media(min-width: 48rem){.weather-alerts-notice__label{line-height:1}}.weather-alerts-notice__label-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.weather-alerts-notice__view-all{display:none}@media(min-width: 48rem){.weather-alerts-notice__view-all{color:#ddecff;display:inline-block;font-family:"Roboto Flex",sans-serif;font-size:.625rem;line-height:1.25rem;text-align:left;text-transform:uppercase}}.weather-alerts-slider{display:none;-ms-flex-preferred-size:82%;flex-basis:82%;margin-right:0;max-width:82%}@media(min-width: 64rem){.weather-alerts-slider{display:block}}.weather-alerts-slider--with-closings{-ms-flex-preferred-size:65%;flex-basis:65%;margin-left:1.375rem;margin-right:1.875rem}@media(min-width: 64rem){.weather-alerts-slider--with-closings{margin-left:.9375rem;max-width:55%}}@media(min-width: 68.75rem){.weather-alerts-slider--with-closings{margin-left:.9375rem;max-width:59%}}@media(min-width: 80rem){.weather-alerts-slider--with-closings{max-width:65%}}@media(min-width: 90rem){.weather-alerts-slider--with-closings{max-width:69%}}.weather-alerts-slider .slick-slider{padding-bottom:0;padding-left:2.75rem;padding-top:0}.weather-alerts-slider .slick-track{margin:0}.weather-alerts-slider .slick-arrow.slick-prev,.weather-alerts-slider .slick-arrow.slick-next{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjkiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtOC4zNyA4Ljg1IDcuNDctNy4yMWMuMTEtLjEuMTYtLjIyLjE2LS4zNiAwLS4xMy0uMDUtLjI1LS4xNi0uMzZsLS44LS43N2EuNTMuNTMgMCAwIDAgLS43NCAwbC02LjMgNi4wOC02LjMtNi4wOGEuNTMuNTMgMCAwIDAgLS43NCAwbC0uOC43N2MtLjExLjEtLjE2LjIyLS4xNi4zNiAwIC4xMy4wNS4yNS4xNi4zNmw3LjQ3IDcuMjFhLjUzLjUzIDAgMCAwIC43NCAweiIgZmlsbD0iI2I1YmZjZiIvPjwvc3ZnPgo=)}.weather-alerts-slider .slick-arrow.slick-prev{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.weather-alerts-slider .slick-arrow.slick-next{right:-0.75rem;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.weather-alerts-slider .slick-arrow:hover{background-color:rgba(0,0,0,0)}.weather-alerts-slider__item{background:rgba(0,0,0,0);border-radius:.3125rem;color:rgba(255,255,255,.9);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;font-family:"Roboto Flex",sans-serif;padding:.4375rem .4375rem .4375rem 1.5625rem;position:relative;text-decoration:none;-webkit-transition:background .3s;-o-transition:background .3s;transition:background .3s;width:8.4375rem}.weather-alerts-slider__item:hover{background:rgba(255,255,255,.2)}.weather-alerts-slider__item-type{font-size:.89375rem;font-weight:500;line-height:.8125rem;margin:0 0 .3125rem 0}.weather-alerts-slider__item-location{font-size:.75625rem;line-height:.8125rem;opacity:.6}.weather-alerts-slider__item-type,.weather-alerts-slider__item-location{letter-spacing:.3px;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.weather-alerts-slider__item::before{background:#d3d3d3;border-radius:50%;content:"";height:.4375rem;left:.5rem;position:absolute;top:.5rem;width:.4375rem}.weather-alerts-slider__item.severity-4::before{background:#ffca16}.weather-alerts-slider__item.severity-3::before{background:#ff5f00}.weather-alerts-slider__item.severity-2::before{background:#ff5f00}.weather-alerts-slider__item.severity-1::before{background:#f0021f}@font-face{font-display:swap;font-family:"Arthouse";font-style:normal;font-weight:500;src:local("Arthouse Medium"),local("Arthouse Medium"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Arthouse";font-style:normal;font-weight:700;src:local("Arthouse Bold"),local("Arthouse Bold"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Arthouse";font-style:normal;font-weight:900;src:local("Arthouse Black"),local("Arthouse Black"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Arthouse";font-style:italic;font-weight:900;src:local("Arthouse Black Italic"),local("Arthouse Black Italic"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-BlackItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Arthouse";font-style:italic;font-weight:700;src:local("Arthouse Bold Italic"),local("Arthouse Bold Italic"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-BoldItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Arthouse";font-style:italic;font-weight:500;src:local("Arthouse Medium Italic"),local("Arthouse Medium Italic"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-MediumItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Arthouse";font-style:italic;font-weight:400;src:local("Arthouse Italic"),local("Arthouse Italic"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-Italic.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Arthouse";font-style:normal;font-weight:300;src:local("Arthouse Light"),local("Arthouse Light"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Arthouse";font-style:italic;font-weight:300;src:local("Arthouse Light Italic"),local("Arthouse Light Italic"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-LightItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Roboto Flex";font-variation-settings:"ital" 1;font-weight:400;src:local("Roboto Flex"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2 supports variations"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2-variations");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-display:swap;font-family:"Roboto Flex";font-variation-settings:"ital" 1;font-weight:700;src:local("Roboto Flex"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2 supports variations"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2-variations");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-display:swap;font-family:"Roboto Flex";font-style:normal;font-weight:700;src:local("Roboto Flex"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2 supports variations"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2-variations");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-display:swap;font-family:"Roboto Flex";font-style:normal;font-weight:500;src:local("Roboto Flex"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2 supports variations"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2-variations");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-display:swap;font-family:"Roboto Flex";font-style:normal;font-weight:400;src:local("Roboto Flex"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2 supports variations"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2-variations");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-display:swap;font-family:"Roboto Flex";font-variation-settings:"ital" 1;font-weight:500;src:local("Roboto Flex"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2 supports variations"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2-variations");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}.nbc_owned_television_stations_weather_iframe{border:1px solid #c7c7c7;margin:0 0 1.25rem;width:100%}@media(min-width: 48rem){.nbc_owned_television_stations_weather_iframe{max-width:18.75rem}}.nbc_owned_television_stations_weather_iframe:hover{border:1px solid rgba(30,110,216,.3);-webkit-box-shadow:0 0 4px 1px rgba(30,110,216,.3);box-shadow:0 0 4px 1px rgba(30,110,216,.3)}.nbc_owned_television_stations_weather_iframe .widget_logo{height:2.5rem;margin:.625rem 0rem 0rem 1rem;width:auto}.nbc_owned_television_stations_weather_iframe h1,.nbc_owned_television_stations_weather_iframe h2,.nbc_owned_television_stations_weather_iframe h3{font-size:1.25rem;line-height:100%;margin:1.25rem 0rem .625rem 1.125rem}.nbc_owned_television_stations_weather_iframe .widget_location{color:#767676;font-family:"Arthouse",sans-serif;font-size:.6875rem;font-weight:700;margin:0rem 0rem .625rem 1.125rem;text-transform:uppercase}.nbc_owned_television_stations_weather_iframe .tpPlayer{height:160px;margin:auto;width:282px}.nbc-weather-widget .nbc_owned_television_stations_weather_iframe .tpPlayer{height:169px;margin:0;width:100%}.nbc_owned_television_stations_weather_iframe .widget-weather-icon{display:inline-block}.nbc_owned_television_stations_weather_iframe .conditions{color:#171717;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;font-family:"Arthouse",sans-serif;padding:1.375rem 1.6875rem 1.375rem 1.0625rem;width:100%}.nbc_owned_television_stations_weather_iframe .conditions .current{color:#232323;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;font-size:.875rem;font-weight:500;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:160%;padding-right:1.5625rem;width:60%}.nbc_owned_television_stations_weather_iframe .conditions .current .temp{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:3.125rem;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;line-height:98%;margin-bottom:1.5625rem}@media(min-width: 23.4375rem){.nbc_owned_television_stations_weather_iframe .conditions .current .temp{-webkit-box-pack:normal;-ms-flex-pack:normal;justify-content:normal}}@media(min-width: 48rem){.nbc_owned_television_stations_weather_iframe .conditions .current .temp{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}.nbc_owned_television_stations_weather_iframe .conditions .current .widget-weather-icon{height:3.125rem;max-width:3.125rem;width:3.125rem}@media(min-width: 23.4375rem){.nbc_owned_television_stations_weather_iframe .conditions .current .widget-weather-icon{margin-left:1.625rem}}@media(min-width: 48rem){.nbc_owned_television_stations_weather_iframe .conditions .current .widget-weather-icon{margin-left:auto}}.nbc_owned_television_stations_weather_iframe .conditions .tonight-tomorrow{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:40%}.nbc_owned_television_stations_weather_iframe .conditions .tonight,.nbc_owned_television_stations_weather_iframe .conditions .tomorrow{color:rgba(74,74,74,.75);font-size:.6875rem;font-weight:700;text-transform:uppercase}.nbc_owned_television_stations_weather_iframe .conditions .tonight .temp,.nbc_owned_television_stations_weather_iframe .conditions .tomorrow .temp{color:rgba(23,23,23,.79);display:-webkit-box;display:-ms-flexbox;display:flex;font-size:1.8125rem;font-weight:500;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:.9375rem}@media(min-width: 23.4375rem){.nbc_owned_television_stations_weather_iframe .conditions .tonight .temp,.nbc_owned_television_stations_weather_iframe .conditions .tomorrow .temp{-webkit-box-pack:normal;-ms-flex-pack:normal;justify-content:normal}}@media(min-width: 48rem){.nbc_owned_television_stations_weather_iframe .conditions .tonight .temp,.nbc_owned_television_stations_weather_iframe .conditions .tomorrow .temp{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}@media(min-width: 23.4375rem){.nbc_owned_television_stations_weather_iframe .conditions .tonight .temp .widget-weather-icon,.nbc_owned_television_stations_weather_iframe .conditions .tomorrow .temp .widget-weather-icon{margin-left:1.625rem}}@media(min-width: 48rem){.nbc_owned_television_stations_weather_iframe .conditions .tonight .temp .widget-weather-icon,.nbc_owned_television_stations_weather_iframe .conditions .tomorrow .temp .widget-weather-icon{margin-left:auto}}.nbc_owned_television_stations_weather_iframe .conditions .tomorrow{margin-top:1.5625rem}.nbc_owned_television_stations_weather_iframe .site-header__alerts{border-top:1px solid #e0dfdc;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0rem .625rem;padding:.9375rem 0}.nbc_owned_television_stations_weather_iframe .site-header__alerts .site-header__weather{margin-right:0;min-width:0}.nbc_owned_television_stations_weather_iframe .site-header__alerts a{color:#be2a2a;font-family:"Arthouse",sans-serif;font-size:.6875rem;text-decoration:none}.nbc_owned_television_stations_weather_iframe .widget_sponsor{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#5e5e5e;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.nbc_owned_television_stations_weather_iframe .widget_sponsor .sponsored-ad-unit{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:.25rem 0;padding-left:.9375rem;padding-right:.9375rem}.nbc_owned_television_stations_weather_iframe .widget_sponsor .sponsored-ad-unit::before{color:#fff;content:"";font-family:"Arthouse",sans-serif;font-size:.625rem;font-weight:700;margin-right:2.1875rem;text-transform:uppercase;white-space:nowrap}.nbc_owned_television_stations_weather_iframe .widget_sponsor .sponsored-ad-unit.logo-rendered::before{content:attr(data-beforetext)}.nbc_owned_television_stations_weather_iframe .widget_sponsor .sponsored-ad-unit div{display:inline-block}.nbc_owned_television_stations_weather_iframe .widget_sponsor .sponsored-ad-unit:empty{height:0;margin:0}.nbc_owned_television_stations_weather_iframe .widget_sponsor .sponsored-ad-unit:empty::before{content:""}.nbc_owned_television_stations_weather_iframe .weather-module-map{height:21.8125rem;min-height:15.625rem;overflow:hidden;width:100%}.nbc_owned_television_stations_weather_iframe a.weather-module__conditions{text-decoration:none}.nbc_owned_television_stations_weather_iframe .weather-module__full-forecast{display:-webkit-box;display:-ms-flexbox;display:flex;margin:.3125rem 1.25rem 1.25rem 1.25rem;text-align:center;width:calc(100% - 40px)}.nbc_owned_television_stations_weather_iframe .weather-module__full-forecast-link{border:2px solid #144aa8;color:#144aa8;font-family:"Arthouse",sans-serif;font-size:1rem;font-weight:700;padding:.5625rem;text-align:center;text-decoration:none;width:100%}.nbc_owned_television_stations_weather_iframe .weather-module__full-forecast-link:hover{text-decoration:underline}.weather-page__module_one .stories__module{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;max-width:40rem;margin-left:auto;margin-right:auto}@media(min-width: 64rem){.weather-page__module_one .stories__module{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;max-width:69.6875rem;margin-left:auto;margin-right:auto}}@media(min-width: 90rem){.weather-page__module_one .stories__module{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;max-width:80rem;margin-left:auto;margin-right:auto}}.weather-page__module_one .stories__column--1{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 4/4 - (2.5rem - 2.5rem * 4/4));flex-basis:calc(99.9% * 4/4 - (2.5rem - 2.5rem * 4/4));max-width:calc(99.9% * 4/4 - (2.5rem - 2.5rem * 4/4));width:calc(99.9% * 4/4 - (2.5rem - 2.5rem * 4/4))}.weather-page__module_one .stories__column--1:nth-child(1n){margin-right:2.5rem;margin-left:0}.weather-page__module_one .stories__column--1:last-child{margin-right:0}@media(min-width: 48rem){.weather-page__module_one .stories__column--1{margin-bottom:1.875rem}}@media(min-width: 64rem){.weather-page__module_one .stories__column--1{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 5.82/12 - (2.4375rem - 2.4375rem * 5.82/12));flex-basis:calc(99.9% * 5.82/12 - (2.4375rem - 2.4375rem * 5.82/12));max-width:calc(99.9% * 5.82/12 - (2.4375rem - 2.4375rem * 5.82/12));width:calc(99.9% * 5.82/12 - (2.4375rem - 2.4375rem * 5.82/12))}.weather-page__module_one .stories__column--1:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_one .stories__column--1:last-child{margin-right:0}}@media(min-width: 90rem){.weather-page__module_one .stories__column--1{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 5.87/12 - (2.4375rem - 2.4375rem * 5.87/12));flex-basis:calc(99.9% * 5.87/12 - (2.4375rem - 2.4375rem * 5.87/12));max-width:calc(99.9% * 5.87/12 - (2.4375rem - 2.4375rem * 5.87/12));width:calc(99.9% * 5.87/12 - (2.4375rem - 2.4375rem * 5.87/12))}.weather-page__module_one .stories__column--1:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_one .stories__column--1:last-child{margin-right:0}}.weather-page__module_one .stories__column--1 .story-card__thumbnail{margin-bottom:1.25rem}@media(min-width: 48rem){.weather-page__module_one .stories__column--1 .story-card__thumbnail{margin-bottom:1.5625rem}}@media(min-width: 48rem){.weather-page__module_one .stories__column--1 .stories__primary .story-card__title{font-size:1.5rem}}.weather-page__module_one .stories__column--2{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 4/4 - (30px - 30px * 4/4));flex-basis:calc(99.9% * 4/4 - (30px - 30px * 4/4));max-width:calc(99.9% * 4/4 - (30px - 30px * 4/4));width:calc(99.9% * 4/4 - (30px - 30px * 4/4))}.weather-page__module_one .stories__column--2:nth-child(1n){margin-right:30px;margin-left:0}.weather-page__module_one .stories__column--2:last-child{margin-right:0}.weather-page__module_one .stories__column--2:nth-child(4n){margin-right:0;margin-left:auto}@media(min-width: 48rem){.weather-page__module_one .stories__column--2{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 4.355/8 - (2.4375rem - 2.4375rem * 4.355/8));flex-basis:calc(99.9% * 4.355/8 - (2.4375rem - 2.4375rem * 4.355/8));max-width:calc(99.9% * 4.355/8 - (2.4375rem - 2.4375rem * 4.355/8));width:calc(99.9% * 4.355/8 - (2.4375rem - 2.4375rem * 4.355/8))}.weather-page__module_one .stories__column--2:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_one .stories__column--2:last-child{margin-right:0}}@media(min-width: 64rem){.weather-page__module_one .stories__column--2{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 3.17/12 - (2.4375rem - 2.4375rem * 3.17/12));flex-basis:calc(99.9% * 3.17/12 - (2.4375rem - 2.4375rem * 3.17/12));max-width:calc(99.9% * 3.17/12 - (2.4375rem - 2.4375rem * 3.17/12));width:calc(99.9% * 3.17/12 - (2.4375rem - 2.4375rem * 3.17/12))}.weather-page__module_one .stories__column--2:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_one .stories__column--2:last-child{margin-right:0}}@media(min-width: 90rem){.weather-page__module_one .stories__column--2{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 2.77/12 - (2.4375rem - 2.4375rem * 2.77/12));flex-basis:calc(99.9% * 2.77/12 - (2.4375rem - 2.4375rem * 2.77/12));max-width:calc(99.9% * 2.77/12 - (2.4375rem - 2.4375rem * 2.77/12));width:calc(99.9% * 2.77/12 - (2.4375rem - 2.4375rem * 2.77/12))}.weather-page__module_one .stories__column--2:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_one .stories__column--2:last-child{margin-right:0}}.weather-page__module_one .stories__column--2 .story-card{border-bottom:1px solid rgba(255,255,255,.3);margin-bottom:.9375rem;padding-bottom:1rem}@media(min-width: 48rem){.weather-page__module_one .stories__column--2 .story-card{border-bottom:none;display:block}}@media(min-width: 48rem){.weather-page__module_one .stories__column--2 .story-card .story-card__title{font-size:1.125rem}}.weather-page__module_one .stories__column--2 .story-card__thumbnail{margin-bottom:0}@media(min-width: 48rem){.weather-page__module_one .stories__column--2 .story-card__thumbnail{margin-bottom:1.25rem;width:100%}}.weather-page__module_one .stories__column--3{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 4/4 - (30px - 30px * 4/4));flex-basis:calc(99.9% * 4/4 - (30px - 30px * 4/4));max-width:calc(99.9% * 4/4 - (30px - 30px * 4/4));width:calc(99.9% * 4/4 - (30px - 30px * 4/4))}.weather-page__module_one .stories__column--3:nth-child(1n){margin-right:30px;margin-left:0}.weather-page__module_one .stories__column--3:last-child{margin-right:0}.weather-page__module_one .stories__column--3:nth-child(4n){margin-right:0;margin-left:auto}@media(min-width: 48rem){.weather-page__module_one .stories__column--3{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 3.648/8 - (2.4375rem - 2.4375rem * 3.648/8));flex-basis:calc(99.9% * 3.648/8 - (2.4375rem - 2.4375rem * 3.648/8));max-width:calc(99.9% * 3.648/8 - (2.4375rem - 2.4375rem * 3.648/8));width:calc(99.9% * 3.648/8 - (2.4375rem - 2.4375rem * 3.648/8))}.weather-page__module_one .stories__column--3:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_one .stories__column--3:last-child{margin-right:0}}@media(min-width: 64rem){.weather-page__module_one .stories__column--3{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 3.01/12 - (2.4375rem - 2.4375rem * 3.01/12));flex-basis:calc(99.9% * 3.01/12 - (2.4375rem - 2.4375rem * 3.01/12));max-width:calc(99.9% * 3.01/12 - (2.4375rem - 2.4375rem * 3.01/12));width:calc(99.9% * 3.01/12 - (2.4375rem - 2.4375rem * 3.01/12))}.weather-page__module_one .stories__column--3:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_one .stories__column--3:last-child{margin-right:0}}@media(min-width: 90rem){.weather-page__module_one .stories__column--3{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 3.368/12 - (2.4375rem - 2.4375rem * 3.368/12));flex-basis:calc(99.9% * 3.368/12 - (2.4375rem - 2.4375rem * 3.368/12));max-width:calc(99.9% * 3.368/12 - (2.4375rem - 2.4375rem * 3.368/12));width:calc(99.9% * 3.368/12 - (2.4375rem - 2.4375rem * 3.368/12))}.weather-page__module_one .stories__column--3:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_one .stories__column--3:last-child{margin-right:0}}.weather-page__module_two .stories__module{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;max-width:40rem;margin-left:auto;margin-right:auto}@media(min-width: 64rem){.weather-page__module_two .stories__module{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;max-width:71.25rem;margin-left:auto;margin-right:auto}}@media(min-width: 90rem){.weather-page__module_two .stories__module{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;max-width:80rem;margin-left:auto;margin-right:auto}}.weather-page__module_two .stories__column--1{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 4/4 - (30px - 30px * 4/4));flex-basis:calc(99.9% * 4/4 - (30px - 30px * 4/4));max-width:calc(99.9% * 4/4 - (30px - 30px * 4/4));width:calc(99.9% * 4/4 - (30px - 30px * 4/4))}.weather-page__module_two .stories__column--1:nth-child(1n){margin-right:30px;margin-left:0}.weather-page__module_two .stories__column--1:last-child{margin-right:0}.weather-page__module_two .stories__column--1:nth-child(4n){margin-right:0;margin-left:auto}@media(min-width: 64rem){.weather-page__module_two .stories__column--1{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 3.1/12 - (2.4375rem - 2.4375rem * 3.1/12));flex-basis:calc(99.9% * 3.1/12 - (2.4375rem - 2.4375rem * 3.1/12));max-width:calc(99.9% * 3.1/12 - (2.4375rem - 2.4375rem * 3.1/12));width:calc(99.9% * 3.1/12 - (2.4375rem - 2.4375rem * 3.1/12))}.weather-page__module_two .stories__column--1:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_two .stories__column--1:last-child{margin-right:0}}@media(min-width: 90rem){.weather-page__module_two .stories__column--1{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 2.77/12 - (2.4375rem - 2.4375rem * 2.77/12));flex-basis:calc(99.9% * 2.77/12 - (2.4375rem - 2.4375rem * 2.77/12));max-width:calc(99.9% * 2.77/12 - (2.4375rem - 2.4375rem * 2.77/12));width:calc(99.9% * 2.77/12 - (2.4375rem - 2.4375rem * 2.77/12))}.weather-page__module_two .stories__column--1:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_two .stories__column--1:last-child{margin-right:0}}@media(min-width: 48rem){.weather-page__module_two .stories__column--1 .stories__primary .story-card{border:none;margin-bottom:2.5rem}}@media(min-width: 64rem){.weather-page__module_two .stories__column--1 .stories__primary .story-card{margin-bottom:.9375rem}}.weather-page__module_two .stories__column--1 .story-card{border-bottom:1px solid rgba(255,255,255,.3)}@media(min-width: 48rem){.weather-page__module_two .stories__column--1 .story-card{border:none}}.weather-page__module_two .stories__column--1 .story-card:nth-child(-n+2){display:block}.weather-page__module_two .stories__column--1 .story-card:nth-child(-n+2) .story-card__thumbnail{width:100%}.weather-page__module_two .stories__column--1 .story-card__thumbnail{margin-bottom:1.25rem}@media(min-width: 48rem){.weather-page__module_two .stories__column--1 .story-card__thumbnail{margin-bottom:1.5625rem}}@media(min-width: 48rem){.weather-page__module_two .stories__column--1 .stories__primary .story-card__title{font-size:1.5rem}}@media(min-width: 64rem){.weather-page__module_two .stories__column--1 .stories__primary .story-card__title{font-size:1.125rem}}.weather-page__module_two .stories__column--2{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 4/4 - (30px - 30px * 4/4));flex-basis:calc(99.9% * 4/4 - (30px - 30px * 4/4));max-width:calc(99.9% * 4/4 - (30px - 30px * 4/4));width:calc(99.9% * 4/4 - (30px - 30px * 4/4))}.weather-page__module_two .stories__column--2:nth-child(1n){margin-right:30px;margin-left:0}.weather-page__module_two .stories__column--2:last-child{margin-right:0}.weather-page__module_two .stories__column--2:nth-child(4n){margin-right:0;margin-left:auto}@media(min-width: 48rem){.weather-page__module_two .stories__column--2{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 6.54/12 - (2.4375rem - 2.4375rem * 6.54/12));flex-basis:calc(99.9% * 6.54/12 - (2.4375rem - 2.4375rem * 6.54/12));max-width:calc(99.9% * 6.54/12 - (2.4375rem - 2.4375rem * 6.54/12));width:calc(99.9% * 6.54/12 - (2.4375rem - 2.4375rem * 6.54/12))}.weather-page__module_two .stories__column--2:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_two .stories__column--2:last-child{margin-right:0}}@media(min-width: 64rem){.weather-page__module_two .stories__column--2{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 3.1/12 - (2.4375rem - 2.4375rem * 3.1/12));flex-basis:calc(99.9% * 3.1/12 - (2.4375rem - 2.4375rem * 3.1/12));max-width:calc(99.9% * 3.1/12 - (2.4375rem - 2.4375rem * 3.1/12));width:calc(99.9% * 3.1/12 - (2.4375rem - 2.4375rem * 3.1/12))}.weather-page__module_two .stories__column--2:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_two .stories__column--2:last-child{margin-right:0}}@media(min-width: 90rem){.weather-page__module_two .stories__column--2{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 2.77/12 - (2.4375rem - 2.4375rem * 2.77/12));flex-basis:calc(99.9% * 2.77/12 - (2.4375rem - 2.4375rem * 2.77/12));max-width:calc(99.9% * 2.77/12 - (2.4375rem - 2.4375rem * 2.77/12));width:calc(99.9% * 2.77/12 - (2.4375rem - 2.4375rem * 2.77/12))}.weather-page__module_two .stories__column--2:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_two .stories__column--2:last-child{margin-right:0}}.weather-page__module_two .stories__column--2 .story-card{border-bottom:1px solid rgba(255,255,255,.3);margin-bottom:.9375rem;padding-bottom:1rem}@media(min-width: 48rem){.weather-page__module_two .stories__column--2 .story-card{border-bottom:none;display:block}}@media(min-width: 48rem){.weather-page__module_two .stories__column--2 .story-card .story-card__title{font-size:1.125rem}}.weather-page__module_two .stories__column--2 .story-card__thumbnail{margin-bottom:0}@media(min-width: 48rem){.weather-page__module_two .stories__column--2 .story-card__thumbnail{margin-bottom:1.25rem;width:100%}}.weather-page__module_two .stories__column--3{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 4/4 - (30px - 30px * 4/4));flex-basis:calc(99.9% * 4/4 - (30px - 30px * 4/4));max-width:calc(99.9% * 4/4 - (30px - 30px * 4/4));width:calc(99.9% * 4/4 - (30px - 30px * 4/4))}.weather-page__module_two .stories__column--3:nth-child(1n){margin-right:30px;margin-left:0}.weather-page__module_two .stories__column--3:last-child{margin-right:0}.weather-page__module_two .stories__column--3:nth-child(4n){margin-right:0;margin-left:auto}@media(min-width: 48rem){.weather-page__module_two .stories__column--3{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 3.38/8);flex-basis:calc(99.9% * 3.38/8);max-width:calc(99.9% * 3.38/8);width:calc(99.9% * 3.38/8)}.weather-page__module_two .stories__column--3:nth-child(1n){margin-right:0;margin-left:0}.weather-page__module_two .stories__column--3:last-child{margin-right:0}}@media(min-width: 64rem){.weather-page__module_two .stories__column--3{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 2.95/12 - (2.4375rem - 2.4375rem * 2.95/12));flex-basis:calc(99.9% * 2.95/12 - (2.4375rem - 2.4375rem * 2.95/12));max-width:calc(99.9% * 2.95/12 - (2.4375rem - 2.4375rem * 2.95/12));width:calc(99.9% * 2.95/12 - (2.4375rem - 2.4375rem * 2.95/12))}.weather-page__module_two .stories__column--3:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_two .stories__column--3:last-child{margin-right:0}}@media(min-width: 90rem){.weather-page__module_two .stories__column--3{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 3.368/12 - (2.4375rem - 2.4375rem * 3.368/12));flex-basis:calc(99.9% * 3.368/12 - (2.4375rem - 2.4375rem * 3.368/12));max-width:calc(99.9% * 3.368/12 - (2.4375rem - 2.4375rem * 3.368/12));width:calc(99.9% * 3.368/12 - (2.4375rem - 2.4375rem * 3.368/12))}.weather-page__module_two .stories__column--3:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_two .stories__column--3:last-child{margin-right:0}}.weather-page__module_two .stories__column--4{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 4/4 - (30px - 30px * 4/4));flex-basis:calc(99.9% * 4/4 - (30px - 30px * 4/4));max-width:calc(99.9% * 4/4 - (30px - 30px * 4/4));width:calc(99.9% * 4/4 - (30px - 30px * 4/4));padding-top:2.5rem}.weather-page__module_two .stories__column--4:nth-child(1n){margin-right:30px;margin-left:0}.weather-page__module_two .stories__column--4:last-child{margin-right:0}.weather-page__module_two .stories__column--4:nth-child(4n){margin-right:0;margin-left:auto}@media(min-width: 48rem){.weather-page__module_two .stories__column--4{padding-top:1.875rem}}@media(min-width: 64rem){.weather-page__module_two .stories__column--4{margin-top:-3.625rem;padding-top:0}}@media(min-width: 64rem){.weather-page__module_two .stories__column--4{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 2.85/12 - (2.4375rem - 2.4375rem * 2.85/12));flex-basis:calc(99.9% * 2.85/12 - (2.4375rem - 2.4375rem * 2.85/12));max-width:calc(99.9% * 2.85/12 - (2.4375rem - 2.4375rem * 2.85/12));width:calc(99.9% * 2.85/12 - (2.4375rem - 2.4375rem * 2.85/12))}.weather-page__module_two .stories__column--4:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_two .stories__column--4:last-child{margin-right:0}}@media(min-width: 90rem){.weather-page__module_two .stories__column--4{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 3.1/12 - (2.4375rem - 2.4375rem * 3.1/12));flex-basis:calc(99.9% * 3.1/12 - (2.4375rem - 2.4375rem * 3.1/12));max-width:calc(99.9% * 3.1/12 - (2.4375rem - 2.4375rem * 3.1/12));width:calc(99.9% * 3.1/12 - (2.4375rem - 2.4375rem * 3.1/12))}.weather-page__module_two .stories__column--4:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_two .stories__column--4:last-child{margin-right:0}}.weather-page__module_three .stories__module{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;max-width:40rem;margin-left:auto;margin-right:auto}@media(min-width: 64rem){.weather-page__module_three .stories__module{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;max-width:71.25rem;margin-left:auto;margin-right:auto}}@media(min-width: 90rem){.weather-page__module_three .stories__module{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;max-width:80rem;margin-left:auto;margin-right:auto}}.weather-page__module_three .stories__column--1{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 4/4 - (30px - 30px * 4/4));flex-basis:calc(99.9% * 4/4 - (30px - 30px * 4/4));max-width:calc(99.9% * 4/4 - (30px - 30px * 4/4));width:calc(99.9% * 4/4 - (30px - 30px * 4/4))}.weather-page__module_three .stories__column--1:nth-child(1n){margin-right:30px;margin-left:0}.weather-page__module_three .stories__column--1:last-child{margin-right:0}.weather-page__module_three .stories__column--1:nth-child(4n){margin-right:0;margin-left:auto}@media(min-width: 48rem){.weather-page__module_three .stories__column--1{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 6.54/12 - (2.4375rem - 2.4375rem * 6.54/12));flex-basis:calc(99.9% * 6.54/12 - (2.4375rem - 2.4375rem * 6.54/12));max-width:calc(99.9% * 6.54/12 - (2.4375rem - 2.4375rem * 6.54/12));width:calc(99.9% * 6.54/12 - (2.4375rem - 2.4375rem * 6.54/12))}.weather-page__module_three .stories__column--1:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_three .stories__column--1:last-child{margin-right:0}}@media(min-width: 64rem){.weather-page__module_three .stories__column--1{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 3.1/12 - (2.4375rem - 2.4375rem * 3.1/12));flex-basis:calc(99.9% * 3.1/12 - (2.4375rem - 2.4375rem * 3.1/12));max-width:calc(99.9% * 3.1/12 - (2.4375rem - 2.4375rem * 3.1/12));width:calc(99.9% * 3.1/12 - (2.4375rem - 2.4375rem * 3.1/12))}.weather-page__module_three .stories__column--1:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_three .stories__column--1:last-child{margin-right:0}}@media(min-width: 90rem){.weather-page__module_three .stories__column--1{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 2.77/12 - (2.4375rem - 2.4375rem * 2.77/12));flex-basis:calc(99.9% * 2.77/12 - (2.4375rem - 2.4375rem * 2.77/12));max-width:calc(99.9% * 2.77/12 - (2.4375rem - 2.4375rem * 2.77/12));width:calc(99.9% * 2.77/12 - (2.4375rem - 2.4375rem * 2.77/12))}.weather-page__module_three .stories__column--1:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_three .stories__column--1:last-child{margin-right:0}}.weather-page__module_three .stories__column--1 .story-card{border-bottom:1px solid rgba(255,255,255,.3)}@media(min-width: 48rem){.weather-page__module_three .stories__column--1 .story-card{border-bottom:none;display:block}.weather-page__module_three .stories__column--1 .story-card .story-card__thumbnail{width:100%}}.weather-page__module_three .stories__column--1 .story-card .story-card__thumbnail{margin-bottom:0}@media(min-width: 48rem){.weather-page__module_three .stories__column--1 .story-card .story-card__thumbnail{margin-bottom:1.25rem}}@media(min-width: 48rem){.weather-page__module_three .stories__column--1 .stories__primary .story-card__title{font-size:1.125rem}}.weather-page__module_three .stories__column--2{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 4/4 - (30px - 30px * 4/4));flex-basis:calc(99.9% * 4/4 - (30px - 30px * 4/4));max-width:calc(99.9% * 4/4 - (30px - 30px * 4/4));width:calc(99.9% * 4/4 - (30px - 30px * 4/4))}.weather-page__module_three .stories__column--2:nth-child(1n){margin-right:30px;margin-left:0}.weather-page__module_three .stories__column--2:last-child{margin-right:0}.weather-page__module_three .stories__column--2:nth-child(4n){margin-right:0;margin-left:auto}@media(min-width: 48rem){.weather-page__module_three .stories__column--2{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 3.38/8);flex-basis:calc(99.9% * 3.38/8);max-width:calc(99.9% * 3.38/8);width:calc(99.9% * 3.38/8)}.weather-page__module_three .stories__column--2:nth-child(1n){margin-right:0;margin-left:0}.weather-page__module_three .stories__column--2:last-child{margin-right:0}}@media(min-width: 64rem){.weather-page__module_three .stories__column--2{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 2.95/12 - (2.4375rem - 2.4375rem * 2.95/12));flex-basis:calc(99.9% * 2.95/12 - (2.4375rem - 2.4375rem * 2.95/12));max-width:calc(99.9% * 2.95/12 - (2.4375rem - 2.4375rem * 2.95/12));width:calc(99.9% * 2.95/12 - (2.4375rem - 2.4375rem * 2.95/12))}.weather-page__module_three .stories__column--2:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_three .stories__column--2:last-child{margin-right:0}}@media(min-width: 90rem){.weather-page__module_three .stories__column--2{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 3.368/12 - (2.4375rem - 2.4375rem * 3.368/12));flex-basis:calc(99.9% * 3.368/12 - (2.4375rem - 2.4375rem * 3.368/12));max-width:calc(99.9% * 3.368/12 - (2.4375rem - 2.4375rem * 3.368/12));width:calc(99.9% * 3.368/12 - (2.4375rem - 2.4375rem * 3.368/12))}.weather-page__module_three .stories__column--2:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_three .stories__column--2:last-child{margin-right:0}}.weather-page__module_three .stories__column--2 .story-card{border-bottom:1px solid rgba(255,255,255,.3);margin-bottom:.9375rem;padding-bottom:1rem}@media(min-width: 48rem){.weather-page__module_three .stories__column--2 .story-card{border-bottom:none;display:block}}.weather-page__module_three .stories__column--2 .story-card__thumbnail{margin-bottom:0}@media(min-width: 48rem){.weather-page__module_three .stories__column--2 .story-card__thumbnail{margin-bottom:1.25rem;width:100%}}.weather-page__module_three .stories__column--3{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 4/4 - (30px - 30px * 4/4));flex-basis:calc(99.9% * 4/4 - (30px - 30px * 4/4));max-width:calc(99.9% * 4/4 - (30px - 30px * 4/4));width:calc(99.9% * 4/4 - (30px - 30px * 4/4));padding-top:2.5rem}.weather-page__module_three .stories__column--3:nth-child(1n){margin-right:30px;margin-left:0}.weather-page__module_three .stories__column--3:last-child{margin-right:0}.weather-page__module_three .stories__column--3:nth-child(4n){margin-right:0;margin-left:auto}@media(min-width: 48rem){.weather-page__module_three .stories__column--3{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 8/8 - (30px - 30px * 8/8));flex-basis:calc(99.9% * 8/8 - (30px - 30px * 8/8));max-width:calc(99.9% * 8/8 - (30px - 30px * 8/8));width:calc(99.9% * 8/8 - (30px - 30px * 8/8));padding-top:1.875rem}.weather-page__module_three .stories__column--3:nth-child(1n){margin-right:30px;margin-left:0}.weather-page__module_three .stories__column--3:last-child{margin-right:0}.weather-page__module_three .stories__column--3:nth-child(8n){margin-right:0;margin-left:auto}}@media(min-width: 64rem){.weather-page__module_three .stories__column--3{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 5.95/12 - (2.4375rem - 2.4375rem * 5.95/12));flex-basis:calc(99.9% * 5.95/12 - (2.4375rem - 2.4375rem * 5.95/12));max-width:calc(99.9% * 5.95/12 - (2.4375rem - 2.4375rem * 5.95/12));width:calc(99.9% * 5.95/12 - (2.4375rem - 2.4375rem * 5.95/12));margin-top:-3.625rem;padding-top:0}.weather-page__module_three .stories__column--3:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_three .stories__column--3:last-child{margin-right:0}}@media(min-width: 90rem){.weather-page__module_three .stories__column--3{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 5.85/12 - (2.4375rem - 2.4375rem * 5.85/12));flex-basis:calc(99.9% * 5.85/12 - (2.4375rem - 2.4375rem * 5.85/12));max-width:calc(99.9% * 5.85/12 - (2.4375rem - 2.4375rem * 5.85/12));width:calc(99.9% * 5.85/12 - (2.4375rem - 2.4375rem * 5.85/12))}.weather-page__module_three .stories__column--3:nth-child(1n){margin-right:2.4375rem;margin-left:0}.weather-page__module_three .stories__column--3:last-child{margin-right:0}}@media(min-width: 64rem){.weather-page__module_three .stories__column--3 .weather-team__people{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}}@media(min-width: 64rem){.weather-page__module_three .stories__column--3 .weather-team__person{width:50%}.weather-page__module_three .stories__column--3 .weather-team__person:nth-child(2n+1){margin-right:2.4375rem;width:calc(50% - 39px)}}.weather-team .weather-page__section-heading-title{margin-bottom:1.875rem}@media(min-width: 48rem){.weather-team__people{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}}@media(min-width: 64rem){.weather-team__people{display:block}}.weather-team__person{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:1.5rem}@media(min-width: 48rem){.weather-team__person{width:50%}.weather-team__person:nth-child(2n+1){margin-right:2.4375rem;width:calc(50% - 39px)}}@media(min-width: 64rem){.weather-team__person{width:100%}.weather-team__person:nth-child(2n+1){margin-right:0;width:100%}}@media(min-width: 80rem){.weather-team__person{display:-webkit-box;display:-ms-flexbox;display:flex}}.weather-team__person-avatar{-webkit-box-flex:0;-ms-flex:0 1 7.5rem;flex:0 1 7.5rem;height:7.5rem;padding-right:.625rem;width:7.5rem}@media(min-width: 64rem){.weather-team__person-avatar{margin-bottom:.3125rem}}.weather-team__person-details{-webkit-box-flex:1;-ms-flex:1 50%;flex:1 50%}.weather-team__person-name a,.weather-team__person-social a{color:#fff;font-size:.875rem;text-decoration:none;text-transform:uppercase}.weather-team__person-name{margin-bottom:.625rem}.weather-team__person-name a:hover{text-decoration:underline}.weather-team__person-social{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.weather-team__person-social a{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fff;border-radius:50%;color:#102e63;display:-webkit-box;display:-ms-flexbox;display:flex;height:24px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:.625rem;text-align:center;vertical-align:middle;width:24px}.weather-team__person-social a:hover{background-color:rgba(0,0,0,0);color:#fff}.radar{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.radar__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%}.radar__header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:1.125rem}.radar__label{font-size:1rem;letter-spacing:.53px;text-transform:uppercase}.radar__map{height:100%;margin:0 -1.875rem;min-height:18rem}@media(min-width: 23.4375rem){.radar__map{min-height:21.375rem}}@media(min-width: 48rem){.radar__map{min-height:28.125rem}}@media(min-width: 64rem){.radar__map{min-height:40.1875rem}}.expandMap{background:none;border:0;font-family:"Arthouse",sans-serif;font-size:.75rem;font-weight:700;letter-spacing:.53px;text-decoration:underline;text-transform:uppercase}.expandMap__icon{border:1px solid #000;display:inline-block;height:7px;margin-left:.3125rem;position:relative;top:2px;width:7px}.radar-expanded .expandMap__icon{margin-left:.75rem}.expandMap__icon svg{display:inline-block;height:6px;position:absolute;right:-10px;top:-7px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.radar-expanded .expandMap__icon svg{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.archive.weather-alerts{font-family:"Arthouse",sans-serif;font-size:.9375rem}.archive.weather-alerts .section-content--secondary{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.archive.weather-alerts .archive-sidebar-1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0;margin-top:0}@media(min-width: 48rem){.archive.weather-alerts .archive-sidebar-1{display:block}}.archive.weather-alerts .archive-sidebar-ad-unit{display:none}@media(min-width: 48rem){.archive.weather-alerts .archive-sidebar-ad-unit{display:block}}.archive.weather-alerts .section-content--full{margin:6.25rem auto 3.75rem;max-width:75.625rem}@media(min-width: 80rem){.archive.weather-alerts .section-content--full{padding:0}}.archive.weather-alerts .weather-alert__heading{margin-bottom:1rem}.archive.weather-alerts .weather-alert__listings{font-size:1rem;margin-bottom:1.5rem;padding-left:1.25rem}.archive.weather-alerts .weather-alert__listings li{margin-bottom:.625rem}.archive.weather-alerts .weather-alert__listings li.severity{margin-left:-1.25rem}.archive.weather-alerts .weather-alert__county{color:#767676;margin-bottom:1.25rem}.archive.weather-alerts .weather-alert a{color:#144aa8;text-decoration:none}.archive.weather-alerts .weather-alert .severity{padding-left:1.25rem;position:relative}.archive.weather-alerts .weather-alert .severity::before{border-radius:100%;content:"";display:inline-block;height:.4375rem;left:0;position:absolute;top:calc(50% - 3.5px);width:.4375rem}.archive.weather-alerts .weather-alert .severity.severity--4::before{background-color:#ffca16}.archive.weather-alerts .weather-alert .severity.severity--3::before{background-color:#ff5f00}.archive.weather-alerts .weather-alert .severity.severity--2::before{background-color:#ff5f00}.archive.weather-alerts .weather-alert .severity.severity--1::before{background-color:#f0021f}.weather-landing .section-archive-header{margin-top:0;padding-bottom:0}@media(min-width: 90rem){.weather-landing .section-archive-header{margin:0 auto 1rem;max-width:86.75rem}}.weather-landing .section-archive-header .section-archive-header__logo{margin-bottom:0}.weather-landing.admin-bar .section-archive-header{margin-top:0}.weather-page{margin:0 auto;max-width:80rem}@media(min-width: 90rem){.weather-page{max-width:86.75rem}}.weather-page__module{margin:0 auto;max-width:640px;width:100%}@media(min-width: 64rem){.weather-page__module{max-width:71.25rem}}@media(min-width: 90rem){.weather-page__module{max-width:80rem}}@media(min-width: 64rem){.weather-page__module_two,.weather-page__module_three{max-width:71.25rem}}@media(min-width: 90rem){.weather-page__module_two,.weather-page__module_three{max-width:80rem}}.weather-page__section{padding:.625rem}@media(min-width: 48rem){.weather-page__section{padding:1.25rem}}@media(min-width: 64rem){.weather-page__section{padding:3.75rem 1.875rem}}@media(min-width: 90rem){.weather-page__section{padding:3.75rem 0rem}}.weather-page__section:first-of-type{padding-top:0}.weather-page__section-inner{background-color:#fff;border-radius:.3125rem;-webkit-box-shadow:0 13px 33px 0 rgba(0,0,0,.05);box-shadow:0 13px 33px 0 rgba(0,0,0,.05);padding:1.875rem}.weather-page__section-heading{-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:1.875rem}.weather-page__section-heading-title{color:rgba(0,0,0,.9);font-family:"Arthouse",sans-serif;font-size:1.5rem;font-weight:700;line-height:1.2;margin-right:1.25rem}.weather-page__section-heading-see-all{color:#777;font-family:"Arthouse",sans-serif;font-weight:700;text-decoration:none}.weather-page__section-heading-see-all:hover{text-decoration:underline}.weather-page__section--forecast{position:relative}@media(min-width: 64rem){.weather-page__section--forecast{display:grid;grid-column-gap:1.25rem;grid-row-gap:1.875rem;grid-template-columns:repeat(3, minmax(0, 1fr));padding-top:0}}.weather-page__section--forecast-block{background-color:#fff;border-radius:.3125rem;-webkit-box-shadow:0 13px 33px 0 rgba(0,0,0,.05);box-shadow:0 13px 33px 0 rgba(0,0,0,.05);padding:1rem 1.875rem 1.875rem}@media(max-width: 63.9375rem){.weather-page__section--forecast-block{margin-bottom:1.25rem}}.weather-page__section--forecast .forecast__current-hourly{display:-webkit-box;display:-ms-flexbox;display:flex;grid-column:span 2;min-height:576px;padding:0;position:relative}@media(max-width: 63.9375rem){.weather-page__section--forecast .forecast__current-hourly{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}@media(min-width: 48rem){.weather-page__section--forecast .forecast__current-hourly{min-height:367px}}.weather-page__section--forecast .forecast__current{display:block;padding:1.0625rem 1.875rem 1.875rem}@media(max-width: 63.9375rem){.weather-page__section--forecast .forecast__current{border-bottom:solid 1px #d8d8d8;max-width:100%}}@media(min-width: 64rem){.weather-page__section--forecast .forecast__current{border-right:solid 1px #e7e7e7;-webkit-box-flex:0;-ms-flex:0 1 40%;flex:0 1 40%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:40%}}@media(min-width: 80rem){.weather-page__section--forecast .forecast__current{-webkit-box-flex:0;-ms-flex:0 1 29%;flex:0 1 29%;max-width:29%}}.weather-page__section--forecast .forecast__hourly{display:block}@media(min-width: 64rem){.weather-page__section--forecast .forecast__hourly{-webkit-box-flex:0;-ms-flex:0 1 60%;flex:0 1 60%;max-width:60%}}@media(min-width: 80rem){.weather-page__section--forecast .forecast__hourly{-webkit-box-flex:0;-ms-flex:0 1 71%;flex:0 1 71%;max-width:71%}}.weather-page__section--forecast .forecast__radar{grid-column:span 1;grid-row:span 2;overflow:hidden;padding-bottom:0}.weather-page__section--forecast .forecast__ten-day{grid-column:span 2;padding:0}.weather-page__section--forecast .forecast__video{grid-column:span 2}@media(min-width: 48rem){.weather-page__section--forecast .forecast__video{min-height:362px}}.weather-page__section--forecast .forecast__video>h2{text-transform:uppercase}.weather-page__section--forecast .forecast__video .story-card{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-top:1.25rem}.weather-page__section--forecast .forecast__video .story-card__thumbnail{width:100%}.weather-page__section--forecast .forecast__video .story-card .tpPlayer{overflow:hidden;padding-bottom:56.25%;position:relative}.weather-page__section--forecast .forecast__video .story-card .tpPlayer img,.weather-page__section--forecast .forecast__video .story-card .tpPlayer video,.weather-page__section--forecast .forecast__video .story-card .tpPlayer iframe,.weather-page__section--forecast .forecast__video .story-card .tpPlayer object,.weather-page__section--forecast .forecast__video .story-card .tpPlayer embed,.weather-page__section--forecast .forecast__video .story-card .tpPlayer [data-react-component=VideoPlayer]{bottom:0;left:0;position:absolute;right:0;top:0}@media(min-width: 48rem){.weather-page__section--forecast .forecast__video .story-card{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.weather-page__section--forecast .forecast__video .story-card__thumbnail{-ms-flex-preferred-size:60%;flex-basis:60%;max-width:28.125rem}.weather-page__section--forecast .forecast__video .story-card__thumbnail>div,.weather-page__section--forecast .forecast__video .story-card__thumbnail .tpPlayer{height:100%}.weather-page__section--forecast .forecast__video .story-card__thumbnail .tpPlayer{padding-bottom:56.25%}}.weather-page__section--forecast .forecast__video .story-card__text{-ms-flex-preferred-size:40%;flex-basis:40%;width:auto}.weather-page__section--forecast .forecast__video .story-card__title{font-size:1.5rem;line-height:1.75rem;margin:0 0 .625rem}.weather-page__section--forecast .forecast__video .story-card__excerpt{font-size:1.0625rem;line-height:1.5rem}.weather-page__section--forecast .forecast__ad{background-color:rgba(0,0,0,0);border-radius:0;-webkit-box-shadow:none;box-shadow:none;grid-column:span 1;padding:0 1.875rem}@media(min-width: 48rem){.weather-page__section--forecast .forecast__ad{padding:0}}.weather-page__section--forecast .forecast__ad .dfp-ad{margin:0 auto}.weather-page__section--forecast .forecast__ad .gpt-mobilemultibox{width:320px}.weather-page__section--forecast.radar-expanded{grid-template-columns:22.1875rem 30.8125rem 1fr}.weather-page__section--forecast.radar-expanded .forecast__current-hourly{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;grid-column:1}.weather-page__section--forecast.radar-expanded .forecast__ten-day{grid-column:1}.weather-page__section--forecast.radar-expanded .forecast__radar{grid-column:span 2;grid-row:span 2}.weather-page__section--forecast.radar-expanded .forecast__current{border-bottom:1px solid #ddd;border-right:0;-webkit-box-flex:0;-ms-flex:0 1 100%;flex:0 1 100%;max-width:100%}.weather-page__section--forecast.radar-expanded .forecast__hourly{display:block;max-width:100%}.weather-page__section--stories-team{background-color:#0c2653;color:#fff;padding-bottom:2.25rem;padding-top:2.25rem}@media(min-width: 64rem){.weather-page__section--stories-team{display:-webkit-box;display:-ms-flexbox;display:flex}}.weather-page__section--stories-team .weather-page__section-heading-title{color:#fff}.weather-page__section--stories-team .weather-page__section-heading-see-all{color:#d8d8d8;font-size:.875rem}.weather-page__section--stories-team .stories .story-card{margin-bottom:1.25rem;padding-bottom:1.25rem}.weather-page__section--stories-team .stories .story-card .story-card__meta{margin-bottom:.5rem}.weather-page__section--stories-team .stories .story-card__meta-tag-link{color:#6ab1ed}.weather-page__section--stories-team .stories .story-card__meta-time{color:#bfbfbe}.weather-page__section--stories-team .stories .story-card__title{font-size:1.0625rem}.weather-page__section--stories-team .stories .story-card__title-link{color:#fff}.weather-page__section--stories-team .stories .story-card__image-on-top{border-bottom:1px solid rgba(255,255,255,.3);margin-bottom:1.25rem}@media(min-width: 48rem){.weather-page__section--stories-team .stories .story-card__image-on-top{border-bottom:none;margin-bottom:0}}.weather-page__section--stories-team .stories__list .story-card{margin-bottom:0}.weather-page__section--stories-team .stories__list .story-card:first-of-type{border-top:none}.weather-page__section--stories-team .stories__list .story-card .story-card__meta{margin-bottom:.625rem}.weather-page__section--stories-team .stories__list .story-card__title{font-size:1.125rem}.weather-page__section--stories-team .story-card__thumbnail{margin-bottom:0}@media(min-width: 23.4375rem){.weather-page__section--stories-team .story-card__thumbnail{margin-bottom:1.25rem}}.weather-page__section--stories-team .story-card__thumbnail img{width:100%}.weather-page__section--stories-team .story-card__list-item{border-top:1px solid rgba(255,255,255,.3)}.weather-page__section--stories-team .story-card__list-item:first-of-type{padding-top:0}@media(max-width: 47.9375rem){.weather-page .story-card__meta-time{display:block}}@media(min-width: 64rem){.weather-page__section--maps .maps{display:-webkit-box;display:-ms-flexbox;display:flex}}.weather-page__section--maps .maps__primary{margin-bottom:2.5rem}@media(min-width: 64rem){.weather-page__section--maps .maps__primary{-webkit-box-flex:0;-ms-flex:0 1 40%;flex:0 1 40%;margin-bottom:0;padding-right:2.5rem}}.weather-page__section--maps .maps__secondary{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 1 60%;flex:0 1 60%;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.weather-page__section--maps .maps__secondary .map{-webkit-box-flex:0;-ms-flex:0 1 33.33%;flex:0 1 33.33%;margin-bottom:1.25rem;padding:0rem .625rem}@media(min-width: 64rem){.weather-page__section--maps .maps__secondary .map{padding:0rem 0rem 2.5rem 1.875rem}}.weather-page__section--maps .map{text-decoration:none}.weather-page__section--maps .map:hover{text-decoration:underline}.weather-page__section--maps .map__image{width:100%}.weather-page__screen-reader-text{border:0;clip:rect(0, 0, 0, 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.necn .weather-page__section--stories-team{background-color:#332c44}
.truncate__wrap,.truncate__text{display:block}.readmore{background:rgba(0,0,0,0);border:none;color:inherit;cursor:pointer;font-family:inherit;font-size:inherit;font-weight:700}
.tpPlayer{z-index:3}.tpPlayer ul,.tpPlayer ol{list-style:none !important}.tpPlayer .tpPlayerView video{margin-bottom:0}.tpPlayer .tpControls .tpRow .tpMenuRight{top:0}@media not all,(any-pointer: coarse){.tpPlayer .tpControls .tpRow .tpMenuRight{top:7px}}@media only screen and (max-device-width: 1000px)and (orientation: landscape){.tpPlayer .tpControls .tpRow .tpMenuRight{top:7px}}.tpPlayer .tpPlayerView.tpPaused .tpStandby,.tpPlayer .tpPlayerView.tpPaused .tpControls{z-index:9}@media(max-width: 600px){.tpPlayer .tpPlayerView .tpPlayPause{display:block;opacity:1}}@media(max-width: 600px){.tpPlayer .tpControls .tpRow:first-of-type{height:45px}}@media not all,(any-pointer: coarse){.tpPlayer .tpControls .tpRow button{margin-top:10px}}@media(max-width: 600px){.tpPlayer .tpShare.tpSmallShare{padding:55px 0 25px 0}}@media(max-width: 600px){.tpPlayer .tpShare.tpSmallShare ul.shareIcons li.shareEmbed,.tpPlayer .tpShare.tpSmallShare ul.shareIcons li.shareLink{display:none}}@media(max-width: 600px){.tpPlayer .tpShare.tpSmallShare ul.shareIcons li.shareFB{margin:0 28px 0 0}}@media(max-width: 600px){.tpPlayer .tpShare.tpSmallShare ul.shareIcons li.shareTwt{margin:0 0 0 0}}@media(max-width: 600px){.tpPlayer .tpShare.tpSmallShare ul.shareIcons li.shareFB span,.tpPlayer .tpShare.tpSmallShare ul.shareIcons li.shareTwt span{background-size:42px;height:42px;width:42px}}.tpAdvertisementPlayback.tpMouseHover .tpControls .tpRow button.tpPlayPause,.tpControls .tpRow .tpPlayPause{width:35px}@media(min-width: 1025px){body .tpAdvertisementPlayback.tpMouseHover .tpControls .tpRow button.tpPlayPause{width:35px}}.tpPlayerView.tpMouseHover.tpIdle .tpBottomFloatRegion{opacity:0;-webkit-transition:none !important;-o-transition:none !important;transition:none !important}.single-post .tpControls{padding:0 20px}@media(max-width: 600px){.single-post .tpControls{padding:0 10px}}.single-post .tpControls .tpBottomFloatRegion .tpRow{margin:0}.tpPlayerView .pauseCardOverlay .thumb{height:auto}.tpAudioTextTrackMenu{width:200px}.tpPlayer .tpControls .tpRow .tpMenuLeft{visibility:hidden}@media(max-width: 600px){.tpPlayer .tpControls .tpRow .tpMenuRight{right:-5px;top:3px}}.tpPlayer .tpControls .tpRow .cc .tpMenuRight{position:relative}.video-flyout--fixed .tpPlayer .tpControls .tpRow .cc .tpMenuRight{padding-left:25px;right:137px}.tpCaptionsactive .tpControls button.tpLanguageSettings::before{background-image:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU2LjMgKDgxNzE2KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5uZXdpY29uL2NjIE9OIDwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJuZXdpY29uL2NjLU9OLSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNjMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDMuMDAwMDAwKSIgZmlsbD0iIzQxOUZFRiIgZmlsbC1ydWxlPSJub256ZXJvIj4KICAgICAgICAgICAgPHBhdGggZD0iTTEwLjI3LDEwLjQzIEMxMC4yODQwOTI3LDExLjI0NTM1MTMgOS45ODczMzg5MSwxMi4wMzU1MDMxIDkuNDQsMTIuNjQgQzguODYyNzYxMTIsMTMuMTc4ODY2NyA4LjA4NzgxODExLDEzLjQ1NDA4MDEgNy4zLDEzLjQgQzYuNDQzMTczMzIsMTMuNDM4MTg3MyA1LjYxOTE2ODQ1LDEzLjA2NzAxNCA1LjA4LDEyLjQgQzQuNTE2NzUzMTMsMTEuNjA5NTQyIDQuMjQ0NjY1NjcsMTAuNjQ4NDAxOSA0LjMxLDkuNjggTDQuMzEsOC4yOCBDNC4yNDM4MzMsNy4zMDY5NDk3MSA0LjUyNzU1ODQ4LDYuMzQyMjgzMDggNS4xMSw1LjU2IEM1LjY1MTE2MzI5LDQuODk1NTc2NzIgNi40NzM3OTE3MSw0LjUyNTAyMzM4IDcuMzMsNC41NiBDOC4xMTc4NTQxMyw0LjUwMzAwNzE2IDguODkxNTY5MDksNC43OTEzMjU0NyA5LjQ1LDUuMzUgQzkuOTgwMDU0NDIsNS45NzY2NTg5MSAxMC4yNzM3NDAxLDYuNzY5MjU2NSAxMC4yOCw3LjU5IEw4LjU0LDcuNTkgQzguNTcwNTI4MzIsNy4xNTYxNDc3OCA4LjQ3Njg3NjE0LDYuNzIyNTcyODUgOC4yNyw2LjM0IEM4LjAyODMxNDUxLDYuMDg0MDExNzEgNy42Nzk1MjE3OSw1Ljk1Nzg1MjY0IDcuMzMsNiBDNi45MzAzNDI2MSw1Ljk0MzUyMzU2IDYuNTM1OTE1OTIsNi4xMzI4NDgzNyA2LjMzLDYuNDggQzYuMDgwOTY0ODIsNi45ODkyNDg2NyA1Ljk2NzMxMzA5LDcuNTU0MDYzMzUgNiw4LjEyIEw2LDkuNzMgQzUuOTU0NDg5NTUsMTAuMzMxNDE4IDYuMDUzOTM5NjQsMTAuOTM0OTc3MiA2LjI5LDExLjQ5IEM2LjQ5ODY1NzQxLDExLjgzMzMxOTggNi44OTI1MTgxNCwxMi4wMTg0MzQ0IDcuMjksMTEuOTYgQzcuNjQwMzY1ODUsMTIuMDAwMTI1MyA3Ljk4OTk1ODcxLDExLjg3ODY4NzggOC4yNCwxMS42MyBDOC40NTA4MTA1NywxMS4yNjY1MTQgOC41NTE1NTQ4OCwxMC44NDk2NDEgOC41MywxMC40MyBMMTAuMjcsMTAuNDMgWiIgaWQ9IlBhdGgiPjwvcGF0aD4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjY4LDEwLjQzIEMxNy42OTc4MzQ5LDExLjI0NDE3MDQgMTcuNDA0NTg2NCwxMi4wMzQ1MTA4IDE2Ljg2LDEyLjY0IEMxNi4yODAyNTQ0LDEzLjE3NDcyODUgMTUuNTA3MTUzMiwxMy40NDkyODc4IDE0LjcyLDEzLjQgQzEzLjg1OTcxNzMsMTMuNDQxNDIyNCAxMy4wMzEyOTA0LDEzLjA2OTkzMDYgMTIuNDksMTIuNCBDMTEuOTMxMjE5MSwxMS42MDc0MDU1IDExLjY1OTU4ODksMTAuNjQ3ODgwNSAxMS43Miw5LjY4IEwxMS43Miw4LjI4IEMxMS42NTgyMjE0LDcuMzA3NDM1MjUgMTEuOTQxNTExLDYuMzQ0MjUwNzYgMTIuNTIsNS41NiBDMTMuMDYxMTYzMyw0Ljg5NTU3NjcyIDEzLjg4Mzc5MTcsNC41MjUwMjMzOCAxNC43NCw0LjU2IEMxNS41MzA0ODM4LDQuNTA1MzczNjUgMTYuMzA2MzE3NSw0Ljc5MzEyNDE0IDE2Ljg3LDUuMzUgQzE3LjM5NjQ0NjYsNS45NzgwNDYxOCAxNy42ODY1NDIyLDYuNzcwNTAyNTcgMTcuNjksNy41OSBMMTYsNy41OSBDMTYuMDIzNjk0OCw3LjE1NTQ4NzQ2IDE1LjkyNjc5MTUsNi43MjI4ODM2MSAxNS43Miw2LjM0IEMxNS40NzA2MzE0LDYuMDcwMDg4MzQgMTUuMTAyOTUxNCw1Ljk0MjUyNTkgMTQuNzQsNiBDMTQuMzQwMzQyNiw1Ljk0MzUyMzU2IDEzLjk0NTkxNTksNi4xMzI4NDgzNyAxMy43NCw2LjQ4IEMxMy41MTM4MDM2LDYuOTgxNzY3NjUgMTMuNDEwOTQwMyw3LjUzMDM3MTg0IDEzLjQ0LDguMDggTDEzLjQ0LDkuNjkgQzEzLjM5MjExNDgsMTAuMjkwNTgyOCAxMy40ODgxMDE1LDEwLjg5MzkyODIgMTMuNzIsMTEuNDUgQzEzLjkzODg2MjQsMTEuNzgxNzQ5NSAxNC4zMjQ5MTQyLDExLjk2MzE5MzggMTQuNzIsMTEuOTIgQzE1LjA2NzM2MDcsMTEuOTU5OTc2MSAxNS40MTM4NTQ4LDExLjgzODMzNDYgMTUuNjYsMTEuNTkgQzE1Ljg3MDgxMDYsMTEuMjI2NTE0IDE1Ljk3MTU1NDksMTAuODA5NjQxIDE1Ljk1LDEwLjM5IEwxNy42OCwxMC40MyBaIiBpZD0iUGF0aCI+PC9wYXRoPgogICAgICAgICAgICA8cGF0aCBkPSJNMjAsMS43NSBMMjAsMTYuMjUgTDIsMTYuMjUgTDIsMS43NSBMMjAsMS43NSBMMjAsMS43NSBaIE0yMC41LDAuMjUgTDEuNSwwLjI1IEMwLjk0NzcxNTI1LDAuMjUgMC41LDAuNjk3NzE1MjUgMC41LDEuMjUgTDAuNSwxNi43NSBDMC41LDE3LjMwMjI4NDcgMC45NDc3MTUyNSwxNy43NSAxLjUsMTcuNzUgTDIwLjUsMTcuNzUgQzIxLjA1MjI4NDcsMTcuNzUgMjEuNSwxNy4zMDIyODQ3IDIxLjUsMTYuNzUgTDIxLjUsMS4yNSBDMjEuNSwwLjY5NzcxNTI1IDIxLjA1MjI4NDcsMC4yNSAyMC41LDAuMjUgWiIgaWQ9IlNoYXBlIj48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=")}@media(max-width: 600px){.tpPlayer.endCardActive .tpPlayerView .videoCardItems .inner ul,.tpPlayerView.endCardActive .videoCardItems .inner ul,.tpPlayerView.tpPaused .videoCardItems .inner ul{margin:0 0 -14px}}@media(max-width: 600px){.tpPlayer.endCardActive .tpPlayerView .videoCardReplay,.tpPlayerView.endCardActive .videoCardReplay,.tpPlayerView.videoCardReplay{margin:10px 15px 15px}}@media(max-width: 600px){.tpPlayer.endCardActive .tpPlayerView .videoCardReplay .cardReplay,.tpPlayerView.endCardActive .videoCardReplay .cardReplay,.tpPlayerView.videoCardReplay .cardReplay{margin-top:-4px}}.single-post .tpWarmed .tpControls{display:none}.ampvideo .tpPlayerView .tpCards{z-index:1}.tpPlayerView .tpCards{z-index:999999999}.lx.ampvideo .tpPlayerView .tpCards{z-index:1}.cozitv.hfeed .tpPlayer .tpPlayerView.tpWarmed .tpStandby .tpPlayOverlay,.telx.hfeed .tpPlayer .tpPlayerView.tpWarmed .tpStandby .tpPlayOverlay{right:0;top:0%}.single-post .tpPlayerView.tpWarmed .tpStandby .tpPlayOverlay,.hfeed .tpPlayerView.tpWarmed .tpStandby .tpPlayOverlay{left:20px;right:100%}.single-post .tpPlayerView.tpWarmed .tpStandby .tpPlayOverlay:hover,.single-post .tpPlayerView.tpWarmed .tpStandby .tpPlayOverlay:focus,.hfeed .tpPlayerView.tpWarmed .tpStandby .tpPlayOverlay:hover,.hfeed .tpPlayerView.tpWarmed .tpStandby .tpPlayOverlay:focus{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzUiIGhlaWdodD0iMzQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMSAxKSIgZmlsbC1ydWxlPSJub256ZXJvIiBmaWxsPSJub25lIj48ZWxsaXBzZSBzdHJva2U9IiNGRkYiIHN0cm9rZS13aWR0aD0iMi41IiBmaWxsLW9wYWNpdHk9IjEiIGZpbGw9IiNmZmYiIGN4PSIxNi4xOCIgY3k9IjE1Ljk1OCIgcng9IjE1LjYyNyIgcnk9IjE1LjQ2MiIvPjxwYXRoIGZpbGw9IiMwMDAiIGQ9Ik0yMC45NjkgMTUuOTU4bC02Ljg2IDMuOTk1di03Ljk5eiIvPjwvZz48L3N2Zz4K")}@media(min-width: 1140px){.single-post .tpPlayerView.tpWarmed .tpStandby .tpPlayOverlay,.hfeed .tpPlayerView.tpWarmed .tpStandby .tpPlayOverlay{top:12%}}@media(min-width: 1140px){.home.hfeed .tpPlayerView.tpWarmed .tpStandby .tpPlayOverlay{top:69%}}.weather-landing ul.shareIcons div{margin-bottom:10px}.single-post .tpWarmed .tpStandby:after{content:"";position:absolute;display:block;width:100%;height:100%;background:-webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));background:-o-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);background:linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%)}.tpPreviewCard{height:50%;top:67% !important;color:#fff;padding:0px 20px;background:-webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));background:-o-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);background:linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);font-family:"Arthouse";font-weight:600}.tpPreviewCard .titleTimeCode{font-size:24px;line-height:28px}.tpPreviewCard .previewTimeCode{font-size:14px;line-height:17px}@media(max-width: 500px){.tpPreviewCard .titleTimeCode{font-size:15px;line-height:20px}.tpPreviewCard .previewTimeCode{font-size:12px;line-height:16px}}@media(max-width: 600px){.tpPlayer.endCardActive .tpPlayerView .videoCardItems,.tpPlayerView.endCardActive .videoCardItems,.tpPlayerView.tpPaused .videoCardItems{bottom:5px}}@media(max-width: 600px){.tpPlayer.endCardActive .tpPlayerView .videoCardItems li,.tpPlayerView.endCardActive .videoCardItems li,.tpPlayerView.tpPaused .videoCardItems li{display:none;margin:0 2% 0 4%;width:94%}.tpPlayer.endCardActive .tpPlayerView .videoCardItems li .thumb,.tpPlayerView.endCardActive .videoCardItems li .thumb,.tpPlayerView.tpPaused .videoCardItems li .thumb{width:40%}.tpPlayer.endCardActive .tpPlayerView .videoCardItems li .thumb img,.tpPlayerView.endCardActive .videoCardItems li .thumb img,.tpPlayerView.tpPaused .videoCardItems li .thumb img{width:100%}}@media(max-width: 600px){.tpPlayer.endCardActive .tpPlayerView .videoCardItems li .titleContainer,.tpPlayerView.endCardActive .videoCardItems li .titleContainer,.tpPlayerView.tpPaused .videoCardItems li .titleContainer{margin:0 0 0 2%;width:50%}}.tpPlayer.endCardActive .tpPlayerView .videoCardItems li .titleContainer .headline,.tpPlayerView.endCardActive .videoCardItems li .titleContainer .headline,.tpPlayerView.tpPaused .videoCardItems li .titleContainer .headline{font-size:14px;font-weight:400}@media(max-width: 600px){.tpPlayer.endCardActive .tpPlayerView .videoCardItems li:first-child,.tpPlayerView.endCardActive .videoCardItems li:first-child,.tpPlayerView.tpPaused .videoCardItems li:first-child{display:block}}@media(max-width: 600px){.tpPlayerView .tpAdCountdown{display:block !important}}.tpPlayerView.tpPaused .videoCardItems li .titleContainer{width:50%}@media(max-width: 600px){.forecast__video .tpPlayerView .tpPlayOverlay,.forecast__video .tpPlayerView .tpPauseOverlay{margin:13% auto auto}}.tpAudioTrackMenu::-webkit-scrollbar-thumb{background:#313851;border-radius:5px}.tpAudioTrackMenu::-webkit-scrollbar-thumb:hover{background:#455070}.tpAudioTrackMenu::-webkit-scrollbar-corner{background:rgba(0,0,0,0)}@supports(-webkit-overflow-scrolling: touch){@media(max-device-width: 736px){.tpPlayerView.tpWarmed .tpFullscreen{visibility:hidden}}}
.video-icon{bottom:.625rem;height:1.125rem;left:.3125rem;position:absolute;width:100%;z-index:3}@media(min-width: 48rem){.video-icon{height:2.25rem}}@media(min-width: 48rem){.video-icon{left:.625rem}}.video-icon .video-length{color:#fff;font-size:1rem;font-weight:700;left:1.75rem;position:absolute;top:.125rem}@media(min-width: 48rem){.video-icon .video-length{height:2.25rem;left:2.875rem;top:.625rem}}.video-icon .play-icon-filled,.video-icon .play-icon-transparent{height:1.125rem;position:absolute;-webkit-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s;width:1.125rem}@media(min-width: 48rem){.video-icon .play-icon-filled,.video-icon .play-icon-transparent{height:2.25rem;width:2.25rem}}.video-icon .play-icon-filled{opacity:0}.video-icon .play-icon-transparent{opacity:1}
.video-meta__tag,.video-meta__time{color:rgba(0,0,0,.9);font-family:"Arthouse",sans-serif;font-size:.6875rem;font-weight:700;line-height:1.2;-webkit-box-align:center;-ms-flex-align:center;align-items:center;letter-spacing:.9px;margin-bottom:.1875rem;text-transform:uppercase}.video-meta__tag{position:relative}.video-meta__tag::after{color:#fff;content:"·";margin-left:.3125rem;margin-right:.3125rem}.video-meta__tag a{color:#6ab1ed;text-decoration:none}.video-meta__tag a:hover{text-decoration:underline}.video-meta__time{color:#fff}.video-meta__sponsored .video-meta__tag{color:#0a8539}.video-meta__sponsored .video-meta__tag::after{display:none}
.video-thumbnail:hover .play-icon-filled{opacity:1}.video-thumbnail:hover .play-icon-transparent{opacity:0}.video-thumbnail a{text-decoration:none}.video-thumbnail__video-title{color:#c8c8c8;line-height:1.2}@media(min-width: 48rem){.video-thumbnail__video-title{font-size:1.125rem;position:relative;z-index:3}}.video-thumbnail__video{min-height:9.375rem}.video-thumbnail__image-wrapper{margin-bottom:.625rem;position:relative}.video-thumbnail__image-wrapper::after{background-color:rgba(0,0,0,.3);content:"";height:100%;left:0;position:absolute;top:0;width:100%}.video-thumbnail img{width:100%}.video-thumbnail__now-playing{background-color:#144aa8;color:#fff;font-size:.6875rem;font-weight:700;left:0;padding:.625rem;position:absolute;text-transform:uppercase;top:0;z-index:3}.video-thumbnail__video--horizontal{border-top:.0625rem solid rgba(216,216,216,.2);display:-webkit-box;display:-ms-flexbox;display:flex;min-height:auto;padding-bottom:1rem;padding-top:.875rem}.video-thumbnail__video--horizontal .video-thumbnail__image-wrapper{-webkit-box-flex:0;-ms-flex:0 8.125rem;flex:0 8.125rem;height:100%;margin-bottom:0;margin-right:1rem;min-width:8.125rem}@media(min-width: 48rem){.video-thumbnail__video--horizontal .video-thumbnail__image-wrapper{-webkit-box-flex:0;-ms-flex:0 9.25rem;flex:0 9.25rem;margin-right:2.25rem;min-width:9.25rem}}@media(min-width: 71.25rem){.video-thumbnail__video--horizontal .video-thumbnail__image-wrapper{-webkit-box-flex:0;-ms-flex:0 10.3125rem;flex:0 10.3125rem;margin-right:1.125rem;min-width:10.3125rem}}@media(min-width: 71.25rem){.home .video-thumbnail__video--horizontal .video-thumbnail__image-wrapper{min-height:6.375rem;min-width:10.25rem}.home .video-thumbnail__video--horizontal .video-thumbnail__image-wrapper>img{min-height:6.375rem;-o-object-fit:cover;object-fit:cover}}.video-thumbnail__video--horizontal img{vertical-align:middle}.video-thumbnail__video--horizontal .video-meta__time{color:#bfbfbe}.video-thumbnail__video--horizontal .video-thumbnail__video-title{color:#fff}.video-thumbnail__video--horizontal .video-meta__tag::after{color:#bfbfbe}.video-thumbnail__video--horizontal .video-icon{height:2.25rem;width:2.25rem}.video-thumbnail__video--horizontal .play-icon-transparent,.video-thumbnail__video--horizontal .play-icon-filled{height:2.25rem;width:2.25rem}
/*# sourceMappingURL=common.6bcd431ddb48c401c470.min.css.map*/</style><style class="wp-asset-manager nbc-global-css" type="text/css">.site-header--immersive::before,.site-header--immersive::after,.site-header--featured::before,.site-header--featured::after,.site-header--home::before,.site-header--home::after,.site-header--category::before,.site-header--category::after,.site-header--tag::before,.site-header--tag::after{display:none}.site-header--featured-no-image::before,.site-header--featured-no-image::after{display:block}.site-header--featured-no-image.js-is-sticky::after{display:none}.tall-article-background::before,.tall-article-background::after{display:none}@media(min-width: 80rem){.tall-article-background{height:30rem;left:0;position:absolute;top:0;width:100%;z-index:-1}.tall-article-background::before,.tall-article-background::after{display:block}}.section-background{height:28.4375rem;left:0;position:absolute;top:0;width:100%;z-index:-1}.section-background::before,.section-background::after{display:none}.section-background::before,.section-background::after{display:block}@media(min-width: 48rem){.section-background{height:41.875rem}}@media(min-width: 80rem){.section-background{height:21.6875rem}}.tag-background{height:10.75rem;left:0;position:absolute;top:0;width:100%;z-index:-1}.tag-background::before,.tag-background::after{display:none}.tag-background::before,.tag-background::after{display:block}@media(min-width: 48rem){.tag-background{height:12.8125rem}}@media(min-width: 80rem){.tag-background{height:11.875rem}}.admin-bar .tag-background{height:13.5625rem}@media(min-width: 48.875rem){.admin-bar .tag-background{height:13.8125rem}}.immersive-article-background{height:18.75rem;left:0;position:absolute;top:0;width:100%;z-index:-2}.immersive-article-background::before{background-color:rgba(0,0,0,0);background-image:-webkit-gradient(linear, left top, left bottom, from(#000), color-stop(30%, rgba(0, 0, 0, 0.3)));background-image:-o-linear-gradient(top, #000 0%, rgba(0, 0, 0, 0.3) 30%);background-image:linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.3) 30%);content:"";display:block;left:0;position:absolute;top:0;width:100%;z-index:-1}.immersive-article-background::after{display:none}@media(min-width: 48rem){.immersive-article-background{height:37.5rem}}@-webkit-keyframes fadeOut{0%{opacity:1}99%{opacity:.01}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}99%{opacity:.01}100%{opacity:0}}.site-header{left:0;padding:0rem 1.25rem;position:absolute;top:0;-webkit-transition:padding .2s ease;-o-transition:padding .2s ease;transition:padding .2s ease;width:100%;z-index:13}@media(min-width: 80rem){.site-header{padding:0}}.home .site-header{margin-bottom:1.1875rem}.site-header__logo{height:2.5rem;-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;-o-transition:transform .2s ease;transition:transform .2s ease;transition:transform .2s ease, -webkit-transform .2s ease;width:auto}@media(min-width: 48rem){.site-header__logo{margin-right:2.625rem}.meta-appended .site-header__logo{margin-right:.875rem}}.site-header__logo img{height:2.5rem;max-width:none;width:auto}.share-open .site-header__logo{display:none}.site-header,.site-header a{color:#fff}.site-header__wrap{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:0 auto;max-width:67.5rem;min-height:2.5rem}@media(min-width: 48rem){.site-header__wrap{height:auto;margin:0 auto;max-width:100%}}@media(min-width: 80rem){.site-header__wrap{width:75.625rem}}@media(min-width: 90rem){.site-header__wrap{width:85.5625rem}}.site-header__primary{min-height:2.5rem;padding:.875rem 0rem 0rem;-webkit-transition:padding-top .3s ease,background-color .3s ease;-o-transition:padding-top .3s ease,background-color .3s ease;transition:padding-top .3s ease,background-color .3s ease;width:100%}@media(min-width: 48rem){.site-header__primary{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.site-header__primary.sticky{background-color:rgba(15,46,98,.95);left:0;padding:0rem 1.5rem;position:fixed;top:0;width:100%}.station-telemundo .site-header__primary.sticky{background-color:rgba(25,45,91,.95)}@media(min-width: 37.5rem){.admin-bar .site-header__primary.sticky{top:2.875rem}}@media(min-width: 48.875rem){.admin-bar .site-header__primary.sticky{top:2rem}}.site-header__secondary{height:auto;max-height:100%;opacity:1;overflow:hidden;padding:.875rem 0rem .875rem;position:relative;-webkit-transform:scaleY(1);-ms-transform:scaleY(1);transform:scaleY(1)}@media(min-width: 48rem){.site-header__secondary{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.site-header__secondary.open{overflow:visible}.sticky+.site-header__secondary{border-top-color:rgba(0,0,0,0);margin-top:2.625rem;max-height:30px;opacity:0;-webkit-transform:scaleY(0);-ms-transform:scaleY(0);transform:scaleY(0);-webkit-transition:opacity .3s ease,border-top-color .3s ease,-webkit-transform .1s ease .4s;transition:opacity .3s ease,border-top-color .3s ease,-webkit-transform .1s ease .4s;-o-transition:opacity .3s ease,border-top-color .3s ease,transform .1s ease .4s;transition:opacity .3s ease,border-top-color .3s ease,transform .1s ease .4s;transition:opacity .3s ease,border-top-color .3s ease,transform .1s ease .4s,-webkit-transform .1s ease .4s;z-index:-1}.site-header__secondary .site-header__wrap{border-top:solid 1px rgba(255,255,255,.3);min-height:unset;padding:.3125rem 0rem .5rem}.site-header__secondary:not(.open){max-height:45px}.site-header__secondary .site-header__weather{margin-right:0}.site-header__nav-search{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}@media(min-width: 48rem){.site-header__nav-search{margin-right:2rem}}.site-header__search-toggle,.site-header__nav-main-toggle{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:rgba(0,0,0,0);background-position:center;background-repeat:no-repeat;border:0;cursor:pointer;height:1.25rem;-webkit-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s;width:1.25rem}.site-header__search-toggle:hover,.site-header__nav-main-toggle:hover{opacity:.7}.site-header__search-toggle-text,.site-header__nav-main-toggle-text{border:0;clip:rect(0, 0, 0, 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.site-header__nav-main-toggle{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMCAuMjM1aDE4djEuOTQxSDB6TTAgNS4wODhoMThWNy4wM0gwek0wIDkuOTQxaDE4djEuOTQxSDB6Ii8+PC9nPjwvc3ZnPg==)}@media(min-width: 48rem){.site-header__nav-main-toggle{margin-right:1.125rem;position:relative;top:-0.1875rem}}.site-header__search-toggle{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTkuOTg3IDExLjAwN2MtMi4xNTEgMS43MDktNS4yNDMgMS42MTItNy4xNzYtLjMyQy43MjYgOC42Ljc3NyA1LjE3IDIuOTI1IDMuMDIxIDUuMDczLjg3NCA4LjUwNS44MjMgMTAuNTkgMi45MDhjMi4wMDUgMi4wMDQgMi4wMzQgNS4yNTQuMTI0IDcuNDFsMy41NzcgMy41NzdjLjI1LjI1LjI5NS42MTEuMS44MDYtLjE5Ni4xOTYtLjU1Ny4xNTEtLjgwNy0uMDk5bC0zLjU5Ni0zLjU5NXptLS4xOTktMS4xMjJjMS43NTgtMS43NTcgMS44LTQuNTY0LjA5NC02LjI3LTEuNzA2LTEuNzA2LTQuNTEzLTEuNjY0LTYuMjcuMDk0LTEuNzU4IDEuNzU3LTEuOCA0LjU2NC0uMDk0IDYuMjcgMS43MDYgMS43MDYgNC41MTMgMS42NjQgNi4yNy0uMDk0eiIgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9IiNGRkYiLz48L3N2Zz4=);display:none}@media(min-width: 30rem){.site-header__search-toggle{display:block}}.site-header__animated-section{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;opacity:1}@media(min-width: 48rem){.site-header__animated-section{display:grid;grid-template-columns:1fr minmax(200px, -webkit-max-content);grid-template-columns:1fr minmax(200px, max-content);width:100%}.site-header__animated-section.fade-out{-webkit-animation:fadeOut .3s;animation:fadeOut .3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}}.share-open .site-header__animated-section{width:100%}.site-header__article-meta{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;min-height:2rem;min-width:4.0625rem;padding:0;position:relative;width:100%}@media(min-width: 48rem){.site-header__article-meta{grid-column:1/span 2}}.site-header__article-meta::before{background-color:rgba(255,255,255,.6);content:"";display:none;height:18px;left:0;position:absolute;top:calc(50% - 9px);width:1px}@media(min-width: 48rem){.site-header__article-meta::before{display:inline-block}}.site-header__article-headline{color:rgba(255,255,255,.9);display:none;font-size:.9375rem;font-weight:600;max-height:2.5rem;overflow:hidden;padding-left:1rem;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}@media(min-width: 48rem){.site-header__article-headline{display:inline-block;max-height:1.5625rem;max-width:calc(100% - 150px)}}.site-header__article-eyebrow{color:#fff;font-size:.8125rem;font-weight:900;text-transform:uppercase}.site-header__sharing{display:inline-block}.share-open .site-header__sharing{margin:0 auto}.site-header__sharing .share-buttons{display:none}@media(min-width: 48rem){.site-header__sharing .share-buttons{display:inline-block}}.share-open .site-header__sharing .share-buttons,.site-header__sharing .share-buttons.show{display:inline-block;margin:0 auto}.site-header__mobile-share-toggle{background-color:rgba(255,255,255,.2);border:none;color:#fff;display:none;font-size:.8125rem;font-weight:700;padding:.1875rem .4375rem;text-transform:uppercase}.single .site-header__mobile-share-toggle{display:inline-block}@media(min-width: 48rem){.single .site-header__mobile-share-toggle{display:none}}.single-video .site-header__mobile-share-toggle{display:none}.site-header__mobile-share-toggle:hover{background-color:rgba(255,255,255,.3)}.site-header__mobile-share-toggle.close{background-color:#144aa8}.site-header__mobile-share-toggle.close .text-share{display:none}.site-header__mobile-share-toggle.close .text-close{display:inline}.site-header__mobile-share-toggle .text-close{display:none}.site-header__nav-sections{display:none;position:relative}@media(min-width: 48rem){.site-header__nav-sections{display:block;overflow:hidden;white-space:nowrap}.site-header__nav-sections>div{overflow:hidden}}.site-header__nav-sections nav{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.site-header__nav-sections a{font-size:.8125rem;font-weight:700;letter-spacing:.33px;margin-right:1.5625rem;opacity:1;text-transform:uppercase;-webkit-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s}.site-header__nav-sections a:hover{opacity:.7}.site-header__nav-sections a:last-child{margin-right:0}.site-header__weather-tv{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}@media(min-width: 48rem){.site-header__weather-tv{grid-column:2/3;justify-self:end;min-width:10rem}}.site-header__local-weather{min-height:2rem}.site-header__weather-link{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;min-width:4.0625rem}@media(min-width: 48rem){.site-header__weather-link{margin-right:1.125rem}}.site-header__weather-icon{margin-right:.3125rem}.site-header__weather-icon-text{border:0;clip:rect(0, 0, 0, 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.site-header__weather-value{font-size:.8125rem;font-weight:700}@media(min-width: 48rem){.site-header__weather-value{font-size:1.25rem}}.site-header__live-tv{background-color:rgba(255,255,255,.2);display:none;font-size:.8125rem;font-weight:700;max-width:10.5rem;padding:.3125rem .9375rem .4375rem;text-transform:uppercase;-webkit-transition:background .3s;-o-transition:background .3s;transition:background .3s}@media(min-width: 80rem){.site-header__live-tv{display:block}}.site-header__live-tv:hover{background-color:rgba(255,255,255,.3)}.site-header__trending a:hover,.site-header__alerts a:hover{text-decoration:underline}.site-header__trending{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:grid;grid-template-columns:75px 1fr;padding-right:36px;position:relative}.station-telemundo .site-header__trending{grid-template-columns:90px 1fr}.site-header__trending.open{grid-template-columns:1fr 1fr;padding-right:0;width:100%}.site-header__trending-label{color:#fcb813;display:inline-block;float:left;font-size:.75rem;font-weight:700;height:1.3125rem;line-height:1rem;margin-right:1.5rem;padding-top:.125rem;text-transform:uppercase}.open .site-header__trending-label{position:relative;top:.25rem}.site-header__trending-nav{display:block;line-height:1.2;min-height:1.375rem;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.site-header__trending-nav.open{background-color:rgba(15,46,98,.95);grid-column:1/span 2;margin-left:-1.5rem;margin-right:-1.5rem;overflow:visible;padding:.4375rem 1.5625rem;position:relative;-o-text-overflow:clip;text-overflow:clip;top:.3125rem;white-space:normal;width:100vw}.site-header__trending-nav-item{font-size:1rem;margin-right:1.125rem}@media(min-width: 48rem){.site-header__trending-nav-item{font-size:.8125rem;margin-right:1.6875rem}}.site-header__trending-nav-item::last-child{margin-right:0}.site-header__trending-toggle{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;display:-webkit-box;display:-ms-flexbox;display:flex;height:1rem;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;position:absolute;right:0;top:0}.site-header__trending-toggle.hide{display:none}@media(max-width: 47.9375rem){.open .site-header__trending-nav-item{display:block;font-size:.9375rem;line-height:2rem;margin-right:0}}.site-header__alerts{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:none;font-size:.6875rem;font-weight:700;letter-spacing:.55px;margin-left:auto;padding-left:.625rem;text-transform:uppercase}@media(min-width: 48rem){.site-header__alerts{display:-webkit-box;display:-ms-flexbox;display:flex}}@media(min-width: 71.25rem){.site-header__alerts{padding-left:0}}.site-header__alerts .with-divider{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.site-header__alerts .with-divider .item-divider{background-color:#fff;border-radius:50%;display:inline-block;height:3px;margin-right:5px;width:3px}.site-header__alerts-item:first-child{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-right:.3125rem}.trending-toggle{background-color:rgba(0,0,0,0);background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjkiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtOC4zNyA4Ljg1IDcuNDctNy4yMWMuMTEtLjEuMTYtLjIyLjE2LS4zNiAwLS4xMy0uMDUtLjI1LS4xNi0uMzZsLS44LS43N2EuNTMuNTMgMCAwIDAgLS43NCAwbC02LjMgNi4wOC02LjMtNi4wOGEuNTMuNTMgMCAwIDAgLS43NCAwbC0uOC43N2MtLjExLjEtLjE2LjIyLS4xNi4zNiAwIC4xMy4wNS4yNS4xNi4zNmw3LjQ3IDcuMjFhLjUzLjUzIDAgMCAwIC43NCAweiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==);background-position:center;background-repeat:no-repeat;background-size:16px 9px;border:0;cursor:pointer;margin-left:20px;width:16px}.trending-toggle.open{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.necn .site-header__primary.sticky{background-color:rgba(37,29,60,.95)}.necn .site-header__trending-nav.open{background-color:rgba(37,29,60,.95)}.section-archive-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;max-width:69.5rem;margin-left:auto;margin-right:auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:.3125rem 1.25rem 0rem;padding-bottom:1.875rem}@media(min-width: 80rem){.section-archive-header{margin:.9375rem auto 0rem;max-width:75.625rem}}@media(min-width: 64rem){.weather-landing .section-archive-header{margin:.9375rem 1.875rem 0rem;max-width:76.3125rem}}@media(min-width: 80rem){.weather-landing .section-archive-header{margin:.9375rem auto 0rem}}@media(min-width: 90rem){.weather-landing .section-archive-header{max-width:85.5625rem}}.single-post .section-archive-header{margin-left:auto;margin-right:auto;padding:0rem 1.25rem}@media(min-width: 80rem){.single-post .section-archive-header{max-width:69.5rem}}.admin-bar .section-archive-header{margin-top:1.875rem}.admin-bar.weather-landing .section-archive-header,.weather-landing .section-archive-header{margin-top:0}@media(min-width: 48rem){.section-archive-header.section-archive-header--has-logo{margin-top:0}}@media(min-width: 80rem){.section-archive-header.section-archive-header--has-logo{margin-top:.9375rem}}.section-archive-header--text-wrap{max-width:75%}@media(max-width: 47.9375rem){.section-archive-header--text-wrap{max-width:100%;width:100%}}@media(min-width: 64rem)and (max-width: 68.6875rem){.section-archive-header--text-wrap{margin:0 auto;width:43.5rem}}.section-archive-header--text-wrap a{text-decoration:none}.single.enhanced-hero .section-archive-header--text-wrap,.single-video .section-archive-header--text-wrap{max-width:100%}@media(min-width: 64rem){.single.short-section-branding .section-archive-header--text-wrap{margin:0 auto;max-width:100%;width:100%}}.section-archive-header__category{color:rgba(0,0,0,.9);font-family:"Arthouse",sans-serif;font-size:1.5rem;font-weight:900;line-height:1.2;color:#fff;margin:0;text-align:left;text-transform:uppercase}.section-archive-header__category h1,.section-archive-header__category h3.video-header{color:#fff;font-family:inherit;font-size:inherit;font-weight:inherit}@media(min-width: 48rem){.section-archive-header__category{font-size:2rem}}@media(min-width: 80rem){.section-archive-header__category{margin:0rem auto .625rem auto;max-width:1280px;width:100%}}.section-archive-header__video{display:inline-block;font-weight:900;padding-top:1.4375rem}@media(min-width: 48rem){.section-archive-header__video{margin-bottom:.5rem;padding-top:2.25rem}}@media(min-width: 80rem){.section-archive-header__video{max-width:unset;width:auto}}.section-archive-header__video-link{color:rgba(255,255,255,.6);font-family:"Roboto Flex",sans-serif;font-size:.8125rem;font-weight:700;margin-left:.3125rem;text-decoration:none}.section-archive-header__video-link:hover{text-decoration:underline}@media(min-width: 71.25rem){.section-archive-header__video-link{margin-left:1.25rem}}.section-archive-header__logo{display:block;margin:0rem 0rem .3125rem;max-height:2.5rem;position:relative;z-index:1}@media(min-width: 48rem){.section-archive-header__logo{margin:1.125rem 0 .3125rem 0;max-height:2.625rem}}@media(min-width: 80rem){.section-archive-header__logo{margin-top:0}}.section-archive-header__category-description{color:rgba(0,0,0,.9);font-family:"Arthouse",sans-serif;font-size:1.0625rem;font-weight:500;line-height:1.2;color:#bfbfbe;margin:.625rem 0rem -0.4375rem;text-align:left;width:100%}@media(min-width: 48rem){.section-archive-header__category-description{font-size:1.125rem}}@media(min-width: 80rem){.section-archive-header__category-description{margin:.4375rem auto .3125rem;max-width:1280px;width:100%}}.section-archive-header--has-logo .section-archive-header__category-description{text-align:left}.post-type-archive-video .section-archive-header{margin-left:0;margin-right:0}.section-archive-header__ad{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:none;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin:.625rem auto;min-width:6.875rem;position:relative}@media(min-width: 48rem){.section-archive-header__ad{display:-webkit-box;display:-ms-flexbox;display:flex;margin:1.875rem 1.625rem 0rem;margin-left:auto}}@media(min-width: 80rem){.section-archive-header__ad{margin-top:-2.5rem}}@media(min-width: 64rem){.weather-landing .section-archive-header__ad{margin-right:0;margin-top:-0.9375rem}}.section-archive-header__ad__wrap{background-color:rgba(216,216,216,.11);padding:.875rem 1rem}.section-archive-header__ad::before{color:#fff;content:"";font-family:"Arthouse",sans-serif;font-size:.6875rem;font-weight:700;letter-spacing:.6px;position:absolute;text-transform:uppercase;top:-2.0625rem}@media(min-width: 80rem){.section-archive-header__ad::before{padding-right:1.25rem;position:relative;top:auto}}@media(min-width: 64rem){.weather-landing .section-archive-header__ad::before{padding-right:1.25rem;position:relative;top:auto}}.section-archive-header__ad.logo-rendered::before{content:attr(data-beforetext)}.section-archive-header__ad:empty::before{content:""}.section-archive-header--is-tentpole .section-archive-header__logo{display:inline-block;margin:1.125rem 1rem .3125rem 0;max-height:3.125rem;vertical-align:middle}.section-archive-header--is-tentpole .section-archive-header__category-description{display:inline-block;margin:unset;padding-bottom:0;vertical-align:text-top;width:70%}@media(min-width: 48rem){.section-archive-header--is-tentpole .section-archive-header__category-description{width:auto}}.section-sponsor{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-top:1.3125rem}@media(min-width: 48rem){.section-sponsor{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-bottom:-4.75rem;padding-top:2.25rem}}@media(min-width: 71.25rem){.section-sponsor{margin-bottom:-3.5625rem;padding-top:1.25rem}}.section-sponsor__text{color:#fff;font-family:"Arthouse",sans-serif;font-size:.6875rem;font-weight:700;margin-right:1.1875rem;text-transform:uppercase}@media(min-width: 64rem){.single.short-section-branding .section-archive-header{max-width:76.75rem !important}}.has-section-branding .section-archive-header{margin-top:.4375rem;padding-bottom:1.25rem}@media(min-width: 48rem){.has-section-branding .section-archive-header{margin-top:1.25rem}}@media(min-width: 80rem){.has-section-branding .section-archive-header{margin-top:1.875rem}}.has-section-branding .section-archive-header .section-archive-header__category{text-align:left}.has-section-branding .section-archive-header .section-archive-header__category-description{padding-bottom:.625rem;text-align:left}.section-archive-header--has-partner .section-archive-header--text-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.section-archive-header--has-partner .section-archive-header__category{margin-bottom:.625rem}.section-archive-header--has-partner .section-archive-header__category-description{margin-top:1.25rem}.section-archive-header--has-partner .section-archive-header__category-partnership{color:rgba(0,0,0,.9);font-family:"Arthouse",sans-serif;font-size:.875rem;font-weight:500;line-height:1.2;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;margin:0rem 0rem .3125rem;width:100%}@media(min-width: 80rem){.section-archive-header--has-partner .section-archive-header__category-partnership{margin:0}}.section-archive-header--has-partner .section-archive-header__category-partnership span{display:block}@media(min-width: 48rem){.section-archive-header--has-partner .section-archive-header__category-partnership span{display:inline}}.section-archive-header--has-partner .section-archive-header__category-partnership .partner-text{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:1.5rem}.section-archive-header--has-partner .section-archive-header__category-partnership .image-wrap{margin-left:.75rem;position:relative}.section-archive-header--has-partner .section-archive-header__category-partnership .image-wrap::before{background-color:#fff;content:"";height:1.125rem;left:-0.25rem;position:absolute;top:0rem;width:.0625rem}.section-archive-header--has-partner .section-archive-header__category-partnership img{margin-left:.3125rem;max-height:1rem;vertical-align:bottom}.section-archive-header--has-partner .section-archive-header__category-partnership{margin-bottom:0}.section-archive-header--has-partner.section-archive-header--has-logo{padding-bottom:1.5rem}.section-archive-header--has-partner.section-archive-header--has-logo .section-archive-header__logo{margin-bottom:.3125rem}.section-archive-header--has-partner.section-archive-header--has-logo .section-archive-header__category-description{padding-bottom:0}.section-archive-header--sister-station{margin-bottom:1.75rem}.section-archive-header--sister-station .section-archive-header__category-partnership img{max-height:1.25rem}.section-archive-header--sister-station .section-archive-header__category-partnership .image-wrap::before{top:.125rem}.tag .section-archive-header{margin-top:.5625rem;padding-bottom:1.5rem}@media(min-width: 48rem){.tag .section-archive-header{margin-top:.5625rem;padding-bottom:1.625rem}}@media(min-width: 80rem){.tag .section-archive-header{margin-top:.1875rem;padding-bottom:1.375rem}}.tag .section-archive-header .section-archive-header__category-description{padding-bottom:.5rem}@media(min-width: 80rem){.tag .section-archive-header .section-archive-header__category-description{padding-bottom:.3125rem}}.single-video .section-archive-header{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:.3125rem;padding-bottom:1.25rem}.single-video .section-archive-header__category{margin-top:-2.375rem}@media(min-width: 48rem){.single-video .section-archive-header__category{margin-top:.625rem}}@media(min-width: 80rem){.single-video .section-archive-header__category{margin-bottom:0;margin-top:2.1875rem}}.single-video.has-section-branding .section-archive-header{margin:.3125rem 1.5rem 0}@media(min-width: 48rem){.single-video.has-section-branding .section-archive-header{margin:.3125rem 1.5rem 0}}@media(min-width: 80rem){.single-video.has-section-branding .section-archive-header{margin:.3125rem auto 0}}.single-video .section-archive-header.section-archive-header--has-logo{margin-top:0}@media(min-width: 48rem){.single-video .section-archive-header.section-archive-header--has-logo{margin-top:.5rem}}@media(min-width: 80rem){.single-video .section-archive-header.section-archive-header--has-logo{margin-top:1.875rem}}@media(max-width: 47.9375rem){.single-video.visible-alert-bar .section-archive-header__category{margin-top:-1.3125rem}}.single-post.enhanced-hero .section-archive-header{margin:1.375rem auto auto;max-width:75.5rem;padding:0rem 1.25rem .9375rem;width:100%}@media(min-width: 48rem){.single-post.enhanced-hero .section-archive-header{margin-top:2.1875rem;padding-bottom:1.25rem}}@media(min-width: 80rem){.single-post.enhanced-hero .section-archive-header{margin-top:2.8125rem;max-width:77.9375rem;padding-bottom:.5rem}}@media(min-width: 80rem){.single-post.enhanced-hero .section-archive-header--has-logo{padding-bottom:1.25rem}}@media(min-width: 64rem)and (max-width: 68.6875rem){.single-post.enhanced-hero .section-archive-header--text-wrap{margin:0;width:calc(100% - 200px)}}.single-post.enhanced-hero .section-archive-header__category{font-family:"Arthouse",sans-serif;font-size:1.5rem;font-weight:900;letter-spacing:normal}@media(min-width: 48rem){.single-post.enhanced-hero .section-archive-header__category{font-size:2rem}}.single-post.enhanced-hero .section-archive-header__category-description{color:#fff;font-size:.75rem;font-weight:500}@media(min-width: 48rem){.single-post.enhanced-hero .section-archive-header__category-description{color:#fff;font-size:1rem}}.single-post.enhanced-hero .section-archive-header__logo{margin-top:0}@media(min-width: 48rem){.single-post.enhanced-hero .section-archive-header__logo{margin-top:0}}.single-post.enhanced-hero .section-archive-header__logo+.section-archive-header__category-description{margin-bottom:0;padding-bottom:0}.single-post.enhanced-hero .section-archive-header__ad{background-color:gray;height:40px;margin-right:0}@media(min-width: 64rem)and (max-width: 68.6875rem){.single-post.enhanced-hero .section-archive-header__ad{margin-right:0}}.single-post.enhanced-hero .section-archive-header a{text-decoration:none}@media(min-width: 48rem){.single-post.enhanced-hero.visible-alert-bar .section-archive-header{margin-top:1.875rem}}@media(min-width: 80rem){.single-post.short-section-branding .section-archive-header{max-width:76.75rem}}.site-header{font-family:"Arthouse",sans-serif;margin-bottom:3.4375rem}.tag .site-header{margin-bottom:.75rem}@media(min-width: 48rem){.tag .site-header{margin-bottom:2.375rem}}@media(min-width: 80rem){.tag .site-header{margin-bottom:.875rem}}@media(min-width: 48rem){.tag.admin-bar .site-header{margin-bottom:.75rem}}@media(min-width: 80rem){.tag.admin-bar .site-header{margin-bottom:.875rem}}.site-header a{text-decoration:none}
@media(min-width: 48rem){.site-header__nav-search{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}}.site-header__search{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-transition:min-width .3s ease;-o-transition:min-width .3s ease;transition:min-width .3s ease;width:0}@media(min-width: 48rem){.site-header__search{min-width:1.25rem;width:1.25rem}}.site-header__search.search-open{min-width:15.5rem}.site-header__search-form{display:none;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:left;-ms-transform-origin:left;transform-origin:left;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;-o-transition:transform .3s ease;transition:transform .3s ease;transition:transform .3s ease, -webkit-transform .3s ease;width:0}@media(min-width: 48rem){.site-header__search-form{display:-webkit-box;display:-ms-flexbox;display:flex}}.site-header__search-form form{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:rgba(255,255,255,.1);border:0;border-radius:20px;display:-webkit-box;display:-ms-flexbox;display:flex;height:2.1875rem;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:0rem .75rem 0rem 1.4375rem}.site-header__search-form form:focus,.site-header__search-form form:focus-within{-webkit-box-shadow:0 0 7px 0 #767676;box-shadow:0 0 7px 0 #767676;outline:none}.site-header__search-form label{width:calc(100% - 28px)}.site-header__search-form .search-submit{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:rgba(0,0,0,0);border:0;color:rgba(0,0,0,0);cursor:pointer;height:18px;-webkit-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s;width:18px}.site-header__search-form .search-submit:hover{opacity:.7}.site-header__search-form input[type=search]{-webkit-appearance:none;background-color:rgba(0,0,0,0);border:0;border-radius:0;color:#fff;font-size:.9375em;height:2.1875rem;padding:.4375rem .625rem .4375rem 0rem;width:100%}.site-header__search-form input[type=search]::-webkit-input-placeholder{color:#fff;font-weight:900}.site-header__search-form input[type=search]::-moz-placeholder{color:#fff;font-weight:900}.site-header__search-form input[type=search]:-ms-input-placeholder{color:#fff;font-weight:900}.site-header__search-form input[type=search]::-ms-input-placeholder{color:#fff;font-weight:900}.site-header__search-form input[type=search]::placeholder{color:#fff;font-weight:900}.site-header__search-form input[type=search]:focus{outline:none}.site-header__search-form.open{min-width:14.375rem;-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.site-header__search-toggle{display:none;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;-o-transition:transform .3s ease;transition:transform .3s ease;transition:transform .3s ease, -webkit-transform .3s ease;width:1.125rem;z-index:1}@media(min-width: 48rem){.site-header__search-toggle{display:inline-block}}.site-header__search-toggle.form-open{pointer-events:none;-webkit-transform:translateX(218px);-ms-transform:translateX(218px);transform:translateX(218px)}
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}html{background-color:#fff}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}.two-column-block{margin-bottom:2.125rem}.two-column-block:last-child{border-bottom:#ddd;padding-bottom:1.875rem}@media(min-width: 48rem){.two-column-block:last-child{border-bottom:none}}@media(min-width: 48rem){.two-column-block__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;max-width:100%;margin-left:auto;margin-right:auto}}@media(min-width: 48rem){.two-column-block__content>div.team-member{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 4/8 - (1.875rem - 1.875rem * 4/8));flex-basis:calc(99.9% * 4/8 - (1.875rem - 1.875rem * 4/8));max-width:calc(99.9% * 4/8 - (1.875rem - 1.875rem * 4/8));width:calc(99.9% * 4/8 - (1.875rem - 1.875rem * 4/8))}.two-column-block__content>div.team-member:nth-child(1n){margin-right:1.875rem;margin-left:0}.two-column-block__content>div.team-member:last-child{margin-right:0}.two-column-block__content>div.team-member:nth-child(2n){margin-right:0;margin-left:auto}}.two-column-block__show-more-content{-ms-flex-wrap:wrap;flex-wrap:wrap;width:100%}@media(min-width: 48rem){.two-column-block__show-more-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;max-width:100%;margin-left:auto;margin-right:auto}}.two-column-block__show-more-content>div.team-member{width:100%}@media(min-width: 48rem){.two-column-block__show-more-content>div.team-member{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 4/8 - (1.875rem - 1.875rem * 4/8));flex-basis:calc(99.9% * 4/8 - (1.875rem - 1.875rem * 4/8));max-width:calc(99.9% * 4/8 - (1.875rem - 1.875rem * 4/8));width:calc(99.9% * 4/8 - (1.875rem - 1.875rem * 4/8))}.two-column-block__show-more-content>div.team-member:nth-child(1n){margin-right:1.875rem;margin-left:0}.two-column-block__show-more-content>div.team-member:last-child{margin-right:0}.two-column-block__show-more-content>div.team-member:nth-child(2n){margin-right:0;margin-left:auto}}.two-column-block__show-more-content{display:none}.two-column-block__show-more-container{margin-top:-1.25rem}.recirc-module{clear:both;margin-bottom:2rem !important;margin-top:2rem;max-width:100% !important;width:100% !important}@media(min-width: 48rem){.wp-block-nbc-immersive-article-block+.recirc-module{margin-top:-20px !important}}.rich-text .recirc__heading{margin-bottom:.125rem}.rich-text .recirc__subheading{margin-bottom:.6875rem}.recirc__post{margin-bottom:1rem}.recirc__post .post__wrap{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-shadow:2px 2px 6px 0 rgba(0,0,0,.2);box-shadow:2px 2px 6px 0 rgba(0,0,0,.2);display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:0;min-height:4.375rem;-webkit-transition:-webkit-box-shadow .2s ease-in;transition:-webkit-box-shadow .2s ease-in;-o-transition:box-shadow .2s ease-in;transition:box-shadow .2s ease-in;transition:box-shadow .2s ease-in, -webkit-box-shadow .2s ease-in}@media(min-width: 48rem){.recirc__post .post__wrap{height:5.8125rem}}.recirc__post .post__wrap:hover,.recirc__post .post__wrap:focus{-webkit-box-shadow:2px 2px 10px 0 rgba(20,74,168,.4);box-shadow:2px 2px 10px 0 rgba(20,74,168,.4)}.recirc__post .post__image-wrapper{margin-bottom:0;position:relative}.recirc__post .post__image-wrapper a{display:block;height:4.375rem;overflow:hidden;position:relative;width:7.75rem}@media(min-width: 48rem){.recirc__post .post__image-wrapper a{height:5.8125rem;width:10.375rem}}.featured-article .recirc__post .post__image-wrapper a::before{background:rgba(0,0,0,.2)}.recirc__post .format-icon,.recirc__post .video-time{position:absolute;z-index:4}.recirc__post .format-icon{height:1.5rem;top:2.4375rem;width:1.5rem}@media(min-width: 48rem){.recirc__post .format-icon{height:2.25rem;top:2.8125rem;width:2.25rem}}.recirc__post .video-time{color:#fff;display:none;font-family:"Arthouse",sans-serif;font-size:.6875rem;font-weight:800;left:3.4375rem;top:3.625rem}@media(min-width: 48rem){.recirc__post .video-time{display:inline-block}}.recirc__post .post__image{height:100%;margin-bottom:0;-o-object-fit:cover;object-fit:cover;width:100%}.recirc__post .post__text{margin-bottom:0;padding:.375rem 1rem}.recirc__post .post__meta{display:-webkit-box;display:-ms-flexbox;display:flex;font-family:"Arthouse",sans-serif;font-size:.6875rem;font-weight:800;margin-bottom:.3125rem;text-transform:uppercase}.recirc__post .post__tag{color:#144aa8;display:none;line-height:1.1;text-decoration:none}.recirc__post .post__tag:hover,.recirc__post .post__tag:focus{text-decoration:underline}@media(min-width: 48rem){.recirc__post .post__tag{display:inline-block}}.recirc__post .post__date{color:#777;display:inline-block;line-height:1.1}.recirc__post .post__date--has-category{position:relative;white-space:nowrap}@media(min-width: 48rem){.recirc__post .post__date--has-category{margin-left:.625rem}.recirc__post .post__date--has-category::before{content:"•";display:inline-block;left:-0.75rem;padding:0 .3125rem;position:absolute}}.recirc__post .post__title{font-size:.9375rem;font-weight:500;line-height:1.2;margin:0}@media(min-width: 48rem){.recirc__post .post__title{font-size:1.0625rem;font-weight:700;-webkit-line-clamp:3}}.recirc__post .post__title a{-webkit-box-orient:vertical;color:rgba(13,13,13,.9);display:-webkit-box;-webkit-line-clamp:2;overflow:hidden;text-decoration:none}.featured-text{border-left:6px solid #144aa8;font-family:"Arthouse",sans-serif;font-size:1.5rem;font-style:italic;font-weight:800;letter-spacing:.025rem;line-height:1.25;margin:2rem 0 !important;padding:.4375rem 0rem .75rem 1rem}@media(min-width: 48rem){.featured-text{font-size:1.625rem}}.wp-block-nbc-image-with-text-block{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:100% !important;width:100% !important}@media(min-width: 80rem){.wp-block-nbc-image-with-text-block.image-with-text-block--left,.wp-block-nbc-image-with-text-block.image-with-text-block--right{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media(min-width: 80rem){.wp-block-nbc-image-with-text-block.image-with-text-block--right{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}.image-with-text-block__headline{font-size:2rem;line-height:1.2}@media(min-width: 48rem){.image-with-text-block__headline{font-size:2.625rem}}.image-with-text-block__image{margin-left:-1.25rem;width:100vw}@media(min-width: 48rem)and (max-width: 79.9375rem){.image-with-text-block__image{margin-left:-2.25rem}}@media(min-width: 80rem){.image-with-text-block__image{margin-left:0;width:66%}.image-with-text-block--left .image-with-text-block__image{margin-right:2.3125rem}}.image-with-text-block__image figcaption{font-size:1rem;font-style:italic;padding:0 1.25rem;text-align:left}@media(min-width: 48rem)and (max-width: 79.9375rem){.image-with-text-block__image figcaption{padding:0 2.25rem}}@media(min-width: 80rem){.image-with-text-block__image figcaption{padding:0}}.image-with-text-block__text{font-size:1rem;width:100%}.image-with-text-block__text h2{text-align:center}@media(min-width: 71.25rem){.image-with-text-block__text{padding:0;width:calc(33% - 37px)}.image-with-text-block--right .image-with-text-block__text{margin-right:2.3125rem}.image-with-text-block__text h2{text-align:left}}.social-media__heading{border-bottom:.0625rem solid #ddd;font-size:1.25rem;margin-bottom:2.0625rem;padding-bottom:.625rem}@media(min-width: 48rem){.social-media__heading{font-size:1.5rem}}.rich-text .social-media__heading{margin-bottom:2.0625rem}.social-media__show-more{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.social-media__hide{display:none}.meet-the-team__heading{border-bottom:.0625rem solid #ddd;font-size:1.25rem;margin-bottom:2.0625rem;padding-bottom:.625rem}@media(min-width: 48rem){.meet-the-team__heading{font-size:1.5rem}}.rich-text .meet-the-team__heading{margin-bottom:2.0625rem}.team-member{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:1.5rem}@media(min-width: 48rem){.team-member{display:block;width:50%}.team-member:nth-child(2n+1){margin-right:2.4375rem;width:calc(50% - 39px)}}@media(min-width: 64rem){.team-member{width:100%}.team-member:nth-child(2n+1){margin-right:0;width:100%}}@media(min-width: 80rem){.team-member{display:-webkit-box;display:-ms-flexbox;display:flex}}.team-member__avatar{-webkit-box-flex:0;-ms-flex:0 1 12.5rem;flex:0 1 12.5rem;height:7.0625rem;padding-right:.625rem;width:12.5rem}@media(min-width: 64rem){.team-member__avatar{margin-bottom:.3125rem}}.team-member.wp-block-nbc-social-media-card .team-member__avatar{-webkit-box-flex:0;-ms-flex:0 1 7.5rem;flex:0 1 7.5rem;height:7.5rem;width:7.5rem}.team-member__details{-webkit-box-flex:1;-ms-flex:1 50%;flex:1 50%}.team-member__name a,.team-member__social a{color:#fff;font-size:.875rem;text-decoration:none;text-transform:uppercase}.team-member__name{font-size:.875rem;margin-bottom:.625rem;text-transform:uppercase}.team-member__name a{color:rgba(13,13,13,.9)}.team-member__name a:hover{text-decoration:underline}.team-member__social{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.team-member__social a{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fff;border-radius:50%;color:#102e63;display:-webkit-box;display:-ms-flexbox;display:flex;height:24px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:.625rem;text-align:center;vertical-align:middle;width:24px}.team-member__social a:hover{background-color:rgba(0,0,0,0);color:#fff}.team-member__social--gray a{background-color:#eaeaea;-webkit-transition:background .3s;-o-transition:background .3s;transition:background .3s}.team-member__social--gray a:hover{background-color:#eaeaea;opacity:.7}.rich-text .team-member .team-member__name a,.rich-text .team-member .team-member__social a{color:rgba(13,13,13,.9)}.site-title a{color:brown}body,html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}img{height:auto;max-width:100%}.screen-reader-text{border:0;clip:rect(0, 0, 0, 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}
.site{position:relative}.full-width{margin-left:calc(-50vw + 50%) !important;margin-right:calc(-50vw + 50%) !important;max-width:100vw !important}.section-content--full{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;max-width:69.5rem;margin-left:auto;margin-right:auto;padding:0rem 1.25rem}@media(min-width: 80rem){.section-content--full{margin:0 auto}}.section-content--full.dark-mode{background:-webkit-gradient(linear, left top, left bottom, from(#383838), to(#161616));background:-o-linear-gradient(top, #383838 0%, #161616 100%);background:linear-gradient(180deg, #383838 0%, #161616 100%)}.section-content--primary,.section-content--header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%}@media(min-width: 48rem){.section-content--primary,.section-content--header{margin-right:2.25rem;width:calc(100% - 336px)}.post-template-template-featured-article .section-content--primary,.post-template-template-featured-article .section-content--header{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 3/3 - (30px - 30px * 3/3));flex-basis:calc(99.9% * 3/3 - (30px - 30px * 3/3));max-width:calc(99.9% * 3/3 - (30px - 30px * 3/3));width:calc(99.9% * 3/3 - (30px - 30px * 3/3))}.post-template-template-featured-article .section-content--primary:nth-child(1n),.post-template-template-featured-article .section-content--header:nth-child(1n){margin-right:30px;margin-left:0}.post-template-template-featured-article .section-content--primary:last-child,.post-template-template-featured-article .section-content--header:last-child{margin-right:0}.post-template-template-featured-article .section-content--primary:nth-child(3n),.post-template-template-featured-article .section-content--header:nth-child(3n){margin-right:0;margin-left:auto}}.no-sidebar .section-content--primary,.section-content--primary.no-sidebar,.no-sidebar .section-content--header,.section-content--header.no-sidebar{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 3/3 - (30px - 30px * 3/3));flex-basis:calc(99.9% * 3/3 - (30px - 30px * 3/3));max-width:calc(99.9% * 3/3 - (30px - 30px * 3/3));width:calc(99.9% * 3/3 - (30px - 30px * 3/3))}.no-sidebar .section-content--primary:nth-child(1n),.section-content--primary.no-sidebar:nth-child(1n),.no-sidebar .section-content--header:nth-child(1n),.section-content--header.no-sidebar:nth-child(1n){margin-right:30px;margin-left:0}.no-sidebar .section-content--primary:last-child,.section-content--primary.no-sidebar:last-child,.no-sidebar .section-content--header:last-child,.section-content--header.no-sidebar:last-child{margin-right:0}.no-sidebar .section-content--primary:nth-child(3n),.section-content--primary.no-sidebar:nth-child(3n),.no-sidebar .section-content--header:nth-child(3n),.section-content--header.no-sidebar:nth-child(3n){margin-right:0;margin-left:auto}@media(min-width: 48rem){.section-content--header .article-header--wrap{max-width:56.25rem;width:calc(100% + 200px)}}.section-content--secondary{width:100%}@media(min-width: 48rem){.section-content--secondary{display:-webkit-box;display:-ms-flexbox;display:flex;width:18.75rem;z-index:1}.section-content--secondary>*{margin-bottom:2.5rem}.section-content--secondary>*:last-child{margin-bottom:0}}.section-content--secondary .sidebar{max-width:100%}.section-content--secondary .article-sidebar .widget_nbc_weather_widget{min-height:15.625rem;min-width:18.75rem}.section-content--secondary .widget:first-of-type{margin-top:0;padding-top:0}.section-content--secondary .widget:last-of-type{margin-bottom:1.875rem}.section-content--primary-home-hero{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 12/12 - (30px - 30px * 12/12));flex-basis:calc(99.9% * 12/12 - (30px - 30px * 12/12));max-width:calc(99.9% * 12/12 - (30px - 30px * 12/12));width:calc(99.9% * 12/12 - (30px - 30px * 12/12))}.section-content--primary-home-hero:nth-child(1n){margin-right:30px;margin-left:0}.section-content--primary-home-hero:last-child{margin-right:0}.section-content--primary-home-hero:nth-child(12n){margin-right:0;margin-left:auto}@media(min-width: 64rem){.section-content--primary-home-hero{height:calc(100% + 30px);-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 5.83/12 - (2.25rem - 2.25rem * 5.83/12));flex-basis:calc(99.9% * 5.83/12 - (2.25rem - 2.25rem * 5.83/12));max-width:calc(99.9% * 5.83/12 - (2.25rem - 2.25rem * 5.83/12));width:calc(99.9% * 5.83/12 - (2.25rem - 2.25rem * 5.83/12))}.section-content--primary-home-hero:nth-child(1n){margin-right:2.25rem;margin-left:0}.section-content--primary-home-hero:last-child{margin-right:0}}.section-content--secondary-home-hero{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 12/12 - (30px - 30px * 12/12));flex-basis:calc(99.9% * 12/12 - (30px - 30px * 12/12));max-width:calc(99.9% * 12/12 - (30px - 30px * 12/12));width:calc(99.9% * 12/12 - (30px - 30px * 12/12))}.section-content--secondary-home-hero:nth-child(1n){margin-right:30px;margin-left:0}.section-content--secondary-home-hero:last-child{margin-right:0}.section-content--secondary-home-hero:nth-child(12n){margin-right:0;margin-left:auto}@media(min-width: 48rem){.section-content--secondary-home-hero>*{margin-bottom:.875rem}}@media(min-width: 64rem){.section-content--secondary-home-hero{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 6.1/12 - (30px - 30px * 6.1/12));flex-basis:calc(99.9% * 6.1/12 - (30px - 30px * 6.1/12));max-width:calc(99.9% * 6.1/12 - (30px - 30px * 6.1/12));width:calc(99.9% * 6.1/12 - (30px - 30px * 6.1/12))}.section-content--secondary-home-hero:nth-child(1n){margin-right:30px;margin-left:0}.section-content--secondary-home-hero:last-child{margin-right:0}.section-content--secondary-home-hero:nth-child(12n){margin-right:0;margin-left:auto}}.section-content--primary-home{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 12/12 - (30px - 30px * 12/12));flex-basis:calc(99.9% * 12/12 - (30px - 30px * 12/12));max-width:calc(99.9% * 12/12 - (30px - 30px * 12/12));width:calc(99.9% * 12/12 - (30px - 30px * 12/12))}.section-content--primary-home:nth-child(1n){margin-right:30px;margin-left:0}.section-content--primary-home:last-child{margin-right:0}.section-content--primary-home:nth-child(12n){margin-right:0;margin-left:auto}@media(min-width: 64rem){.section-content--primary-home{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 8.75/12 - (2.25rem - 2.25rem * 8.75/12));flex-basis:calc(99.9% * 8.75/12 - (2.25rem - 2.25rem * 8.75/12));max-width:calc(99.9% * 8.75/12 - (2.25rem - 2.25rem * 8.75/12));width:calc(99.9% * 8.75/12 - (2.25rem - 2.25rem * 8.75/12))}.section-content--primary-home:nth-child(1n){margin-right:2.25rem;margin-left:0}.section-content--primary-home:last-child{margin-right:0}}@media(max-width: 1100px)and (min-width: 1024px){.section-content--primary-home{max-width:40.5rem;width:40.5rem}}@media(max-width: 1175px)and (min-width: 1101px){.section-content--primary-home{max-width:45.3125rem;width:45.3125rem}}@media(max-width: 1285px)and (min-width: 1176px){.section-content--primary-home{max-width:50rem;width:50rem}}@media(min-width: 48rem)and (max-width: 63.9375rem){.section-content--primary-home .article-content--wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;max-width:696px;margin-left:auto;margin-right:auto;margin:0 auto}}.section-content--secondary-home{display:block;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 12/12 - (30px - 30px * 12/12));flex-basis:calc(99.9% * 12/12 - (30px - 30px * 12/12));max-width:calc(99.9% * 12/12 - (30px - 30px * 12/12));width:calc(99.9% * 12/12 - (30px - 30px * 12/12));min-width:18.75rem}.section-content--secondary-home:nth-child(1n){margin-right:30px;margin-left:0}.section-content--secondary-home:last-child{margin-right:0}.section-content--secondary-home:nth-child(12n){margin-right:0;margin-left:auto}@media screen and (min-width: 48rem){.section-content--secondary-home:last-child{margin:auto}}@media screen and (min-width: 48rem){.section-content--secondary-home{display:-webkit-box;display:-ms-flexbox;display:flex;margin:auto;max-width:696px}}@media(min-width: 64rem){.section-content--secondary-home{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 3.2/12 - (30px - 30px * 3.2/12));flex-basis:calc(99.9% * 3.2/12 - (30px - 30px * 3.2/12));max-width:calc(99.9% * 3.2/12 - (30px - 30px * 3.2/12));width:calc(99.9% * 3.2/12 - (30px - 30px * 3.2/12));margin-top:2rem}.section-content--secondary-home:nth-child(1n){margin-right:30px;margin-left:0}.section-content--secondary-home:last-child{margin-right:0}.section-content--secondary-home:nth-child(12n){margin-right:0;margin-left:auto}}@media(max-width: 1285px)and (min-width: 1024px){.section-content--secondary-home{max-width:18.75rem;width:18.75rem}}.section-content--secondary-home .homepage-sidebar .widget{margin-bottom:.625rem}.section-content--secondary-home .homepage-sidebar__ad-unit .widget{display:block;margin-bottom:1.875rem;max-width:100%;overflow:hidden}@media(max-width: 79.9375rem){body.tag .section-content--secondary{display:block}}body.search-results .section-content--full,body.search-no-results .section-content--full{max-width:75.625rem;padding-left:0;padding-right:0}h1{color:rgba(0,0,0,.9);font-family:"Arthouse",sans-serif;font-size:1.5rem;font-weight:700;line-height:1.75rem}@media(min-width: 80rem){h1{font-size:2rem;line-height:2.3125rem}}h2{color:rgba(0,0,0,.9);font-family:"Arthouse",sans-serif;font-size:1.25rem;font-weight:700;line-height:1.5rem}@media(min-width: 80rem){h2{font-size:1.5rem;line-height:1.75rem}}h2.has-bottom-border{border-bottom:.0625rem solid #ddd;padding-bottom:.625rem}h3{color:rgba(0,0,0,.9);font-family:"Arthouse",sans-serif;font-size:1.0625rem;font-weight:700;line-height:1.25rem}@media(min-width: 80rem){h3{font-size:1.125rem;line-height:1.375rem}}h4,h5,h6{color:rgba(0,0,0,.9);font-family:"Arthouse",sans-serif;font-size:.9375rem;font-weight:700;line-height:1.25rem}.article-headline{color:rgba(0,0,0,.9);font-family:"Arthouse",sans-serif;font-size:1.5rem;font-weight:700;line-height:2rem;font-weight:700}@media(min-width: 48rem){.article-headline{font-size:2.625rem;line-height:2.9375rem}}@media(min-width: 80rem){.tall-hero .article-headline{color:#fff}}.featured-article .article-headline{color:rgba(0,0,0,.9);font-family:"Arthouse",sans-serif;font-size:1.875rem;font-weight:700;line-height:1.2}@media(min-width: 48rem){.featured-article .article-headline{font-size:2.625rem;line-height:1.1}}@media(min-width: 80rem){.featured-article .article-headline{font-size:3.25rem;line-height:1.3}}.article-subtitle{color:#767676;font-family:"Arthouse",sans-serif;font-size:1rem;font-weight:500;line-height:1.5}@media(min-width: 48rem){.article-subtitle{font-size:1.125rem}}@media(min-width: 80rem){.tall-hero .article-subtitle{color:#fff}}h1.inverse,h2.inverse,h3.inverse,h4.inverse,h5.inverse,h6.inverse{color:#fff}.article-eyebrow{color:#1e6ed8;display:inline-block;font-family:"Arthouse",sans-serif;font-size:1rem;font-weight:700;letter-spacing:.6px;line-height:1.3125rem;margin-bottom:.375rem;text-decoration:none;text-transform:uppercase}.article-eyebrow__live-blog{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#f4f5f6;color:#246be5;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-family:"Roboto Flex",sans-serif;font-size:.688rem;line-height:1;margin:.938rem 0;padding:.313rem .5rem;text-transform:uppercase}.article-eyebrow__live-blog::before{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIxN3B4IiB2aWV3Qm94PSIwIDAgMjQgMTciPgogIDxpbWFnZSBpZD0iVmVjdG9yX1NtYXJ0X09iamVjdCIgZGF0YS1uYW1lPSJWZWN0b3IgU21hcnQgT2JqZWN0IiB3aWR0aD0iMjQiIGhlaWdodD0iMTciIHhsaW5rOmhyZWY9ImRhdGE6aW1hZ2UvcG5nO2Jhc2U2NCxpVkJPUncwS0dnb0FBQUFOU1VoRVVnQUFBR1FBQUFCSENBWUFBQUR4MnVMTUFBQVZ6VWxFUVZSNG5PMmRlWHlWMVpuSHYrZTlXKzdOUnZaOUlUR0VFSllRUWtBV2w2SklGU3l0V2x1cnpzZHByWTVhdFM3WTBVOC90dU5ubUtuYWpsYXRqbG83TS9wcGE2c2ppaHVXRmhXRkFBa2tRQWdFRWhMSVJuYXkzZHp0UGZQSEpRTENlMDZ3YUMzTTc2L2MzT2MrNTNuUDg1N25QTnQ1WDhHcG92eEJHL01mU01IdW5ZZ1pDcEkwdkpPVlpTTU1ISktuek90TVFtU0s0THF0a1RqZHhSZzJHNmE3aVUwck85bjBrK0Nwc0xHZDBxQmw5MHhoMnZVM0VlRzVGeW12UklyTDhOdVhrcnBBMHJhNUJXKzM5NVQ0blNsSUtJcm4waGV1SURaekpZYnRhZ1RMRUtITGlNdE94Kzd1b25WRDkzaFpqVjhoTTIvTForcDFOekFoNTFzSU9RMUlCMUl3ald5aTBuS0p6amhJLy80T2h0dEhQOE1sL2YwaXRUU08rUTljUU5iQ2V4QkdPWUlNSUJVaE0zREY1QkNWNGNSd050R3h1Vzg4N01hbmtLbmZpV2JtTGRjU24zOE5na25IL0U0YytUdUR1SUlBQjk3ZlJjL3VRNS9sdXY1dWtYRnVJWFB2L2g2U0pZQ2Q4SnhBZUY3aWlZaFBJbWJpQ0FIL0RycXEvVHAyaG5iQVNlY2J6THR2UHZFVHIwS1FmOHlBbjhhRkpCVmxFWk5wOWYyWmg1aE1RZUxrYktTODBJSkNJTWduUHUrYnpMMS9QdGtMdFhPalZraDBrc0ZWVHlVVG5YRUhHRk1BaDRJNmhZSkxvMGd2TzNzVWtsNG1LTGcwRWlsU0ZGUU9oSnhDVE53ZExIa3NHVStTY3M3VkNqRnRrUXduM1l4cEt3ZWlOT0lOc2ZFL1J0bTl5dFRRblRuWXZjcGs0eTk4d0xDR01ncGhuNE03Ni9zSVc2U0swRm9oaWNVdXJueTlFT0c2QVlqUkNpZmtoMkMyYXVuT05FaGFrT0tEY1ZER1lEaHU1T3AzcHBBMExjS0t5Rm9oano2ZVJ0dzVOeFAycHV6cXNVUTNMdmVyMk95TjR4RHN6SUxkMW9nNzRsVVEzWUFxRnJPRFNDTTI3MFllZlN6Vml1amtYdGJDSytPWWUvdUZ0Sm0zZ29qQmVpT1hJQUlJNHpmc2VPRVY5cjNWd1VqM1dSWWdTaitJQVJLbWV4Q2lGTFhuS29CVU1uTnI2ZHJUeW9GZEo0UUlKLzQ0TGwrUTl0WEptTE51QURFUGEyVUErSkRtWnZhKzhUTTIvSHNEdlhzRHAzbzVmL2NZNlpaMDE0M2dTVzRqZnZKMGhFakcycUlJSUpxMmtJOURCM1p4dVBrUW84ZUhKeWVhckp6eklpbis5blRnSW8wb0lhQU5neWQ0ZjBVZC9ZMitVNythTXdTSG0zeDgrRUFkUWo0SnRCR2VHMnNJTG1icXQ2ZVRjLzRKRy95SkNuRWxGT0tNdnhCSTBvZ3hnR0FqOXVDckRIV2NuU21UWXpIYzRjVVIraU9DajRIRFNscEpNczZFQzNBbFRQcjBWOGNycFB4V0c5T3ZuNFVVRjJ1R041R2ludDZXWC9Cdzh0bmo1dXJ3U0xKSlgrc3ZrV0lmb0o0WHlXSXlyeTRsNzhiamRIQzhyWE5uNU9OT0swRm9WMGN6blRYdjh1ZTc2clJDdnJmT3dYK05mb1dBdVFoQkdzZ1JvSXFXRDlleDRlRzkydC8vTFRCbnhTU3l6cnNRUTVRQ0hpVHRSUEJucnZQOGhjVVhxdmZKZC81aEY0c2VYVVB5akdRUXVRcktaRkt5WnBLYWswOGpuOHpEOFFveEhDVVlqaExVRVhrUXhDNENoOS9rVUtYYVZHVlBuVURYM0dXays2OG5KQXNSeENEeEkyUTVVUm1UQ2ZoZlpNdGoyNVE4dm1qTXZuTW1VNzU5SFJNbWZnVklSK0JFTW9DZEVucGN5ZVJNVzAzempuN0wzM2RVampBeStDYlNLRVBJTEt5OUxnY3VWd2t1VndrY1ZjaFI0b2xmamVhY1pWY1JtM1V4NEZHSTNFTFA3dFhVL2U1MU9yWmE1L3BqSjNvb3ZING1jdmFQa0hJK0VBZEVBSkVnVW9tSXkyQkNmaERmYUFWZDFWOE83MnphOVI1S2Ivc25Zbk8rQlV3Q0lnbkxISXRKRHEweWpaR2hIZlR2NzhiWGJ5MnpQYktQbU93Y0loUFBBV0lWSTdveC9XMzRlamZSdTg4UHgrNGhVNjdMSTIzdUZDQlJ3VUJpaW1yYXFqNmsrbm5yMVJHZEtaaDhkU2F6Ny9nNndwekh5ZDNBVEtLekZ6UG4va3dNeDk4Ky8yVTRCSE5YWkJHVHRSaklPQW1GSGN4NWxOMytkV1pjblVHY0lvbTY4L2tST2lzL0FMa2RkYkNZU1ByY0lxWmVsLytKR0o5OFpUUEtzWW1KR3JGSDhCNnVacmgzcTVJcTk1Skl5dStaaFF4ZHA2QXlFTVRpWkRMcVdPZUxnZ0NqaUhDYXlEcURJZVcxTExwbkZwTVhxNndJakhSV01kcTNEZEI1b0JOQnpCNzdjSFJnUVFtUXFmeXBOR3JaOGV3T052NTRVRWxuR0ZPd081WUJDUnBodmx3UUNQUTNSeUw5anFXTTJLWW9xVDc2bDBGcW50OEo3TklNbW9VMFNzWStoUld5NURlWnBNL0xSMjN2QUhNTE1saXJKSmwxbTRjNTk4eENTbDFnS1JIbUVHSjBOK3BsL1VWQmd0Z0ZES0tXUndBWE0rZnVVbWJkNWxaemxEdEJiTktNRzB2bS9IeVd2WlFPWTdZOW9hQUVWMHd5eWp5TUdNTGxxTVhoT0tCazcwa3VJakoxRGtqTjZwQmQ5TzdieFByN1d6QUQ0MWZJekI5RWsxNmVEK1owSUI4aEVrQWV1WkhFWWFUc0FkR0FLYmJUdHJtQm1pZlVxM2tNWmtDeTlzNkRuTGR5RTNINUdVQ3lnanFCeUxTNWVKSzNBTmJtMjJGdnh1bXN4ZThid3JwOFljTVpuVUpzZmduUUZsYUlZY3hBRUtjUmVTLzFxNXRZLzVCMTdyOTRpVUYyYVNuSWN0UzFsaEN3QjIvUEtocitOS0laTjR3NXQwZGpqNTVOL3RmbUVqKzVHR0htQWVrZ29rRWV1Vmd4QkhJUUtkcVFvcEdFd2xvaVl5cndEMnltOG9raDdSaU5hMGFZZmRjcTR2S0tRU1JnZllQYWtMS2NyTkpTaXBkVVUvdnV5WVBBRHg4YUpxRzRpZHdsKzRDU2s5SUFJT01RY2did2RsZ2hFeVlVb1RWWGJLTitkWnVTWXRKbGlhU1hUU05Jbm9aWE93TUhQcUw1enhzMGRPQ01zbE53ZVRybFAxeUVNMjRwSnZQQlRPWVRXMy9zNHBKeFFCeENaaVBrSEpJbWRaSjBUeW0rdmh5R3V0ZlNzTHFkd0pDNkxhZDU3Y2RFcFg1RVRFNGVKL2UyeHBCSGV0bDBSaTVMcFBiZFRrdXErdFZ0NUM3WmhsSWh4Qkkzb1FqQXpvR0FteGU5ZVhTYnFvcWdSTWp0SUR0VTE0SXZjaXJCaUVtQVMwRVZRZ2FyYUs5NGk0cEgxT2JFR2UwaysveHNMbm42RzBoNUZ5WkpqS2NQSUF3QnBJRDRPcTc0QlZ6OHF3UUNBNjl4OE1PRCtBZXRtdzBxSGhraXNlQWRZak9Ma2JaVXJGYUpJSUtndXdCZlZERmdyUkJFQnhqYk5abVVLSkl6ODJrT1Joajh2RCtYN2xBODZ1ZzhoRG0wRi95OUtxNFk5cG1nV3gxaUFIOWZKU1B0RlJwZWdveDVHU3g3OFVhay9EY2doZkVyNHpoT1FBcDI4VE8rOXRLTlpNN0x3TENyUFNsNzkwWnNBNVdFTjNockNKbUh6VFpUU1JQMDllSWIzQXVvVnFhRGJqT0JudzFuR3doYk1RakxrdUlSTlBIT0QzcXBmOU9hNlNXL3NKRTlyd2oxTWdmWXh1N1hhM2ovSitvVWRjSGw2U3g1K2hzZ2J1S3pLZUxUTUpEaVpoWTl0Wno4WldsS3lsWDNCNmw2dFFhSkxxMlRRWHo1WktiOXE3VXoxUEJXa0xXMzlRTE5TazZDQ0Z6R1ZBTWhjZ0NuZWx5NWg1R2VRUUplYTI5b1F1RkVuSEZwaEZNTmxveVF4bGI4dmhybGNGTy81V0hlaXZPSWlQOHUrcjN0VkJCTFpPS056Rmx4SHBPdlZnZDJvNk0xbUxhdHFGMWdOekdKNlV5Y2xtTkpFUnlSZUhzR2dUMGEyUndZWm80QklndTF1UUpKRTdxSVV6anpFYlo0MUhkek4vV3Y3cVhoRFhVelhYVE9GT0lLRndNRlNyclBBa0VCQ1pNWEU1dGJwS1JyWE4zQjNsZnJnUjRGbFlIREhvL0huYStnQWNRSVVqUnBKSE1Ta3BrR29GZUlFSzJBdWtWVWtvZnVicGFpaWRhUFcybmZaRjFkelA1S0JDbmxzNUZpSWRybWlzOEVPMElzSkwxc05qbm5XenNmSFp0OHRIL1VCckpKd3k4VzBLV2NScEZDMTVIalFKSmxJRWxIcXhDakhTRjBQYnVaNkh1MzlvSG9VbElVZmpPVjNNVXowRG9IZndVRStlUmROSU9pcXl5N1B3Q1FkQUw3Tk55aWtTSkxRK01EMmE2aHNXT1FZU0JRQlVCaG1PSVFFazNOWENhRFZOdGxaQ05JdFVJSUZVRW9qODgzNFNnd1JSNVNxTTJXRk4yWVlyK0dsenQ4N1VwR1BneXA2M20yQXdrRzRkcUgyb3R4QkFZeHBEcWdFaUpSNjYyWnNoc3AxUkd6b0JCQnJwTG10RURtSXVVSk5lMVBZUWpRM0VEQ2pUQlVKUXVRUmhDL1E1ZkNNUURQK0JUaWl2SmkySFMxY3c4NjArZVFnOWcwZTVFZ0FYRmFQU3NMR0xHZ21VaU1VYkJySmxMYVFTcmJRN0VIUThRTzZreStBTndHNEVabkhnYmJSZ242MUhGRDJOMVZtNzZCaUNHOERuVkx2aVFHcWQyTFRnTmsxTkdrcEFWOE5oL0REbDBPekE1U2JSbEV5TVErckt1TGZMSkNiT2dVNGpzY0drZEcxb2EyZWRzZVJCbzZ4VHI1Zkx5clQ4T0Jia1ZIQkVORStYVGw1YkV6TWdxWUVvSzY2eGFBM1NBYzBxc24yeFZyRzBlWk5ZU3U5Y1ZsT3JCTDNTRWhQL0JGMU5nRFI4YXloaXRrSXpLb0NacVI2QnJqRUFMc3V1dVdRTkFnSFBDcEZSS2RIb0hkcFdQbzB3cG1CQ0l4UXFyRUk0U2J6SFR0L2FjRFErZ2EycnoyQ0FhY092TVpCRTFJSU8wR3dVaDFNU3Q4TTQrTUtVUjlaL3VHM0pnaFhUNXBHTjJkYlFTakVWcUY5S0ticU5NQ2VSaWtLZ29IWWJvd2docUZpQ0FJOVEwVXROczRISzNMRjByQWE0QXhqRTRoQVVjMHBsRGJkU203UWFydkZFTWtJb1Q2QXFYWVBZNDB3Mm1BYUFLaHl5OUZvVzJwbFY2a3FUNWxLMHc3emtDMFpxd2pLMFRLWHJTbVJxWWdsRFVPUUhTQzBGVC9SQjRJOVFXR2pEcE1vNUhQdDg1dVlzaEdETGxiU1NWa0lvYlVwVVc4NFd0WE1uSmhLbys5UVhndjd6RVFzZzJkcVpGbUdsTG4ybkVRWGYwQXpnR3BWa2o5eTRkb2ZxOEdhTkR3K2lzZzlyRi9iVFYxZjFRWDNBVEp3RGthWm9QQVFRMk5DNFE2NVE5QlRGcU5JOHcwQ3BFWnFOUHFBSTNBZ0pKQ3lGelM1MmVRT3NkNnRiV3NHK1hRNXMwZzE2TXU2bnhXQk1GY1QzdlZGcG8vc0U0SHBjNXhrYllnWGRPZkMrSDlUbmR5TEFJaGRYV2lBSUtEQmtpOVFvVE1SU2piU3lIa2IwQ0dlbEh2UjRsTXVtSVMrY3ZVU2IyQnBqcDZkcitINVBOb3hxNm5aL2VmNk4rdmJoVFBXNVpLd1JXVFVQZVdtUVNDdlhoSE5BcVJIb1RNMWNqbHh5WmFES1JzUnVlUEN3cUppSS9HN3JHT1JRYjJOT0h2YTBPZHBoY1l3VkxjcnVuSzhYYTlQTUxHaDljejNQTWNwOWZqT295Mzcza3FIbGxQM2N2cXlEa2lZZ1pHcUJSMTBPeGxvTHVOL1R1c3E0RU9qOENURUEwVWFtUUxZQnJOQm9hOUZtMnR3OGpsb3FmaXlWOXE3V210dVN2RWdRMjdBVTNlWDVRdzg4b1NscTlVZTIwTnE5dFllOHNxaEh3R25SYzRQcGhJOFRScmJsN0Z2dFhxVlBqeWxYWm1YVEVEZ2JwZURxMzBidDdOamdlc25hSkpTKzFjK2xRQ1lGMVZCSkNNNGpOckRlNzBOSkZvOUtBMld6WmNrZWRnZDhRcm1ackJiZWp0YVF5aG1ES0NpWE0xdkNTdEcxcDUvZHJuQ01yN2dBNCttMkpNb0FQVFhNSHE3enhQNjRaV2JScklURDRYTTNZMm9IWlZoV2lFa0xydUx1d0oyTndGcU5OQkFaS01idTZMYkRiSXRudnBhR2trSExsYXNrV0lHU0RVdHQ4MXZCUDdhRDBvYXljMnBLMlU1RG1YTXZkZWRVemlIL1J6NElObS9uVEx5NHowL2pPbWZBM0pJY2JuRWt1Z0E4ei9aYlQzUjd4MzZ4ODQrSDZ6c2dVSVlPNjlVU1NWWDRwcHFFL1VTa2F4ZWV0eERPM1VTSkdDaWRwRXd4Q0hXaHJKc1krR3RkYmZ0NXZFOUFXZzZGNlV6S1J3V1RxMUwxazNLTlMvMVkxbjRnNlNGelFDcXVKUEdySFpDOGhaTkorS1I5WW9SUTBNQmRuOXU0TjRFbC9CR2ROTTRkSXFFb3FtSXBtSUpCMUJET0Z6SEFERElBZEF0Q0ZvcExldWx2clZHL0VQVmxMM08zM25Ja0RPUmZPSnlWb0FxRzgrYUtTMWNnZjFiNm1qL1VuTDBwRmEwM2VZdnY0NkdGdEdRdFlBZmFBcURNbHpLRmlXeThJZlIxcTJrOWErYTVJd2J5c3BDemNmS2Y1WXQySkNJZTZFNWVSZHNwN0dOZnAyMHExUERBSHJDUFp1SVcxT1BxWTQwdHRMQWpEaENGWC9rWFRJUGdRN2FOL1VRT1hUNDFNRVFONGxIdHlKeTBHb1pBY0lJY1JtRG03ZGF0bEdDckR3eDVGTVdwNkwzNmVKWlVRZlV0VEFtRUw2OTI0ak92c1F6cGlRUXBBb2ZMNWlBb0Zzd05wbEhPM2NoYmVqZ29pVXI2SnNXQlpKeEJYTVpkSGpXVFJOcXg5M3czWGwwMFB3ZEEyZ2JpVTZWUmdPd2FMSHM0bEtuWXYrQkhJUHd4MFZqSFNxWGVkQU1BZS9meXBIVi9ESkVNSS8yTUhoaG1vWXExKzhjVU1yTFJzYTBicVlvaHhobTZvazJmeWtsdzJQVklGY3ErYUZDQXRxRnZHbE9iQWpwaERPWDZua2tTRGVZOU9qVlZROXFYYWREVEVONUJ6TnVQMGMvR2dmcTY5dGcyTUxTcEpxb0VVamNqSFRicHJHdVErcHZROVQxaEVJdllsRS8yZzdZZjh5bkEwSnd4UWhwTkRKMDQwdjRrMkNEdlhxV1BoZ0RETytOeFgxWGdySUZneTVmZXpUVVlXRXpNMkVwTDdEd2hOYlFtUjhxWktxYWMwd2xZOVdZWWdYRlZRbVF2VGpGTHY0c2h6WUNZazZ3bFpDNFY2TEY2bDZhQ3ZOYjZuM1BYZHlHUkh4TXdtWHlGWFlEM0xMMkllaiswVndaSVNZak1uRVpCVmhmUXBYSUhEamRQWmlzSmwyaTFPNC9nRVliUEZpQmc2VGRtNGhRcVp4WW5uM0lJTUhWN0hwNFRkcHIvcmJuOEtWSnZpSHZDUlB5Y0FWbTh1SlRYOUJNQ3FvL09XVDFQNzNIZ2FicldXZWZvT0gvS1hYNEVsYWNoSSt4NktidG9vMTFEejN4dGdwM0tNSzZkL25KN1VrZ2RSWkJZUzdHYTBRUldUU0tFN1BMbmIrMXZxOGlLOC9nT3dhNFBxYkJ6bGt4aUtQMUs4bGd5RDJNdEQ4RnR0ZitEMVZ6K2d5cFY4Y3Vxb0QyRjE5eE9ZNGNFOXdnN0FSVG5CMllhZVNNdWNMdkhybmVnN1ZxN1BhQ3g0c0phM3NPeUJLVVBjWmJLUGgzVlZzL1ZYMTJEK09qeDdOUURVeVVJMXd6TWE2QWNDR3lSUnNzVXRKTGF1bG85SjY2UjdZMlUvU3B0L1Q1dTBpWUlZUDRrdUd3YWlpZGYwNnRqejI1WHVTdzViSHR1RndEcEY1M200a3MwQkVBcTFFaUwrUTRQNEx6VHZVcXpsMWxvZUl1S1ZISEFTVjZ4ekE1NnZHNTZzKzlwL0hleFBsdDlvb3Vla2ZpY3grRVBXeEFoTkVKUU10dC9EcjRpcWxnR2Nidmx0VFJrek9yNEF5Vk42YW9JVUQrMzdLMXY5OGdjYm5QdG16amw5T201OEtVZk0vVzVGYWw5VUFXVUJzeGwyczZEd2RaemZPRE56YmFSQ2JjenNvbjk0YWh1UTlEcnhjZGF3eTRHVDJ6ZGV6aDBEdk9yUXRsTVFnbVV2UWZnVlJxVHBQNHN4SFZLb2IwL2xORVBQUm5RSVFkTkxlL2dIZEhmV2YvdXBFRytjZkRDRHNndFR5TkFUVEZHekRYWTlTWmhLVFUwVm5UUytqZmJwbXNETVRFM0lqT1ArbnhjUVZQVWk0N3FIdTVSSnlGVFcvZm8zOXExc0lIUDhjbXhNVjR1MkQ3SGdmbDE4Wm90MmNoenB5dFNHTU5CS0xncmpjZFJ4dUdqanJucm1ZVkdTai9QWnNpcTYrQ1dsY2p2ckFxd1RhS0hNK1FmV3pWZXpiY0VJZDZ1VDJmLzByZllRMlZpRGxPNmc3VWdSSUI5SzhocEliNTVNMGRZS0M5c3hFMHRRSnpQeitBcVJ4RGJyV1ZBZ1JrdThRMkxpSjlhK2M5QkZQMWh2eTNiZTMwN2ZuR1NSdHFKc05CSkNJZC9RS2dxSFA3NURObHhYQlVENWUzNVZJRWxCdjVFR2tiS2RuNzNQY2ZZZGx0NHUxUXJwcmZienl0VDJZd1JmUWRaTUFDTTRIb2V1c09QTWd5RURJODhkQk9ZQVplbzVWbDlmUlUydFpNbGU3ckRJMGpMZjVHV1J3RStxS0lnZ2ltZmZEQ0NZdlAzdmM0TW5MRGM2OXk0WDZnVzhBZzhoZ0JkN21aNUVoWmR1cGV2Skd1a3pXM05uSlFOL2pTTEVMZGQzOUVIdmZIcUt0OHV6WjFOc3FKWHZmSGtZb2o2c0ZRT3hpcU85eDF0elp5VWlYc2k5QWZ6Y2ZXQytwV1BreHZZMS9RTktBZFdaMkhWMTFCeGxvT1hzVU10QWk2YTQ3QUt5em9KQklHdWh0L0NNVkt6ZHdZTDEyYnNiM1FwZXVhaitHbzVPWWJBL3UrSlFqZFd3YlllVUVnRzAwdnZNc2pXOVhNM1NXdldISDRmSGhTZkVTVjVCSCtQR0lZd2VnQWtBRGZmdGVZL3R2ZnN2Mlo4ZjFvcHZ4di9Lb1kzTWZqcWcyNG5QOVJFUTVrY1lBUW5iZ01HdHByMzZXZGZldHBXdkh1RjdyYzBaaHFIMlU3dHBPVWt0N2NHZkVZakNJa0YwWW9YcUdEcjdHenBkK1Q5WGpKMFRrVmpqMTB1a0Z0OWc0ZDBVeVF4TnlzWWRDcEl6VS92OWIyZ0JQbXVDYVpqZlIvbUpzZmh1dS9tWSsvbmtuN3o5MVN0bUwvd09ZcEw2V015ZVFtUUFBQUFCSlJVNUVya0pnZ2c9PSIvPgo8L3N2Zz4K) rgba(0,0,0,0) center center no-repeat;content:"";height:1.063rem;margin-right:.375rem;width:1.5rem}@media(min-width: 80rem){.tall-article .article-eyebrow{color:#6ab1ed}}.article-eyebrow .sponsored-notice{margin:0;min-height:0}.article-eyebrow .sponsored-notice__text{background:none;border:0 none;color:#0a8539;font-family:"Arthouse",sans-serif;font-size:1rem;font-weight:700;letter-spacing:.6px;line-height:1.3125rem;padding:0;text-decoration:none;text-transform:uppercase}.article-eyebrow .sponsored-notice__button{background-color:#eaeaea;border:0 none;height:.75rem;margin-left:.4375rem;padding:0;width:.75rem}.article-eyebrow .sponsored-notice__button .svg-inline--fa{color:#171717;height:.4375rem;margin:0;opacity:.71}.article-eyebrow .sponsored-notice__button::before{border-color:#eaeaea rgba(0,0,0,0) rgba(0,0,0,0)}.article-eyebrow .sponsored-notice__button::after{background-color:#eaeaea;color:#171717;font-weight:700}.single:not(.immersive-article):not(.featured-article):not(.single-contest) .rich-text h2{color:rgba(0,0,0,.9);font-family:"Arthouse",sans-serif;font-size:1.125rem;font-weight:700;line-height:1.2}@font-face{font-display:swap;font-family:"Arthouse";font-style:normal;font-weight:500;src:local("Arthouse Medium"),local("Arthouse Medium"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Arthouse";font-style:normal;font-weight:700;src:local("Arthouse Bold"),local("Arthouse Bold"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Arthouse";font-style:normal;font-weight:900;src:local("Arthouse Black"),local("Arthouse Black"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Arthouse";font-style:italic;font-weight:900;src:local("Arthouse Black Italic"),local("Arthouse Black Italic"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-BlackItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Arthouse";font-style:italic;font-weight:700;src:local("Arthouse Bold Italic"),local("Arthouse Bold Italic"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-BoldItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Arthouse";font-style:italic;font-weight:500;src:local("Arthouse Medium Italic"),local("Arthouse Medium Italic"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-MediumItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Arthouse";font-style:italic;font-weight:400;src:local("Arthouse Italic"),local("Arthouse Italic"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-Italic.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Arthouse";font-style:normal;font-weight:300;src:local("Arthouse Light"),local("Arthouse Light"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Arthouse";font-style:italic;font-weight:300;src:local("Arthouse Light Italic"),local("Arthouse Light Italic"),url(/wp-content/themes/nbc-station/client/build/media/ArthouseOwned-LightItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:"Roboto Flex";font-variation-settings:"ital" 1;font-weight:400;src:local("Roboto Flex"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2 supports variations"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2-variations");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-display:swap;font-family:"Roboto Flex";font-variation-settings:"ital" 1;font-weight:700;src:local("Roboto Flex"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2 supports variations"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2-variations");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-display:swap;font-family:"Roboto Flex";font-style:normal;font-weight:700;src:local("Roboto Flex"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2 supports variations"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2-variations");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-display:swap;font-family:"Roboto Flex";font-style:normal;font-weight:500;src:local("Roboto Flex"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2 supports variations"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2-variations");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-display:swap;font-family:"Roboto Flex";font-style:normal;font-weight:400;src:local("Roboto Flex"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2 supports variations"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2-variations");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-display:swap;font-family:"Roboto Flex";font-variation-settings:"ital" 1;font-weight:500;src:local("Roboto Flex"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2 supports variations"),url(/wp-content/themes/nbc-station/client/build/media/Roboto-Flex.woff2) format("woff2-variations");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}.button{background-color:#419fef;color:#fff;display:inline-block;font-family:"Arthouse",sans-serif;font-size:.875rem;font-weight:900;padding:1rem 1.25rem;text-decoration:none}.button:hover,.button:focus{background-color:#1487e9}.button--footer-cta{padding:.625rem 3.5625rem}@media(min-width: 48rem){.button--footer-cta{padding:1.25rem 3.5625rem}}.share-buttons a{background:#eaeaea;border-radius:50%;color:#171717;display:inline-block;height:1.875rem;line-height:1.875rem;margin-right:.9375rem;position:relative;text-align:center;width:1.875rem}.share-buttons a:last-child{margin-right:0}.share-buttons__comment-count{color:rgba(13,13,13,.9);font-family:"Roboto Flex",sans-serif;font-size:1rem;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;line-height:1.6875rem;text-rendering:optimizeSpeed;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;color:#fff;font-size:.625rem;left:50%;position:absolute;text-decoration:none;top:42%;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:1}@media(min-width: 48rem){.share-buttons__comment-count{font-size:1.0625rem;line-height:1.6875rem}}@media(min-width: 48rem){.share-buttons__comment-count{font-size:.625rem}}.icon,.fab{background-position:50% 50%;background-repeat:no-repeat;display:inline-block;height:55%;margin-top:22%;width:65%}.social-media .icon,.meet-the-team .icon,.social-media .fab,.meet-the-team .fab{margin-top:0}.icon-arrow-down{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNNDEzLjEgMjIyLjVsMjIuMiAyMi4yYzkuNCA5LjQgOS40IDI0LjYgMCAzMy45TDI0MSA0NzNjLTkuNCA5LjQtMjQuNiA5LjQtMzMuOSAwTDEyLjcgMjc4LjZjLTkuNC05LjQtOS40LTI0LjYgMC0zMy45bDIyLjItMjIuMmM5LjUtOS41IDI1LTkuMyAzNC4zLjRMMTg0IDM0My40VjU2YzAtMTMuMyAxMC43LTI0IDI0LTI0aDMyYzEzLjMgMCAyNCAxMC43IDI0IDI0djI4Ny40bDExNC44LTEyMC41YzkuMy05LjggMjQuOC0xMCAzNC4zLS40eiIvPjwvc3ZnPg==)}.icon-arrow-up{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNMzQuOSAyODkuNWwtMjIuMi0yMi4yYy05LjQtOS40LTkuNC0yNC42IDAtMzMuOUwyMDcgMzljOS40LTkuNCAyNC42LTkuNCAzMy45IDBsMTk0LjMgMTk0LjNjOS40IDkuNCA5LjQgMjQuNiAwIDMzLjlMNDEzIDI4OS40Yy05LjUgOS41LTI1IDkuMy0zNC4zLS40TDI2NCAxNjguNlY0NTZjMCAxMy4zLTEwLjcgMjQtMjQgMjRoLTMyYy0xMy4zIDAtMjQtMTAuNy0yNC0yNFYxNjguNkw2OS4yIDI4OS4xYy05LjMgOS44LTI0LjggMTAtMzQuMy40eiIvPjwvc3ZnPg==)}.icon-bars{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNMTYgMTMyaDQxNmM4LjgzNyAwIDE2LTcuMTYzIDE2LTE2Vjc2YzAtOC44MzctNy4xNjMtMTYtMTYtMTZIMTZDNy4xNjMgNjAgMCA2Ny4xNjMgMCA3NnY0MGMwIDguODM3IDcuMTYzIDE2IDE2IDE2em0wIDE2MGg0MTZjOC44MzcgMCAxNi03LjE2MyAxNi0xNnYtNDBjMC04LjgzNy03LjE2My0xNi0xNi0xNkgxNmMtOC44MzcgMC0xNiA3LjE2My0xNiAxNnY0MGMwIDguODM3IDcuMTYzIDE2IDE2IDE2em0wIDE2MGg0MTZjOC44MzcgMCAxNi03LjE2MyAxNi0xNnYtNDBjMC04LjgzNy03LjE2My0xNi0xNi0xNkgxNmMtOC44MzcgMC0xNiA3LjE2My0xNiAxNnY0MGMwIDguODM3IDcuMTYzIDE2IDE2IDE2eiIvPjwvc3ZnPg==)}.icon-check{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6Ii8+PC9zdmc+)}.icon-chevron-left{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIj48cGF0aCBkPSJNMzQuNTIgMjM5LjAzTDIyOC44NyA0NC42OWM5LjM3LTkuMzcgMjQuNTctOS4zNyAzMy45NCAwbDIyLjY3IDIyLjY3YzkuMzYgOS4zNiA5LjM3IDI0LjUyLjA0IDMzLjlMMTMxLjQ5IDI1NmwxNTQuMDIgMTU0Ljc1YzkuMzQgOS4zOCA5LjMyIDI0LjU0LS4wNCAzMy45bC0yMi42NyAyMi42N2MtOS4zNyA5LjM3LTI0LjU3IDkuMzctMzMuOTQgMEwzNC41MiAyNzIuOTdjLTkuMzctOS4zNy05LjM3LTI0LjU3IDAtMzMuOTR6Ii8+PC9zdmc+)}.icon-chevron-right{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIj48cGF0aCBkPSJNMjg1LjQ3NiAyNzIuOTcxTDkxLjEzMiA0NjcuMzE0Yy05LjM3MyA5LjM3My0yNC41NjkgOS4zNzMtMzMuOTQxIDBsLTIyLjY2Ny0yMi42NjdjLTkuMzU3LTkuMzU3LTkuMzc1LTI0LjUyMi0uMDQtMzMuOTAxTDE4OC41MDUgMjU2IDM0LjQ4NCAxMDEuMjU1Yy05LjMzNS05LjM3OS05LjMxNy0yNC41NDQuMDQtMzMuOTAxbDIyLjY2Ny0yMi42NjdjOS4zNzMtOS4zNzMgMjQuNTY5LTkuMzczIDMzLjk0MSAwTDI4NS40NzUgMjM5LjAzYzkuMzczIDkuMzcyIDkuMzczIDI0LjU2OC4wMDEgMzMuOTQxeiIvPjwvc3ZnPg==)}.icon-comment-alt{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNDQ4IDBINjRDMjguNyAwIDAgMjguNyAwIDY0djI4OGMwIDM1LjMgMjguNyA2NCA2NCA2NGg5NnY4NGMwIDkuOCAxMS4yIDE1LjUgMTkuMSA5LjdMMzA0IDQxNmgxNDRjMzUuMyAwIDY0LTI4LjcgNjQtNjRWNjRjMC0zNS4zLTI4LjctNjQtNjQtNjR6Ii8+PC9zdmc+)}.icon-envelope{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNTAyLjMgMTkwLjhjMy45LTMuMSA5LjctLjIgOS43IDQuN1Y0MDBjMCAyNi41LTIxLjUgNDgtNDggNDhINDhjLTI2LjUgMC00OC0yMS41LTQ4LTQ4VjE5NS42YzAtNSA1LjctNy44IDkuNy00LjcgMjIuNCAxNy40IDUyLjEgMzkuNSAxNTQuMSAxMTMuNiAyMS4xIDE1LjQgNTYuNyA0Ny44IDkyLjIgNDcuNiAzNS43LjMgNzItMzIuOCA5Mi4zLTQ3LjYgMTAyLTc0LjEgMTMxLjYtOTYuMyAxNTQtMTEzLjd6TTI1NiAzMjBjMjMuMi40IDU2LjYtMjkuMiA3My40LTQxLjQgMTMyLjctOTYuMyAxNDIuOC0xMDQuNyAxNzMuNC0xMjguNyA1LjgtNC41IDkuMi0xMS41IDkuMi0xOC45di0xOWMwLTI2LjUtMjEuNS00OC00OC00OEg0OEMyMS41IDY0IDAgODUuNSAwIDExMnYxOWMwIDcuNCAzLjQgMTQuMyA5LjIgMTguOSAzMC42IDIzLjkgNDAuNyAzMi40IDE3My40IDEyOC43IDE2LjggMTIuMiA1MC4yIDQxLjggNzMuNCA0MS40eiIvPjwvc3ZnPg==)}.icon-facebook,.fa-facebook{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNTA0IDI1NkM1MDQgMTE5IDM5MyA4IDI1NiA4UzggMTE5IDggMjU2YzAgMTIzLjc4IDkwLjY5IDIyNi4zOCAyMDkuMjUgMjQ1VjMyNy42OWgtNjNWMjU2aDYzdi01NC42NGMwLTYyLjE1IDM3LTk2LjQ4IDkzLjY3LTk2LjQ4IDI3LjE0IDAgNTUuNTIgNC44NCA1NS41MiA0Ljg0djYxaC0zMS4yOGMtMzAuOCAwLTQwLjQxIDE5LjEyLTQwLjQxIDM4LjczVjI1Nmg2OC43OGwtMTEgNzEuNjloLTU3Ljc4VjUwMUM0MTMuMzEgNDgyLjM4IDUwNCAzNzkuNzggNTA0IDI1NnoiLz48L3N2Zz4=)}.icon-facebook-f,.fa-facebook-f{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIj48cGF0aCBkPSJNMjc5LjE0IDI4OGwxNC4yMi05Mi42NmgtODguOTF2LTYwLjEzYzAtMjUuMzUgMTIuNDItNTAuMDYgNTIuMjQtNTAuMDZoNDAuNDJWNi4yNlMyNjAuNDMgMCAyMjUuMzYgMGMtNzMuMjIgMC0xMjEuMDggNDQuMzgtMTIxLjA4IDEyNC43MnY3MC42MkgyMi44OVYyODhoODEuMzl2MjI0aDEwMC4xN1YyODh6Ii8+PC9zdmc+)}.icon-info{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOTIgNTEyIj48cGF0aCBkPSJNMjAgNDI0LjIyOWgyMFYyNzkuNzcxSDIwYy0xMS4wNDYgMC0yMC04Ljk1NC0yMC0yMFYyMTJjMC0xMS4wNDYgOC45NTQtMjAgMjAtMjBoMTEyYzExLjA0NiAwIDIwIDguOTU0IDIwIDIwdjIxMi4yMjloMjBjMTEuMDQ2IDAgMjAgOC45NTQgMjAgMjBWNDkyYzAgMTEuMDQ2LTguOTU0IDIwLTIwIDIwSDIwYy0xMS4wNDYgMC0yMC04Ljk1NC0yMC0yMHYtNDcuNzcxYzAtMTEuMDQ2IDguOTU0LTIwIDIwLTIwek05NiAwQzU2LjIzNSAwIDI0IDMyLjIzNSAyNCA3MnMzMi4yMzUgNzIgNzIgNzIgNzItMzIuMjM1IDcyLTcyUzEzNS43NjQgMCA5NiAweiIvPjwvc3ZnPg==)}.icon-instagram,.fa-instagram{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNMjI0LjEgMTQxYy02My42IDAtMTE0LjkgNTEuMy0xMTQuOSAxMTQuOXM1MS4zIDExNC45IDExNC45IDExNC45UzMzOSAzMTkuNSAzMzkgMjU1LjkgMjg3LjcgMTQxIDIyNC4xIDE0MXptMCAxODkuNmMtNDEuMSAwLTc0LjctMzMuNS03NC43LTc0LjdzMzMuNS03NC43IDc0LjctNzQuNyA3NC43IDMzLjUgNzQuNyA3NC43LTMzLjYgNzQuNy03NC43IDc0Ljd6bTE0Ni40LTE5NC4zYzAgMTQuOS0xMiAyNi44LTI2LjggMjYuOC0xNC45IDAtMjYuOC0xMi0yNi44LTI2LjhzMTItMjYuOCAyNi44LTI2LjggMjYuOCAxMiAyNi44IDI2Ljh6bTc2LjEgMjcuMmMtMS43LTM1LjktOS45LTY3LjctMzYuMi05My45LTI2LjItMjYuMi01OC0zNC40LTkzLjktMzYuMi0zNy0yLjEtMTQ3LjktMi4xLTE4NC45IDAtMzUuOCAxLjctNjcuNiA5LjktOTMuOSAzNi4xcy0zNC40IDU4LTM2LjIgOTMuOWMtMi4xIDM3LTIuMSAxNDcuOSAwIDE4NC45IDEuNyAzNS45IDkuOSA2Ny43IDM2LjIgOTMuOXM1OCAzNC40IDkzLjkgMzYuMmMzNyAyLjEgMTQ3LjkgMi4xIDE4NC45IDAgMzUuOS0xLjcgNjcuNy05LjkgOTMuOS0zNi4yIDI2LjItMjYuMiAzNC40LTU4IDM2LjItOTMuOSAyLjEtMzcgMi4xLTE0Ny44IDAtMTg0Ljh6TTM5OC44IDM4OGMtNy44IDE5LjYtMjIuOSAzNC43LTQyLjYgNDIuNi0yOS41IDExLjctOTkuNSA5LTEzMi4xIDlzLTEwMi43IDIuNi0xMzIuMS05Yy0xOS42LTcuOC0zNC43LTIyLjktNDIuNi00Mi42LTExLjctMjkuNS05LTk5LjUtOS0xMzIuMXMtMi42LTEwMi43IDktMTMyLjFjNy44LTE5LjYgMjIuOS0zNC43IDQyLjYtNDIuNiAyOS41LTExLjcgOTkuNS05IDEzMi4xLTlzMTAyLjctMi42IDEzMi4xIDljMTkuNiA3LjggMzQuNyAyMi45IDQyLjYgNDIuNiAxMS43IDI5LjUgOSA5OS41IDkgMTMyLjFzMi43IDEwMi43LTkgMTMyLjF6Ii8+PC9zdmc+)}.icon-lock{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNNDAwIDIyNGgtMjR2LTcyQzM3NiA2OC4yIDMwNy44IDAgMjI0IDBTNzIgNjguMiA3MiAxNTJ2NzJINDhjLTI2LjUgMC00OCAyMS41LTQ4IDQ4djE5MmMwIDI2LjUgMjEuNSA0OCA0OCA0OGgzNTJjMjYuNSAwIDQ4LTIxLjUgNDgtNDhWMjcyYzAtMjYuNS0yMS41LTQ4LTQ4LTQ4em0tMTA0IDBIMTUydi03MmMwLTM5LjcgMzIuMy03MiA3Mi03MnM3MiAzMi4zIDcyIDcydjcyeiIvPjwvc3ZnPg==)}.icon-times{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNTIgNTEyIj48cGF0aCBkPSJNMjQyLjcyIDI1NmwxMDAuMDctMTAwLjA3YzEyLjI4LTEyLjI4IDEyLjI4LTMyLjE5IDAtNDQuNDhsLTIyLjI0LTIyLjI0Yy0xMi4yOC0xMi4yOC0zMi4xOS0xMi4yOC00NC40OCAwTDE3NiAxODkuMjggNzUuOTMgODkuMjFjLTEyLjI4LTEyLjI4LTMyLjE5LTEyLjI4LTQ0LjQ4IDBMOS4yMSAxMTEuNDVjLTEyLjI4IDEyLjI4LTEyLjI4IDMyLjE5IDAgNDQuNDhMMTA5LjI4IDI1NiA5LjIxIDM1Ni4wN2MtMTIuMjggMTIuMjgtMTIuMjggMzIuMTkgMCA0NC40OGwyMi4yNCAyMi4yNGMxMi4yOCAxMi4yOCAzMi4yIDEyLjI4IDQ0LjQ4IDBMMTc2IDMyMi43MmwxMDAuMDcgMTAwLjA3YzEyLjI4IDEyLjI4IDMyLjIgMTIuMjggNDQuNDggMGwyMi4yNC0yMi4yNGMxMi4yOC0xMi4yOCAxMi4yOC0zMi4xOSAwLTQ0LjQ4TDI0Mi43MiAyNTZ6Ii8+PC9zdmc+)}.icon-twitter,.fa-twitter{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNDU5LjM3IDE1MS43MTZjLjMyNSA0LjU0OC4zMjUgOS4wOTcuMzI1IDEzLjY0NSAwIDEzOC43Mi0xMDUuNTgzIDI5OC41NTgtMjk4LjU1OCAyOTguNTU4LTU5LjQ1MiAwLTExNC42OC0xNy4yMTktMTYxLjEzNy00Ny4xMDYgOC40NDcuOTc0IDE2LjU2OCAxLjI5OSAyNS4zNCAxLjI5OSA0OS4wNTUgMCA5NC4yMTMtMTYuNTY4IDEzMC4yNzQtNDQuODMyLTQ2LjEzMi0uOTc1LTg0Ljc5Mi0zMS4xODgtOTguMTEyLTcyLjc3MiA2LjQ5OC45NzQgMTIuOTk1IDEuNjI0IDE5LjgxOCAxLjYyNCA5LjQyMSAwIDE4Ljg0My0xLjMgMjcuNjE0LTMuNTczLTQ4LjA4MS05Ljc0Ny04NC4xNDMtNTEuOTgtODQuMTQzLTEwMi45ODV2LTEuMjk5YzEzLjk2OSA3Ljc5NyAzMC4yMTQgMTIuNjcgNDcuNDMxIDEzLjMxOS0yOC4yNjQtMTguODQzLTQ2Ljc4MS01MS4wMDUtNDYuNzgxLTg3LjM5MSAwLTE5LjQ5MiA1LjE5Ny0zNy4zNiAxNC4yOTQtNTIuOTU0IDUxLjY1NSA2My42NzUgMTI5LjMgMTA1LjI1OCAyMTYuMzY1IDEwOS44MDctMS42MjQtNy43OTctMi41OTktMTUuOTE4LTIuNTk5LTI0LjA0IDAtNTcuODI4IDQ2Ljc4Mi0xMDQuOTM0IDEwNC45MzQtMTA0LjkzNCAzMC4yMTMgMCA1Ny41MDIgMTIuNjcgNzYuNjcgMzMuMTM3IDIzLjcxNS00LjU0OCA0Ni40NTYtMTMuMzIgNjYuNTk5LTI1LjM0LTcuNzk4IDI0LjM2Ni0yNC4zNjYgNDQuODMzLTQ2LjEzMiA1Ny44MjcgMjEuMTE3LTIuMjczIDQxLjU4NC04LjEyMiA2MC40MjYtMTYuMjQzLTE0LjI5MiAyMC43OTEtMzIuMTYxIDM5LjMwOC01Mi42MjggNTQuMjUzeiIvPjwvc3ZnPg==)}.skip-link{border:0;clip:rect(0, 0, 0, 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;background-color:#fff;border:solid 2px #144aa8;-webkit-box-shadow:0 0 10px rgba(0,0,0,.5);box-shadow:0 0 10px rgba(0,0,0,.5);font-family:"Arthouse",sans-serif;font-size:1.125rem;outline:0;padding:1.25rem;z-index:100000}.leaderboard-ad{background:#f2f2f2}.leaderboard-ad.ad-sticky .gpt-homepagetopbanner,.leaderboard-ad.ad-sticky .gpt-topbanner{aspect-ratio:auto}.leaderboard-ad .gpt-mobiletopbanner{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media(min-width: 48rem){.leaderboard-ad .gpt-homepagetopbanner,.leaderboard-ad .gpt-topbanner{aspect-ratio:4/1;height:auto}}@media(min-width: 80rem){.leaderboard-ad .gpt-homepagetopbanner,.leaderboard-ad .gpt-topbanner{aspect-ratio:5/1}}.leaderboard-ad .gpt-homepagetopbanner>div,.leaderboard-ad .gpt-topbanner>div{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;height:100% !important;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100% !important}.leaderboard-ad iframe[width="5"]{height:100%;width:100%}.gpt-mobiletopbanner{min-height:70px}@media(min-width: 48rem){.gpt-mobiletopbanner{min-height:0}}.gpt-topbanner{height:0}@media(min-width: 48rem){.gpt-topbanner{height:270px}.gpt-topbanner[data-specless-format=nbc-standard-pushdown],.gpt-topbanner[data-specless-flex-container=nbc-flex-banner]{height:auto;padding:10px auto}.ad-sticky .gpt-topbanner{height:auto;margin:10px auto}}.gpt-topbox,.gpt-bottombox{height:0}@media(min-width: 48rem){.gpt-topbox,.gpt-bottombox{height:600px}.gpt-topbox>div,.gpt-bottombox>div{position:sticky;top:40px}}@media(min-width: 48rem){.home .gpt-topbox,.home .gpt-bottombox{height:250px}}article .ad-center{text-align:center}.ad-sticky{position:sticky;top:40px;z-index:1000}.admin-bar .ad-sticky{top:72px}iframe[width="970"]{max-width:100%;width:60.625rem}iframe[width="728"]{max-width:100%;width:45.5rem}iframe[width="320"]{max-width:100%;width:20rem}iframe[width="300"]{max-width:100%;width:18.75rem}iframe[width="120"]{max-width:100%;width:7.5rem}iframe[width="88"]{max-width:100%;width:5.5rem}.gpt-mobilemultibox{margin:0 auto}.taboola-container{min-height:6000px}@media(min-width: 64rem){.taboola-container{min-height:7000px}}@media(min-width: 80rem){.taboola-container{min-height:9000px}}.format-icon{background-position:center;background-repeat:no-repeat;background-size:contain;border:2px solid #fff;border-radius:50%;bottom:.75rem;display:block;height:2.25rem;left:.6875rem;position:absolute;width:2.25rem;z-index:4}.format-icon--gallery{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.333 2.667v11h-11v-11h11zm0-1.834h-11A1.839 1.839 0 0 0 4.5 2.667v11c0 1.008.825 1.833 1.833 1.833h11a1.839 1.839 0 0 0 1.834-1.833v-11A1.839 1.839 0 0 0 17.333.833zM9.542 9.698l1.549 2.071 2.273-2.842 3.053 3.823H7.25l2.292-3.052zM.833 4.5v12.833c0 1.009.825 1.834 1.834 1.834H15.5v-1.834H2.667V4.5H.833z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E");background-size:60%}.format-icon--video{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='35' height='34' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(1 1)' fill-rule='nonzero' fill='none'%3E%3Cellipse stroke='%23FFF' stroke-width='2.5' fill-opacity='.3' fill='%23000' cx='16.18' cy='15.958' rx='15.627' ry='15.462'/%3E%3Cpath fill='%23FFF' d='M20.969 15.958l-6.86 3.995v-7.99z'/%3E%3C/g%3E%3C/svg%3E");border:0;opacity:.9;-webkit-transition:opacity 3s;-o-transition:opacity 3s;transition:opacity 3s}.format-icon--video:hover,.format-icon--video:focus{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='35' height='34' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(1 1)' fill-rule='nonzero' fill='none'%3E%3Cellipse stroke='%23FFF' stroke-width='2.5' fill-opacity='1' fill='%23fff' cx='16.18' cy='15.958' rx='15.627' ry='15.462'/%3E%3Cpath fill='%23000' d='M20.969 15.958l-6.86 3.995v-7.99z'/%3E%3C/g%3E%3C/svg%3E")}.story-card--video{position:relative}.story-card__video-player{background:-webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));background:-o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);background:linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%)}.story-card__video-player,.story-card__video-player>div{bottom:0;left:0;position:absolute;right:0;top:0}.story-card__video-player .tpPlayer{height:100%}.story-card:hover .format-icon--video,.story-card:focus .format-icon--video{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='35' height='34' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(1 1)' fill-rule='nonzero' fill='none'%3E%3Cellipse stroke='%23FFF' stroke-width='2.5' fill-opacity='1' fill='%23fff' cx='16.18' cy='15.958' rx='15.627' ry='15.462'/%3E%3Cpath fill='%23000' d='M20.969 15.958l-6.86 3.995v-7.99z'/%3E%3C/g%3E%3C/svg%3E");opacity:1;-webkit-transition:opacity 3s;-o-transition:opacity 3s;transition:opacity 3s}.admin-bar.enhanced-hero .template-hero{padding-top:6.5625rem}@media(min-width: 48.875rem){.admin-bar.enhanced-hero .template-hero{padding-top:7.1875rem}}.admin-bar.single-profile .template-hero{padding-top:9.375rem}.admin-bar .template-hero{padding-top:6.5625rem}@media(min-width: 48.875rem){.admin-bar .template-hero{padding-top:6.5625rem}}.admin-bar .template-hero.exclusive,.admin-bar .template-hero.exclusive_w_eyebrow,.admin-bar .template-hero.breaking,.admin-bar .template-hero.breaking_w_eyebrow,.admin-bar .template-hero.wartop{padding-top:10.3125rem}@media(min-width: 48.875rem){.admin-bar .template-hero.exclusive,.admin-bar .template-hero.exclusive_w_eyebrow,.admin-bar .template-hero.breaking,.admin-bar .template-hero.breaking_w_eyebrow,.admin-bar .template-hero.wartop{padding-top:9.8125rem}}@media(min-width: 48rem){.exclusive_w_eyebrow .admin-bar .template-hero .hero-background,.breaking_w_eyebrow .admin-bar .template-hero .hero-background{height:30.1875rem}}@media(min-width: 64rem){.exclusive_w_eyebrow .admin-bar .template-hero .hero-background,.breaking_w_eyebrow .admin-bar .template-hero .hero-background{height:calc(100% - 40px)}}.admin-bar .template-hero.continuing{padding-top:8.125rem}@media(min-width: 64rem){.admin-bar .template-hero.continuing{padding-top:7.5rem}}.admin-bar .template-hero.continuing .hero-background{height:19.1875rem}@media(min-width: 48rem){.admin-bar .template-hero.continuing .hero-background{height:29.375rem}}@media(min-width: 64rem){.admin-bar .template-hero.continuing .hero-background{height:100%}}.admin-bar .template-hero.wartop{padding-top:11.25rem}@media(min-width: 48rem){.admin-bar .template-hero.wartop{padding-top:9.6875rem}}.admin-bar .template-hero.wartop .hero-background{height:60%}@media(min-width: 48rem){.admin-bar .template-hero.wartop .hero-background{height:45%}}@media(min-width: 64rem){.admin-bar .template-hero.wartop .hero-background{height:83%}}.admin-bar .template-hero.deescalating{padding-top:8.125rem}.admin-bar .template-hero.deescalating .hero-background{height:10rem}@media(min-width: 48rem){.admin-bar .template-hero.deescalating .hero-background{height:30.625rem}}@media(min-width: 64rem){.admin-bar .template-hero.deescalating .hero-background{height:100%}}.weather-landing .template-hero{margin-bottom:.9375rem}.weather-landing .hero-background{height:19.5rem !important}.weather-landing.admin-bar .template-hero{padding-top:7.8125rem}@media(min-width: 48rem){.weather-landing.admin-bar .template-hero{padding-top:6.5625rem}}@media(min-width: 80rem){.weather-landing.admin-bar .template-hero{padding-top:7.8125rem}}.weather-landing.visible-alert-bar .template-hero{padding-top:7.5rem !important}@media(min-width: 48rem){.weather-landing.visible-alert-bar .template-hero{padding-top:7.5rem !important}}@media(min-width: 80rem){.weather-landing.visible-alert-bar .template-hero{padding-top:7.5rem !important}}.traffic-landing .template-hero,.traffic-landing .template-hero.deescalating{margin-bottom:.625rem;padding-top:7.0625rem}@media(min-width: 48rem){.traffic-landing .template-hero,.traffic-landing .template-hero.deescalating{margin-bottom:1.25rem}}.traffic-landing .template-hero .hero-background,.traffic-landing .template-hero.deescalating .hero-background{height:19.5rem}.traffic-landing.visible-alert-bar .template-hero .hero-background,.traffic-landing.visible-alert-bar .template-hero.wartop .hero-background{height:calc(100% + 40px);padding-top:8.125rem !important}.traffic-landing.visible-alert-bar .template-hero .page-hero-wrap,.traffic-landing.visible-alert-bar .template-hero.wartop .page-hero-wrap{margin-top:0 !important}.tag .template-hero{margin-bottom:1.875rem;padding-top:7.6875rem}.tag .template-hero .hero-background{height:100%}.tag.visible-alert-bar .template-hero{padding-top:10.625rem}@media(min-width: 48rem){.tag.visible-alert-bar .template-hero{padding-top:10.625rem}}.tag.continuing .template-hero{padding-top:10rem}.tag.continuing .template-hero .hero-background{height:100%}.tag.admin-bar .template-hero{margin-bottom:1.875rem;padding-top:7.8125rem}.tag.admin-bar .template-hero .hero-background{height:100%}.tag.admin-bar.visible-alert-bar .template-hero{padding-top:10.3125rem}.tag.admin-bar.continuing .template-hero{padding-top:10.3125rem}.tag.admin-bar.continuing .template-hero .hero-background{height:100%}.single-contest .template-hero{padding-bottom:.625rem}@media(min-width: 48rem){.single-contest .template-hero .hero-wrap{margin-top:1.4375rem}}.single-contest .template-hero .hero-wrap .section-content--primary{max-width:43.8125rem}.single-contest .template-hero .hero-background{height:6.5625rem}.single-contest .template-hero .article-meta{margin-top:.625rem;padding-bottom:0}@media(min-width: 80rem){.single-contest .template-hero .article-byline{color:#000}}@media(min-width: 80rem){.single-contest .template-hero .article-byline a{color:#0f2e62}}@media(min-width: 80rem){.single-contest .template-hero .article-byline span{color:#000}}.single-contest .template-hero .section-content--primary .share-buttons{display:block}.page .template-hero{padding-top:6.5625rem;height:105px}@media(min-width: 80rem){.page .template-hero{height:100%}}.page .template-hero .hero-background{height:6.5625rem}.loteria-landing .template-hero{margin-bottom:.625rem}@media(min-width: 80rem){.loteria-landing .template-hero{margin-bottom:.9375rem}}.loteria-landing .template-hero .hero-background{height:6.5625rem}@media(min-width: 48rem){.loteria-landing .template-hero .hero-background{height:6.5625rem}}@media(min-width: 64rem){.loteria-landing .template-hero .hero-background{height:6.5625rem}}.loteria-landing.visible-alert-bar .template-hero .hero-background{height:10.625rem}@media(min-width: 48rem){.loteria-landing.visible-alert-bar .template-hero .hero-background{height:10.625rem}}@media(min-width: 64rem){.loteria-landing.visible-alert-bar .template-hero .hero-background{height:9rem}}.category:not(.weather-landing) .template-hero{margin-bottom:0;padding-top:7.6875rem}@media(min-width: 48rem){.category:not(.weather-landing) .template-hero{padding-top:8.4375rem}}.category:not(.weather-landing) .template-hero .hero-background{height:calc(100% + 150px)}@media(min-width: 64rem){.category:not(.weather-landing) .template-hero .hero-background{height:calc(100% + 31px)}}@media(min-width: 48rem){.category:not(.weather-landing) .template-hero .hero-background{height:calc(100% + 300px)}}@media(min-width: 71.25rem){.category:not(.weather-landing) .template-hero .hero-background{height:calc(100% + 31px)}}.category:not(.weather-landing).visible-alert-bar .template-hero{padding-top:10.625rem}@media(min-width: 48rem){.category:not(.weather-landing).visible-alert-bar .template-hero{padding-top:11.375rem}}@media(min-width: 64rem){.category:not(.weather-landing).visible-alert-bar .template-hero .hero-background{height:calc(100% + 31px)}}@media(min-width: 71.25rem){.category:not(.weather-landing).visible-alert-bar .template-hero .hero-background{height:calc(100% + 31px)}}.category:not(.weather-landing).continuing .template-hero{padding-top:10.625rem}@media(min-width: 48rem){.category:not(.weather-landing).continuing .template-hero{padding-top:11.375rem}}.category:not(.weather-landing).admin-bar .template-hero{padding-top:6.5625rem}@media(min-width: 48rem){.category:not(.weather-landing).admin-bar .template-hero{padding-top:7.3125rem}}.category:not(.weather-landing).admin-bar.visible-alert-bar .template-hero,.category:not(.weather-landing).admin-bar.continuing .template-hero{padding-top:9.0625rem}@media(min-width: 48rem){.category:not(.weather-landing).admin-bar.visible-alert-bar .template-hero,.category:not(.weather-landing).admin-bar.continuing .template-hero{padding-top:9.8125rem}}.category.school-closings .template-hero .hero-background,.category.weather-alerts .template-hero .hero-background{height:calc(100% + 31px)}.category.school-closings.visible-alert-bar .template-hero .hero-background,.category.weather-alerts.visible-alert-bar .template-hero .hero-background{height:calc(100% + 31px)}.single.has-section-branding.visible-alert-bar:not(.immersive-article):not(.featured-article):not(.single-contest):not(.single-video) .template-hero{padding-top:9.375rem}.enhanced-hero .template-hero{margin-bottom:0;position:relative}.enhanced-hero .template-hero .hero-background{height:100%;left:0;min-height:11.3125rem;position:absolute;top:0;width:100%}@media(min-width: 80rem){.enhanced-hero .template-hero .hero-background{height:100%}}.enhanced-hero .template-hero .article-eyebrow__container{background-color:#fff;border-top-left-radius:5px;border-top-right-radius:5px;margin:0 auto;max-width:81.5rem;width:calc(100% - 16px)}.enhanced-hero .template-hero .article-eyebrow__wrap{margin:0 auto;max-width:74.375rem;padding:1.25rem .75rem 0rem;width:100%}@media(min-width: 80rem){.enhanced-hero .template-hero .article-eyebrow__wrap{max-width:75.5rem;padding:3.125rem 0rem 0rem}}.enhanced-hero .template-hero .article-eyebrow{color:#083098}.enhanced-hero .template-hero .hero-background+.article-eyebrow__container{margin-top:1.875rem}@media(min-width: 80rem){.enhanced-hero .template-hero .hero-background+.article-eyebrow__container{margin-top:2.5rem}}.single-profile .template-hero{margin-bottom:1.75rem}.single-profile .template-hero .hero-background{height:100% !important}.single-contest .template-hero .section-archive-header{display:none}.single-gallery .template-hero,.single-gallery .template-hero .hero-background{height:100%}.single .template-hero .section-content--primary{display:block;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:calc(99.9% * 3/3 - (30px - 30px * 3/3));flex-basis:calc(99.9% * 3/3 - (30px - 30px * 3/3));max-width:calc(99.9% * 3/3 - (30px - 30px * 3/3));width:calc(99.9% * 3/3 - (30px - 30px * 3/3));width:100%;margin:2rem 1.5rem 0rem;max-width:62rem}.single .template-hero .section-content--primary:nth-child(1n){margin-right:30px;margin-left:0}.single .template-hero .section-content--primary:last-child{margin-right:0}.single .template-hero .section-content--primary:nth-child(3n){margin-right:0;margin-left:auto}@media(min-width: 80rem){.single .template-hero .section-content--primary{margin:2rem 0rem 0rem}}.single .template-hero .section-content--primary .article-header--wrap{margin-left:0;max-width:100%}@media(max-width: 47.9375rem){.single .template-hero .section-content--primary .share-buttons{margin-top:1.25rem}}.single.single-video .template-hero{margin-bottom:0}@media(min-width: 80rem){.tall-hero.has-featured-image .template-hero .hero-background{height:calc(100% + 60px)}}.tall-hero.single-gallery .template-hero .hero-wrap .section-content--primary{margin:0 auto}@media(min-width: 80rem){.tall-hero .template-hero .section-content--primary .share-buttons{margin-top:0}}.featured-article.no-featured-image.visible-alert-bar.admin-bar .template-hero,.featured-article.no-featured-image.continuing.admin-bar .template-hero{padding-top:9.5625rem}.featured-article.no-featured-image.visible-alert-bar.admin-bar .template-hero .hero-background,.featured-article.no-featured-image.continuing.admin-bar .template-hero .hero-background{height:7.0625rem}@media(min-width: 48rem){.featured-article.no-featured-image.visible-alert-bar.admin-bar .template-hero .hero-background,.featured-article.no-featured-image.continuing.admin-bar .template-hero .hero-background{height:9.0625rem}}.template-hero.exclusive,.template-hero.exclusive_w_eyebrow,.template-hero.breaking,.template-hero.breaking_w_eyebrow,.template-hero.wartop{padding-top:9.5rem}.template-hero.exclusive_w_eyebrow,.template-hero.breaking_w_eyebrow{padding-top:10.3125rem}.template-hero.continuing .hero-background{height:19.1875rem}@media(min-width: 48rem){.template-hero.continuing .hero-background{height:29.375rem}}@media(min-width: 64rem){.template-hero.continuing .hero-background{height:100%}}.template-hero.deescalating{padding-top:8.125rem}@media(min-width: 64rem){.template-hero.deescalating{padding-top:7.5rem}}@media(min-width: 48rem){.template-hero.deescalating .hero-background{height:30.625rem}}@media(min-width: 64rem){.template-hero.deescalating .hero-background{height:100%}}.template-hero.wartop{padding-top:11.25rem}@media(min-width: 48rem){.template-hero.wartop{padding-top:9.6875rem}}.visible-alert-bar .template-hero.wartop .hero-background{height:calc(100% - 40px)}@media(min-width: 48rem){.visible-alert-bar .template-hero.wartop .hero-background{height:calc(100% - 50px)}}@media(min-width: 64rem){.visible-alert-bar .template-hero.wartop .hero-background{height:calc(100% - 40px)}}.template-hero .home.visible-alert-bar{height:9.875rem}@media(min-width: 48rem){.template-hero .home.visible-alert-bar{height:30.375rem}}@media(min-width: 64rem){.template-hero .home.visible-alert-bar{height:100%}}.page.visible-alert-bar .template-hero{padding-top:9.375rem}.page.visible-alert-bar .template-hero .hero-background{height:100%}.visible-alert-bar .template-hero,.visible-alert-bar.admin-bar .template-hero{padding-top:10rem}@media(min-width: 37.5rem){.visible-alert-bar .template-hero,.visible-alert-bar.admin-bar .template-hero{padding-top:9.0625rem}}.single .template-hero{overflow:hidden}.template-hero{margin-bottom:1.75rem;overflow:visible;padding-top:6.5625rem;position:relative;z-index:0}.template-hero>div:not(.hero-background){position:relative;z-index:1}.template-hero .hero-background{background-repeat:no-repeat;background-size:cover;height:10rem;left:0;overflow:hidden;position:absolute;top:0;width:100%;z-index:-1}.template-hero .hero-background__img{display:block;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center top;object-position:center top;width:100%;z-index:-3}@media(min-width: 80rem){.template-hero .hero-background__img{-o-object-position:left top;object-position:left top}}@media(min-width: 48rem){.template-hero .hero-background{height:30.3125rem}.visible-alert-bar.admin-bar.search .template-hero .hero-background,.continuing.admin-bar.search .template-hero .hero-background{height:10rem}}@media(min-width: 64rem){.template-hero .hero-background{height:100%}}.single.short-hero .template-hero .hero-background{height:7rem}@media(min-width: 48rem){.single.short-hero .template-hero .hero-background{height:7rem}}.single.short-section-branding .template-hero .hero-background{height:16.5rem}@media(min-width: 48rem){.single.short-section-branding .template-hero .hero-background{height:17.25rem}}.template-hero .hero-background::before,.template-hero .hero-background::after{content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:0}.template-hero .hero-background::before{background-color:rgba(20,74,168,.8);-webkit-transition:background-color .3s ease;-o-transition:background-color .3s ease;transition:background-color .3s ease}.station-telemundo .template-hero .hero-background::before{background-color:rgba(12,40,109,.8)}.template-hero .hero-background::after{background-image:-webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.5)));background-image:-o-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);background-image:linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);opacity:.4}.template-hero .homepage-hero-wrap{max-width:75.625rem}@media(min-width: 80rem){.tall-hero .template-hero .article-byline,.tall-hero .template-hero .article-byline a,.tall-hero .template-hero .article-byline span{color:#fff}}.home .template-hero .hero-background{height:17.5rem;overflow:hidden}@media(min-width: 48rem){.home .template-hero .hero-background{height:30.3125rem}.visible-alert-bar.admin-bar.search .home .template-hero .hero-background,.continuing.admin-bar.search .home .template-hero .hero-background{height:17.5rem}}@media(min-width: 64rem){.home .template-hero .hero-background{height:100%}}.home.visible-alert-bar.admin-bar .template-hero,.home.visible-alert-bar .template-hero{padding-top:10.9375rem}@media(min-width: 48rem){.home.visible-alert-bar.admin-bar .template-hero,.home.visible-alert-bar .template-hero{padding-top:10rem}}.necn .template-hero .hero-background::before{background:-o-linear-gradient(50.84deg, #230f49 0%, #773467 53.77%, #b16762 100%);background:linear-gradient(-320.84deg, #230f49 0%, #773467 53.77%, #b16762 100%);background-color:#230f49;opacity:.9}.necn .template-hero .hero-background::after{opacity:.3}.visible-alert-bar .template-hero,.visible-alert-bar.admin-bar .template-hero{padding-top:10.9375rem}@media(min-width: 48rem){.visible-alert-bar .template-hero,.visible-alert-bar.admin-bar .template-hero{padding-top:10rem}}.single-video.visible-alert-bar .template-hero,.single-video.visible-alert-bar.admin-bar .template-hero{padding-top:9.0625rem}.station-telemundo .amp-content .hero-background{background-color:rgba(12,40,109,.8);background-image:none}.amp-content .template-hero .hero-background{background-color:rgba(17,64,145,.8);background-image:none}.single.short-hero.visible-alert-bar .template-hero .hero-background{height:9.5rem}@media(min-width: 30rem){.single.short-hero.visible-alert-bar .template-hero .hero-background{height:10.625rem}}@media(min-width: 48rem){.single.short-hero.visible-alert-bar .template-hero .hero-background{height:10.25rem}}@media(min-width: 80rem){.single.short-hero.visible-alert-bar .template-hero .hero-background{height:9rem}}.single.short-hero.visible-alert-bar.continuing .template-hero .hero-background{height:10rem}@media(min-width: 48rem){.single.short-hero.visible-alert-bar.continuing .template-hero .hero-background{height:9rem}}.search-results .template-hero .hero-background,.search-no-results .template-hero .hero-background{height:10rem}@media(min-width: 48rem){.search-results .template-hero .hero-background,.search-no-results .template-hero .hero-background{height:10rem}}.search-results:not(.visible-alert-bar):not(.continuing) .template-hero .hero-background,.search-no-results:not(.visible-alert-bar):not(.continuing) .template-hero .hero-background{height:7rem}@media(min-width: 48rem){.search-results:not(.visible-alert-bar):not(.continuing) .template-hero .hero-background,.search-no-results:not(.visible-alert-bar):not(.continuing) .template-hero .hero-background{height:7rem}}.section-content--secondary .widget-title{font-family:"Arthouse",sans-serif;font-size:1.125rem;font-weight:700;margin:1.25rem 0 .875rem}.section-content--secondary .widget:first-child .widget-title{margin-top:0}.flyout-nav{position:fixed;top:0;-webkit-transform:translateX(-105%);-ms-transform:translateX(-105%);transform:translateX(-105%);-webkit-transition:-webkit-transform 500ms ease-in-out;transition:-webkit-transform 500ms ease-in-out;-o-transition:transform 500ms ease-in-out;transition:transform 500ms ease-in-out;transition:transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out;width:100%;z-index:98}@media(min-width: 48rem){.flyout-nav{left:-30.25rem;width:30.25rem}}.flyout-contact-button{left:0;position:fixed;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%);-webkit-transition:-webkit-transform 500ms ease-in-out;transition:-webkit-transform 500ms ease-in-out;-o-transition:transform 500ms ease-in-out;transition:transform 500ms ease-in-out;transition:transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out;width:100%;z-index:99}@media(min-width: 48rem){.flyout-contact-button{left:-30.25rem;width:30.25rem}}
/*# sourceMappingURL=global.176f09ca8711a20f20b2.min.css.map*/</style><link rel='stylesheet' id='all-css-0' href='https://www.nbcnewyork.com/_static/??-eJzTLy/QzcxLzilNSS3WzyrWz01NyUxMzUnNTc0rQeEU5CRWphbp5qSmJyZX6uVm5uklFxfr6OPTDpRD5sM02efaGpqZmVgaGBiYGgIARLYu2w==' type='text/css' media='all' />
<style id='global-styles-inline-css'>
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--normal: 16px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--huge: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-normal-font-size{font-size: var(--wp--preset--font-size--normal) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-huge-font-size{font-size: var(--wp--preset--font-size--huge) !important;}
</style>
<link rel='stylesheet' id='all-css-2' href='https://www.nbcnewyork.com/_static/??-eJydzV0OwiAQBOALWf6h9MH44AW8AruwkUjBCI3Xt8Z4gT7PzDf8/Zyw1ZHq4OOe1tR5BZz6CCO3yrHkbwJbLpFj7zy8RsaS2IwAJJxKCyZJShsiYGuubC+d+DH0+pswE2cjnJUUjfYhopfzcRtKw0dnnrx1ymrwkGahrBUxHTbX1setPbcSXoyst8oEsG4JWqAkIvWHL+tZOrd/Se3NB7UKfkM=' type='text/css' media='all' />
<script id='ad-layers-dfp-js-extra'>
var adLayersDFP = {"layerDebugLabel":"Current ad layer","consoleDebugLabel":"Switch to Google console","adUnitPrefix":"div-gpt-ad-"};
</script>
<script src='https://www.nbcnewyork.com/wp-content/plugins/ad-layers-nbc/js/ad-layers-dfp.js?ver=0.0.9' id='ad-layers-dfp-js'></script>
<script id='ad-layers-js-extra'>
var adLayersAdServer = {"jsAPIClass":"AdLayersDFPAPI"};
</script>
<script src='https://www.nbcnewyork.com/wp-content/plugins/ad-layers-nbc/js/ad-layers.js?ver=0.0.9' id='ad-layers-js'></script>
<link rel="https://api.w.org/" href="https://www.nbcnewyork.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.nbcnewyork.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.nbcnewyork.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 5.8.5" />
<link rel="canonical" href="https://www.nbcnewyork.com/news/local/walgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp/3902427/" />
<link rel="alternate" type="application/json+oembed" href="https://www.nbcnewyork.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.nbcnewyork.com%2Fnews%2Flocal%2Fwalgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp%2F3902427%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://www.nbcnewyork.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.nbcnewyork.com%2Fnews%2Flocal%2Fwalgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp%2F3902427%2F&format=xml" />
<style>
.getty.aligncenter {
text-align: center;
}
.getty.alignleft {
float: none;
margin-right: 0;
}
.getty.alignleft > div {
float: left;
margin-right: 5px;
}
.getty.alignright {
float: none;
margin-left: 0;
}
.getty.alignright > div {
float: right;
margin-left: 5px;
}
</style>
<style type='text/css'>img#wpstats{display:none}</style>
<script>var nbc = {"brand":"nbc","callLetters":"WNBC","env":"production","fullDomain":"nbcnewyork.com","globalSiteKey":"ny","comscore_c4":"NBC NEW YORK","on_air_name":"4 New York","host":"nbcnewyork.com","market":"nbcnewyork","pdkAcct":"Yh1nAC","sensitive":"","siteID":2,"siteKey":"ny","themeUrl":"https:\/\/www.nbcnewyork.com\/wp-content\/themes\/nbc-station","twitterVia":"nbcnewyork","zipCode":"11371","dataLayer":{"adobe":{"prop1":"news","prop2":"article - general","prop3":"local","prop4":"","prop8":"nbc","prop9":"NY","prop10":"WNBC","prop20":"nbcuotsdivisiontotal","prop21":"10023902427","prop22":"Walgreens Robbers Crash on Taconic at 100 MPH, 2 Run Into Woods: NYSP","prop23":"article ","prop28":"NBC New York","prop29":"news, local, dutchess-county, new-york-state-police, nysp, poughkeepsie, putnam-county, taconic-parkway, walgreens","prop32":"no keyword","prop49":"Walgreens Robbers Crash on Taconic at 100 MPH, 2 Run Into Woods: NYSP \u2013 NBC New York","prop57":"Home Top Stories, Local, Top News","prop59":"Oct 11, 2022 12:07:36 pm EDT","prop68":"","prop70":"Oct 11, 2022 12:07:26 pm EDT","prop74":"page not sponsored","eVar76":"page not sponsored","eVar81":"10023902427","eVar90":"","list2":"news, local, dutchess-county, new-york-state-police, nysp, poughkeepsie, putnam-county, taconic-parkway, walgreens","channel":"local","server":"nbcnewyork","attrs":[],"contextData":{"pagename":"","events":"","rsid":"nbcuotsdivisiontotal","callsign":"WNBC","businessunit":"nbcnewyork","division":"nbc","sitekey":"ny","section":"news","subsection":"local","subsubsection":"","exitlink":"","url":"https:\/\/www.nbcnewyork.com\/news\/local\/walgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp\/3902427\/","contentid":3902427,"localid":"1:2:3902427","contenttitle":"Walgreens Robbers Crash on Taconic at 100 MPH, 2 Run Into Woods: NYSP","contenttype":"article","nationalized":false,"byline_authors":"","date":"October 11, 2022","sourceid":"","source":"NBC New York","pageName":"local:detail content page","collections":"Home Top Stories, Local, Top News"},"prop30":"New York","prop18":"","pageName":"local:detail content page","pageType":"","prop19":"false","prop25":"D=c18"},"page_name":["local:detail","content","page"],"site_events":{},"division":"nbc","market":"WNBC","sitekey":"ny","type":"post","mParticleKey":"us1-36d67c9e4d591d4bb1bc1fa6c82ffcb9","merkleId":"5998_04728","domainName":"www.nbcnewyork.com","network_id":"1:2:3902427","id":3902427,"source":"NBC New York","title":"Walgreens Robbers Crash on Taconic at 100 MPH, 2 Run Into Woods: NYSP","summary":"<p>Three people who allegedly tried to rob a Walgreens in Poughkeepsie Tuesday crashed while trying to exit the Taconic State Parkway in a neighboring county at speeds topping 100 mph — and State Police were still looking for two who ran off into the woods afterward, authorities say. New York State Police described the situation as ongoing as of 11…<\/p>\n","link":"https:\/\/www.nbcnewyork.com\/news\/local\/walgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp\/3902427\/","date":"October 11, 2022","subtitle":"New York State Police say one of the suspects was taken into custody after the high-speed crash, while two others ran into the woods","sponsor":"","sst_source_id":"","linkout":"","linkout_url":"","syndicated":false,"nationalized":false,"linkout_excerpt_url":"","originating_market":"","content_tag":"dutchess-county|new-york-state-police|nysp|poughkeepsie|putnam-county|taconic-parkway|walgreens","section":"news","subsection":"local","subsubsection":"","all_sections":"news|local","sponsored":false,"contentid":"10023902427","localid":"1:2:3902427","localid_combined":"10023902427","contenttitle":"Walgreens Robbers Crash on Taconic at 100 MPH, 2 Run Into Woods: NYSP","contenttype":"article ","syndicatedid":"1:2:3902427","byline_authors":"","sourceid":"","pageName":"local:detail content page","collections":"Home Top Stories, Local, Top News","uri":"\/news\/local\/walgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp\/3902427\/","uri_length":6,"section_name":"news","detail_section_name":"local","detail_subsection_name":"","this_contenttype":"article ","template":"article - general","this_request_type":"singular","video_collections":[]},"browserTitle":"%s - NBC New York","pageType":"article","locale":"en_US","video":{"bitrate":50000,"playerType":"articleplayer","fwSSID":"ots_wnbc_news_local","fwSSID_liveNoPre":"ots_live_nopreroll","fwNetworkID":"382114","fwManager":{"network":"_live","siteKey":""},"config":{"volume":100,"htmlPreRoll":true,"htmlOmniture":false,"tremorFlashKey":"52289094b872c","tremorFlashSyndKey":"5239b2feaee2e","tremorHTMLKey":"5239c44e7e9e1","tremorHTMLSyndKey":"5239c4849009"},"htmlOmniture":false,"pdkPath":"\/assets\/pdk587","plugins":["akamaiHD","FreeWheel","comscore","captions","capcon","liveCaptions","streamsense","chartbeat"]},"adobe":{"rsid":"nbcuotsdivisiontotal","link_internal_filters":"javascript:,nbcnewyork.com,media.nbcnewyork.com,events.nbcnewyork.com,tsn.nbcnewyork.com,autos.nbcnewyorknbcchicago.com"},"weather":{"weather_url":"https:\/\/www.nbcnewyork.com\/weather\/","alerts_url":"https:\/\/www.nbcnewyork.com\/weather\/severe-weather-alerts\/","closings_url":"https:\/\/www.nbcnewyork.com\/weather\/school-closings\/"},"sharethrough_codes":["nP3EagztciAhUuFBbE24BQsi"],"param_zipcode":"","appleStoreUrl":"https:\/\/ad.apps.fm\/E0u4S3ipOmsJX1C8gzpiGrmEqdAzHrteUpaQzsBej-2eHG_EJsXnWfqux2Y0CMFllmts_yvkswejq-LuNSpS8w","androidStoreUrl":"https:\/\/ad.apps.fm\/yWtPmqjRwEzO7Tn7WO-CYF5KLoEjTszcQMJsV6-2VnHFDLXitVHB6BlL95nuoNYfD4DN9cA_K7isGKodpGGvS81Dc53-l-EFFkrbbqlNnbEvOHmYbNodyj2z9iIgM4N0U9URwPCGGgbckgWPPtOEDw","facebookAppId":"57055548682"};</script><style type="text/css">
.hero-background:empty { background-image: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%,rgba(0,0,0,0) 20%); }
</style>
<meta property="og:site_name" content="NBC New York" /><meta name="google-site-verification" content="J_TExBQP8zWCS59RsGcM6VSRGvK0WA0HSmT5E7ZDWSs" /><meta property="fb:app_id" content="57055548682" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:site" content="@nbcnewyork" /><meta name="twitter:creator" content="@nbcnewyork" /><meta property="og:type" content="article" /><meta property="article:opinion" content="false" /><meta property="article:content_tier" content="free" /><meta name="article:publisher" content="http://www.facebook.com/NBCNewYork" /><meta name="description" content="It started at a Walgreens in Poughkeepsie and ended off the Taconic in Carmel, Putnam County, according to New York State Police." /><meta property="og:description" content="Three people who allegedly tried to rob a Walgreens in Poughkeepsie Tuesday crashed while trying to exit the Taconic State Parkway in a neighboring county at speeds topping 100 mph — and State Police were still looking for two who ran off into the woods afterward, authorities say. New York State Police described the situation as ongoing as of 11…" /><meta name="twitter:description" content="Three people who allegedly tried to rob a Walgreens in Poughkeepsie Tuesday crashed while trying to exit the Taconic State Parkway in a neighboring county at speeds topping 100 mph — and State Police were still looking for two who ran off into the woods afterward, authorities say. New York State Police described the situation as ongoing as of 11…" /><meta property="og:title" content="Walgreens Robbers Crash on Taconic at 100 MPH, 2 Run Into Woods: NYSP" /><meta name="twitter:title" content="Walgreens Robbers Crash on Taconic at 100 MPH, 2 Run Into Woods: NYSP" /><meta name="keywords" content="Dutchess County, New York State Police, nysp, Poughkeepsie, Putnam County, taconic parkway, WALGREENS" /><meta property="og:url" content="https://www.nbcnewyork.com/news/local/walgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp/3902427/" /><meta name="twitter:url" content="https://www.nbcnewyork.com/news/local/walgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp/3902427/" /><meta name="sailthru.title" content="Walgreens NY Robbers Crash on Taconic, Run Into Woods: State Police" /><meta name="sailthru.description" content="It started at a Walgreens in Poughkeepsie and ended off the Taconic in Carmel, Putnam County, according to New York State Police." /><meta name="sailthru.tags" content="Dutchess County, New York State Police, nysp, Poughkeepsie, Putnam County, taconic parkway, WALGREENS" /><meta name="sailthru.tags" content="Dutchess County, New York State Police, nysp, Poughkeepsie, Putnam County, taconic parkway, WALGREENS" /><meta name="sailthru.type" content="article" /><meta name="sailthru.date" content="2022-10-11T12:07:26+00:00" /><meta property="og:image:width" content="1200" /><meta property="og:image:height" content="675" /><meta property="og:image" content="https://media.nbcnewyork.com/2019/09/nysp-generic.jpg?quality=85&strip=all&fit=1200%2C675" /><meta name="twitter:image" content="https://media.nbcnewyork.com/2019/09/nysp-generic.jpg?quality=85&strip=all&fit=1200%2C675" /><script type="application/ld+json">{"@context":"http:\/\/schema.org","@type":"NewsArticle","mainEntityOfPage":"https:\/\/www.nbcnewyork.com\/news\/local\/walgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp\/3902427\/","headline":"Walgreens Robbers Crash on Taconic at 100 MPH, 2 Run Into Woods: NYSP","datePublished":"2022-10-11T12:07:26","dateModified":"2022-10-11T12:07:36","description":"It started at a Walgreens in Poughkeepsie and ended off the Taconic in Carmel, Putnam County, according to New York State Police.","speakable":{"@type":"SpeakableSpecification","cssSelector":[".article-headline",".article-subtitle"]},"keywords":"Dutchess County, New York State Police, nysp, Poughkeepsie, Putnam County, taconic parkway, WALGREENS","publisher":{"@type":"Organization","name":"NBC New York","logo":{"@type":"ImageObject","height":60,"url":"https:\/\/media.nbcnewyork.com\/wp-content\/uploads\/2022\/05\/amp_square_wnbc.png","width":160}},"image":{"@type":"ImageObject","height":478,"url":"https:\/\/media.nbcnewyork.com\/2019\/09\/nysp-generic.jpg?quality=85&strip=all&resize=850%2C478","width":850}}</script> <script type='text/javascript'>
var dfpAdUnits = {};
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(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">
var dfpBuiltMappings = {}, dfpAdUnits = {};
if (768 <= window.innerWidth) { googletag.cmd.push(function() {
dfpBuiltMappings["bottombanner"] = googletag.sizeMapping().addSize([768,1],[[970,250]]).build();
dfpBuiltMappings["bottombox"] = googletag.sizeMapping().addSize([768,1],[[300,250],[300,600]]).build();
dfpBuiltMappings["topbox"] = googletag.sizeMapping().addSize([768,1],[[300,250],[300,600]]).build();
dfpBuiltMappings["topbanner"] = googletag.sizeMapping().addSize([768,1],[[970,250],[5,1]]).build();
dfpBuiltMappings["logo"] = googletag.sizeMapping().addSize([768,1],[[88,31],[120,60]]).build();
dfpBuiltMappings["interstitial"] = googletag.sizeMapping().addSize([768,1],[[1,1]]).build();
dfpBuiltMappings["companiontopbox"] = googletag.sizeMapping().addSize([768,1],[[300,250]]).build();
dfpBuiltMappings["olympicsbox"] = googletag.sizeMapping().addSize([768,1],[[300,250]]).build();
});
var dfpAdDetails = {"topbox":{"path":"\/2620\/ots_web\/wnbc\/news\/local","sizes":[[300,250],[300,600]],"targeting":[]},"bottombox":{"path":"\/2620\/ots_web\/wnbc\/news\/local","sizes":[[300,250],[300,600]],"targeting":[]},"logo":{"path":"\/2620\/ots_web\/wnbc\/news\/local","sizes":[[88,31],[120,60]],"targeting":[]},"topbanner":{"path":"\/2620\/ots_web\/wnbc\/news\/local","sizes":[[970,250],[5,1]],"targeting":[]},"interstitial":{"path":"\/2620\/ots_web\/wnbc\/news\/local","sizes":[[1,1]],"targeting":[]},"bottombanner":{"path":"\/2620\/ots_web\/wnbc\/news\/local","sizes":[[970,250]],"targeting":[]},"companiontopbox":{"path":"\/2620\/ots_web\/wnbc\/news\/local","sizes":[[300,250]],"targeting":[]},"olympicsbox":{"path":"\/2620\/ots_web\/wnbc\/news\/local","sizes":[[300,250]],"targeting":[]}};
var dfpSizeMapping = {"bottombanner":[[[768,1],[[970,250]]]],"bottombox":[[[768,1],[[300,250],[300,600]]]],"topbox":[[[768,1],[[300,250],[300,600]]]],"topbanner":[[[768,1],[[970,250],[5,1]]]],"logo":[[[768,1],[[88,31],[120,60]]]],"interstitial":[[[768,1],[[1,1]]]],"companiontopbox":[[[768,1],[[300,250]]]],"olympicsbox":[[[768,1],[[300,250]]]]};
} else { googletag.cmd.push(function() {
dfpBuiltMappings["mobilemultibox"] = googletag.sizeMapping().addSize([1,1],[[300,250],[300,100],[320,50]]).build();
dfpBuiltMappings["mobilebottombanner"] = googletag.sizeMapping().addSize([1,1],[[320,50],[300,100]]).build();
dfpBuiltMappings["mobilebackstage"] = googletag.sizeMapping().addSize([1,1],[[1,1]]).build();
dfpBuiltMappings["mobiletopbanner"] = googletag.sizeMapping().addSize([1,1],[[320,50],[300,100],[5,1]]).build();
dfpBuiltMappings["olympicsbox"] = googletag.sizeMapping().addSize([1,1],[[300,250]]).build();
});
var dfpAdDetails = {"mobilemultibox":{"path":"\/2620\/ots_mobile\/wnbc_mobileweb\/news\/local","sizes":[[300,250],[300,100],[320,50]],"targeting":[]},"mobilebackstage":{"path":"\/2620\/ots_mobile\/wnbc_mobileweb\/news\/local","sizes":[[1,1]],"targeting":[]},"mobilebottombanner":{"path":"\/2620\/ots_mobile\/wnbc_mobileweb\/news\/local","sizes":[[320,50],[300,100]],"targeting":[]},"mobiletopbanner":{"path":"\/2620\/ots_mobile\/wnbc_mobileweb\/news\/local","sizes":[[320,50],[300,100],[5,1]],"targeting":[]},"olympicsbox":{"path":"\/2620\/ots_mobile\/wnbc_mobileweb\/news\/local","sizes":[[300,250]],"targeting":[]}};
var dfpSizeMapping = {"mobilemultibox":[[[1,1],[[300,250],[300,100],[320,50]]]],"mobilebottombanner":[[[1,1],[[320,50],[300,100]]]],"mobilebackstage":[[[1,1],[[1,1]]]],"mobiletopbanner":[[[1,1],[[320,50],[300,100],[5,1]]]],"olympicsbox":[[[1,1],[[300,250]]]]};
} googletag.cmd.push(function() {
googletag.pubads().enableAsyncRendering();
googletag.pubads().collapseEmptyDivs();
googletag.pubads().addEventListener('slotRenderEnded', function(event) {
var slotElementId = event.slot.getSlotElementId();
if (false === event.isEmpty) {
if (0 <= slotElementId.indexOf('topbanner')) {
document.body.classList.add("topbanner");
}
if (0 <= slotElementId.indexOf('logo')) {
document.querySelector('#' + slotElementId).classList.add('logo-rendered');
} else {
document.querySelector('#' + slotElementId).classList.add('ad-rendered');
}
}
});
googletag.pubads().setTargeting("zipcode", localStorage.getItem("zipCode") || nbc.zipCode );
var isMobile = window.matchMedia('screen and (max-width: 767px)').matches;
googletag.pubads().setTargeting("gpt1", isMobile ? "ots_mobile" : "ots_web");
googletag.pubads().setTargeting("platform", isMobile ? "mobile" : "desktop");
googletag.pubads().setTargeting("source", "www.nbcnewyork.com");
googletag.pubads().setTargeting("pageid", "10023902427");
googletag.pubads().setTargeting("pageid2", "10023902427");
googletag.pubads().setTargeting("sect", "news");
googletag.pubads().setTargeting("sub", "local");
googletag.pubads().setTargeting("call", "WNBC");
googletag.pubads().setTargeting("region", "newyork");
googletag.pubads().setTargeting("stationtype", "nbc");
googletag.pubads().setTargeting("tags", "news,local,dutchess-county,new-york-state-police,nysp,poughkeepsie,putnam-county,taconic-parkway,walgreens");
googletag.pubads().setTargeting("gpt2", "WNBC");
googletag.pubads().setTargeting("station", "ots");
googletag.pubads().setTargeting("sponsor", "");
googletag.pubads().setTargeting("excl_cat", "news,local");
googletag.enableServices();
});
var dfpAdLayer = {"post_id":1907064,"title":"Article Ad Layer"};
</script>
<link rel="amphtml" href="https://www.nbcnewyork.com/news/local/walgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp/3902427/?amp=1"><link rel="icon" href="https://media.nbcnewyork.com/2019/09/cropped-NBC_New-York-1.png?fit=32%2C32&quality=85&strip=all" sizes="32x32" />
<link rel="icon" href="https://media.nbcnewyork.com/2019/09/cropped-NBC_New-York-1.png?fit=192%2C192&quality=85&strip=all" sizes="192x192" />
<link rel="apple-touch-icon" href="https://media.nbcnewyork.com/2019/09/cropped-NBC_New-York-1.png?fit=180%2C180&quality=85&strip=all" />
<meta name="msapplication-TileImage" content="https://media.nbcnewyork.com/2019/09/cropped-NBC_New-York-1.png?fit=270%2C270&quality=85&strip=all" />
</head>
<body class="post-template-default single single-post postid-3902427 single-format-standard station-nbc wnbc has-featured-image short-hero">
<div id="leaderboard" class="leaderboard-ad">
<div id="div-gpt-ad-topbanner_" class=" gpt-topbanner" data-beforetext="" data-fallbacktext=""></div><script style="text/javascript">
if (typeof adInstance === 'undefined') {
adInstance = new AdLayersAPI();
}
adInstance.lazyLoadAd({ slotName: 'topbanner_', format: 'topbanner', targeting: {"slot":"topbanner","pos":"topbanner"} });
</script><div id="div-gpt-ad-mobiletopbanner_" class=" gpt-mobiletopbanner" data-beforetext="" data-fallbacktext=""></div><script style="text/javascript">
if (typeof adInstance === 'undefined') {
adInstance = new AdLayersAPI();
}
adInstance.lazyLoadAd({ slotName: 'mobiletopbanner_', format: 'mobiletopbanner', targeting: {"slot":"mobiletopbanner","pos":"mobiletopbanner"} });
</script> </div>
<div id="page" class="site" data-component="wrapper">
<a class="skip-link screen-reader-text" href="#content">Skip to content</a>
<header id="masthead" class="site-header" role="banner" data-component="siteHeader">
<div class="site-header__primary">
<div class="site-header__wrap">
<div class="site-header__logo">
<a href="https://www.nbcnewyork.com/">
<img src="https://media.nbcnewyork.com/2019/09/New_York_On_Dark@3x-5.png?fit=528%2C120&quality=85&strip=all&w=176&h=40" srcset="https://media.nbcnewyork.com/2019/09/New_York_On_Dark@3x-5.png?fit=528%2C120&quality=85&strip=all&w=176&h=40 1x, https://media.nbcnewyork.com/2019/09/New_York_On_Dark@3x-5.png?fit=528%2C120&quality=85&strip=all&w=352&h=80 2x, https://media.nbcnewyork.com/2019/09/New_York_On_Dark@3x-5.png?fit=528%2C120&quality=85&strip=all&w=528&h=120 3x" alt="NBC New York" height="40" width="176" /> </a>
</div>
<div class="site-header__nav-search">
<div class="site-header__nav-main">
<button class="site-header__nav-main-toggle">
<span class="site-header__nav-main-toggle-text">Main Navigation</span>
</button>
</div>
<div class="site-header__search" data-component="headerSearch">
<button class="site-header__search-toggle">
<span class="site-header__search-toggle-text">Search</span>
</button>
<div class="site-header__search-form">
<form class="search-form" role="search" method="get" action="https://www.nbcnewyork.com/" >
<label>
<span class="screen-reader-text">Search for:</span>
<input class="search-form-input" type="search" value="" name="s" placeholder="Search" />
</label>
<input type="submit" class="search-submit" value="Search" />
</form>
</div>
</div>
</div>
<div class="site-header__animated-section">
<nav class="site-header__nav-sections">
<div class="menu-primary-container"><nav id="primary-menu" class="menu"><a data-lid="Local" data-lpos="primary-menu" class=" menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent" href="/news/local/">Local</a></li>
<a data-lid="Weather" data-lpos="primary-menu" class=" menu-item menu-item-type-custom menu-item-object-custom" href="/weather/">Weather</a></li>
<a data-lid="Investigations" data-lpos="primary-menu" class=" menu-item menu-item-type-taxonomy menu-item-object-category" href="/investigations/">Investigations</a></li>
<a data-lid="Baquero" data-lpos="primary-menu" class=" menu-item menu-item-type-custom menu-item-object-custom" href="https://www.nbcnewyork.com/better-get-baquero/">Baquero</a></li>
<a data-lid="Video" data-lpos="primary-menu" class=" menu-item menu-item-type-custom menu-item-object-custom" href="/videos/">Video</a></li>
<a data-lid="TV Listings" data-lpos="primary-menu" class=" menu-item menu-item-type-custom menu-item-object-custom" href="https://www.nbcnewyork.com/live/">TV Listings</a></li>
<a data-lid="Our Voices" data-lpos="primary-menu" class=" menu-item menu-item-type-custom menu-item-object-custom" href="/ourvoices/">Our Voices</a></li>
<a data-lid="Newsletters" data-lpos="primary-menu" class=" menu-item menu-item-type-custom menu-item-object-custom" href="https://www.nbcnewyork.com/newsletters/">Newsletters</a></li>
</nav></div> </nav>
<div class="site-header__weather-tv">
<div
class="site-header__local-weather"
data-react-component="NBCWeather"
data-view="conditions"
>
</div>
<a class="site-header__live-tv" href="https://www.nbcnewyork.com/live">Live TV</a>
</div>
<button class="site-header__mobile-share-toggle">
<span class="text-share">Share</span>
<span class="text-close">Close</span>
</button>
</div>
</div> <!-- site-header__wrap -->
</div> <!-- site-header__primary -->
<div class="site-header__secondary">
<div class="site-header__wrap">
<div class="site-header__trending">
<span class="site-header__trending-label">Trending</span>
<nav class="site-header__trending-nav">
<a data-lid="Peacock" data-lpos="trending-stories-module" href="https://www.nbcnewyork.com/tag/peacock/" class="site-header__trending-nav-item">Peacock</a>
<a data-lid="Amazon Prime Day" data-lpos="trending-stories-module" href="https://www.nbcnewyork.com/tag/amazon-prime-day/" class="site-header__trending-nav-item">Amazon Prime Day</a>
<a data-lid="Viral Heckled Comedian" data-lpos="trending-stories-module" href="https://www.nbcnewyork.com/news/local/heckler-throws-beer-at-comedian-on-stage-in-nj-and-her-response-has-gone-viral/3901557/" class="site-header__trending-nav-item">Viral Heckled Comedian</a>
<a data-lid="Davante Adams" data-lpos="trending-stories-module" href="https://www.nbcnewyork.com/tag/davante-adams/" class="site-header__trending-nav-item">Davante Adams</a>
<a data-lid="MLB Postseason" data-lpos="trending-stories-module" href="https://www.nbcnewyork.com/tag/mlb-postseason/" class="site-header__trending-nav-item">MLB Postseason</a>
<a data-lid="Yankees" data-lpos="trending-stories-module" href="https://www.nbcnewyork.com/tag/yankees/" class="site-header__trending-nav-item">Yankees</a>
<a data-lid="Scams" data-lpos="trending-stories-module" href="https://www.nbcnewyork.com/tag/scam/" class="site-header__trending-nav-item">Scams</a>
<a data-lid="Michelin Guide" data-lpos="trending-stories-module" href="https://www.nbcnewyork.com/tag/michelin-guide/" class="site-header__trending-nav-item">Michelin Guide</a>
<a data-lid="Migrant Crisis" data-lpos="trending-stories-module" href="https://www.nbcnewyork.com/tag/migrant-crisis/" class="site-header__trending-nav-item">Migrant Crisis</a>
<a data-lid="New York Live" data-lpos="trending-stories-module" href="https://www.nbcnewyork.com/entertainment/the-scene/new-york-live/" class="site-header__trending-nav-item">New York Live</a>
<a data-lid="LX News" data-lpos="trending-stories-module" href="https://www.nbcnewyork.com/lxnews/" class="site-header__trending-nav-item">LX News</a>
</nav>
<div class="site-header__trending-toggle">
<button class="trending-toggle"><span class="screen-reader-text">Expand</span></button>
</div>
</div>
<div class="site-header__alerts">
<div
class="site-header__weather "
data-react-component="NBCWeather"
data-view="alerts"
data-alert-singular="Weather Alert"
data-alert-plural="Weather Alerts"
data-zip-code="11371">
</div>
</div> <!-- site-header__wrap -->
</div> <!-- site-header__secondary -->
</div>
</header>
<div id="content" class="site-content " data-component="formsContainer">
<div id="primary" class="content-area">
<main id="main" class="site-main">
<article id="post-3902427" data-component="article">
<div
id="template-hero"
class="template-hero "
data-component="templateHero"
>
<div class="hero-background">
<img
src="https://media.nbcnewyork.com/2019/09/NYC_aerial-1-1.png?fit=2060%2C847&quality=85&strip=all&w=400&h=44&crop=1"
srcset="https://media.nbcnewyork.com/2019/09/NYC_aerial-1-1.png?fit=2060%2C847&quality=85&strip=all&w=400&h=44&crop=1 400w, https://media.nbcnewyork.com/2019/09/NYC_aerial-1-1.png?fit=2060%2C847&quality=85&strip=all&w=500&h=56&crop=1 500w, https://media.nbcnewyork.com/2019/09/NYC_aerial-1-1.png?fit=2060%2C847&quality=85&strip=all&w=600&h=67&crop=1 600w, https://media.nbcnewyork.com/2019/09/NYC_aerial-1-1.png?fit=2060%2C847&quality=85&strip=all&w=700&h=78&crop=1 700w, https://media.nbcnewyork.com/2019/09/NYC_aerial-1-1.png?fit=2060%2C847&quality=85&strip=all&w=800&h=89&crop=1 800w, https://media.nbcnewyork.com/2019/09/NYC_aerial-1-1.png?fit=2060%2C847&quality=85&strip=all&w=900&h=100&crop=1 900w, https://media.nbcnewyork.com/2019/09/NYC_aerial-1-1.png?fit=2060%2C847&quality=85&strip=all&w=1000&h=111&crop=1 1000w, https://media.nbcnewyork.com/2019/09/NYC_aerial-1-1.png?fit=2060%2C847&quality=85&strip=all&w=1100&h=122&crop=1 1100w, https://media.nbcnewyork.com/2019/09/NYC_aerial-1-1.png?fit=2060%2C847&quality=85&strip=all&w=1200&h=133&crop=1 1200w, https://media.nbcnewyork.com/2019/09/NYC_aerial-1-1.png?fit=2060%2C847&quality=85&strip=all&w=1300&h=144&crop=1 1300w"
sizes="100vw"
class="hero-background__img"
fetchpriority="high"
/>
</div>
</div>
<div class="section-content--header below-hero">
<div class="article-eyebrow__container">
<div class="article-eyebrow__wrap">
<a class="article-eyebrow" href="https://www.nbcnewyork.com/tag/new-york-state-police/">New York State Police</a> </div>
</div>
<div class="article-header--wrap ">
<h1 class="article-headline">
Walgreens Robbers Crash on Taconic at 100 MPH, 2 Run Into Woods: NYSP </h1>
<h2 class="article-subtitle">
New York State Police say one of the suspects was taken into custody after the high-speed crash, while two others ran into the woods </h2>
<div class="article-meta" data-component="articleMeta">
<h4 class="article-byline">
<span class="time-wrap">
<time class="entry-date published" datetime="2022-10-11T16:07:26-04:00">Published 2 hours ago</time> <span class="meta-dot">•</span>
<time class="entry-date updated" datetime="2022-10-11T12:07:36-04:00">Updated 2 hours ago</time> </span>
</h4>
<div
class="share-buttons"
data-component="sharingBar"
>
<a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwww.nbcnewyork.com%2Fnews%2Flocal%2Fwalgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp%2F3902427%2F&Walgreens%20Robbers%20Crash%20on%20Taconic%20at%20100%20MPH%2C%202%20Run%20Into%20Woods%3A%20NYSP?_osource=db_npd_nbc_wnbc_fb_shr" data-service="facebook" target="_blank">
<span class="icon icon-facebook-f"></span>
</a>
<a href="https://twitter.com/intent/tweet?text=Walgreens%20Robbers%20Crash%20on%20Taconic%20at%20100%20MPH%2C%202%20Run%20Into%20Woods%3A%20NYSP&url=https%3A%2F%2Fwww.nbcnewyork.com%2Fnews%2Flocal%2Fwalgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp%2F3902427%2F?_osource=db_npd_nbc_wnbc_twt_shr" data-service="twitter" target="_blank">
<span class="icon icon-twitter"></span>
</a>
<a href="mailto:?body=Walgreens%20Robbers%20Crash%20on%20Taconic%20at%20100%20MPH%2C%202%20Run%20Into%20Woods%3A%20NYSP%0D%0A%0D%0Ahttps%3A%2F%2Fwww.nbcnewyork.com%2Fnews%2Flocal%2Fwalgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp%2F3902427%2F?_osource=db_npd_nbc_wnbc_eml_shr" data-service="email" target="_blank">
<span class="icon icon-envelope"></span>
</a>
</div>
</div>
</div>
</div>
<div class="section-content--full below-hero">
<div class="section-content--primary">
<div class="article-content--wrap">
<figure class="article-featured-media">
<div class="image-container">
<img
srcset="https://media.nbcnewyork.com/2019/09/nysp-generic.jpg?quality=85&strip=all&resize=320%2C180 320w, https://media.nbcnewyork.com/2019/09/nysp-generic.jpg?quality=85&strip=all&resize=400%2C225 400w, https://media.nbcnewyork.com/2019/09/nysp-generic.jpg?quality=85&strip=all&resize=500%2C281 500w, https://media.nbcnewyork.com/2019/09/nysp-generic.jpg?quality=85&strip=all&resize=600%2C338 600w, https://media.nbcnewyork.com/2019/09/nysp-generic.jpg?quality=85&strip=all&resize=850%2C478 850w, https://media.nbcnewyork.com/2019/09/nysp-generic.jpg?quality=85&strip=all&crop&resize=1200%2C675 1200w, "
sizes="(max-width: 768px) 100vw, (max-width: 1200px) calc(100vw - 350px), 850px"
src="https://media.nbcnewyork.com/2019/09/nysp-generic.jpg?quality=85&strip=all&resize=320%2C180"
alt="state trooper"
/>
</div>
<figcaption>
<cite>Getty Images</cite>
<div
class="caption"
data-react-component="NBCTruncate"
data-maxlines="2"
data-maxlinesmobile="4"
data-readmore="Read more"
data-text="<p>File photo: state trooper</p>
"
data-ellipsis="false">
</div>
</figcaption>
</figure>
<div class="article-content rich-text">
<p>Three people who allegedly tried to rob a Walgreens in Poughkeepsie Tuesday crashed while trying to exit the Taconic State Parkway in a neighboring county at speeds topping 100 mph -- and State Police were still looking for two who ran off into the woods afterward, authorities say. </p>
<p>New York State Police described the situation as ongoing as of 11 a.m. According to officials, the trio tried to rob the Walgreens on Freedom Plains Road in Poughkeepsie earlier in the morning. It wasn't clear what, if anything, was taken from the retail pharmacy but no weapons were displayed, officials said.</p>
<p>Later, the suspected robbers were driving southbound on the Taconic and tried to get off the parkway at Pudding Street in Carmel, according to State Police. That's when they crashed.</p>
<p>One of the three suspects was taken into custody at the crash scene while the other two ran into the woods, officials said. No other details were immediately available, including whether they were being chased before the crash. </p>
<div class="mobile-app-promotion">
<div class="wp-block-nbc-localized-block">
<blockquote class="featured-text">
<strong><em>Stay informed about local news and weather. Get the NBC 4 New York app for </em></strong><a href="https://apps.apple.com/us/app/nbc-4-new-york/id331605976">iOS</a> <strong><em>or</em></strong> <a href="https://play.google.com/store/apps/details?id=com.nbcuni.nbcots.nbcnewyork.android&hl=en_US&gl=US">Android</a> <strong><em>and pick your alerts.</em></strong></blockquote>
</div>
</div>
<p>State Police were expected to provide additional information later Tuesday. </p>
</div>
<div class="article-copyright">Copyright NBC New York</div>
<div class="article-footer">
<div class="article-tags">
<h4 class="article-tags__heading">This article tagged under:</h4>
<a class="article-tags__tag" href="https://www.nbcnewyork.com/tag/new-york-state-police/">New York State Police</a><a class="article-tags__tag" href="https://www.nbcnewyork.com/tag/dutchess-county/">Dutchess County</a><a class="article-tags__tag" href="https://www.nbcnewyork.com/tag/walgreens/">WALGREENS</a><a class="article-tags__tag" href="https://www.nbcnewyork.com/tag/putnam-county/">Putnam County</a><a class="article-tags__tag" href="https://www.nbcnewyork.com/tag/poughkeepsie/">Poughkeepsie</a></div>
<div
class="share-buttons"
data-component="sharingBar"
>
<a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwww.nbcnewyork.com%2Fnews%2Flocal%2Fwalgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp%2F3902427%2F&Walgreens%20Robbers%20Crash%20on%20Taconic%20at%20100%20MPH%2C%202%20Run%20Into%20Woods%3A%20NYSP?_osource=db_npd_nbc_wnbc_fb_shr" data-service="facebook" target="_blank">
<span class="icon icon-facebook-f"></span>
</a>
<a href="https://twitter.com/intent/tweet?text=Walgreens%20Robbers%20Crash%20on%20Taconic%20at%20100%20MPH%2C%202%20Run%20Into%20Woods%3A%20NYSP&url=https%3A%2F%2Fwww.nbcnewyork.com%2Fnews%2Flocal%2Fwalgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp%2F3902427%2F?_osource=db_npd_nbc_wnbc_twt_shr" data-service="twitter" target="_blank">
<span class="icon icon-twitter"></span>
</a>
<a href="mailto:?body=Walgreens%20Robbers%20Crash%20on%20Taconic%20at%20100%20MPH%2C%202%20Run%20Into%20Woods%3A%20NYSP%0D%0A%0D%0Ahttps%3A%2F%2Fwww.nbcnewyork.com%2Fnews%2Flocal%2Fwalgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp%2F3902427%2F?_osource=db_npd_nbc_wnbc_eml_shr" data-service="email" target="_blank">
<span class="icon icon-envelope"></span>
</a>
<a href="#" data-service="comments">
<span class="icon icon-comment-alt"></span>
</a>
</div>
</div>
<div id="div-gpt-ad-mobilemultibox_belowarticle" class="widget_ad_layers_ad_widget gpt-mobilemultibox" data-beforetext="" data-fallbacktext=""></div><script style="text/javascript">
if (typeof adInstance === 'undefined') {
adInstance = new AdLayersAPI();
}
adInstance.lazyLoadAd({ slotName: 'mobilemultibox_belowarticle', format: 'mobilemultibox', targeting: {"slot":"mobilemultibox","pos":"mobilemultibox"} });
</script> <div>
<div id="taboola-below-article-thumbnails"></div>
<script type="text/javascript">
if (document.cookie.indexOf("scroll0=") < 0) {
window._taboola = window._taboola || [];
_taboola.push({
article: 'auto',
url: ''
});
_taboola.push({
mode: 'thumbnails-a',
container: 'taboola-below-article-thumbnails',
placement: 'Below Article Thumbnails',
target_type: 'mix'
});
_taboola.push({
flush: true
});
};
</script>
<div id="mobile-native-below-article"></div>
<script type="text/javascript">
var isMobile = window.matchMedia('screen and (max-width: 767px)').matches;
/** scroll cookie for scroll.com **/
if (document.cookie.indexOf("scroll0=") < 0 && isMobile) {
window._taboola = window._taboola || [];
_taboola.push({
mode: 'thumbs-feed-03-mobile',
container: 'mobile-native-below-article',
placement: 'Below Article Thumbnails - Fallback',
target_type: 'text'
});
};
</script>
</div><!-- .taboola-container -->
</div>
</div>
<div class="section-content--secondary">
<aside class="sidebar article-sidebar">
<section id="nbc_most_popular-2" class="widget widget_nbc_most_popular"> <div class="most-popular__container">
<div class="most-popular__header">
<h3 class="widget-title">Trending Stories</h3>
<div class="sponsored-ad-container">
<div id="div-gpt-ad-logo_trending" class="sponsored-ad-unit gpt-logo" data-beforetext="Presented By" data-fallbacktext=""></div><script style="text/javascript">
if (typeof adInstance === 'undefined') {
adInstance = new AdLayersAPI();
}
adInstance.lazyLoadAd({ slotName: 'logo_trending', format: 'logo', targeting: {"slot":"logo","pos":"logo"} });
</script> </div>
</div>
<ul class="most-popular__posts-list">
<li class="most-popular__post">
<div class="post__image__wrap">
<a
data-lpos="most-popular"
data-lid="Walgreens Robbers Crash on Taconic at 100 MPH, 2 Run Into Woods: NYSP"
href="https://www.nbcnewyork.com/news/local/walgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp/3902427/"
>
<img
class="post__image"
src="https://media.nbcnewyork.com/2019/09/nysp-generic.jpg?quality=85&strip=all&resize=100%2C56"
alt="Walgreens Robbers Crash on Taconic at 100 MPH, 2 Run Into Woods: NYSP"
loading="lazy"
/>
</a>
</div>
<div class="post__content">
<h4 class="post__category">
<a
class="post__category-link"
data-lpos="most-popular"
data-lid="New York State Police"
href="https://www.nbcnewyork.com/tag/new-york-state-police/"
>
New York State Police </a>
</h4>
<div class="post__title">
<a
class="post__category-link"
data-lpos="most-popular"
data-lid="Walgreens Robbers Crash on Taconic at 100 MPH, 2 Run Into Woods: NYSP"
href="https://www.nbcnewyork.com/news/local/walgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp/3902427/"
>
Walgreens Robbers Crash on Taconic at 100 MPH, 2 Run Into Woods: NYSP </a>
</div>
</div>
</li>
<li class="most-popular__post">
<div class="post__image__wrap">
<a
data-lpos="most-popular"
data-lid="Heckler Throws Beer at Comedian on Stage in NJ — And Her Epic Response Goes Viral"
href="https://www.nbcnewyork.com/news/local/heckler-throws-beer-at-comedian-on-stage-in-nj-and-her-response-has-gone-viral/3901557/"
>
<img
class="post__image"
src="https://media.nbcnewyork.com/2022/10/Heckler-Throws-Beer-at-Comedian-On-Stage-at-NJ-Comedy-Club.jpg?quality=85&strip=all&resize=100%2C56"
alt="Heckler Throws Beer at Comedian on Stage in NJ — And Her Epic Response Goes Viral"
loading="lazy"
/>
</a>
</div>
<div class="post__content">
<h4 class="post__category">
<a
class="post__category-link"
data-lpos="most-popular"
data-lid="Ariel Elias"
href="https://www.nbcnewyork.com/tag/ariel-elias/"
>
Ariel Elias </a>
</h4>
<div class="post__title">
<a
class="post__category-link"
data-lpos="most-popular"
data-lid="Heckler Throws Beer at Comedian on Stage in NJ — And Her Epic Response Goes Viral"
href="https://www.nbcnewyork.com/news/local/heckler-throws-beer-at-comedian-on-stage-in-nj-and-her-response-has-gone-viral/3901557/"
>
Heckler Throws Beer at Comedian on Stage in NJ — And Her Epic Response Goes Viral </a>
</div>
</div>
</li>
<li class="most-popular__post">
<div class="post__image__wrap">
<a
data-lpos="most-popular"
data-lid="Long Island Woman Faked $40M Worth of Gucci, Chanel Labels in National Scheme: Cops"
href="https://www.nbcnewyork.com/news/local/long-island-woman-faked-40-million-worth-of-gucci-chanel-labels-in-national-scheme-cops/3902047/"
>
<img
class="post__image"
src="https://media.nbcnewyork.com/2022/10/Lindsay-Castelli.png?resize=100%2C56&quality=85&strip=all"
alt="Long Island Woman Faked $40M Worth of Gucci, Chanel Labels in National Scheme: Cops"
loading="lazy"
/>
</a>
</div>
<div class="post__content">
<h4 class="post__category">
<a
class="post__category-link"
data-lpos="most-popular"
data-lid="Long Island"
href="https://www.nbcnewyork.com/tag/long-island/"
>
Long Island </a>
</h4>
<div class="post__title">
<a
class="post__category-link"
data-lpos="most-popular"
data-lid="Long Island Woman Faked $40M Worth of Gucci, Chanel Labels in National Scheme: Cops"
href="https://www.nbcnewyork.com/news/local/long-island-woman-faked-40-million-worth-of-gucci-chanel-labels-in-national-scheme-cops/3902047/"
>
Long Island Woman Faked $40M Worth of Gucci, Chanel Labels in National Scheme: Cops </a>
</div>
</div>
</li>
<li class="most-popular__post">
<div class="post__image__wrap">
<a
data-lpos="most-popular"
data-lid="17-Year-Old Queens Girl Shot Dead in Vacant Brooklyn Apartment"
href="https://www.nbcnewyork.com/news/local/17-year-old-queens-girl-shot-dead-in-vacant-brooklyn-apartment/3901840/"
>
<img
class="post__image"
src="https://media.nbcnewyork.com/2022/10/brooklyn-shooting-spec.png?resize=100%2C56&quality=85&strip=all"
alt="17-Year-Old Queens Girl Shot Dead in Vacant Brooklyn Apartment"
loading="lazy"
/>
</a>
</div>
<div class="post__content">
<h4 class="post__category">
<a
class="post__category-link"
data-lpos="most-popular"
data-lid="Brooklyn"
href="https://www.nbcnewyork.com/tag/brooklyn/"
>
Brooklyn </a>
</h4>
<div class="post__title">
<a
class="post__category-link"
data-lpos="most-popular"
data-lid="17-Year-Old Queens Girl Shot Dead in Vacant Brooklyn Apartment"
href="https://www.nbcnewyork.com/news/local/17-year-old-queens-girl-shot-dead-in-vacant-brooklyn-apartment/3901840/"
>
17-Year-Old Queens Girl Shot Dead in Vacant Brooklyn Apartment </a>
</div>
</div>
</li>
<li class="most-popular__post">
<div class="post__image__wrap">
<a
data-lpos="most-popular"
data-lid="Crowd Chases Mercedes Benz Driver to NYPD Precinct After Pedestrian Hit"
href="https://www.nbcnewyork.com/news/local/crowd-sends-driver-running-to-bronx-precinct-after-slamming-pedestrian/3900693/"
>
<img
class="post__image"
src="https://media.nbcnewyork.com/2021/03/nypd-2.jpg?quality=85&strip=all&resize=100%2C56"
alt="Crowd Chases Mercedes Benz Driver to NYPD Precinct After Pedestrian Hit"
loading="lazy"
/>
</a>
</div>
<div class="post__content">
<h4 class="post__category">
<a
class="post__category-link"
data-lpos="most-popular"
data-lid="Bronx"
href="https://www.nbcnewyork.com/tag/bronx/"
>
Bronx </a>
</h4>
<div class="post__title">
<a
class="post__category-link"
data-lpos="most-popular"
data-lid="Crowd Chases Mercedes Benz Driver to NYPD Precinct After Pedestrian Hit"
href="https://www.nbcnewyork.com/news/local/crowd-sends-driver-running-to-bronx-precinct-after-slamming-pedestrian/3900693/"
>
Crowd Chases Mercedes Benz Driver to NYPD Precinct After Pedestrian Hit </a>
</div>
</div>
</li>
<li class="most-popular__post taboola__post">
<div id="taboola-right-rail-thumbnails---fallback"></div>
</li>
<script>
try {
window._taboola = window._taboola || [];
_taboola.push({
listenTo: 'nocontent',
placement: 'Right Rail Thumbnails - Fallback',
handle: function() {
document.querySelector('.most-popular__post:nth-of-type(5)').remove();
}
});
_taboola.push({
mode: 'thumbnails-a-right-rail',
container: 'taboola-right-rail-thumbnails---fallback',
placement: 'Right Rail Thumbnails - Fallback',
target_type: 'mix',
flush: true,
});
} catch (e) {
console.error(e);
}
</script>
</ul>
</div>
</section><section id="ad_layers_ad_widget-2" class="widget widget_ad_layers_ad_widget"><div id="div-gpt-ad-topbox_579" class=" gpt-topbox" data-beforetext="" data-fallbacktext=""></div><script style="text/javascript">
if (typeof adInstance === 'undefined') {
adInstance = new AdLayersAPI();
}
adInstance.lazyLoadAd({ slotName: 'topbox_579', format: 'topbox', targeting: {"slot":"topbox","pos":"topbox"} });
</script></section><section id="nbc_weather_widget-3" class="widget widget_nbc_weather_widget"> <div class="nbc-weather-widget">
<div class="nbc_owned_television_stations_weather_iframe">
<h3>Weather Forecast</h3><div data-react-component="IframeLocation" data-market-name="New York, NY"></div>
<a class="weather-module__conditions" href="https://www.nbcnewyork.com/weather/">
<div data-react-component="IframeConditions" data-location="11371"></div>
</a>
<div class="widget_sponsor">
<div id="div-gpt-ad-logo_weather_618" class="sponsored-ad-unit gpt-logo" data-beforetext="Presented By" data-fallbacktext=""></div><script style="text/javascript">
if (typeof adInstance === 'undefined') {
adInstance = new AdLayersAPI();
}
adInstance.lazyLoadAd({ slotName: 'logo_weather_618', format: 'logo', targeting: {"module":"weather","slot":"logo","pos":"logo"} });
</script> </div>
</div>
</div>
</section><section id="nbc_newsletter-2" class="widget widget_nbc_newsletter"><div class="newsletter-widget"
data-react-component="NewsletterWidget"
data-title="Subscribe to our Newsletters"
data-description="Sign up to receive breaking news alerts in your inbox."
data-newsletter-id="WNBC_BreakingNews"
data-footer-signup=""
data-privacy-link="http://www.nbcuniversal.com/privacy/"
data-newsletter-link=""
data-nonce="68f9039ceb"
data-show-terms-box=""
data-use-newsletter-ids=""
data-newsletter-ids="[]"
></div></section><section id="ad_layers_ad_widget-11" class="widget widget_ad_layers_ad_widget"><div id="div-gpt-ad-mobilemultibox_846" class=" gpt-mobilemultibox" data-beforetext="" data-fallbacktext=""></div><script style="text/javascript">
if (typeof adInstance === 'undefined') {
adInstance = new AdLayersAPI();
}
adInstance.lazyLoadAd({ slotName: 'mobilemultibox_846', format: 'mobilemultibox', targeting: {"slot":"mobilemultibox","pos":"mobilemultibox"} });
</script></section><section id="ad_layers_ad_widget-7" class="widget widget_ad_layers_ad_widget"><div id="div-gpt-ad-bottombox_317" class=" gpt-bottombox" data-beforetext="" data-fallbacktext=""></div><script style="text/javascript">
if (typeof adInstance === 'undefined') {
adInstance = new AdLayersAPI();
}
adInstance.lazyLoadAd({ slotName: 'bottombox_317', format: 'bottombox', targeting: {"slot":"bottombox","pos":"bottombox"} });
</script></section><section id="ad_layers_ad_widget-17" class="widget widget_ad_layers_ad_widget"><div id="div-gpt-ad-interstitial_794" class=" gpt-interstitial" data-beforetext="" data-fallbacktext=""></div><script style="text/javascript">
if (typeof adInstance === 'undefined') {
adInstance = new AdLayersAPI();
}
adInstance.lazyLoadAd({ slotName: 'interstitial_794', format: 'interstitial', targeting: {"slot":"interstitial","pos":"interstitial"} });
</script></section><section id="ad_layers_ad_widget-18" class="widget widget_ad_layers_ad_widget"><div id="div-gpt-ad-mobilebackstage_229" class=" gpt-mobilebackstage" data-beforetext="" data-fallbacktext=""></div><script style="text/javascript">
if (typeof adInstance === 'undefined') {
adInstance = new AdLayersAPI();
}
adInstance.lazyLoadAd({ slotName: 'mobilebackstage_229', format: 'mobilebackstage', targeting: {"slot":"mobilebackstage","pos":"mobilebackstage"} });
</script></section> </aside>
</div>
</div>
</article>
</main>
</div>
</div><!-- #content -->
<footer role="contentinfo" class="site-footer">
<div class="site-footer__wrapper">
<div class="site-footer__identity">
<a href="https://www.nbcnewyork.com/" class="site-footer__logo">
<img
src="https://media.nbcnewyork.com/2019/09/NY_On_Light@3x-3.png?fit=552%2C120&quality=85&strip=all"
alt="NBC New York"
loading="lazy"
/>
</a>
<ul class="site-footer__social-list">
<li class="site-footer__social-list-item facebook">
<a href="http://www.facebook.com/NBCNewYork" target="_blank" rel="noopener noreferrer">
<span class="screen-reader-text">Facebook</span>
<span class="icon icon-facebook-f"></span>
</a>
</li>
<li class="site-footer__social-list-item twitter">
<a href="https://twitter.com/nbcnewyork" target="_blank" rel="noopener noreferrer">
<span class="screen-reader-text">Twitter</span>
<span class="icon icon-twitter"></span>
</a>
</li>
<li class="site-footer__social-list-item instagram">
<a href="https://instagram.com/nbcnewyork" target="_blank" rel="noopener noreferrer">
<span class="screen-reader-text">Instagram</span>
<span class="icon icon-instagram"></span>
</a>
</li>
</ul>
</div>
<ul id="menu-footer" class="footer-menu site-footer__menu-primary"><li id="menu-item-2217121" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2217121"><a href="/investigations/submit-tip/">Submit Tri-State News Tips</a></li>
<li id="menu-item-2181328" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2181328"><a href="https://www.nbcnewyork.com/contact-us/">Contact WNBC</a></li>
<li id="menu-item-3090778" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3090778"><a href="https://www.nbc.com/contact-us">Connect With NBC Network</a></li>
<li id="menu-item-3090777" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3090777"><a href="https://www.universalclips.com/contact-us">Archives / Licensing</a></li>
<li id="menu-item-2212782" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2212782"><a href="https://www.nbcnewyork.com/newsletters/">Newsletters</a></li>
<li id="menu-item-2238862" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2238862"><a href="https://www.nbcnewyork.com/on-air/community-top-stories/">Community</a></li>
</ul><ul id="menu-secondary-footer" class="footer-menu-secondary site-footer__menu-secondary"><li id="menu-item-2181031" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2181031"><a href="https://publicfiles.fcc.gov/tv-profile/WNBC">WNBC Public Inspection File</a></li>
<li id="menu-item-3797014" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3797014"><a href="https://www.nbcnewyork.com/wnbc-accessibility/">WNBC Accessibility</a></li>
<li id="menu-item-2181025" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2181025"><a href="https://www.nbcnewyork.com/wnbc-employment-information/">WNBC Employment Information</a></li>
<li id="menu-item-2181024" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2181024"><a href="https://www.nbcnewyork.com/terms-of-service/">Terms of Service</a></li>
<li id="menu-item-2694942" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2694942"><a href="https://www.nbcnewyork.com/fcc-applications/">FCC Applications</a></li>
<li id="menu-item-2181030" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2181030"><a target="_blank" rel="noopener" href="https://www.nbcuniversal.com/privacy/?brandA=Owned_Stations&intake=NBC_New_York/">Privacy Policy</a></li>
<li id="menu-item-2206662" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2206662"><a id="ot-sdk-btn" class="ot-sdk-show-settings">Cookie Settings</a></li>
<li id="menu-item-2181026" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2181026"><a href="https://www.nbcnewyork.com/send-feedback/">Send Feedback to WNBC</a></li>
<li id="menu-item-2525278" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2525278"><a href="https://www.nbcuniversal.com/privacy/california-consumer-privacy-act?intake=NBC_New_York">CA Notice</a></li>
<li id="menu-item-2577259" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2577259"><a target="_blank" rel="noopener" href="https://www.nbcuniversal.com/privacy/cookies#accordionheader2">Ad Choices</a></li>
<li id="menu-item-3646234" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3646234"><a href="https://together.nbcuni.com/advertise/?utm_source=nbcnewyork&utm_medium=referral&utm_campaign=property_ad_pages">Advertise with us</a></li>
</ul>
<div class="site-footer__corporate">
<span class="site-footer__corporate-copyright">
Copyright © 2022 NBCUniversal Media, LLC. All rights reserved </span>
</div>
</div><!-- wrapper -->
</footer><!-- #colophon -->
</div><!-- #page -->
<script
src="https://cdn.cookielaw.org/opt-out/otCCPAiab.js"
id="privacyCookie"
type="text/javascript"
charset="UTF-8"
ccpa-opt-out-ids="dummy"
ccpa-opt-out-geo="US"
ccpa-opt-out-lspa="false"
>
</script>
<script
src="https://cdn.cookielaw.org/consent/09f049f2-325c-48f2-b6ba-3aab6c0a2cc5/otSDKStub.js"
data-document-language="true"
type="text/javascript"
charset="UTF-8"
data-domain-script="09f049f2-325c-48f2-b6ba-3aab6c0a2cc5"
integrity="sha384-ZiegGStHtw2zXX+Hd9IX8tTxIDTMb8FwlLNdjP0V2aK9ddQu9SYkgu3Q0U+t6ZgN"
crossorigin="anonymous"
>
</script>
<script type="text/javascript">
(function() {
var _sf_async_config = window._sf_async_config = window._sf_async_config || {};
_sf_async_config.domain = "nbcnewyork.com";
_sf_async_config.uid = 15527;
_sf_async_config.sections = "news, local";
_sf_async_config.authors = "";
_sf_async_config.title = "Walgreens Robbers Crash on Taconic at 100 MPH, 2 Run Into Woods: NYSP";
_sf_async_config.path = "nbcnewyork.com\/news\/local\/walgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp\/3902427\/";
var e = document.createElement('script');
var n = document.getElementsByTagName('script')[0];
e.type = 'text/javascript';
e.async = true;
e.src = '//static.chartbeat.com/js/chartbeat.js';
n.parentNode.insertBefore(e, n);
})();
</script>
<!-- Begin comScore Tag -->
<script>
(function() {
var usPrivacyCookie = new RegExp("usprivacy=([^;]+)").exec(document.cookie),
usPrivacy = null !== usPrivacyCookie ? unescape(usPrivacyCookie[1]) : undefined,
csUCFR = '1YYN' === usPrivacy ? '0': '',
s = document.createElement("script"),
el = document.getElementsByTagName("script")[0];
window._comscore = window._comscore || [];
window._comscore.push({
c1: "2",
c2: "6035083",
cs_ucfr: csUCFR,
});
s.async = true;
s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
el.parentNode.insertBefore(s, el);
})();
</script>
<noscript>
<img src="https://sb.scorecardresearch.com/p?c1=2&c2=6035083&cv=2.0&cj=1" />
</noscript>
<!-- End comScore Tag -->
<script type="text/javascript">
(function() {
var loaderUrl, scriptType;
window._taboola = window._taboola || [];
window._newsroom = window._newsroom || [];
const taboola_config = {};
taboola_config[decodeURIComponent( 'article' )] = decodeURIComponent( '3902427' );
taboola_config['url'] = document.URL;
taboola_config['tracking'] = '_osource=taboola-recirc';
_taboola.push(taboola_config);
scriptType = 'tb_loader_script';
loaderUrl = 'https://cdn.taboola.com/libtrc/nbcots-network/loader.js';
!function (e, f, u, i) {
e.async = 1;
e.src = u;
e.id = i;
f.parentNode.insertBefore(e, f);
}(document.createElement('script'),
document.getElementsByTagName('script')[0],
loaderUrl,
scriptType);
!function (e, f, u) {
e.async = 1;
e.src = u;
f.parentNode.insertBefore(e, f);
}(document.createElement('script'),
document.getElementsByTagName('script')[0],
"\/\/c2.taboola.com\/nr\/nbcots-wnbc\/newsroom.js");
}());
</script>
<div class="facebook-comments">
<button class="facebook-comments__close"><span class="icon icon-chevron-left"></span> Back to Article</button>
<div class="fb-comments" data-href="https://www.nbcnewyork.com/news/local/walgreens-robbers-crash-on-taconic-at-100-mph-2-run-into-woods-nysp/3902427/" data-width="100%"></div>
</div>
<div class="flyout-nav" data-component="flyoutNav">
<button class="flyout-nav__close"><span class="icon icon-times"></span> <span class="screen-reader-text">Close Menu</span></button>
<div class="flyout-nav__logo">
<a href="https://www.nbcnewyork.com/">
<img
src="https://media.nbcnewyork.com/2019/09/NY_On_Light@3x-3.png?fit=552%2C120&quality=85&strip=all"
alt="NBC New York"
/>
</a>
</div>
<div class="flyout-nav__search">
<form class="search-form" role="search" method="get" action="https://www.nbcnewyork.com/" >
<label>
<span class="screen-reader-text">Search for:</span>
<input class="search-form-input" type="search" value="" name="s" placeholder="Search" />
</label>
<input type="submit" class="search-submit" value="Search" />
</form>
</div>
<div class="flyout-nav__menu">
<div class="flyout-nav__menu--upper">
<a data-lid="Coronavirus Pandemic" data-lpos="hamburger-menu" class="flyout-nav__menu-item parent-item" href="/news/coronavirus/">
Coronavirus Pandemic </a>
<a data-lid="Local" data-lpos="hamburger-menu" class="flyout-nav__menu-item parent-item" href="/news/local/">
Local </a>
<a data-lid="Weather" data-lpos="hamburger-menu" class="flyout-nav__menu-item parent-item" href="/weather/">
Weather </a>
<a data-lid="School Closings" data-lpos="hamburger-menu" class="flyout-nav__menu-item child-item" href="/weather/school-closings/">
School Closings </a>
<a data-lid="Weather Alerts" data-lpos="hamburger-menu" class="flyout-nav__menu-item child-item" href="/weather/severe-weather-alerts/">
Weather Alerts </a>
<a data-lid="TV Listings" data-lpos="hamburger-menu" class="flyout-nav__menu-item parent-item" href="https://www.nbcnewyork.com/live/">
TV Listings </a>
<a data-lid="Community" data-lpos="hamburger-menu" class="flyout-nav__menu-item parent-item" href="https://www.nbcnewyork.com/on-air/community-top-stories/">
Community </a>
<a data-lid="Investigations" data-lpos="hamburger-menu" class="flyout-nav__menu-item parent-item" href="/investigations/">
Investigations </a>
<a data-lid="Better Get Baquero" data-lpos="hamburger-menu" class="flyout-nav__menu-item parent-item" href="/better-get-baquero/">
Better Get Baquero </a>
<a data-lid="Submit a tip" data-lpos="hamburger-menu" class="flyout-nav__menu-item child-item" href="/consumer-form/">
Submit a tip </a>
<a data-lid="Video" data-lpos="hamburger-menu" class="flyout-nav__menu-item parent-item" href="/videos/">
Video </a>
<a data-lid="LX News" data-lpos="hamburger-menu" class="flyout-nav__menu-item parent-item" href="/lxnews/">
LX News </a>
<a data-lid="CNBC Money Report" data-lpos="hamburger-menu" class="flyout-nav__menu-item parent-item" href="https://www.nbcnewyork.com/news/business/money-report/">
CNBC Money Report </a>
<a data-lid="Entertainment" data-lpos="hamburger-menu" class="flyout-nav__menu-item parent-item" href="/entertainment/">
Entertainment </a>
<a data-lid="New York Live" data-lpos="hamburger-menu" class="flyout-nav__menu-item child-item" href="https://www.nbcnewyork.com/entertainment/the-scene/new-york-live/">
New York Live </a>
<a data-lid="1st Look" data-lpos="hamburger-menu" class="flyout-nav__menu-item child-item" href="https://www.nbcnewyork.com/entertainment/the-scene/1st-look/">
1st Look </a>
<a data-lid="George to the Rescue" data-lpos="hamburger-menu" class="flyout-nav__menu-item child-item" href="https://www.nbcnewyork.com/entertainment/the-scene/george-to-the-rescue/">
George to the Rescue </a>
<a data-lid="Open House" data-lpos="hamburger-menu" class="flyout-nav__menu-item child-item" href="https://www.nbcnewyork.com/entertainment/the-scene/open-house/">
Open House </a>
<a data-lid="Talk Stoop" data-lpos="hamburger-menu" class="flyout-nav__menu-item child-item" href="https://www.nbcnewyork.com/entertainment/talk-stoop/">
Talk Stoop </a>
<a data-lid="Traffic" data-lpos="hamburger-menu" class="flyout-nav__menu-item parent-item" href="/traffic/">
Traffic </a>
</div>
<div class="flyout-nav__menu--lower">
<a data-lid="Submit Tips to Better Get Baquero" data-lpos="hamburger-menu" class="flyout-nav__menu-item child-item" href="/consumer-form/">
Submit Tips to Better Get Baquero </a>
<a data-lid="Submit Photos and Video" data-lpos="hamburger-menu" class="flyout-nav__menu-item child-item" href="https://www.nbcnewyork.com/ugc/">
Submit Photos and Video </a>
<a data-lid="Contests" data-lpos="hamburger-menu" class="flyout-nav__menu-item child-item" href="/on-air/contests/">
Contests </a>
<a data-lid="Newsletters" data-lpos="hamburger-menu" class="flyout-nav__menu-item child-item" href="https://www.nbcnewyork.com/newsletters/">
Newsletters </a>
<a data-lid="Our Apps" data-lpos="hamburger-menu" class="flyout-nav__menu-item child-item" href="/products/">
Our Apps </a>
<a data-lid="Cozi TV" data-lpos="hamburger-menu" class="flyout-nav__menu-item child-item" href="https://cozitv.com/">
Cozi TV </a>
</div>
</div>
<div class="flyout-nav__social">
<h4 class="flyout-nav__social-heading">Follow Us</h4>
<ul class="flyout-nav__social-list">
<li class="site-footer__social-list-item facebook" rel="noopener noreferrer">
<a href="http://www.facebook.com/NBCNewYork" target="_blank">