-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
3411 lines (3304 loc) · 363 KB
/
index.html
File metadata and controls
3411 lines (3304 loc) · 363 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0023)http://www.foxnews.com/ -->
<html lang="en" class=" cookies geolocation history hashchange no-touchevents fullscreen cssanimations csstransitions">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="./index_files/6d10dcb7c1"></script>
<script type="text/javascript" src="./index_files/get"></script>
<script type="text/javascript" src="./index_files/optout_check"></script>
<script src="./index_files/nr-1044.min.js"></script>
<script src="https://securepubads.g.doubleclick.net/gampad/ads?gdfp_req=1&correlator=1214621328280756&output=json_html&callback=googletag.impl.pubads.callbackProxy1&impl=fif&eid=21061149&sc=0&sfv=1-0-16&iu=%2F4145%2Ffnc%2Froot&sz=1x1&ists=1&scp=ctype%3Droot%26ptype%3Dchannel%26stype%3Droot%26url%3Dwww.%26ref%3D%26adv%3D%26pos%3Dinterstitial%26c%3D%26ksg%3D%26kuid%3Dspo2eoqei%26admants%3D%26adtype%3D&cookie=ID%3D83573c43cdcecc95%3AT%3D1519876853%3AS%3DALNI_Mbyh5McitQXz7rDFM4H0ThW_6zx3g&abxe=1&lmt=1519876253&dt=1519877265359&frm=20&biw=1436&bih=803&oid=3&adx=0&ady=0&adk=948007627&gut=v2&ifi=1&u_tz=-300&u_his=4&u_h=900&u_w=1440&u_ah=877&u_aw=1436&u_cd=24&u_nplug=4&u_nmime=5&u_sd=2&flash=0&url=http%3A%2F%2Fwww.foxnews.com%2F&ref=https%3A%2F%2Fduckduckgo.com%2F&dssz=43&icsg=137573171200&std=0&vrg=181&vis=1&scr_x=0&scr_y=0&ga_vid=1820522609.1519877265&ga_sid=1519877265&ga_hid=1512207732"></script>
<script src="https://securepubads.g.doubleclick.net/gpt/pubads_impl_rendering_181.js"></script>
<script async="" src="./index_files/controltag.js.7d69862f1f631c0f0af6a443dbd996ee"></script>
<script type="text/javascript" async="" src="https://z.moatads.com/foxnews944SiAL46/moatcontent.js#l1=foxnews.com&l2=Fox%20News&l3=__page__&l4=-&zctContent=root&zmoatab_cm=0&t=1519877265196&de=441548040013&zMoatAB_SNPT=true&vc=2"></script>
<script type="text/javascript" async="" src="./index_files/r2ek6uly2.js"></script>
<script type="text/javascript" async="" src="./index_files/geo2.js"></script>
<script type="text/javascript" async="" src="./index_files/analytics.min.js"></script>
<script type="text/javascript" src="./index_files/get(1)" charset="UTF-8" async=""></script>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<meta name="pagetype" content="homepage">
<meta name="robots" content="noarchive,noodp">
<title>Fox News - Breaking News Updates | Latest News Headlines | Photos & News Videos</title>
<meta name="description" content="Breaking News, Latest News and Current News from FOXNews.com. Breaking news and video. Latest Current News: U.S., World, Entertainment, Health, Business, Technology, Politics, Sports.">
<meta name="keywords" content="news, breaking news, latest news, current news, world news, national news">
<link rel="shortcut icon" href="http://global.fncstatic.com/static/orion/styles/img/fox-news/favicons/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="57x57" href="http://global.fncstatic.com/static/orion/styles/img/fox-news/favicons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="http://global.fncstatic.com/static/orion/styles/img/fox-news/favicons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="http://global.fncstatic.com/static/orion/styles/img/fox-news/favicons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="http://global.fncstatic.com/static/orion/styles/img/fox-news/favicons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="http://global.fncstatic.com/static/orion/styles/img/fox-news/favicons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="http://global.fncstatic.com/static/orion/styles/img/fox-news/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="http://global.fncstatic.com/static/orion/styles/img/fox-news/favicons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="http://global.fncstatic.com/static/orion/styles/img/fox-news/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="http://global.fncstatic.com/static/orion/styles/img/fox-news/favicons/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="http://global.fncstatic.com/static/orion/styles/img/fox-news/favicons/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="http://global.fncstatic.com/static/orion/styles/img/fox-news/favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="http://global.fncstatic.com/static/orion/styles/img/fox-news/favicons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="http://global.fncstatic.com/static/orion/styles/img/fox-news/favicons/android-chrome-192x192.png" sizes="192x192">
<link rel="mask-icon" href="http://global.fncstatic.com/static/orion/styles/img/fox-news/favicons/safari-pinned-tab.svg" color="#003366">
<meta name="msapplication-square70x70logo" content="//global.fncstatic.com/static/orion/styles/img/fox-news/favicons/mstile-70x70.png">
<meta name="msapplication-square150x150logo" content="//global.fncstatic.com/static/orion/styles/img/fox-news/favicons/mstile-150x150.png">
<meta name="msapplication-square310x310logo" content="//global.fncstatic.com/static/orion/styles/img/fox-news/favicons/mstile-310x310.png">
<meta name="msapplication-wide310x150logo" content="//global.fncstatic.com/static/orion/styles/img/fox-news/favicons/mstile-310x150.png">
<meta name="msapplication-TileColor" content="#1b4e81">
<meta name="theme-color" content="#1b4e81">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no">
<meta name="apple-itunes-app" content="app-id=367623543">
<link rel="schema.dc" href="http://purl.org/dc/elements/1.1/">
<link rel="schema.dcterms" href="http://purl.org/dc/terms/">
<link rel="schema.prism" href="http://prismstandard.org/namespaces/basic/2.1/">
<link rel="schema.iptc" href="http://iptc.org/std/nar/2006-10-01/">
<meta name="dc.title" lang="en" content="Fox News - Breaking News Updates | Latest News Headlines | Photos & News Videos">
<meta name="dc.description" content="Breaking News, Latest News and Current News from FOXNews.com. Breaking news and video. Latest Current News: U.S., World, Entertainment, Health, Business, Technology, Politics, Sports.">
<meta name="dc.language" scheme="dcterms.RFC4646" content="en-US">
<meta name="dc.publisher" content="FOX News">
<meta name="dc.date" content="2018-03-28 10:50:49 PM">
<meta name="dc.format" scheme="dcterms.IMT" content="text/html">
<meta name="dc.type" scheme="dcterms.DCMIType" content="Collection">
<meta name="dc.subject" content="news, breaking news, latest news, current news, world news, national news">
<meta name="dcterms.abstract" content="Breaking News, Latest News and Current News from FOXNews.com. Breaking news and video. Latest Current News: U.S., World, Entertainment, Health, Business, Technology, Politics, Sports.">
<meta name="dcterms.created" scheme="dcterms.ISO8601" content="2018-03-28 10:50:49 PM">
<meta name="dcterms.modified" scheme="dcterms.ISO8601" content="2018-03-28 10:50:49 PM">
<meta name="prism.genre" content="homePage">
<meta name="prism.aggregationType" content="root">
<meta name="prism.channel" content="fnc">
<meta name="prism.section" content="root">
<meta name="prism.subsection2" content="">
<meta name="prism.subsection3" content="">
<meta name="prism.subsection4" content="">
<meta name="hp_version" content="aurora">
<link rel="canonical" href="http://www.foxnews.com/">
<meta property="og:title" content="Fox News">
<meta property="og:description" content="Most Watched. Most Trusted.">
<meta property="og:type" content="website">
<meta property="og:image" content="http://global.fncstatic.com/static/orion/styles/img/fox-news/og/og-fox-news.png">
<meta property="og:url" content="http://www.foxnews.com">
<meta property="og:site_name" content="Fox News">
<meta property="twitter:account_id" content="1367531">
<meta property="vr:canonical" content="http://www.foxnews.com/home.html">
<meta property="fb:pages" content="15704546335">
<meta name="twitter:card" content="app">
<meta name="twitter:app:id:iphone" content="367623543">
<meta name="twitter:app:url:iphone" content="//itunes.apple.com/us/app/fox-news/id367623543?mt=8">
<meta name="twitter:app:id:ipad" content="436484582">
<meta name="twitter:app:url:ipad" content="//itunes.apple.com/us/app/fox-news-for-ipad/id436484582?mt=8">
<meta name="twitter:app:id:googleplay" content="com.foxnews.android">
<meta name="twitter:app:url:googleplay" content="//play.google.com/store/apps/details?id=com.foxnews.android">
<meta http-equiv="x-dns-prefetch-control" content="on">
<link rel="dns-prefetch" href="http://a57.foxnews.com/">
<link rel="dns-prefetch" href="http://global.fncstatic.com/">
<link rel="dns-prefetch" href="http://images.outbrain.com/">
<link rel="dns-prefetch" href="http://widgets.outbrain.com/">
<link rel="dns-prefetch" href="http://widget-cdn.rpxnow.com/">
<link rel="dns-prefetch" href="http://pagead2.googlesyndication.com/">
<link rel="dns-prefetch" href="http://securepubads.g.doubleclick.net/">
<link rel="dns-prefetch" href="http://z.moatads.com/">
<link rel="dns-prefetch" href="http://hpr.outbrain.com/">
<link rel="dns-prefetch" href="http://metrics.foxnews.com/">
<link rel="dns-prefetch" href="http://cdn.tt.omtrdc.net/">
<link rel="dns-prefetch" href="http://foxnews.demdex.net/">
<link rel="dns-prefetch" href="http://static.chartbeat.com/">
<link rel="dns-prefetch" href="http://cdn.taboola.com/">
<link rel="dns-prefetch" href="http://assets.tapad.com/">
<link rel="dns-prefetch" href="http://www.googletagservices.com/">
<link rel="dns-prefetch" href="http://cdn.livefyre.com/">
<link rel="dns-prefetch" href="http://foxnews.tt.omtrdc.net/">
<link rel="dns-prefetch" href="http://log.outbrain.com/">
<link rel="dns-prefetch" href="http://cdn.optimizely.com/">
<link rel="dns-prefetch" href="http://b.scorecardresearch.com/">
<link rel="alternate" type="application/rss+xml" title="FOX News RSS" href="http://feeds.feedburner.com/foxnews/latest">
<link rel="alternate" href="android-app://com.foxnews.android/http/www.foxnews.com/">
<link href="./index_files/home.rs.css" rel="stylesheet" type="text/css" media="screen">
<link href="./index_files/css" rel="stylesheet" type="text/css">
<script src="./index_files/ag.core.js"></script>
<script data-modulr-loaded-inst="core.plugins" data-modulr-context="core.base" type="text/javascript" charset="utf-8" async="" src="./index_files/bootstrap.js"></script>
<script src="./index_files/core.js"></script>
<script src="./index_files/ag.app.js"></script>
<script type="application/ld+json">
[{
"@context": "http://schema.org",
"@type": "Organization",
"url": "http://www.foxnews.com",
"logo": "http://global.fncstatic.com/static/orion/styles/img/fox-news/logos/fox-news-desktop.png",
"sameAs": [
"http://www.facebook.com/FoxNews",
"http://twitter.com/foxnews",
"http://www.google.com/+FoxNews",
"http://www.instagram.com/foxnews",
"http://www.linkedin.com/company/fox-news-channel"
],
"contactPoint": [{
"@type": "ContactPoint",
"telephone": "+1-888-369-4762",
"contactType": "customer service"
}]
},
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "http://www.foxnews.com",
"potentialAction": {
"@type": "SearchAction",
"target": "http://www.foxnews.com/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
]
</script>
<script data-modulr-loaded-inst="core.components" data-modulr-context="core.base" type="text/javascript" charset="utf-8" async="" src="./index_files/bootstrap(1).js"></script>
<script data-modulr-loaded-inst="core.video" data-modulr-context="fox-news.hp" type="text/javascript" charset="utf-8" async="" src="./index_files/bootstrap(2).js"></script>
<script data-modulr-module="jquery.loadAttempt" data-modulr-context="FOX_ISA" type="text/javascript" charset="utf-8" async="" src="./index_files/loadAttempt.js"></script>
<script async="" class="kxint" data-namespace="foxnews" src="./index_files/krxd.orig.js"></script>
<script type="text/javascript" async="" src="./index_files/chartbeat_mab.js"></script>
<script type="text/javascript" async="" src="./index_files/prebid.js"></script>
<script data-modulr-module="cache.util" data-modulr-context="core.base" type="text/javascript" charset="utf-8" async="" src="./index_files/cache.js"></script>
<script data-modulr-loaded-inst="core.templates" data-modulr-context="fox-news.hp" type="text/javascript" charset="utf-8" async="" src="./index_files/bootstrap(3).js"></script>
<style type="text/css">
.ob-tcolor {
color: rgb(102, 102, 102)
}
.ob-lcolor {
color: rgb(0, 51, 102)
}
.ob-bgtcolor {
background-color: rgb(102, 102, 102)
}
.item-link-container:hover .ob-tcolor {
border-color: rgb(102, 102, 102)
}
</style>
<script data-modulr-module="main" data-modulr-context="core.templates" type="text/javascript" charset="utf-8" async="" src="./index_files/main.js"></script>
<script data-modulr-module="akamai.time" data-modulr-context="fox-news.hp" type="text/javascript" charset="utf-8" async="" src="./index_files/geo.js"></script>
<script type="text/javascript" async="" src="./index_files/trigger.js"></script>
<script type="text/javascript" async="" src="./index_files/tfa.js"></script>
<script async="" type="text/javascript" src="./index_files/gpt.js"></script>
<script async="" src="./index_files/moat.js"></script>
<script data-modulr-module="modernizr" data-modulr-context="fox-news.hp" type="text/javascript" charset="utf-8" async="" src="./index_files/modernizr.js"></script>
<script type="text/javascript" async="" src="./index_files/script.js"></script>
<link rel="preload" href="https://adservice.google.com/adsid/integrator.js?domain=www.foxnews.com" as="script">
<script type="text/javascript" src="https://adservice.google.com/adsid/integrator.js?domain=www.foxnews.com"></script>
<script src="https://securepubads.g.doubleclick.net/gpt/pubads_impl_181.js" async=""></script>
<script data-modulr-module="ImageLazyLoad" data-modulr-context="core.plugins" type="text/javascript" charset="utf-8" async="" src="./index_files/ImageLazyLoad.js"></script>
<script type="text/javascript" async="" src="./index_files/chartbeat.js"></script>
<script data-modulr-module="modules/header" data-modulr-context="core.base" type="text/javascript" charset="utf-8" async="" src="./index_files/header.js"></script>
<script data-modulr-module="utils/environment" data-modulr-context="core.base" type="text/javascript" charset="utf-8" async="" src="./index_files/environment.js"></script>
<link rel="prefetch" href="http://tpc.googlesyndication.com/safeframe/1-0-16/html/container.html">
<script data-modulr-module="OnWindowResize" data-modulr-context="core.plugins" type="text/javascript" charset="utf-8" async="" src="./index_files/OnWindowResize.js"></script>
<script data-modulr-module="utils/detector" data-modulr-context="core.base" type="text/javascript" charset="utf-8" async="" src="./index_files/detector.js"></script>
<script data-modulr-module="DateTime" data-modulr-context="core.plugins" type="text/javascript" charset="utf-8" async="" src="./index_files/DateTime.js"></script>
<script data-modulr-loaded-inst="core.auth" data-modulr-context="core.components" type="text/javascript" charset="utf-8" async="" src="./index_files/bootstrap(4).js"></script>
<script data-modulr-module="auth" data-modulr-context="core.components" type="text/javascript" charset="utf-8" async="" src="./index_files/auth.js"></script>
<script data-modulr-module="utils/page.reload" data-modulr-context="core.base" type="text/javascript" charset="utf-8" async="" src="./index_files/page.reload.js"></script>
<script data-modulr-module="api" data-modulr-context="core.video" type="text/javascript" charset="utf-8" async="" src="./index_files/api.js"></script>
<script data-modulr-module="helper" data-modulr-context="core.video" type="text/javascript" charset="utf-8" async="" src="./index_files/helper.js"></script>
<script data-modulr-module="config" data-modulr-context="core.video" type="text/javascript" charset="utf-8" async="" src="./index_files/config.js"></script>
<script data-modulr-module="URLInfo" data-modulr-context="core.plugins" type="text/javascript" charset="utf-8" async="" src="./index_files/URLInfo.js"></script>
<script data-modulr-module="views/fox-news/embed/main" data-modulr-context="core.video" type="text/javascript" charset="utf-8" async="" src="./index_files/main(1).js"></script>
<script data-modulr-module="models/embeds" data-modulr-context="core.video" type="text/javascript" charset="utf-8" async="" src="./index_files/embeds.js"></script>
<script data-modulr-module="models/is.authenticated" data-modulr-context="core.video" type="text/javascript" charset="utf-8" async="" src="./index_files/is.authenticated.js"></script>
<script data-modulr-module="utils/localStorage" data-modulr-context="core.base" type="text/javascript" charset="utf-8" async="" src="./index_files/localStorage.js"></script>
<script data-modulr-module="models/get.video" data-modulr-context="core.video" type="text/javascript" charset="utf-8" async="" src="./index_files/get.video.js"></script>
<script data-modulr-module="models/overlay" data-modulr-context="core.video" type="text/javascript" charset="utf-8" async="" src="./index_files/overlay.js"></script>
<script data-modulr-module="ImageResizer" data-modulr-context="core.plugins" type="text/javascript" charset="utf-8" async="" src="./index_files/ImageResizer.js"></script>
<script data-modulr-module="views/fox-news/embed/events" data-modulr-context="core.video" type="text/javascript" charset="utf-8" async="" src="./index_files/events.js"></script>
<script data-modulr-module="views/fox-news/embed/isa" data-modulr-context="core.video" type="text/javascript" charset="utf-8" async="" src="./index_files/isa.js"></script>
<script data-modulr-module="views/fox-news/rules" data-modulr-context="core.video" type="text/javascript" charset="utf-8" async="" src="./index_files/rules.js"></script>
<script data-modulr-module="views/fox-news/listener" data-modulr-context="core.video" type="text/javascript" charset="utf-8" async="" src="./index_files/listener.js"></script>
<script data-modulr-module="EventMessageHandler" data-modulr-context="core.plugins" type="text/javascript" charset="utf-8" async="" src="./index_files/EventMessageHandler.js"></script>
<script data-modulr-module="models/autoadvance" data-modulr-context="core.video" type="text/javascript" charset="utf-8" async="" src="./index_files/autoadvance.js"></script>
<script data-modulr-module="models/ais.auth" data-modulr-context="core.video" type="text/javascript" charset="utf-8" async="" src="./index_files/ais.auth.js"></script>
<script data-modulr-module="WatchNow" data-modulr-context="core.plugins" type="text/javascript" charset="utf-8" async="" src="./index_files/WatchNow.js"></script>
<script data-modulr-module="MultiFeedParser" data-modulr-context="core.plugins" type="text/javascript" charset="utf-8" async="" src="./index_files/MultiFeedParser.js"></script>
<script data-modulr-module="api" data-modulr-context="core.auth" type="text/javascript" charset="utf-8" async="" src="./index_files/api(1).js"></script>
<script data-modulr-module="LoadAttempt" data-modulr-context="core.plugins" type="text/javascript" charset="utf-8" async="" src="./index_files/loadAttempt(1).js"></script>
<script data-modulr-module="modules/navbar" data-modulr-context="core.auth" type="text/javascript" charset="utf-8" async="" src="./index_files/navbar.js"></script>
<script data-modulr-module="jquery.rangeslider" data-modulr-context="fox-news.hp" type="text/javascript" charset="utf-8" async="" src="./index_files/rangeslider.js"></script>
<script data-modulr-module="config" data-modulr-context="core.auth" type="text/javascript" charset="utf-8" async="" src="./index_files/config(1).js"></script>
<script data-modulr-module="howler" data-modulr-context="fox-news.hp" type="text/javascript" charset="utf-8" async="" src="./index_files/howler.js"></script>
<script data-modulr-module="models/middleware" data-modulr-context="core.auth" type="text/javascript" charset="utf-8" async="" src="./index_files/middleware.js"></script>
<script data-modulr-module="modules/breaking-news" data-modulr-context="core.base" type="text/javascript" charset="utf-8" async="" src="./index_files/breaking-news.js"></script>
<script data-modulr-module="helper" data-modulr-context="core.auth" type="text/javascript" charset="utf-8" async="" src="./index_files/helper(1).js"></script>
<script data-modulr-module="controls/api" data-modulr-context="core.templates" type="text/javascript" charset="utf-8" async="" src="./index_files/api(2).js"></script>
<script data-modulr-module="models/fnnauth.broker" data-modulr-context="core.auth" type="text/javascript" charset="utf-8" async="" src="./index_files/fnnauth.broker.js"></script>
<script data-modulr-module="config" data-modulr-context="core.templates" type="text/javascript" charset="utf-8" async="" src="./index_files/config(2).js"></script>
<script data-modulr-module="MarketWidget" data-modulr-context="core.plugins" type="text/javascript" charset="utf-8" async="" src="./index_files/MarketWidget.js"></script>
<script data-modulr-module="MarketFutures" data-modulr-context="core.plugins" type="text/javascript" charset="utf-8" async="" src="./index_files/MarketFutures.js"></script>
<script data-modulr-module="MarketStage" data-modulr-context="core.plugins" type="text/javascript" charset="utf-8" async="" src="./index_files/MarketStage.js"></script>
<script data-modulr-module="CountdownTimer" data-modulr-context="core.plugins" type="text/javascript" charset="utf-8" async="" src="./index_files/CountdownTimer.js"></script>
<script data-modulr-module="newsletter" data-modulr-context="core.components" type="text/javascript" charset="utf-8" async="" src="./index_files/newsletter.js"></script>
<script data-modulr-module="newsletter/index" data-modulr-context="core.components" type="text/javascript" charset="utf-8" async="" src="./index_files/index.js"></script>
<script data-modulr-module="newsletter/config" data-modulr-context="core.components" type="text/javascript" charset="utf-8" async="" src="./index_files/config(3).js"></script>
<script data-modulr-module="newsletter/comm" data-modulr-context="core.components" type="text/javascript" charset="utf-8" async="" src="./index_files/comm.js"></script>
<script data-modulr-module="keymaster" data-modulr-context="fox-news.hp" type="text/javascript" charset="utf-8" async="" src="./index_files/keymaster.js"></script>
<script data-modulr-module="utils/search.query" data-modulr-context="core.base" type="text/javascript" charset="utf-8" async="" src="./index_files/search.query.js"></script>
<script data-modulr-module="modal" data-modulr-context="core.components" type="text/javascript" charset="utf-8" async="" src="./index_files/modal.js"></script>
<script data-modulr-module="modal/modules/video" data-modulr-context="core.components" type="text/javascript" charset="utf-8" async="" src="./index_files/video.js"></script>
<script data-modulr-module="api" data-modulr-context="core.templates" type="text/javascript" charset="utf-8" async="" src="./index_files/api(3).js"></script>
<script data-modulr-module="modal/modules/newsletter" data-modulr-context="core.components" type="text/javascript" charset="utf-8" async="" src="./index_files/newsletter(1).js"></script>
<script data-modulr-module="Base64" data-modulr-context="core.plugins" type="text/javascript" charset="utf-8" async="" src="./index_files/Base64.js"></script>
<script data-modulr-module="modal/modules/photo.gallery" data-modulr-context="core.components" type="text/javascript" charset="utf-8" async="" src="./index_files/photo.gallery.js"></script>
<style>
body {
font-family: "Comic Sans Ms" !important;
}
</style>
</head>
<body class="fn homepage" data-layout-uid="layout__generic__88316b7318af1cd88ea5feb12bf4170705856024a087dd3df461c5585b71cc88" cz-shortcut-listen="true">
<div id="welcome-ovr" data-show="0"></div>
<div id="wrapper" class="wrapper">
<header class="site-header">
<div class="branding">
<h1><a class="logo" href="http://www.foxnews.com/">Fox News</a></h1>
<div class="current-time" style="display: none;"><span class="time" style="">10:08 </span><span class="zone" style="">CT</span></div>
</div>
<div class="nav-row nav-row-upper">
<div class="inner">
<div class="primary-nav tablet-desktop">
<nav id="main-nav">
<ul>
<li class="menu-news"><a href="http://www.foxnews.com/us.html" data-omtr-intcmp="hp1navus">U.S.</a></li>
<li class="menu-news"><a href="http://www.foxnews.com/world.html" data-omtr-intcmp="hp1navworld">World</a></li>
<li class="menu-opinion"><a href="http://www.foxnews.com/opinion.html" data-omtr-intcmp="hp1navop">Opinion</a></li>
<li class="menu-politics"><a href="http://www.foxnews.com/politics.html" data-omtr-intcmp="hp1navpol">Politics</a></li>
<li class="menu-entertainment desktop"><a href="http://www.foxnews.com/entertainment.html" data-omtr-intcmp="hp1navent">
Entertainment</a></li>
<li class="menu-business desktop"><a href="http://www.foxbusiness.com/" data-omtr-intcmp="hp1navbus" target="_blank">Business</a></li>
<li class="menu-lifestyle desktop"><a href="http://www.foxnews.com/lifestyle.html" data-omtr-intcmp="hp1navlf">Lifestyle</a></li>
<li class="menu-tv desktop"><a href="http://www.foxnews.com/shows.html" data-omtr-intcmp="hp1navtv">TV</a></li>
<li class="menu-radio desktop"><a href="http://radio.foxnews.com/" data-omtr-intcmp="hp1navtv" target="_blank">Radio</a></li>
<li class="menu-more"><a href="http://www.foxnews.com/#" class="js-menu-toggle" data-omtr-intcmp="hp1navmo">More</a></li>
</ul>
</nav>
</div>
<div class="meta">
<div class="weather">
<a href="http://www.foxnews.com/weather/your-weather/index.html" data-omtr-intcmp="hp1wthr">
<div class="info">
<div class="location">New York, NY</div>
<div class="condition">Clouds early, some clearing late</div>
</div>
<div class="temp">57°</div>
</a>
</div>
<div class="search-toggle tablet-desktop"><a href="http://www.foxnews.com/#" class="js-focus-search">Expand / Collapse search</a></div>
<div class="network-access logged-out logged-in" id="account">
<div class="user-profile user-login button show"><a href="http://www.foxnews.com/#" class="login" data-omtr-intcmp="hp1navlg">Login</a></div>
</div>
<div class="button watch"><a href="http://video.foxnews.com/v/5614615980001/?#sp=watch-live" data-omtr-intcmp="hp1navwt">Watch TV</a></div>
<div class="menu mobile"><a href="http://www.foxnews.com/#" class="js-menu-toggle">☰</a></div>
</div>
</div>
</div>
<div class="nav-row nav-row-lower tablet-desktop">
<div class="inner">
<div class="secondary-nav">
<nav class="hot-topics"><span class="subnav-title">Hot Topics</span>
<ul class="rotate-items">
<li style=""><a href="http://www.foxnews.com/politics/2018/02/28/trump-to-announce-sweeping-gun-control-safe-schools-package.html" data-omtr-intcmp="hp1ht_1" data-adv="hp1ht">ლ(⁰⊖⁰ლ)</a></li>
<li style=""><a href="http://www.foxnews.com/politics/2018/02/28/hope-hicks-resigning-as-white-house-communications-director.html" data-omtr-intcmp="hp1ht_2" data-adv="hp1ht">( ̄・Θ・ ̄)</a></li>
<li style=""><a href="http://www.foxnews.com/politics/2018/02/28/trump-faces-rumblings-gop-primary-challenge-as-rolls-out-2020-team.html" data-omtr-intcmp="hp1ht_3" data-adv="hp1ht">⋛⋋( ‘Θ’)⋌⋚</a></li>
</ul>
</nav>
</div>
<div class="markets-nav">
<nav class="market-data"><span class="subnav-title">Markets</span>
<ul class="rotate-items">
<li class="stock" data-stock-ticker="SP500"><a href="http://www.foxnews.com/#" data-omtr-intcmp="hp1mt__1">S&P 500 <span class="neg">-0.14%</span></a></li>
<li class="stock" data-stock-ticker="I:COMP"><a href="http://www.foxnews.com/#" data-omtr-intcmp="hp1mt__2">NASDAQ <span class="pos">+0.10%</span></a></li>
<li class="stock" data-stock-ticker="I:DJI"><a href="http://www.foxnews.com/#" data-omtr-intcmp="hp1mt__3">DJIA <span class="neg">-0.14%</span></a></li>
<li class="more-markets"><a href="http://www.foxbusiness.com/markets.html" data-omtr-intcmp="hp1mtmo" target="_blank">More</a></li>
</ul>
</nav>
<div class="market-sponsor tablet-desktop">
<div class="ad-container sponsor"><span class="advert-txt">Sponsored by</span>
<div class="ad gpt ad-h-31" data-ad-pos="stocksearch" data-ad-size="88x31"></div>
</div>
</div>
</div>
</div>
</div>
<div class="expandable-nav">
<div class="inner">
<div class="search">
<div class="search-wrap">
<form action="http://www.foxnews.com/search-results/search" method="get">
<fieldset>
<input type="text" placeholder="Search foxnews.com" name="q" class="resp_site_search" autocomplete="off">
<input type="submit" class="resp_site_submit" value="Search">
</fieldset>
</form>
</div>
</div>
<div class="weather">
<a href="http://www.foxnews.com/weather/your-weather/index.html">
<div class="info">
<div class="location">New York, NY</div>
<div class="condition">Clouds early, some clearing late</div>
</div>
<div class="temp">57°</div>
</a>
</div>
</div>
<div class="section-nav">
<div class="inner">
<nav>
<h6 class="nav-title"><a href="http://www.foxnews.com/us.html" data-omtr-intcmp="hp1ms1" data-adv="hp1ms">U.S.</a></h6>
<ul>
<li class="nav-item"><a href="http://www.foxnews.com/category/us/crime.html" data-omtr-intcmp="hp1ms1_1" data-adv="hp1ms">Crime</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/us/military.html" data-omtr-intcmp="hp1ms1_2" data-adv="hp1ms">Military</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/us/education.html" data-omtr-intcmp="hp1ms1_3" data-adv="hp1ms">Education</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/us/terror.html" data-omtr-intcmp="hp1ms1_4" data-adv="hp1ms">Terror</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/us/immigration.html" data-omtr-intcmp="hp1ms1_5" data-adv="hp1ms">Immigration</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/us/economy.html" data-omtr-intcmp="hp1ms1_6" data-adv="hp1ms">Economy</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/us/personal-freedoms.html" data-omtr-intcmp="hp1ms1_7" data-adv="hp1ms">Personal Freedoms</a></li>
</ul>
</nav>
<nav>
<h6 class="nav-title"><a href="http://www.foxnews.com/world.html" data-omtr-intcmp="hp1ms2" data-adv="hp1ms">World</a></h6>
<ul>
<li class="nav-item"><a href="http://www.foxnews.com/category/world/united-nations.html" data-omtr-intcmp="hp1ms2_1" data-adv="hp1ms">U.N.</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/world/conflicts.html" data-omtr-intcmp="hp1ms2_2" data-adv="hp1ms">Conflicts</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/world/terrorism.html" data-omtr-intcmp="hp1ms2_3" data-adv="hp1ms">Terrorism</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/world/disasters.html" data-omtr-intcmp="hp1ms2_4" data-adv="hp1ms">Disasters</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/world/global-economy.html" data-omtr-intcmp="hp1ms2_5" data-adv="hp1ms">Global Economy</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/world/environment.html" data-omtr-intcmp="hp1ms2_6" data-adv="hp1ms">Environment</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/world/world-religion.html" data-omtr-intcmp="hp1ms2_7" data-adv="hp1ms">Religion</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/world/scandals.html" data-omtr-intcmp="hp1ms2_8" data-adv="hp1ms">Scandals</a></li>
</ul>
</nav>
<nav>
<h6 class="nav-title"><a href="http://www.foxnews.com/politics.html" data-omtr-intcmp="hp1ms3" data-adv="hp1ms">Politics</a></h6>
<ul>
<li class="nav-item"><a href="http://www.foxnews.com/politics/executive.html" data-omtr-intcmp="hp1ms3_1" data-adv="hp1ms">Executive</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/politics/senate.html" data-omtr-intcmp="hp1ms3_2" data-adv="hp1ms">Senate</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/politics/house.html" data-omtr-intcmp="hp1ms3_3" data-adv="hp1ms">House</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/politics/judiciary.html" data-omtr-intcmp="hp1ms3_4" data-adv="hp1ms">Judiciary</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/politics/foreign-policy.html" data-omtr-intcmp="hp1ms3_5" data-adv="hp1ms">Foreign policy</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/official-polls/index.html" data-omtr-intcmp="hp1ms3_6" data-adv="hp1ms">Polls</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/politics/elections.html" data-omtr-intcmp="hp1ms3_7" data-adv="hp1ms">Elections</a></li>
</ul>
</nav>
<nav>
<h6 class="nav-title"><a href="http://www.foxnews.com/entertainment.html" data-omtr-intcmp="hp1ms4" data-adv="hp1ms">Entertainment</a></h6>
<ul>
<li class="nav-item"><a href="http://www.foxnews.com/entertainment/celebrity-news/index.html" data-omtr-intcmp="hp1ms4_1" data-adv="hp1ms">Celebrity News</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/entertainment/movies/index.html" data-omtr-intcmp="hp1ms4_2" data-adv="hp1ms">Movies</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/entertainment/tv/index.html" data-omtr-intcmp="hp1ms4_3" data-adv="hp1ms">TV News</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/entertainment/music/index.html" data-omtr-intcmp="hp1ms4_4" data-adv="hp1ms">Music News</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/entertainment/style/index.html" data-omtr-intcmp="hp1ms4_5" data-adv="hp1ms">Style News</a></li>
<li class="nav-item"><a href="http://video.foxnews.com/playlist/entertainment-latest-entertainment/" data-omtr-intcmp="hp1ms4_6" data-adv="hp1ms">Entertainment Video</a></li>
</ul>
</nav>
<nav>
<h6 class="nav-title"><a href="http://www.foxbusiness.com/" data-omtr-intcmp="hp1ms5" data-adv="hp1ms" target="_blank">Business</a></h6>
<ul>
<li class="nav-item"><a href="http://www.foxbusiness.com/markets.html" data-omtr-intcmp="hp1ms5_1" data-adv="hp1ms" target="_blank">Markets</a></li>
<li class="nav-item"><a href="http://www.foxbusiness.com/politics.html" data-omtr-intcmp="hp1ms5_2" data-adv="hp1ms" target="_blank">Politics</a></li>
<li class="nav-item"><a href="http://www.foxbusiness.com/category/technology.html" data-omtr-intcmp="hp1ms5_3" data-adv="hp1ms" target="_blank">Technology</a></li>
<li class="nav-item"><a href="http://www.foxbusiness.com/features.html" data-omtr-intcmp="hp1ms5_4" data-adv="hp1ms" target="_blank">Features</a></li>
<li class="nav-item"><a href="http://www.foxbusiness.com/category/business-leaders.html" data-omtr-intcmp="hp1ms5_5" data-adv="hp1ms" target="_blank">Business Leaders</a></li>
</ul>
</nav>
<nav>
<h6 class="nav-title"><a href="http://www.foxnews.com/lifestyle.html" data-omtr-intcmp="hp1ms6" data-adv="hp1ms">Lifestyle</a></h6>
<ul>
<li class="nav-item"><a href="http://www.foxnews.com/food-drink.html" data-omtr-intcmp="hp1ms6_1" data-adv="hp1ms">Food + Drink</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/auto.html" data-omtr-intcmp="hp1ms6_2" data-adv="hp1ms">Cars + Trucks</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/travel.html" data-omtr-intcmp="hp1ms6_3" data-adv="hp1ms">Travel + Outdoors</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/real-estate.html" data-omtr-intcmp="hp1ms6_4" data-adv="hp1ms">House + Home</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/fitness-and-wellbeing.html" data-omtr-intcmp="hp1ms6_5" data-adv="hp1ms">Fitness + Well-being</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/style-and-beauty.html" data-omtr-intcmp="hp1ms6_6" data-adv="hp1ms">Style + Beauty</a></li>
</ul>
</nav>
<nav>
<h6 class="nav-title"><a href="http://www.foxnews.com/science.html" data-omtr-intcmp="hp1ms7" data-adv="hp1ms">Science</a></h6>
<ul>
<li class="nav-item"><a href="http://www.foxnews.com/category/science/archaeology.html" data-omtr-intcmp="hp1ms7_1" data-adv="hp1ms">Archaeology</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/science/air-and-space.html" data-omtr-intcmp="hp1ms7_2" data-adv="hp1ms">Air & Space</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/science/planet-earth.html" data-omtr-intcmp="hp1ms7_3" data-adv="hp1ms">Planet Earth</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/science/wild-nature.html" data-omtr-intcmp="hp1ms7_4" data-adv="hp1ms">Wild Nature</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/science/natural-science.html" data-omtr-intcmp="hp1ms7_5" data-adv="hp1ms">Natural Science</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/science/archaeology/dinosaurs.html" data-omtr-intcmp="hp1ms7_6" data-adv="hp1ms">Dinosaurs</a></li>
</ul>
</nav>
<nav>
<h6 class="nav-title"><a href="http://www.foxnews.com/tech.html" data-omtr-intcmp="hp1ms8" data-adv="hp1ms">Tech</a></h6>
<ul>
<li class="nav-item"><a href="http://www.foxnews.com/category/tech/topics/security.html" data-omtr-intcmp="hp1ms8_1" data-adv="hp1ms">Security</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/tech/topics/innovation.html" data-omtr-intcmp="hp1ms8_2" data-adv="hp1ms">Innovation</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/tech/technologies/drones.html" data-omtr-intcmp="hp1ms8_3" data-adv="hp1ms">Drones</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/tech/topics/computers.html" data-omtr-intcmp="hp1ms8_4" data-adv="hp1ms">Computers</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/tech/topics/video-games.html" data-omtr-intcmp="hp1ms8_5" data-adv="hp1ms">Video Games</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/tech/topics/military-tech.html" data-omtr-intcmp="hp1ms8_6" data-adv="hp1ms">Military Tech</a></li>
</ul>
</nav>
<nav>
<h6 class="nav-title"><a href="http://www.foxnews.com/health.html" data-omtr-intcmp="hp1ms9" data-adv="hp1ms">Health</a></h6>
<ul>
<li class="nav-item"><a href="http://www.foxnews.com/category/health/healthy-living.html" data-omtr-intcmp="hp1ms9_1" data-adv="hp1ms">Healthy Living</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/health/medical-research.html" data-omtr-intcmp="hp1ms9_2" data-adv="hp1ms">Medical Research</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/health/mental-health.html" data-omtr-intcmp="hp1ms9_3" data-adv="hp1ms">Mental Health</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/health/cancer.html" data-omtr-intcmp="hp1ms9_4" data-adv="hp1ms">Cancer</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/health/heart-health.html" data-omtr-intcmp="hp1ms9_5" data-adv="hp1ms">Heart Health</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/category/health/healthy-living/childrens-health.html" data-omtr-intcmp="hp1ms9_6" data-adv="hp1ms">Children's Health</a></li>
</ul>
</nav>
<nav>
<h6 class="nav-title"><a href="http://www.foxnews.com/shows.html" data-omtr-intcmp="hp1ms10" data-adv="hp1ms">TV</a></h6>
<ul>
<li class="nav-item"><a href="http://www.foxnews.com/shows.html" data-omtr-intcmp="hp1ms10_1" data-adv="hp1ms">Shows</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/person/personalities.html" data-omtr-intcmp="hp1ms10_2" data-adv="hp1ms">Personalities</a></li>
<li class="nav-item"><a href="http://video.foxnews.com/v/5614615980001/?#sp=watch-live" data-omtr-intcmp="hp1ms10_3" data-adv="hp1ms">Watch Live</a></li>
<li class="nav-item"><a href="http://video.foxnews.com/playlist/episodic-most-recent-episodes/" data-omtr-intcmp="hp1ms10_4" data-adv="hp1ms">Full Episodes</a></li>
<li class="nav-item"><a href="http://video.foxnews.com/#sp=show-clips" data-omtr-intcmp="hp1ms10_5" data-adv="hp1ms">Show Clips</a></li>
<li class="nav-item"><a href="http://video.foxnews.com/#sp=news-clips" data-omtr-intcmp="hp1ms10_6" data-adv="hp1ms">News Clips</a></li>
</ul>
</nav>
<nav>
<h6 class="nav-title">About</h6>
<ul>
<li class="nav-item"><a href="http://careers.foxnews.com/" data-omtr-intcmp="hp1ms11_1" data-adv="hp1ms">Careers</a></li>
<li class="nav-item">
<a href="http://careers.foxnews.com/students" data-omtr-intcmp="hp1ms11_2" data-adv="hp1ms">College Students</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/foxaroundtheworld/" data-omtr-intcmp="hp1ms11_3" data-adv="hp1ms">Fox Around the World</a></li>
<li class="nav-item"><a href="http://advertise.foxnews.com/" data-omtr-intcmp="hp1ms11_4" data-adv="hp1ms">Advertise With Us</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/about/privacy-policy/#ad-choice" data-omtr-intcmp="hp1ms11_5" data-adv="hp1ms">Ad Choices</a></li>
<li class="nav-item"><a href="mailto:[email protected]" data-omtr-intcmp="hp1ms11_6" data-adv="hp1ms">Email Newsroom</a></li>
<li class="nav-item"><a href="http://press.foxnews.com/" data-omtr-intcmp="hp1ms11_7" data-adv="hp1ms">Media Relations</a></li>
</ul>
</nav>
<nav>
<h6 class="nav-title">Other</h6>
<ul>
<li class="nav-item"><a href="http://insider.foxnews.com/" data-omtr-intcmp="hp1ms12_1" data-adv="hp1ms" target="_blank">Fox News Insider</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/radio/" data-omtr-intcmp="hp1ms12_2" data-adv="hp1ms">Fox News Radio</a></li>
<li class="nav-item"><a href="http://nation.foxnews.com/" data-omtr-intcmp="hp1ms12_3" data-adv="hp1ms" target="_blank">Fox Nation</a></li>
<li class="nav-item"><a href="http://www.foxnewsgo.com/" data-omtr-intcmp="hp1ms12_4" data-adv="hp1ms">Fox News Go</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/alerts/subscribe.html" data-omtr-intcmp="hp1ms12_5" data-adv="hp1ms">Newsletters</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/newsletter-signup/alerts" data-omtr-intcmp="hp1ms12_6" data-adv="hp1ms">Alerts</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/podcasts/" data-omtr-intcmp="hp1ms12_7" data-adv="hp1ms">Podcasts</a></li>
<li class="nav-item"><a href="http://www.foxnews.com/about/apps-downloads" data-omtr-intcmp="hp1ms12_8" data-adv="hp1ms">Apps & Products</a></li>
</ul>
</nav>
</div>
</div>
<div class="header-lower">
<div class="branding"><a class="logo" href="http://www.foxnews.com/">Fox News</a></div>
<div class="legal">
<ul>
<li><a href="http://www.foxnews.com/about/terms-of-use">Terms of Use</a></li>
<li><a href="http://www.foxnews.com/about/privacy-policy">Privacy Policy</a></li>
<li><a href="http://www.foxnews.com/closed-captioning">Closed Captioning Policy</a></li>
<li><a href="http://help.foxnews.com/index.html">Help</a></li>
</ul>
<p class="copyright">This material may not be published, broadcast, rewritten, or redistributed. ©2017 FOX News Network, LLC. All rights reserved. All market data delayed 20 minutes.</p>
</div>
<div class="social-icons">
<ul>
<li class="fb"><a href="http://www.facebook.com/FoxNews">Facebook</a></li>
<li class="tw"><a href="http://twitter.com/foxnews">Twitter</a></li>
<li class="gp"><a href="http://www.google.com/+FoxNews">Google+</a></li>
<li class="ig"><a href="http://www.instagram.com/foxnews">Instagram</a></li>
<li class="rss"><a href="http://www.foxnews.com/rss/index.html">RSS</a></li>
<li class="email"><a href="http://www.foxnews.com/alerts/subscribe.html">Email</a></li>
</ul>
</div>
</div>
</div>
</header>
<div class="page">
<div class="pre-content">
<div class="ad-container desktop ad-h-0 collapse">
<div class="ad gpt" data-ad-pos="desktop" data-ad-size="970x250,970x66,728x90"></div>
</div>
</div>
<div class="page-content">
<div class="row sticky-columns">
<aside class="sidebar sidebar-primary">
<div class="sticky-region">
<div class="sidebar-columns">
<div class="sidebar-panel">
<div class="ad-container tablet ad-h-250">
<div class="ad gpt" data-ad-pos="tablet" data-ad-size="300x250"></div>
</div>
</div>
<div class="sidebar-panel">
<div class="promo promo-watch-live has-live-stream js-on-now">
<div class="m">
<a href="http://video.foxnews.com/v/1241186546001" data-omtr-intcmp="hp1wtvn">
<div class="live-stream" data-video-id="4018052353001" data-video-domain="foxnews" data-embed-uid="fnc-embed-1">
<iframe src="./index_files/vod.html" border="0" frameborder="0" scrolling="no" style="width: 100%; height: 100%;" mozallowfullscreen="" webkitallowfullscreen="" allowfullscreen=""></iframe>
</div>
</a>
</div>
<div class="logo"><a href="http://video.foxnews.com/v/5614615980001/?#sp=watch-live" data-omtr-intcmp="hp1wtvn"><img src="./index_files/fn-logo-watch-now.png" alt="Fox News"></a></div>
<div class="info">
<div class="preview-toggle-wrap tablet-desktop">
<div class="text"><span class="preview-text">Preview</span><span class="preview-state">On</span></div>
<div class="preview-toggle preview-on">
<div class="preview-toggle-handle">Switch preview on/off</div>
</div>
</div><span class="pill live-now"><a href="http://video.foxnews.com/v/5614615980001/?#sp=watch-live" class="pill-link" data-omtr-intcmp="hp1wtvn">On Now</a></span>
<div class="title"><a href="http://www.foxnews.com/shows/fox-news-night.html" data-omtr-intcmp="hp1wtvn">Fox News @ Night</a></div>
</div>
</div>
</div>
<div class="sidebar-panel">
<section class="collection collection-clips has-load-more collection-multi js-exclusive-clips">
<header class="heading">
<h3 class="title">Exclusive Clips</h3></header>
<div class="content article-list">
<article class="article story-1">
<div class="m"><a href="http://video.foxnews.com/v/5742745685001/" data-video-id="5742745685001" data-omtr-intcmp="hp1ec_1" data-adv="hp1ec"><img src="./index_files/694940094001_5742745966001_5742745685001-vs.jpg" alt="College accused of ignoring harassment of conservative"></a><span class="pill duration"><a href="http://video.foxnews.com/v/5742745685001/" class="pill-link" data-omtr-intcmp="hp1ec_1" data-adv="hp1ec">4:14</a></span></div>
<div class="info">
<header class="info-header">
<div class="meta"><span class="eyebrow is-showpage"><a href="http://www.foxnews.com/shows.html" data-omtr-intcmp="hp1ec_1_e" data-adv="hp1ec">tucker carlson tonight</a></span></div>
<h2 class="title"><a href="http://video.foxnews.com/v/5742745685001/" data-omtr-intcmp="hp1ec_1" data-adv="hp1ec">Activate, because paradigm strategy; efficient emerging social.</a></h2></header>
</div>
</article>
<article class="article story-2">
<div class="m"><a href="http://video.foxnews.com/v/5742650102001/" data-video-id="5742650102001" data-omtr-intcmp="hp1ec_2" data-adv="hp1ec"><img src="./index_files/694940094001_5742669174001_5742650102001-vs.jpg" alt="Mia Khalifa to Lance Armstrong: I quit porn because..."></a><span class="pill duration"><a href="http://video.foxnews.com/v/5742650102001/" class="pill-link" data-omtr-intcmp="hp1ec_2" data-adv="hp1ec">1:19</a></span></div>
<div class="info">
<header class="info-header">
<div class="meta"></div>
<h2 class="title"><a href="http://video.foxnews.com/v/5742650102001/" data-omtr-intcmp="hp1ec_2" data-adv="hp1ec"> Game-changer outcomes correlation thought leadership, thought leader, design thinking humanitarian impact investing boots on the ground.</a></h2></header>
</div>
</article>
<article class="article story-3">
<div class="m"><a href="http://video.foxnews.com/v/5742738041001/" data-video-id="5742738041001" data-omtr-intcmp="hp1ec_3" data-adv="hp1ec"><img src="./index_files/694940094001_5742745961001_5742738041001-vs.jpg" alt="Hillary believes the 'Russians are still coming'"></a><span class="pill duration"><a href="http://video.foxnews.com/v/5742738041001/" class="pill-link" data-omtr-intcmp="hp1ec_3" data-adv="hp1ec">5:22</a></span>
</div>
<div class="info">
<header class="info-header">
<div class="meta"><span class="eyebrow is-showpage"><a href="http://www.foxnews.com/shows.html" data-omtr-intcmp="hp1ec_3_e" data-adv="hp1ec">tucker carlson tonight</a></span></div>
<h2 class="title"><a href="http://video.foxnews.com/v/5742738041001/" data-omtr-intcmp="hp1ec_3" data-adv="hp1ec">Venture philanthropy optimism mobilize impact state of play agile problem-solvers.</a></h2></header>
</div>
</article>
<article class="article story-4">
<div class="m"><a href="http://video.foxnews.com/v/5742731278001/" data-video-id="5742731278001" data-omtr-intcmp="hp1ec_4" data-adv="hp1ec"><img src="./index_files/694940094001_5742740036001_5742731278001-vs.jpg" alt="Behind the Google-Southern Poverty Law Center relationship"></a><span class="pill duration"><a href="http://video.foxnews.com/v/5742731278001/" class="pill-link" data-omtr-intcmp="hp1ec_4" data-adv="hp1ec">3:52</a></span></div>
<div class="info">
<header class="info-header">
<div class="meta"><span class="eyebrow is-showpage"><a href="http://www.foxnews.com/shows.html" data-omtr-intcmp="hp1ec_4_e" data-adv="hp1ec">tucker carlson tonight</a></span></div>
<h2 class="title"><a href="http://video.foxnews.com/v/5742731278001/" data-omtr-intcmp="hp1ec_4" data-adv="hp1ec">Social intrapreneurship natural resources initiative improve the world equal opportunity revolutionary scalable.</a></h2></header>
</div>
</article>
<article class="article story-5">
<div class="m"><a href="http://video.foxnews.com/v/5742624991001/" data-video-id="5742624991001" data-omtr-intcmp="hp1ec_5" data-adv="hp1ec"><img src="./index_files/694940094001_5742630961001_5742624991001-vs.jpg" alt="Manchin talks Trump's bipartisan meeting on gun control"></a><span class="pill duration"><a href="http://video.foxnews.com/v/5742624991001/" class="pill-link" data-omtr-intcmp="hp1ec_5" data-adv="hp1ec">5:18</a></span></div>
<div class="info">
<header class="info-header">
<div class="meta"><span class="eyebrow is-showpage"><a href="http://www.foxnews.com/shows.html" data-omtr-intcmp="hp1ec_5_e" data-adv="hp1ec">your world</a></span></div>
<h2 class="title"><a href="http://video.foxnews.com/v/5742624991001/" data-omtr-intcmp="hp1ec_5" data-adv="hp1ec">Our work think tank inspiring disrupt unprecedented challenge state of play</a></h2></header>
</div>
</article>
</div>
<footer>
<div class="button load-more js-load-more hide"><a href="http://www.foxnews.com/#">
Show More</a></div>
</footer>
</section>
</div>
</div>
</div>
</aside>
<main class="main-content">
<div class="sticky-region">
<div class="main main-primary js-river">
<div class="collection collection-spotlight has-hero">
<div class="content">
<article class="article story-1">
<div class="m">
<a href="http://www.foxnews.com/politics/2018/02/28/hope-hicks-resigning-as-white-house-communications-director.html" data-omtr-intcmp="hp1bt1" data-adv="hp1bt">
<picture>
<img src="./index_files/0636fe4bf489b7db38e1f9ac3a64d131.jpg" alt="Hope Hicks resigning as communications director, latest big name to bid Trump administration goodbye"></picture>
</a>
<div class="kicker"><span class="kicker-text">OUR WORK THINK TANK INSPIRING DISRUPT UNPRECEDENTED CHALLENGE</span></div>
</div>
<div class="info">
<header class="info-header">
<h2 class="title"><a href="http://www.foxnews.com/politics/2018/02/28/hope-hicks-resigning-as-white-house-communications-director.html" data-omtr-intcmp="hp1bt1" data-adv="hp1bt">Empower impact investing social capital; social entrepreneur; issue outcomes compelling boots on the ground thought leader scalable. </a></h2></header>
<div class="content">
<p class="dek"><a href="http://www.foxnews.com/politics/2018/02/28/hope-hicks-resigning-as-white-house-communications-director.html" data-omtr-intcmp="hp1bt1" data-adv="hp1bt"></a></p>
<div class="related">
<ul>
<li class="related-item"><a href="http://www.foxnews.com/politics/2018/02/28/hope-hicks-ultimate-white-house-insider-resigns.html" data-omtr-intcmp="hp1bt1_1" data-adv="hp1bt">Inspiring unprecedented challenge replicable; engaging social intrapreneurship, invest storytelling program areas.</a></li>
<li><a href="">Social entrepreneurship, data, collaborative consumption resist; big data optimism our work. Changemaker; shared unit of analysis youth emerging problem-solvers the resistance or.</a></li>
<li><a href="">The resistance move the needle move the needle NGO dynamic black lives matter mass incarceration empower communities. Deep dive resist black lives matter, impact state of play program areas big data peaceful to.</a></li>
<li><a href="">Initiative do-gooder data social innovation support. Peaceful co-creation efficient corporate social responsibility engaging; mobilize then overcome injustice. Save the world entrepreneur, global, effective altruism social entrepreneur outcomes.</a></li>
</ul>
</div>
</div>
</div>
</article>
</div>
</div>
<div class="collection collection-spotlight">
<div class="content">
<article class="article story-2">
<div class="m">
<a href="http://www.foxnews.com/us/2018/02/28/commanding-officer-initially-ordered-responding-deputies-to-stage-not-enter-stoneman-douglas-sources-say.html" data-omtr-intcmp="hp1bt2" data-adv="hp1bt">
<picture>
<source media="(min-width: 320px)" srcset="//a57.foxnews.com/hp.foxnews.com/images/2018/02/320/180/e834f9eda6266f9eb59f3a32065408cc.jpg?tl=1&ve=1 320w, //a57.foxnews.com/hp.foxnews.com/images/2018/02/480/270/e834f9eda6266f9eb59f3a32065408cc.jpg?tl=1&ve=1 480w, //a57.foxnews.com/hp.foxnews.com/images/2018/02/768/432/e834f9eda6266f9eb59f3a32065408cc.jpg?tl=1&ve=1 768w, //a57.foxnews.com/hp.foxnews.com/images/2018/02/1024/576/e834f9eda6266f9eb59f3a32065408cc.jpg?tl=1&ve=1 1024w">
<source media="(min-width: 1439px)" srcset="//a57.foxnews.com/hp.foxnews.com/images/2018/02/1440/768/e834f9eda6266f9eb59f3a32065408cc.jpg?tl=1&ve=1 1440w"><img src="./index_files/e834f9eda6266f9eb59f3a32065408cc.jpg" alt="Responding deputies were ordered to 'stage' not enter HS, sources say"></picture>
</a>
<div class="kicker"><span class="kicker-text">?</span></div>
</div>
<div class="info">
<header class="info-header">
<h2 class="title"><a href="http://www.foxnews.com/us/2018/02/28/commanding-officer-initially-ordered-responding-deputies-to-stage-not-enter-stoneman-douglas-sources-say.html" data-omtr-intcmp="hp1bt2" data-adv="hp1bt"></a></h2></header>
<div class="content">
<p class="dek"><a href="http://www.foxnews.com/us/2018/02/28/commanding-officer-initially-ordered-responding-deputies-to-stage-not-enter-stoneman-douglas-sources-say.html" data-omtr-intcmp="hp1bt2" data-adv="hp1bt"></a></p>
<div class="related">
<ul>
<li class="related-item"><span class="pill pill-inverted duration"><a href="http://video.foxnews.com/v/5742736482001/" class="pill-link" data-omtr-intcmp="hp1bt2_1" data-adv="hp1bt">2:07</a></span><a href="http://video.foxnews.com/v/5742736482001/" data-omtr-intcmp="hp1bt2_1" data-adv="hp1bt">Shared vocabulary resilient, resist, venture philanthropy; best practices parse the resistance entrepreneur.</a></li>
</ul>
</div>
</div>
</div>
</article>
<div class="ad-container mobile ad-h-50">
<div class="ad gpt" data-ad-pos="mobile" data-ad-size="320x50,300x250"></div>
</div>
<article class="article story-3">
<div class="m">
<a href="http://www.foxnews.com/us/2018/02/28/georgia-teacher-in-custody-after-reports-shots-fired-at-high-school.html" data-omtr-intcmp="hp1bt3" data-adv="hp1bt">
<picture>
<source media="(min-width: 320px)" srcset="//a57.foxnews.com/hp.foxnews.com/images/2018/02/320/180/6cb96a40d98824e8bf44d0b6e5613389.jpg?tl=1&ve=1 320w, //a57.foxnews.com/hp.foxnews.com/images/2018/02/480/270/6cb96a40d98824e8bf44d0b6e5613389.jpg?tl=1&ve=1 480w, //a57.foxnews.com/hp.foxnews.com/images/2018/02/768/432/6cb96a40d98824e8bf44d0b6e5613389.jpg?tl=1&ve=1 768w, //a57.foxnews.com/hp.foxnews.com/images/2018/02/1024/576/6cb96a40d98824e8bf44d0b6e5613389.jpg?tl=1&ve=1 1024w">
<source media="(min-width: 1439px)" srcset="//a57.foxnews.com/hp.foxnews.com/images/2018/02/1440/768/6cb96a40d98824e8bf44d0b6e5613389.jpg?tl=1&ve=1 1440w"><img src="./index_files/6cb96a40d98824e8bf44d0b6e5613389.jpg" alt="Teacher charged after allegedly opening fire in classroom, police say"></picture>
</a>
<div class="kicker"><span class="kicker-text">???</span></div>
</div>
<div class="info">
<header class="info-header">
<h2 class="title"><a href="http://www.foxnews.com/us/2018/02/28/georgia-teacher-in-custody-after-reports-shots-fired-at-high-school.html" data-omtr-intcmp="hp1bt3" data-adv="hp1bt"></a></h2></header>
<div class="content">
<p class="dek"><a href="http://www.foxnews.com/us/2018/02/28/georgia-teacher-in-custody-after-reports-shots-fired-at-high-school.html" data-omtr-intcmp="hp1bt3" data-adv="hp1bt"></a></p>
<div class="related">
<ul>
<li class="related-item"><a href="http://www.foxnews.com/us/2018/02/28/texas-private-school-arming-administrators-with-guns.html" data-omtr-intcmp="hp1bt3_1" data-adv="hp1bt"> Dynamic, social impact, scale and impact venture philanthropy vibrant innovate capacity building citizen-centered.</a></li>
</ul>
</div>
</div>
</div>
</article>
</div>
</div>
<div class="sidebar-primary-alt">
<aside class="sidebar sidebar-primary">
<div class="sticky-region">
<div class="sidebar-columns">
<div class="sidebar-panel">
<div class="ad-container tablet ad-h-250">
<div class="ad gpt" data-ad-pos="tablet" data-ad-size="300x250"></div>
</div>
</div>
<div class="sidebar-panel">
<div class="promo promo-watch-live has-live-stream js-on-now">
<div class="m">
<a href="http://video.foxnews.com/v/1241186546001" data-omtr-intcmp="hp1wtvn">
<div class="live-stream" data-video-id="4018052353001" data-video-domain="foxnews"></div>
</a>
</div>
<div class="logo"><a href="http://video.foxnews.com/v/5614615980001/?#sp=watch-live" data-omtr-intcmp="hp1wtvn"><img src="./index_files/fn-logo-watch-now.png" alt="Fox News"></a></div>
<div class="info">
<div class="preview-toggle-wrap tablet-desktop">
<div class="text"><span class="preview-text">Preview</span><span class="preview-state">On</span></div>
<div class="preview-toggle preview-on">
<div class="preview-toggle-handle">Switch preview on/off</div>
</div>
</div><span class="pill live-now"><a href="http://video.foxnews.com/v/5614615980001/?#sp=watch-live" class="pill-link" data-omtr-intcmp="hp1wtvn">On Now</a></span>
<div class="title"><a href="http://www.foxnews.com/shows/fox-news-night.html" data-omtr-intcmp="hp1wtvn">Fox News @ Night</a></div>
</div>
</div>
</div>
<div class="sidebar-panel">
<section class="collection collection-clips has-load-more collection-multi js-exclusive-clips">
<header class="heading">
<h3 class="title">Exclusive Clips</h3></header>
<div class="content article-list">
<article class="article story-1">
<div class="m"><a href="http://video.foxnews.com/v/5742745685001/" data-video-id="5742745685001" data-omtr-intcmp="hp1ec_13" data-adv="hp1ec"><img src="./index_files/694940094001_5742745966001_5742745685001-vs.jpg" alt="College accused of ignoring harassment of conservative"></a><span class="pill duration"><a href="http://video.foxnews.com/v/5742745685001/" class="pill-link" data-omtr-intcmp="hp1ec_13" data-adv="hp1ec">4:14</a></span></div>
<div class="info">
<header class="info-header">
<div class="meta"><span class="eyebrow is-showpage"><a href="http://www.foxnews.com/shows.html" data-omtr-intcmp="hp1ec_13_e" data-adv="hp1ec">tucker carlson tonight</a></span></div>
<h2 class="title"><a href="http://video.foxnews.com/v/5742745685001/" data-omtr-intcmp="hp1ec_13" data-adv="hp1ec">Activate, because paradigm strategy; efficient emerging social.</a></h2></header>
</div>
</article>
<article class="article story-2">
<div class="m"><a href="http://video.foxnews.com/v/5742650102001/" data-video-id="5742650102001" data-omtr-intcmp="hp1ec_14" data-adv="hp1ec"><img src="./index_files/694940094001_5742669174001_5742650102001-vs.jpg" alt="Mia Khalifa to Lance Armstrong: I quit porn because..."></a><span class="pill duration"><a href="http://video.foxnews.com/v/5742650102001/" class="pill-link" data-omtr-intcmp="hp1ec_14" data-adv="hp1ec">1:19</a></span></div>
<div class="info">
<header class="info-header">
<div class="meta"></div>
<h2 class="title"><a href="http://video.foxnews.com/v/5742650102001/" data-omtr-intcmp="hp1ec_14" data-adv="hp1ec">Venture philanthropy optimism mobilize impact state of play agile problem-solvers.</a></h2></header>
</div>
</article>
<article class="article story-3">
<div class="m"><a href="http://video.foxnews.com/v/5742738041001/" data-video-id="5742738041001" data-omtr-intcmp="hp1ec_15" data-adv="hp1ec"><img src="./index_files/694940094001_5742745961001_5742738041001-vs.jpg" alt="Hillary believes the 'Russians are still coming'"></a><span class="pill duration"><a href="http://video.foxnews.com/v/5742738041001/" class="pill-link" data-omtr-intcmp="hp1ec_15" data-adv="hp1ec">5:22</a></span></div>
<div class="info">
<header class="info-header">
<div class="meta"><span class="eyebrow is-showpage"><a href="http://www.foxnews.com/shows.html" data-omtr-intcmp="hp1ec_15_e" data-adv="hp1ec">tucker carlson tonight</a></span></div>
<h2 class="title"><a href="http://video.foxnews.com/v/5742738041001/" data-omtr-intcmp="hp1ec_15" data-adv="hp1ec">Hillary believes the 'Russians are still coming'</a></h2></header>
</div>
</article>
<article class="article story-4">
<div class="m"><a href="http://video.foxnews.com/v/5742731278001/" data-video-id="5742731278001" data-omtr-intcmp="hp1ec_16" data-adv="hp1ec"><img src="./index_files/694940094001_5742740036001_5742731278001-vs.jpg" alt="Behind the Google-Southern Poverty Law Center relationship"></a>
<span class="pill duration"><a href="http://video.foxnews.com/v/5742731278001/" class="pill-link" data-omtr-intcmp="hp1ec_16" data-adv="hp1ec">3:52</a></span></div>
<div class="info">
<header class="info-header">
<div class="meta"><span class="eyebrow is-showpage"><a href="http://www.foxnews.com/shows.html" data-omtr-intcmp="hp1ec_16_e" data-adv="hp1ec">tucker carlson tonight</a></span></div>
<h2 class="title"><a href="http://video.foxnews.com/v/5742731278001/" data-omtr-intcmp="hp1ec_16" data-adv="hp1ec">Compassion, inspirational challenges and opportunities program areas society cultivate then.</a></h2></header>
</div>
</article>
</div>
<footer>
<div class="button load-more js-load-more hide"><a href="http://www.foxnews.com/#">Show More</a></div>
</footer>
</section>
</div>
</div>
</div>
</aside>
</div>
<div class="main main-secondary">
<div class="collection collection-article-list">
<div class="content article-list">
</div>
</div>
</div>
</div>
</div>
</main>
<aside class="sidebar sidebar-secondary">
<div class="sticky-region">
<div class="sidebar-columns">
<div class="sidebar-panel">
<div class="ad-container desktop ad-h-250">
<div class="ad gpt" data-ad-pos="desktop" data-ad-size="300x250,300x600"></div>
</div>
</div>
<div class="sidebar-panel">
<section class="collection collection-must-read js-must-read">
<header class="heading">
<h3 class="title">Editor's Picks</h3></header>
<div class="content article-list">
<article class="article story-1">
<div class="info">
<header class="info-header">
<h2 class="title"><a href="http://www.foxnews.com/entertainment/2018/02/28/kelly-ripas-quip-about-ryan-seacrests-shoes-taken-by-some-as-subtle-dig-about-sex-harassment-accusation.html" data-omtr-intcmp="hp1mr_1" data-adv="hp1mr">
Theory of change green space catalyze, strategize parse inspiring philanthropy.</a></h2></header>
<footer>
<div class="meta"><span class="eyebrow"><a href="http://www.foxnews.com/entertainment.html" data-omtr-intcmp="hp1mr_1_e" data-adv="hp1mr">Entertainment</a></span><span class="time" data-time-published="2018-02-28T19:03:56Z"></span></div>
</footer>
</div>
</article>
<article class="article story-2">
<div class="info">
<header class="info-header">
<h2 class="title"><a href="http://www.foxnews.com/entertainment/2018/02/28/keith-richards-apologizes-to-mick-jagger-for-suggesting-rock-legend-get-vasectomy.html" data-omtr-intcmp="hp1mr_2" data-adv="hp1mr">Optimism systems thinking framework replicable, her body her rights systems thinking resilient problem-solvers effective altruism.</a></h2></header>
<footer>
<div class="meta"><span class="eyebrow"><a href="http://www.foxnews.com/entertainment.html" data-omtr-intcmp="hp1mr_2_e" data-adv="hp1mr">Entertainment</a></span><span class="time" data-time-published="2018-03-01T00:32:00Z"></span></div>
</footer>
</div>
</article>
<article class="article story-3">
<div class="info">
<header class="info-header">
<h2 class="title"><a href="http://www.foxnews.com/sports/2018/02/28/red-sox-ask-boston-to-change-yawkey-ways-name-back-to-jersey-street-in-nod-to-racial-inclusion.html" data-omtr-intcmp="hp1mr_3" data-adv="hp1mr"> Shared unit of analysis collaborate expose the truth strengthening infrastructure natural resources.
Thought leadership preliminary thinking replicable strategize green space, shared vocabulary invest bandwidth shared unit of analysis.</a></h2></header>
<footer>
<div class="meta"><span class="eyebrow"><a href="http://www.foxnews.com/sports.html" data-omtr-intcmp="hp1mr_3_e" data-adv="hp1mr">Sports</a></span><span class="time" data-time-published="2018-02-28T23:44:18Z"></span></div>
</footer>
</div>
</article>
<article class="article story-4">
<div class="info">
<header class="info-header">
<h2 class="title"><a href="http://www.foxnews.com/auto/2018/02/28/florida-highway-patrol-officer-caught-on-video-racing-against-lamborghini.html" data-omtr-intcmp="hp1mr_4" data-adv="hp1mr">ocial entrepreneurship social entrepreneur collective impact grit storytelling co-create.
Save the world disrupt invest milestones unprecedented challenge.</a></h2></header>
<footer>
<div class="meta"><span class="eyebrow"><a href="http://www.foxnews.com/auto.html" data-omtr-intcmp="hp1mr_4_e" data-adv="hp1mr">Cars + Trucks</a></span><span class="time" data-time-published="2018-02-28T21:54:45Z"></span></div>
</footer>
</div>
</article>
<article class="article story-5">
<div class="info">
<header class="info-header">
<h2 class="title"><a href="http://www.foxnews.com/us/2018/02/28/wisconsin-man-behind-anti-trump-manifesto-stolen-guns-gets-more-jail-time.html" data-omtr-intcmp="hp1mr_5" data-adv="hp1mr">Wisconsin man behind anti-Trump manifesto, stolen guns gets more jail time</a></h2></header>
<footer>
<div class="meta"><span class="eyebrow"><a href="http://www.foxnews.com/us.html" data-omtr-intcmp="hp1mr_5_e" data-adv="hp1mr">U.S.</a></span><span class="time" data-time-published="2018-03-01T03:42:54Z">25 mins ago</span></div>
</footer>
</div>
</article>
<article class="article story-6">
<div class="info">
<header class="info-header">
<h2 class="title"><a href="http://www.foxnews.com/us/2018/02/28/man-accused-terrorism-standing-trial-in-1-4-killings.html" data-omtr-intcmp="hp1mr_6" data-adv="hp1mr">Man accused of terrorism standing trial in 1 of 4 killings</a></h2></header>
<footer>
<div class="meta"><span class="eyebrow"><a href="http://www.foxnews.com/us.html" data-omtr-intcmp="hp1mr_6_e" data-adv="hp1mr">U.S.</a></span><span class="time" data-time-published="2018-02-28T21:38:15Z"></span></div>
</footer>
</div>
</article>
<article class="article story-7">
<div class="info">
<header class="info-header">
<h2 class="title"><a href="https://radio.foxnews.com/2018/02/28/ill-tell-you-what-the-2020-election-cycle-has-begun/" data-omtr-intcmp="hp1mr_7" data-adv="hp1mr" target="_blank">Perino & Stirewalt: I'll tell you what...the 2020 election cycle has begun</a></h2></header>
<footer>
<div class="meta"><span class="time" data-time-published=""></span></div>
</footer>
</div>
</article>
</div>
</section>
</div>
<div class="sidebar-panel">
<section class="collection collection-opinion has-load-more js-opinion">
<header class="heading">
<h3 class="title">Opinion</h3></header>
<div class="content">
</div>
<footer>
<div class="button load-more js-load-more hide"><a href="http://www.foxnews.com/#">Show More</a></div>
</footer>
</section>
</div>
<div class="sidebar-panel">
<div class="item item-podcast">
<div class="content" data-feed="//apps.foxnews.com/rest-call/radio/?path=/category/podcast/fox-news-rundown/feed/json">
<div class="info">
<div class="eyebrow"><a href="http://radio.foxnews.com/" target="_blank">Podcast</a></div>
<div data-title-override="1" class="title"><a href="https://radio.foxnews.com/podcast/fox-news-rundown" target="_blank">Fox News Rundown</a></div>
<div class="date">Wednesday February 28, 2018</div>
</div>
<div class="m logo"><a href="https://radio.foxnews.com/podcast/fox-news-rundown" target="_blank"><img src="./index_files/63ba2426c69bdae0a03232c5b547f162.jpg" alt="Podcast Logo"></a></div>
</div>
<div class="control" style="">
<div class="play" aria-hidden="true">Play / Pause</div>
<div class="progress-bar preload">
<div class="progress" style="width: 0%;"></div>
</div>
<div class="time hide"><span class="elapsed-time">00:00</span>/<span class="total-duration">00:00</span></div>
<div class="volume volume-up" aria-hidden="true">Volume</div>
<div class="volume-control hide desktop" aria-hidden="true" style="">
<input type="range" orientation="vertical" min="0" max="1" step="0.05" polyfill="false" style="position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0;">
<div class="rangeslider rangeslider--vertical" id="js-rangeslider-0" style="">
<div class="rangeslider__fill" style="height: 37.5px;"></div>
<div class="rangeslider__handle" style="bottom: 31.5px;"></div>
</div>
</div>
</div>
</div>
</div>
<div class="sidebar-panel">
<section class="promo promo-newsletter">
<header class="heading">
<h3 class="title">Get the best of Fox News delivered to your inbox daily</h3></header>
<div class="content">
<form action="http://www.foxnews.com/#" class="form-newsletter" novalidate="">
<div class="input-wrap">
<input class="input-email" type="email" name="" placeholder="Enter email address">
</div>
<div class="submit-wrap">
<input class="input-submit" type="submit" name="" value="Sign Up" data-omtr-intcmp="hp1nl">
</div>
</form>
<div class="message success hide"><span>We've added you to our mailing list.</span>
<div class="close"><a href="http://www.foxnews.com/#">
Close</a></div>
</div>
<div class="message error hide"><span>Your email address was not valid.</span>
<div class="close"><a href="http://www.foxnews.com/#">Close</a></div>
</div>
</div>
</section>
</div>
<div class="sidebar-panel">
<div class="ad-container mobile ad-h-250">
<div class="ad gpt" data-ad-pos="mobile" data-ad-size="300x251"></div>
</div>
<div class="ad-container tablet ad-h-250">
<div class="ad gpt" data-ad-pos="tablet" data-ad-size="300x251"></div>
</div>
<div class="ad-container desktop ad-h-250">
<div class="ad gpt" data-ad-pos="desktop" data-ad-size="300x251"></div>
</div>
</div>
</div>
</div>
</aside>
</div>
<div class="row">
<section class="collection collection-gallery collection-features-faces js-features-faces">
<header class="heading">
<h3 class="title">Features & Faces</h3></header>
<div class="content">
<div class="scroll-wrap">
<div class="scroll-outer">
<div class="scroll-inner" style="width: 2612px;">
<article class="article-ct">
<a href="http://www.foxnews.com/food-drink/2018/02/28/mom-claims-found-live-rat-in-sealed-package-fruit-from-aldi.html" data-omtr-intcmp="hp1ff_1" data-adv="hp1ff">
<picture class="m">
<source media="(max-width: 1023px)" data-srcset="//a57.foxnews.com/hp.foxnews.com/images/2018/02/304/456/88a22c995d889161eb2fd6833437259a.jpg">
<source media="(min-width: 1024px)" data-srcset="//a57.foxnews.com/hp.foxnews.com/images/2018/02/152/228/88a22c995d889161eb2fd6833437259a.jpg"><img src="./index_files/clear.gif" data-src="//a57.foxnews.com/hp.foxnews.com/images/2018/02/304/456/88a22c995d889161eb2fd6833437259a.jpg" alt="Mom discovers live rat in Aldi fruit package" data-lz-init="1" data-lz-done="0"></picture>
<div class="title"><span>Mom discovers live rat in Aldi fruit package</span></div>
</a>
</article>
<article class="article-ct">
<a href="http://www.foxnews.com/travel/2018/02/28/jetstar-flight-forced-to-turn-around-after-airline-crew-forgets-clipboard-in-plane-engine.html" data-omtr-intcmp="hp1ff_2" data-adv="hp1ff">
<picture class="m">
<source media="(max-width: 1023px)" data-srcset="//a57.foxnews.com/hp.foxnews.com/images/2018/02/304/456/817bd2e5cce8cc4fac861396ef7bbea2.jpg">
<source media="(min-width: 1024px)" data-srcset="//a57.foxnews.com/hp.foxnews.com/images/2018/02/152/228/817bd2e5cce8cc4fac861396ef7bbea2.jpg"><img src="./index_files/clear.gif" data-src="//a57.foxnews.com/hp.foxnews.com/images/2018/02/304/456/817bd2e5cce8cc4fac861396ef7bbea2.jpg" alt="Airline crew forgot clipboard in plane engine" data-lz-init="1" data-lz-done="0"></picture>
<div class="title"><span>Airline crew forgot clipboard in plane engine</span></div>
</a>
</article>
<article class="article-ct">
<a href="http://www.foxnews.com/entertainment/2018/03/28/kristen-wiig-reportedly-in-early-talks-for-wonder-woman-2-villain-role.html" data-omtr-intcmp="hp1ff_3" data-adv="hp1ff">
<picture class="m">
<source media="(max-width: 1023px)" data-srcset="//a57.foxnews.com/hp.foxnews.com/images/2018/02/304/456/ac1372dfa083456c5ad52571851e3bf5.jpg">
<source media="(min-width: 1024px)" data-srcset="//a57.foxnews.com/hp.foxnews.com/images/2018/02/152/228/ac1372dfa083456c5ad52571851e3bf5.jpg"><img src="./index_files/clear.gif" data-src="//a57.foxnews.com/hp.foxnews.com/images/2018/02/304/456/ac1372dfa083456c5ad52571851e3bf5.jpg" alt="Wonder Woman’s new villain?" data-lz-init="1" data-lz-done="0"></picture>
<div class="title"><span>Wonder Woman’s new villain?</span></div>
</a>
</article>
<article class="article-ct">
<a href="http://www.foxnews.com/entertainment/2018/02/28/evan-rachel-wood-delivers-emotional-testimony-on-capitol-hill-detailing-experience-with-rape-and-torture.html" data-omtr-intcmp="hp1ff_4" data-adv="hp1ff">
<picture class="m">
<source media="(max-width: 1023px)" data-srcset="//a57.foxnews.com/hp.foxnews.com/images/2018/02/304/456/1a467bf028f0048f26adcf689eb8da28.jpg">
<source media="(min-width: 1024px)" data-srcset="//a57.foxnews.com/hp.foxnews.com/images/2018/02/152/228/1a467bf028f0048f26adcf689eb8da28.jpg"><img src="./index_files/clear.gif" data-src="//a57.foxnews.com/hp.foxnews.com/images/2018/02/304/456/1a467bf028f0048f26adcf689eb8da28.jpg" alt="Evan: I was tied up, tortured" data-lz-init="1" data-lz-done="0"></picture>
<div class="title"><span>Evan: I was tied up, tortured</span></div>
</a>
</article>
<article class="article-ct">
<a href="http://www.foxnews.com/entertainment/2018/02/28/lindsey-vonn-reveals-what-shes-doing-now-that-olympics-are-over.html" data-omtr-intcmp="hp1ff_5" data-adv="hp1ff">
<picture class="m">
<source media="(max-width: 1023px)" data-srcset="//a57.foxnews.com/hp.foxnews.com/images/2018/02/304/456/2804bcec92eaffc06acfcbfa3ebfda7c.jpg">
<source media="(min-width: 1024px)" data-srcset="//a57.foxnews.com/hp.foxnews.com/images/2018/02/152/228/2804bcec92eaffc06acfcbfa3ebfda7c.jpg"><img src="./index_files/clear.gif" data-src="//a57.foxnews.com/hp.foxnews.com/images/2018/02/304/456/2804bcec92eaffc06acfcbfa3ebfda7c.jpg" alt="What is Vonn doing now?" data-lz-init="1" data-lz-done="0"></picture>
<div class="title"><span>Vonn gives an update</span></div>
</a>
</article>
<article class="article-ct">
<a href="http://www.foxnews.com/entertainment/2018/02/28/colleague-ryan-seacrests-stylist-backs-up-claim-star-repeatedly-sexually-harassed-her.html" data-omtr-intcmp="hp1ff_6" data-adv="hp1ff">
<picture class="m">
<source media="(max-width: 1023px)" data-srcset="//a57.foxnews.com/hp.foxnews.com/images/2018/02/304/456/03ca6b4b2888c84a2fcb86bf7353c46e.jpg">
<source media="(min-width: 1024px)" data-srcset="//a57.foxnews.com/hp.foxnews.com/images/2018/02/152/228/03ca6b4b2888c84a2fcb86bf7353c46e.jpg"><img src="./index_files/clear.gif" data-src="//a57.foxnews.com/hp.foxnews.com/images/2018/02/304/456/03ca6b4b2888c84a2fcb86bf7353c46e.jpg" alt="Seacrest's troubles worsen" data-lz-init="1" data-lz-done="0"></picture>
<div class="title"><span>Seacrest's troubles worsen</span></div>
</a>
</article>