This repository has been archived by the owner on May 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathзавантаження.htm
3430 lines (2488 loc) · 244 KB
/
завантаження.htm
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>
<!--[if IE 8]><html class="ie8"><![endif]-->
<!--[if IE 9]><html class="ie9"><![endif]-->
<!--[if gt IE 8]><!--> <html lang="en-GB"> <!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="user-scalable=yes, width=device-width, initial-scale=1.0, maximum-scale=1, minimum-scale=1">
<!--[if lt IE 9]>
<script src="https://briefingsforbrexit.com/wp-content/themes/voice/js/html5.js"></script>
<![endif]-->
<title>News Archives - Briefings For Brexit</title>
<script>window._wca = window._wca || [];</script>
<!-- This site is optimized with the Yoast SEO plugin v11.4 - https://yoast.com/wordpress/plugins/seo/ -->
<link rel="canonical" href="https://briefingsforbrexit.com/category/news/" />
<link rel="next" href="https://briefingsforbrexit.com/category/news/page/2/" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:description" content="Comments on Media Coverage of Brexit and A record of Media Coverage of BfB" />
<meta name="twitter:title" content="News Archives - Briefings For Brexit" />
<meta name="twitter:site" content="@briefing4brexit" />
<script type='application/ld+json' class='yoast-schema-graph yoast-schema-graph--main'>{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://briefingsforbrexit.com/#organization","name":"Briefings For Brexit","url":"https://briefingsforbrexit.com/","sameAs":["https://www.facebook.com/BriefingsForBrexit/","https://twitter.com/briefing4brexit"]},{"@type":"WebSite","@id":"https://briefingsforbrexit.com/#website","url":"https://briefingsforbrexit.com/","name":"Briefings For Brexit","publisher":{"@id":"https://briefingsforbrexit.com/#organization"},"potentialAction":{"@type":"SearchAction","target":"https://briefingsforbrexit.com/?s={search_term_string}","query-input":"required name=search_term_string"}},{"@type":"CollectionPage","@id":"https://briefingsforbrexit.com/category/news/#webpage","url":"https://briefingsforbrexit.com/category/news/","inLanguage":"en-GB","name":"News Archives - Briefings For Brexit","isPartOf":{"@id":"https://briefingsforbrexit.com/#website"}}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel='dns-prefetch' href='//www.google.com' />
<link rel='dns-prefetch' href='//secure.gravatar.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="Briefings For Brexit » Feed" href="https://briefingsforbrexit.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Briefings For Brexit » News Category Feed" href="https://briefingsforbrexit.com/category/news/feed/" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/briefingsforbrexit.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.2.2"}};
!function(a,b,c){function d(a,b){var c=String.fromCharCode;l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,a),0,0);var d=k.toDataURL();l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,b),0,0);var e=k.toDataURL();return d===e}function e(a){var b;if(!l||!l.fillText)return!1;switch(l.textBaseline="top",l.font="600 32px Arial",a){case"flag":return!(b=d([55356,56826,55356,56819],[55356,56826,8203,55356,56819]))&&(b=d([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]),!b);case"emoji":return b=d([55357,56424,55356,57342,8205,55358,56605,8205,55357,56424,55356,57340],[55357,56424,55356,57342,8203,55358,56605,8203,55357,56424,55356,57340]),!b}return!1}function f(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var g,h,i,j,k=b.createElement("canvas"),l=k.getContext&&k.getContext("2d");for(j=Array("flag","emoji"),c.supports={everything:!0,everythingExceptFlag:!0},i=0;i<j.length;i++)c.supports[j[i]]=e(j[i]),c.supports.everything=c.supports.everything&&c.supports[j[i]],"flag"!==j[i]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[j[i]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(h=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",h,!1),a.addEventListener("load",h,!1)):(a.attachEvent("onload",h),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),g=c.source||{},g.concatemoji?f(g.concatemoji):g.wpemoji&&g.twemoji&&(f(g.twemoji),f(g.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='https://briefingsforbrexit.com/wp-includes/css/dist/block-library/style.min.css?ver=5.2.2' type='text/css' media='all' />
<link rel='stylesheet' id='wc-block-style-css' href='https://briefingsforbrexit.com/wp-content/plugins/woocommerce/assets/css/blocks/style.css?ver=3.6.4' type='text/css' media='all' />
<link rel='stylesheet' id='mpp_gutenberg-css' href='https://briefingsforbrexit.com/wp-content/plugins/metronet-profile-picture/dist/blocks.style.build.css?ver=2.2.8' type='text/css' media='all' />
<link rel='stylesheet' id='contact-form-7-css' href='https://briefingsforbrexit.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.1.3' type='text/css' media='all' />
<link rel='stylesheet' id='mks_shortcodes_simple_line_icons-css' href='https://briefingsforbrexit.com/wp-content/plugins/meks-flexible-shortcodes/css/simple-line/simple-line-icons.css?ver=1.3.1' type='text/css' media='screen' />
<link rel='stylesheet' id='mks_shortcodes_css-css' href='https://briefingsforbrexit.com/wp-content/plugins/meks-flexible-shortcodes/css/style.css?ver=1.3.1' type='text/css' media='screen' />
<link rel='stylesheet' id='cookie-consent-style-css' href='https://briefingsforbrexit.com/wp-content/plugins/uk-cookie-consent/assets/css/style.css?ver=5.2.2' type='text/css' media='all' />
<link rel='stylesheet' id='woocommerce-layout-css' href='https://briefingsforbrexit.com/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=3.6.4' type='text/css' media='all' />
<style id='woocommerce-layout-inline-css' type='text/css'>
.infinite-scroll .woocommerce-pagination {
display: none;
}
</style>
<link rel='stylesheet' id='woocommerce-smallscreen-css' href='https://briefingsforbrexit.com/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=3.6.4' type='text/css' media='only screen and (max-width: 768px)' />
<link rel='stylesheet' id='woocommerce-general-css' href='https://briefingsforbrexit.com/wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=3.6.4' type='text/css' media='all' />
<style id='woocommerce-inline-inline-css' type='text/css'>
.woocommerce form .form-row .required { visibility: visible; }
</style>
<link rel='stylesheet' id='ez-icomoon-css' href='https://briefingsforbrexit.com/wp-content/plugins/easy-table-of-contents/vendor/icomoon/style.min.css?ver=1.7' type='text/css' media='all' />
<link rel='stylesheet' id='ez-toc-css' href='https://briefingsforbrexit.com/wp-content/plugins/easy-table-of-contents/assets/css/screen.min.css?ver=1.7' type='text/css' media='all' />
<style id='ez-toc-inline-css' type='text/css'>
div#ez-toc-container p.ez-toc-title {font-size: 120%;}div#ez-toc-container p.ez-toc-title {font-weight: 500;}div#ez-toc-container ul li {font-size: 95%;}div#ez-toc-container {background: #f7f7f7;border: 1px solid #ffffff;width: 100%;}div#ez-toc-container p.ez-toc-title {color: #999;}div#ez-toc-container ul.ez-toc-list a {color: #af2323;}div#ez-toc-container ul.ez-toc-list a:hover {color: #dd3e3e;}div#ez-toc-container ul.ez-toc-list a:visited {color: #ff5454;}
</style>
<link rel='stylesheet' id='font-awesome-css-css' href='https://briefingsforbrexit.com/wp-content/plugins/text-slider/public/../includes/font-awesome/css/font-awesome.min.css?ver=1.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-ie7-css-css' href='https://briefingsforbrexit.com/wp-content/plugins/text-slider/public/../includes/font-awesome/css/font-awesome-ie7.min.css?ver=1.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='text-slider-plugin-styles-css' href='https://briefingsforbrexit.com/wp-content/plugins/text-slider/public/assets/css/public.css?ver=1.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='woocommerce-nyp-css' href='https://briefingsforbrexit.com/wp-content/plugins/woocommerce-name-your-price/assets/css/name-your-price.css?ver=2.8.2' type='text/css' media='all' />
<link rel='stylesheet' id='vce_font_0-css' href='https://fonts.googleapis.com/css?family=Open+Sans%3A400&subset=latin%2Clatin-ext&ver=2.8.3' type='text/css' media='screen' />
<link rel='stylesheet' id='vce_font_1-css' href='https://fonts.googleapis.com/css?family=Playfair+Display%3A400&subset=latin&ver=2.8.3' type='text/css' media='screen' />
<link rel='stylesheet' id='vce_font_2-css' href='https://fonts.googleapis.com/css?family=Roboto+Slab%3A400&subset=latin%2Clatin-ext&ver=2.8.3' type='text/css' media='screen' />
<link rel='stylesheet' id='vce_style-css' href='https://briefingsforbrexit.com/wp-content/themes/voice/css/min.css?ver=2.8.3' type='text/css' media='screen, print' />
<style id='vce_style-inline-css' type='text/css'>
body, button, input, select, textarea {font-size: 1.6rem;}.vce-single .entry-headline p{font-size: 2.2rem;}.main-navigation a{font-size: 1.6rem;}.sidebar .widget-title{font-size: 1.8rem;}.sidebar .widget, .vce-lay-c .entry-content, .vce-lay-h .entry-content {font-size: 1.4rem;}.vce-featured-link-article{font-size: 5.2rem;}.vce-featured-grid-big.vce-featured-grid .vce-featured-link-article{font-size: 3.4rem;}.vce-featured-grid .vce-featured-link-article{font-size: 2.2rem;}h1 { font-size: 4.5rem; }h2 { font-size: 4.0rem; }h3 { font-size: 3.5rem; }h4 { font-size: 2.5rem; }h5 { font-size: 2.0rem; }h6 { font-size: 1.8rem; }.comment-reply-title, .main-box-title{font-size: 2.2rem;}h1.entry-title{font-size: 4.5rem;}.vce-lay-a .entry-title a{font-size: 3.4rem;}.vce-lay-b .entry-title{font-size: 2.4rem;}.vce-lay-c .entry-title, .vce-sid-none .vce-lay-c .entry-title{font-size: 2.2rem;}.vce-lay-d .entry-title{font-size: 1.5rem;}.vce-lay-e .entry-title{font-size: 1.4rem;}.vce-lay-f .entry-title{font-size: 1.4rem;}.vce-lay-g .entry-title a, .vce-lay-g .entry-title a:hover{font-size: 3.0rem;}.vce-lay-h .entry-title{font-size: 2.4rem;}.entry-meta div,.entry-meta div a,.vce-lay-g .meta-item,.vce-lay-c .meta-item{font-size: 1.4rem;}.vce-lay-d .meta-category a,.vce-lay-d .entry-meta div,.vce-lay-d .entry-meta div a,.vce-lay-e .entry-meta div,.vce-lay-e .entry-meta div a,.vce-lay-e .fn,.vce-lay-e .meta-item{font-size: 1.3rem;}body {background-color:#f0f0f0;}body,.mks_author_widget h3,.site-description,.meta-category a,textarea {font-family: 'Open Sans';font-weight: 400;}h1,h2,h3,h4,h5,h6,blockquote,.vce-post-link,.site-title,.site-title a,.main-box-title,.comment-reply-title,.entry-title a,.vce-single .entry-headline p,.vce-prev-next-link,.author-title,.mks_pullquote,.widget_rss ul li .rsswidget,#bbpress-forums .bbp-forum-title,#bbpress-forums .bbp-topic-permalink {font-family: 'Playfair Display';font-weight: 400;}.main-navigation a,.sidr a{font-family: 'Roboto Slab';font-weight: 400;}.vce-single .entry-content,.vce-single .entry-headline,.vce-single .entry-footer{width: 600px;}.vce-lay-a .lay-a-content{width: 600px;max-width: 600px;}.vce-page .entry-content,.vce-page .entry-title-page {width: 600px;}.vce-sid-none .vce-single .entry-content,.vce-sid-none .vce-single .entry-headline,.vce-sid-none .vce-single .entry-footer {width: 600px;}.vce-sid-none .vce-page .entry-content,.vce-sid-none .vce-page .entry-title-page,.error404 .entry-content {width: 600px;max-width: 600px;}body, button, input, select, textarea{color: #444444;}h1,h2,h3,h4,h5,h6,.entry-title a,.prev-next-nav a,#bbpress-forums .bbp-forum-title, #bbpress-forums .bbp-topic-permalink,.woocommerce ul.products li.product .price .amount{color: #232323;}a,.entry-title a:hover,.vce-prev-next-link:hover,.vce-author-links a:hover,.required,.error404 h4,.prev-next-nav a:hover,#bbpress-forums .bbp-forum-title:hover, #bbpress-forums .bbp-topic-permalink:hover,.woocommerce ul.products li.product h3:hover,.woocommerce ul.products li.product h3:hover mark,.main-box-title a:hover{color: #c90035;}.vce-square,.vce-main-content .mejs-controls .mejs-time-rail .mejs-time-current,button,input[type="button"],input[type="reset"],input[type="submit"],.vce-button,.pagination-wapper a,#vce-pagination .next.page-numbers,#vce-pagination .prev.page-numbers,#vce-pagination .page-numbers,#vce-pagination .page-numbers.current,.vce-link-pages a,#vce-pagination a,.vce-load-more a,.vce-slider-pagination .owl-nav > div,.vce-mega-menu-posts-wrap .owl-nav > div,.comment-reply-link:hover,.vce-featured-section a,.vce-lay-g .vce-featured-info .meta-category a,.vce-404-menu a,.vce-post.sticky .meta-image:before,#vce-pagination .page-numbers:hover,#bbpress-forums .bbp-pagination .current,#bbpress-forums .bbp-pagination a:hover,.woocommerce #respond input#submit,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button,.woocommerce ul.products li.product .added_to_cart,.woocommerce #respond input#submit:hover,.woocommerce a.button:hover,.woocommerce button.button:hover,.woocommerce input.button:hover,.woocommerce ul.products li.product .added_to_cart:hover,.woocommerce #respond input#submit.alt,.woocommerce a.button.alt,.woocommerce button.button.alt,.woocommerce input.button.alt,.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover,.woocommerce span.onsale,.woocommerce .widget_price_filter .ui-slider .ui-slider-range,.woocommerce .widget_price_filter .ui-slider .ui-slider-handle,.comments-holder .navigation .page-numbers.current,.vce-lay-a .vce-read-more:hover,.vce-lay-c .vce-read-more:hover{background-color: #c90035;}#vce-pagination .page-numbers,.comments-holder .navigation .page-numbers{background: transparent;color: #c90035;border: 1px solid #c90035;}.comments-holder .navigation .page-numbers:hover{background: #c90035;border: 1px solid #c90035;}.bbp-pagination-links a{background: transparent;color: #c90035;border: 1px solid #c90035 !important;}#vce-pagination .page-numbers.current,.bbp-pagination-links span.current,.comments-holder .navigation .page-numbers.current{border: 1px solid #c90035;}.widget_categories .cat-item:before,.widget_categories .cat-item .count{background: #c90035;}.comment-reply-link,.vce-lay-a .vce-read-more,.vce-lay-c .vce-read-more{border: 1px solid #c90035;}.entry-meta div,.entry-meta-count,.entry-meta div a,.comment-metadata a,.meta-category span,.meta-author-wrapped,.wp-caption .wp-caption-text,.widget_rss .rss-date,.sidebar cite,.site-footer cite,.sidebar .vce-post-list .entry-meta div,.sidebar .vce-post-list .entry-meta div a,.sidebar .vce-post-list .fn,.sidebar .vce-post-list .fn a,.site-footer .vce-post-list .entry-meta div,.site-footer .vce-post-list .entry-meta div a,.site-footer .vce-post-list .fn,.site-footer .vce-post-list .fn a,#bbpress-forums .bbp-topic-started-by,#bbpress-forums .bbp-topic-started-in,#bbpress-forums .bbp-forum-info .bbp-forum-content,#bbpress-forums p.bbp-topic-meta,span.bbp-admin-links a,.bbp-reply-post-date,#bbpress-forums li.bbp-header,#bbpress-forums li.bbp-footer,.woocommerce .woocommerce-result-count,.woocommerce .product_meta{color: #9b9b9b;}.main-box-title, .comment-reply-title, .main-box-head{background: #ffffff;color: #232323;}.main-box-title a{color: #232323;}.sidebar .widget .widget-title a{color: #232323;}.main-box,.comment-respond,.prev-next-nav{background: #f9f9f9;}.vce-post,ul.comment-list > li.comment,.main-box-single,.ie8 .vce-single,#disqus_thread,.vce-author-card,.vce-author-card .vce-content-outside,.mks-bredcrumbs-container,ul.comment-list > li.pingback{background: #ffffff;}.mks_tabs.horizontal .mks_tab_nav_item.active{border-bottom: 1px solid #ffffff;}.mks_tabs.horizontal .mks_tab_item,.mks_tabs.vertical .mks_tab_nav_item.active,.mks_tabs.horizontal .mks_tab_nav_item.active{background: #ffffff;}.mks_tabs.vertical .mks_tab_nav_item.active{border-right: 1px solid #ffffff;}#vce-pagination,.vce-slider-pagination .owl-controls,.vce-content-outside,.comments-holder .navigation{background: #f3f3f3;}.sidebar .widget-title{background: #ffffff;color: #232323;}.sidebar .widget{background: #f9f9f9;}.sidebar .widget,.sidebar .widget li a,.sidebar .mks_author_widget h3 a,.sidebar .mks_author_widget h3,.sidebar .vce-search-form .vce-search-input,.sidebar .vce-search-form .vce-search-input:focus{color: #444444;}.sidebar .widget li a:hover,.sidebar .widget a,.widget_nav_menu li.menu-item-has-children:hover:after,.widget_pages li.page_item_has_children:hover:after{color: #cf4d35;}.sidebar .tagcloud a {border: 1px solid #cf4d35;}.sidebar .mks_author_link,.sidebar .tagcloud a:hover,.sidebar .mks_themeforest_widget .more,.sidebar button,.sidebar input[type="button"],.sidebar input[type="reset"],.sidebar input[type="submit"],.sidebar .vce-button,.sidebar .bbp_widget_login .button{background-color: #cf4d35;}.sidebar .mks_author_widget .mks_autor_link_wrap,.sidebar .mks_themeforest_widget .mks_read_more,.widget .meks-instagram-follow-link {background: #f3f3f3;}.sidebar #wp-calendar caption,.sidebar .recentcomments,.sidebar .post-date,.sidebar #wp-calendar tbody{color: rgba(68,68,68,0.7);}.site-footer{background: #373941;}.site-footer .widget-title{color: #ffffff;}.site-footer,.site-footer .widget,.site-footer .widget li a,.site-footer .mks_author_widget h3 a,.site-footer .mks_author_widget h3,.site-footer .vce-search-form .vce-search-input,.site-footer .vce-search-form .vce-search-input:focus{color: #f9f9f9;}.site-footer .widget li a:hover,.site-footer .widget a,.site-info a{color: #cf4d35;}.site-footer .tagcloud a {border: 1px solid #cf4d35;}.site-footer .mks_author_link,.site-footer .mks_themeforest_widget .more,.site-footer button,.site-footer input[type="button"],.site-footer input[type="reset"],.site-footer input[type="submit"],.site-footer .vce-button,.site-footer .tagcloud a:hover{background-color: #cf4d35;}.site-footer #wp-calendar caption,.site-footer .recentcomments,.site-footer .post-date,.site-footer #wp-calendar tbody,.site-footer .site-info{color: rgba(249,249,249,0.7);}.top-header,.top-nav-menu li .sub-menu{background: #dd3333;}.top-header,.top-header a{color: #ffffff;}.top-header .vce-search-form .vce-search-input,.top-header .vce-search-input:focus,.top-header .vce-search-submit{color: #ffffff;}.top-header .vce-search-form .vce-search-input::-webkit-input-placeholder { color: #ffffff;}.top-header .vce-search-form .vce-search-input:-moz-placeholder { color: #ffffff;}.top-header .vce-search-form .vce-search-input::-moz-placeholder { color: #ffffff;}.top-header .vce-search-form .vce-search-input:-ms-input-placeholder { color: #ffffff;}.header-1-wrapper{height: 180px;padding-top: 15px;}.header-2-wrapper,.header-3-wrapper{height: 180px;}.header-2-wrapper .site-branding,.header-3-wrapper .site-branding{top: 15px;left: 0px;}.site-title a, .site-title a:hover{color: #232323;}.site-description{color: #aaaaaa;}.main-header{background-color: #ffffff;}.header-bottom-wrapper{background: #fcfcfc;}.vce-header-ads{margin: 45px 0;}.header-3-wrapper .nav-menu > li > a{padding: 80px 15px;}.header-sticky,.sidr{background: rgba(252,252,252,0.95);}.ie8 .header-sticky{background: #ffffff;}.main-navigation a,.nav-menu .vce-mega-menu > .sub-menu > li > a,.sidr li a,.vce-menu-parent{color: #4a4a4a;}.nav-menu > li:hover > a,.nav-menu > .current_page_item > a,.nav-menu > .current-menu-item > a,.nav-menu > .current-menu-ancestor > a,.main-navigation a.vce-item-selected,.main-navigation ul ul li:hover > a,.nav-menu ul .current-menu-item a,.nav-menu ul .current_page_item a,.vce-menu-parent:hover,.sidr li a:hover,.sidr li.sidr-class-current_page_item > a,.main-navigation li.current-menu-item.fa:before,.vce-responsive-nav{color: #cf4d35;}#sidr-id-vce_main_navigation_menu .soc-nav-menu li a:hover {color: #ffffff;}.nav-menu > li:hover > a,.nav-menu > .current_page_item > a,.nav-menu > .current-menu-item > a,.nav-menu > .current-menu-ancestor > a,.main-navigation a.vce-item-selected,.main-navigation ul ul,.header-sticky .nav-menu > .current_page_item:hover > a,.header-sticky .nav-menu > .current-menu-item:hover > a,.header-sticky .nav-menu > .current-menu-ancestor:hover > a,.header-sticky .main-navigation a.vce-item-selected:hover{background-color: #ffffff;}.search-header-wrap ul {border-top: 2px solid #cf4d35;}.vce-cart-icon a.vce-custom-cart span,.sidr-class-vce-custom-cart .sidr-class-vce-cart-count {background: #cf4d35;font-family: 'Open Sans';}.vce-border-top .main-box-title{border-top: 2px solid #c90035;}.tagcloud a:hover,.sidebar .widget .mks_author_link,.sidebar .widget.mks_themeforest_widget .more,.site-footer .widget .mks_author_link,.site-footer .widget.mks_themeforest_widget .more,.vce-lay-g .entry-meta div,.vce-lay-g .fn,.vce-lay-g .fn a{color: #FFF;}.vce-featured-header .vce-featured-header-background{opacity: 0.5}.vce-featured-grid .vce-featured-header-background,.vce-post-big .vce-post-img:after,.vce-post-slider .vce-post-img:after{opacity: 0.5}.vce-featured-grid .owl-item:hover .vce-grid-text .vce-featured-header-background,.vce-post-big li:hover .vce-post-img:after,.vce-post-slider li:hover .vce-post-img:after {opacity: 0.8}.vce-featured-grid.vce-featured-grid-big .vce-featured-header-background,.vce-post-big .vce-post-img:after,.vce-post-slider .vce-post-img:after{opacity: 0.5}.vce-featured-grid.vce-featured-grid-big .owl-item:hover .vce-grid-text .vce-featured-header-background,.vce-post-big li:hover .vce-post-img:after,.vce-post-slider li:hover .vce-post-img:after {opacity: 0.8}#back-top {background: #323232}.sidr input[type=text]{background: rgba(74,74,74,0.1);color: rgba(74,74,74,0.5);}.is-style-default{border-color: #c90035;}.is-style-solid-color{background-color: #c90035;color: #ffffff;}.wp-block-image figcaption{color: #9b9b9b;}.wp-block-cover .wp-block-cover-image-text, .wp-block-cover .wp-block-cover-text, .wp-block-cover h2, .wp-block-cover-image .wp-block-cover-image-text, .wp-block-cover-image .wp-block-cover-text, .wp-block-cover-image h2,p.has-drop-cap:not(:focus)::first-letter,p.wp-block-subhead{font-family: 'Playfair Display';font-weight: 400;}.wp-block-cover .wp-block-cover-image-text, .wp-block-cover .wp-block-cover-text, .wp-block-cover h2, .wp-block-cover-image .wp-block-cover-image-text, .wp-block-cover-image .wp-block-cover-text, .wp-block-cover-image h2{font-size: 2.5rem;}p.wp-block-subhead{font-size: 2.2rem;}.wp-block-button__link{background: #c90035}.meta-image:hover a img,.vce-lay-h .img-wrap:hover .meta-image > img,.img-wrp:hover img,.vce-gallery-big:hover img,.vce-gallery .gallery-item:hover img,.wp-block-gallery .blocks-gallery-item:hover img,.vce_posts_widget .vce-post-big li:hover img,.vce-featured-grid .owl-item:hover img,.vce-post-img:hover img,.mega-menu-img:hover img{-webkit-transform: scale(1.1);-moz-transform: scale(1.1);-o-transform: scale(1.1);-ms-transform: scale(1.1);transform: scale(1.1);}a.category-2, .sidebar .widget .vce-post-list a.category-2{ color: #1e73be;}body.category-2 .main-box-title, .main-box-title.cat-2 { border-top: 2px solid #1e73be;}.widget_categories li.cat-item-2 .count { background: #1e73be;}.widget_categories li.cat-item-2:before { background:#1e73be;}.vce-featured-section .category-2, .vce-post-big .meta-category a.category-2, .vce-post-slider .meta-category a.category-2{ background-color: #1e73be;}.vce-lay-g .vce-featured-info .meta-category a.category-2{ background-color: #1e73be;}.vce-lay-h header .meta-category a.category-2{ background-color: #1e73be;}a.category-3, .sidebar .widget .vce-post-list a.category-3{ color: #17b26a;}body.category-3 .main-box-title, .main-box-title.cat-3 { border-top: 2px solid #17b26a;}.widget_categories li.cat-item-3 .count { background: #17b26a;}.widget_categories li.cat-item-3:before { background:#17b26a;}.vce-featured-section .category-3, .vce-post-big .meta-category a.category-3, .vce-post-slider .meta-category a.category-3{ background-color: #17b26a;}.vce-lay-g .vce-featured-info .meta-category a.category-3{ background-color: #17b26a;}.vce-lay-h header .meta-category a.category-3{ background-color: #17b26a;}a.category-4, .sidebar .widget .vce-post-list a.category-4{ color: #dd3333;}body.category-4 .main-box-title, .main-box-title.cat-4 { border-top: 2px solid #dd3333;}.widget_categories li.cat-item-4 .count { background: #dd3333;}.widget_categories li.cat-item-4:before { background:#dd3333;}.vce-featured-section .category-4, .vce-post-big .meta-category a.category-4, .vce-post-slider .meta-category a.category-4{ background-color: #dd3333;}.vce-lay-g .vce-featured-info .meta-category a.category-4{ background-color: #dd3333;}.vce-lay-h header .meta-category a.category-4{ background-color: #dd3333;}a.category-5, .sidebar .widget .vce-post-list a.category-5{ color: #8224e3;}body.category-5 .main-box-title, .main-box-title.cat-5 { border-top: 2px solid #8224e3;}.widget_categories li.cat-item-5 .count { background: #8224e3;}.widget_categories li.cat-item-5:before { background:#8224e3;}.vce-featured-section .category-5, .vce-post-big .meta-category a.category-5, .vce-post-slider .meta-category a.category-5{ background-color: #8224e3;}.vce-lay-g .vce-featured-info .meta-category a.category-5{ background-color: #8224e3;}.vce-lay-h header .meta-category a.category-5{ background-color: #8224e3;}a.category-45, .sidebar .widget .vce-post-list a.category-45{ color: #154496;}body.category-45 .main-box-title, .main-box-title.cat-45 { border-top: 2px solid #154496;}.widget_categories li.cat-item-45 .count { background: #154496;}.widget_categories li.cat-item-45:before { background:#154496;}.vce-featured-section .category-45, .vce-post-big .meta-category a.category-45, .vce-post-slider .meta-category a.category-45{ background-color: #154496;}.vce-lay-g .vce-featured-info .meta-category a.category-45{ background-color: #154496;}.vce-lay-h header .meta-category a.category-45{ background-color: #154496;}a.category-49, .sidebar .widget .vce-post-list a.category-49{ color: #000000;}body.category-49 .main-box-title, .main-box-title.cat-49 { border-top: 2px solid #000000;}.widget_categories li.cat-item-49 .count { background: #000000;}.widget_categories li.cat-item-49:before { background:#000000;}.vce-featured-section .category-49, .vce-post-big .meta-category a.category-49, .vce-post-slider .meta-category a.category-49{ background-color: #000000;}.vce-lay-g .vce-featured-info .meta-category a.category-49{ background-color: #000000;}.vce-lay-h header .meta-category a.category-49{ background-color: #000000;}
</style>
<link rel='stylesheet' id='vce-woocommerce-css' href='https://briefingsforbrexit.com/wp-content/themes/voice/css/vce-woocommerce.css?ver=2.8.3' type='text/css' media='screen, print' />
<link rel='stylesheet' id='vce_child_load_scripts-css' href='https://briefingsforbrexit.com/wp-content/themes/voice-child/style.css?ver=2.8.3' type='text/css' media='screen' />
<link rel='stylesheet' id='wpdreams-asp-basic-css' href='https://briefingsforbrexit.com/wp-content/plugins/ajax-search-pro/css/style.basic.css?ver=bxHcZB' type='text/css' media='all' />
<link rel='stylesheet' id='wpdreams-asp-chosen-css' href='https://briefingsforbrexit.com/wp-content/plugins/ajax-search-pro/css/chosen/chosen.css?ver=bxHcZB' type='text/css' media='all' />
<link rel='stylesheet' id='wpdreams-ajaxsearchpro-instances-css' href='https://briefingsforbrexit.com/wp-content/uploads/asp_upload/style.instances.css?ver=bxHcZB' type='text/css' media='all' />
<link rel='stylesheet' id='meks-flickr-widget-css' href='https://briefingsforbrexit.com/wp-content/plugins/meks-simple-flickr-widget/css/style.css?ver=1.1.3' type='text/css' media='all' />
<link rel='stylesheet' id='meks-author-widget-css' href='https://briefingsforbrexit.com/wp-content/plugins/meks-smart-author-widget/css/style.css?ver=1.1.1' type='text/css' media='all' />
<link rel='stylesheet' id='meks-social-widget-css' href='https://briefingsforbrexit.com/wp-content/plugins/meks-smart-social-widget/css/style.css?ver=1.4' type='text/css' media='all' />
<link rel='stylesheet' id='wp_review-style-css' href='https://briefingsforbrexit.com/wp-content/plugins/wp-review/public/css/wp-review.css?ver=5.2.0' type='text/css' media='all' />
<link rel='stylesheet' id='cstm-cds-css-css' href='https://briefingsforbrexit.com/wp-content/custom_codes/custom_public.css?ver=66' type='text/css' media='all' />
<link rel='stylesheet' id='jetpack_css-css' href='https://briefingsforbrexit.com/wp-content/plugins/jetpack/css/jetpack.css?ver=7.4.1' type='text/css' media='all' />
<script type='text/javascript' src='https://briefingsforbrexit.com/wp-includes/js/jquery/jquery.js?ver=1.12.4-wp'></script>
<script type='text/javascript' src='https://briefingsforbrexit.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<script type='text/javascript' src='https://briefingsforbrexit.com/wp-content/plugins/meks-flexible-shortcodes/js/main.js?ver=1.3.1'></script>
<script type='text/javascript' src='https://briefingsforbrexit.com/wp-content/plugins/update-alt-attribute/js/altimage.js?ver=5.2.2'></script>
<script type='text/javascript' src='https://briefingsforbrexit.com/wp-content/plugins/text-slider/public/assets/js/text-slider.min.js?ver=1.0.0'></script>
<link rel='https://api.w.org/' href='https://briefingsforbrexit.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://briefingsforbrexit.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://briefingsforbrexit.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 5.2.2" />
<meta name="generator" content="WooCommerce 3.6.4" />
<link rel="alternate" hreflang="en-GB" href="https://briefingsforbrexit.com" />
<script id="mcjs">!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,"script","https://chimpstatic.com/mcjs-connected/js/users/45b78f182df6b4c50fc10d3a7/72cdc857c711480bc4bf5f609.js");</script>
<style id="ctcc-css" type="text/css" media="screen">
#catapult-cookie-bar {
box-sizing: border-box;
max-height: 0;
opacity: 0;
z-index: 99999;
overflow: hidden;
color: #ffffff;
position: fixed;
left: 20px;
bottom: 6%;
width: 300px;
background-color: #dd3333;
}
#catapult-cookie-bar a {
color: #fff;
}
#catapult-cookie-bar .x_close span {
background-color: #ffffff;
}
button#catapultCookie {
background:#114470;
color: #ffffff;
border: 0; padding: 6px 9px; border-radius: 3px;
}
#catapult-cookie-bar h3 {
color: #ffffff;
}
.has-cookie-bar #catapult-cookie-bar {
opacity: 1;
max-height: 999px;
min-height: 30px;
}</style><script type="text/javascript">
(function(url){
if(/(?:Chrome\/26\.0\.1410\.63 Safari\/537\.31|WordfenceTestMonBot)/.test(navigator.userAgent)){ return; }
var addEvent = function(evt, handler) {
if (window.addEventListener) {
document.addEventListener(evt, handler, false);
} else if (window.attachEvent) {
document.attachEvent('on' + evt, handler);
}
};
var removeEvent = function(evt, handler) {
if (window.removeEventListener) {
document.removeEventListener(evt, handler, false);
} else if (window.detachEvent) {
document.detachEvent('on' + evt, handler);
}
};
var evts = 'contextmenu dblclick drag dragend dragenter dragleave dragover dragstart drop keydown keypress keyup mousedown mousemove mouseout mouseover mouseup mousewheel scroll'.split(' ');
var logHuman = function() {
if (window.wfLogHumanRan) { return; }
window.wfLogHumanRan = true;
var wfscr = document.createElement('script');
wfscr.type = 'text/javascript';
wfscr.async = true;
wfscr.src = url + '&r=' + Math.random();
(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(wfscr);
for (var i = 0; i < evts.length; i++) {
removeEvent(evts[i], logHuman);
}
};
for (var i = 0; i < evts.length; i++) {
addEvent(evts[i], logHuman);
}
})('//briefingsforbrexit.com/?wordfence_lh=1&hid=D281463996C96EAD6F40ED7B62C24EF9');
</script> <style>
#text-slider {
width: 100%;
position: relative;
font-family: 'Open Sans';
font-size: 90px;
font-weight: 600;
line-height: 85px;
height:auto;
overflow:hidden;
}
#text-slider article {
width:100%;
position:absolute;
top:0;
left:0;
}
#text-slider span {
display: block;
}
#text-slider-controls {
width: auto;
height: auto;
float:right;
margin:3%;
/*position: absolute;
bottom: 0;
right: 0;*/
}
/*
#text-slider-controls .prev {
float: right;
}
#text-slider-controls .next {
float: right;
}
*/
#text-slider-controls a {
text-decoration: none;
}
.nav-color {
color: #000;
font-size:86px;
}
.nav-color:hover {
color: #eee;
}
#text-slider span { font-size: 16px !important; display: block; margin-top: 20px; } #text-slider-controls a.prev:before, #text-slider-controls a.next:after { display: none !important; } #text-slider-controls i.nav-color { font-size: 12px; margin: 0 15px; } #text-slider-controls { width: auto !important; height: auto !important; float: none !important; margin: -32px auto 20px !important; display: table !important; }
</style>
<meta name="referrer" content="always"/>
<link rel='dns-prefetch' href='//v0.wordpress.com'/>
<link rel='dns-prefetch' href='//widgets.wp.com'/>
<link rel='dns-prefetch' href='//s0.wp.com'/>
<link rel='dns-prefetch' href='//0.gravatar.com'/>
<link rel='dns-prefetch' href='//1.gravatar.com'/>
<link rel='dns-prefetch' href='//2.gravatar.com'/>
<style type='text/css'>img#wpstats{display:none}</style> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript>
<link href='//fonts.googleapis.com/css?family=Open+Sans:300|Open+Sans:400|Open+Sans:700' rel='stylesheet' type='text/css'>
<style type="text/css">
<!--
@font-face {
font-family: 'asppsicons2';
src: url('https://briefingsforbrexit.com/wp-content/plugins/ajax-search-pro/css/fonts/icons/icons2.eot');
src: url('https://briefingsforbrexit.com/wp-content/plugins/ajax-search-pro/css/fonts/icons/icons2.eot?#iefix') format('embedded-opentype'),
url('https://briefingsforbrexit.com/wp-content/plugins/ajax-search-pro/css/fonts/icons/icons2.woff2') format('woff2'),
url('https://briefingsforbrexit.com/wp-content/plugins/ajax-search-pro/css/fonts/icons/icons2.woff') format('woff'),
url('https://briefingsforbrexit.com/wp-content/plugins/ajax-search-pro/css/fonts/icons/icons2.ttf') format('truetype'),
url('https://briefingsforbrexit.com/wp-content/plugins/ajax-search-pro/css/fonts/icons/icons2.svg#icons') format('svg');
font-weight: normal;
font-style: normal;
}
.asp_m{height: 0;} -->
</style>
<script type="text/javascript">
if ( typeof _ASP !== "undefined" && _ASP !== null && typeof _ASP.initialize !== "undefined" )
_ASP.initialize();
</script>
<link rel="icon" href="https://briefingsforbrexit.com/wp-content/uploads/2018/02/briefings-for-brexit-icon-65x65.png" sizes="32x32" />
<link rel="icon" href="https://briefingsforbrexit.com/wp-content/uploads/2018/02/briefings-for-brexit-icon.png" sizes="192x192" />
<link rel="apple-touch-icon-precomposed" href="https://briefingsforbrexit.com/wp-content/uploads/2018/02/briefings-for-brexit-icon.png" />
<meta name="msapplication-TileImage" content="https://briefingsforbrexit.com/wp-content/uploads/2018/02/briefings-for-brexit-icon.png" />
<link rel="shortcut icon" href="https://briefingsforbrexit.com/wp-content/uploads/2018/02/favicon.png" type="image/x-icon" /><link rel="apple-touch-icon" href="https://briefingsforbrexit.com/wp-content/uploads/2018/02/apple.png" /><meta name="msapplication-TileColor" content="#ffffff"><meta name="msapplication-TileImage" content="https://briefingsforbrexit.com/wp-content/uploads/2018/02/metro.png" /><meta name="norton-safeweb-site-verification" content="0ir28fdp7vnixkmplktm771nkas4xv1llxgilmp587oxwj9hd5co6trny5-pehzpebd76zuyj-560livmxxagl14koceayomw67w2n8y3br6bvip6yx7wgaxejm78efw" />
<!-- BEGIN ExactMetrics v5.3.8 Universal Analytics - https://exactmetrics.com/ -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-114316573-1', 'auto');
ga('send', 'pageview');
</script>
<!-- END ExactMetrics Universal Analytics -->
<script async src='https://stats.wp.com/s-201931.js'></script>
</head>
<body class="archive category category-news category-5 woocommerce-no-js chrome vce-sid-right voice-v_2_8_3">
<div id="vce-main">
<header id="header" class="main-header">
<div class="top-header">
<div class="container">
<div class="vce-wrap-left">
<ul id="vce_top_navigation_menu" class="top-nav-menu"><li id="menu-item-486" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-486"><a href="https://briefingsforbrexit.com/our-mission/">Our Mission</a></li>
<li id="menu-item-485" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-485"><a href="https://briefingsforbrexit.com/about-the-contributors/">Who We Are</a></li>
<li id="menu-item-415" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-415"><a href="https://briefingsforbrexit.com/contact/">Contact</a></li>
<li id="menu-item-2281" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2281"><a href="https://briefingsforbrexit.com/my-account/">My Account</a></li>
</ul> </div>
<div class="vce-wrap-right">
<div class="menu-social-menu-container"><ul id="vce_social_menu" class="soc-nav-menu"><li id="menu-item-8" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8"><a href="https://www.facebook.com/BriefingsForBrexit/"><span class="vce-social-name">Facebook</span></a></li>
<li id="menu-item-9" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9"><a href="https://twitter.com/briefing4brexit"><span class="vce-social-name">Twitter</span></a></li>
<li id="menu-item-2295" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2295"><a href="https://itunes.apple.com/gb/podcast/podcast-briefings-for-brexit/id1406523712"><span class="vce-social-name">iTunes</span></a></li>
</ul></div> </div>
</div>
</div><div class="container header-1-wrapper header-main-area">
<div class="vce-res-nav">
<a class="vce-responsive-nav" href="#sidr-main"><i class="fa fa-bars"></i></a>
</div>
<div class="site-branding">
<span class="site-title"><a href="https://briefingsforbrexit.com/" rel="home" class="has-logo"><picture class="vce-logo"><source media="(min-width: 1024px)" srcset="https://briefingsforbrexit.com/wp-content/uploads/2018/02/logo.png, https://briefingsforbrexit.com/wp-content/uploads/2018/02/briefings-for-brexit-retina-logo.png 2x"><source srcset="https://briefingsforbrexit.com/wp-content/uploads/2018/02/logo.png"><img src="https://briefingsforbrexit.com/wp-content/uploads/2018/02/logo.png" alt="Briefings For Brexit"></picture></a></span></div></div>
<div class="header-bottom-wrapper">
<div class="container">
<nav id="site-navigation" class="main-navigation" role="navigation">
<ul id="vce_main_navigation_menu" class="nav-menu"><li id="menu-item-563" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-563"><a href="https://briefingsforbrexit.com/">Home</a><li id="menu-item-451" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-451 vce-cat-2"><a href="https://briefingsforbrexit.com/category/blog/">Blog</a><li id="menu-item-454" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-454 vce-cat-3"><a href="https://briefingsforbrexit.com/category/key-issues/">Briefings</a><li id="menu-item-453" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-453 vce-cat-4"><a href="https://briefingsforbrexit.com/category/articles/">Reports</a><li id="menu-item-452" class="menu-item menu-item-type-taxonomy menu-item-object-category current-menu-item menu-item-452 vce-cat-5"><a href="https://briefingsforbrexit.com/category/news/" aria-current="page">News</a><li id="menu-item-1567" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1567 vce-cat-49"><a href="https://briefingsforbrexit.com/category/subscribers-views/">Subscribers’ Views</a><li id="menu-item-2051" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2051 vce-cat-126"><a href="https://briefingsforbrexit.com/category/podcasts/">Podcasts</a><li id="menu-item-3443" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3443"><a href="https://briefingsforbrexit.com/donate-to-briefings-for-brexit/">Donate</a><li class="search-header-wrap"><a class="search_header" href="javascript:void(0)"><i class="fa fa-search"></i></a><ul class="search-header-form-ul"><li><div class='asp_w asp_m asp_m_1 asp_m_1_1 wpdreams_asp_sc wpdreams_asp_sc-1 ajaxsearchpro asp_main_container asp_non_compact'
data-id="1"
data-instance="1"
id='ajaxsearchpro1_1'>
<div class="probox">
<div class='promagnifier'>
<div class='asp_text_button hiddend'>
Search </div>
<div class='innericon'>
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><path d="M460.355 421.59l-106.51-106.512c20.04-27.553 31.884-61.437 31.884-98.037C385.73 124.935 310.792 50 218.685 50c-92.106 0-167.04 74.934-167.04 167.04 0 92.107 74.935 167.042 167.04 167.042 34.912 0 67.352-10.773 94.184-29.158L419.945 462l40.41-40.41zM100.63 217.04c0-65.095 52.96-118.055 118.056-118.055 65.098 0 118.057 52.96 118.057 118.056 0 65.097-52.96 118.057-118.057 118.057-65.096 0-118.055-52.96-118.055-118.056z"/></svg> </div>
<div class="asp_clear"></div>
</div>
<div class='prosettings' data-opened=0>
<div class='innericon'>
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><path id="control-panel-4-icon" d="M170 294c0 33.138-26.862 60-60 60-33.137 0-60-26.862-60-60 0-33.137 26.863-60 60-60 33.138 0 60 26.863 60 60zm-60 90c-6.872 0-13.565-.777-20-2.243V422c0 11.046 8.954 20 20 20s20-8.954 20-20v-40.243c-6.435 1.466-13.128 2.243-20 2.243zm0-180c6.872 0 13.565.777 20 2.243V90c0-11.046-8.954-20-20-20s-20 8.954-20 20v116.243c6.435-1.466 13.128-2.243 20-2.243zm146-7c12.13 0 22 9.87 22 22s-9.87 22-22 22-22-9.87-22-22 9.87-22 22-22zm0-38c-33.137 0-60 26.863-60 60 0 33.138 26.863 60 60 60 33.138 0 60-26.862 60-60 0-33.137-26.862-60-60-60zm0-30c6.872 0 13.565.777 20 2.243V90c0-11.046-8.954-20-20-20s-20 8.954-20 20v41.243c6.435-1.466 13.128-2.243 20-2.243zm0 180c-6.872 0-13.565-.777-20-2.243V422c0 11.046 8.954 20 20 20s20-8.954 20-20V306.757c-6.435 1.466-13.128 2.243-20 2.243zm146-75c-33.137 0-60 26.863-60 60 0 33.138 26.863 60 60 60 33.138 0 60-26.862 60-60 0-33.137-26.862-60-60-60zm0-30c6.872 0 13.565.777 20 2.243V90c0-11.046-8.954-20-20-20s-20 8.954-20 20v116.243c6.435-1.466 13.128-2.243 20-2.243zm0 180c-6.872 0-13.565-.777-20-2.243V422c0 11.046 8.954 20 20 20s20-8.954 20-20v-40.243c-6.435 1.466-13.128 2.243-20 2.243z"/></svg> </div>
</div>
<div class='proinput'>
<form action='#' autocomplete="off" aria-label="Search form 1">
<input type='search' class='orig'
placeholder='Search here...'
name='phrase' value=''
aria-label="Search input 1"
autocomplete="off"/>
<input type='text' class='autocomplete' name='phrase' value=''
aria-label="Search autocomplete, ignore please"
aria-hidden="true"
autocomplete="off" disabled/>
<input type='submit'
aria-hidden="true"
aria-label="Hidden button"
style='width:0; height: 0; visibility: hidden;'>
</form>
</div>
<div class='proloading'>
<div class="asp_loader">
<div class="asp_loader-inner asp_simple-circle">
</div>
</div>
</div>
<div class='proclose'>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px"
width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512"
xml:space="preserve">
<polygon id="x-mark-icon"
points="438.393,374.595 319.757,255.977 438.378,137.348 374.595,73.607 255.995,192.225 137.375,73.622 73.607,137.352 192.246,255.983 73.622,374.625 137.352,438.393 256.002,319.734 374.652,438.378 "/>
</svg>
</div>
</div><div id='ajaxsearchprores1_1' class='asp_w asp_r asp_r_1 asp_r_1_1 vertical ajaxsearchpro wpdreams_asp_sc wpdreams_asp_sc-1'
data-id="1"
data-instance="1">
<div class="results">
<div class="resdrg">
</div>
</div>
<div class="asp_showmore_container">
<p class='showmore'>
<a class='asp_showmore'>More results... <span></span></a>
</p>
<div class="asp_moreres_loader" style="display: none;">
<div class="asp_moreres_loader-inner"></div>
</div>
</div>
<div class="asp_res_loader hiddend">
<div class="asp_loader">
<div class="asp_loader-inner asp_simple-circle">
</div>
</div>
</div>
</div> <div id='ajaxsearchprosettings1_1' class="asp_w asp_s asp_s_1 asp_s_1_1 wpdreams_asp_sc wpdreams_asp_sc-1 ajaxsearchpro searchsettings"
data-id="1"
data-instance="1">
<form name='options' class="asp-fss-flex" autocomplete = 'off'>
<input type="hidden" style="display:none;" name="current_page_id" value="7976">
<input type="hidden" style="display:none;" name="woo_currency" value="GBP">
<fieldset class="">
<legend>Search In</legend>
<div class="asp_option_inner hiddend">
<input type='hidden' name='qtranslate_lang'
value='0'/>
</div>
<div class="asp_option">
<div class="asp_option_inner">
<input type="checkbox" value="exact" id="set_exact1_1"
aria-label="Exact matches only"
name="asp_gen[]" />
<label aria-hidden="true"
for="set_exact1_1">
Hidden label </label>
</div>
<div class="asp_option_label">
Exact matches only </div>
</div>
<div class="asp_option">
<div class="asp_option_inner">
<input type="checkbox" value="title" id="set_title1_1"
aria-label="Search in title"
name="asp_gen[]" checked="checked"/>
<label aria-hidden="true"
for="set_title1_1">
Hidden label </label>
</div>
<div class="asp_option_label">
Search in title </div>
</div>
<div class="asp_option">
<div class="asp_option_inner">
<input type="checkbox" value="content" id="set_content1_1"
aria-label="Search in content"
name="asp_gen[]" checked="checked"/>
<label aria-hidden="true"
for="set_content1_1">
Hidden label </label>
</div>
<div class="asp_option_label">
Search in content </div>
</div>
<div class="asp_option">
<div class="asp_option_inner">
<input type="checkbox" value="excerpt" id="set_excerpt1_1"
aria-label="Search in excerpt"
name="asp_gen[]" checked="checked"/>
<label aria-hidden="true"
for="set_excerpt1_1">
Hidden label </label>
</div>
<div class="asp_option_label">
Search in excerpt </div>
</div>
</fieldset><fieldset class="asp_sett_scroll asp_checkboxes_filter_box">
<legend>Content Type</legend>
<div class="asp_option">
<div class="asp_option_inner">
<input type="checkbox" value="post" id="1_1customset_1_11"
aria-label="Articles"
class="asp_post_type_checkbox"
name="customset[]" checked="checked"/>
<label aria-hidden="true" for="1_1customset_1_11">
Hidden label </label>
</div>
<div class="asp_option_label">
Articles </div>
</div>
<div class="asp_option">
<div class="asp_option_inner">
<input type="checkbox" value="page" id="1_1customset_1_12"
aria-label="Pages"
class="asp_post_type_checkbox"
name="customset[]" />
<label aria-hidden="true" for="1_1customset_1_12">
Hidden label </label>
</div>
<div class="asp_option_label">
Pages </div>
</div>
</fieldset>
<fieldset class="asp_tax_filter asp_checkboxes_filter_box">
<legend>Filter by Categories</legend>
<div class='categoryfilter asp_sett_scroll'>
<div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
data-lvl="0"
asp_cat_parent="0">
<div class="asp_option_inner">
<input type="checkbox" value="49" class="asp_terms_checkbox"
aria-label="Subscribers' Views"
id="1_1termset_49"
name="termset[category][]" checked=checked/>
<label aria-hidden="true"
for="1_1termset_49">
Hidden label </label>
</div>
<div class="asp_option_label">
Subscribers' Views </div>
</div>
<div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
data-lvl="0"
asp_cat_parent="0">
<div class="asp_option_inner">
<input type="checkbox" value="126" class="asp_terms_checkbox"
aria-label="Podcasts"
id="1_1termset_126"
name="termset[category][]" checked=checked/>
<label aria-hidden="true"
for="1_1termset_126">
Hidden label </label>
</div>
<div class="asp_option_label">
Podcasts </div>
</div>
<div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
data-lvl="0"
asp_cat_parent="0">
<div class="asp_option_inner">
<input type="checkbox" value="2" class="asp_terms_checkbox"
aria-label="Blog"
id="1_1termset_2"
name="termset[category][]" checked=checked/>
<label aria-hidden="true"
for="1_1termset_2">
Hidden label </label>
</div>
<div class="asp_option_label">
Blog </div>
</div>
<div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
data-lvl="0"
asp_cat_parent="0">
<div class="asp_option_inner">
<input type="checkbox" value="3" class="asp_terms_checkbox"
aria-label="Briefings"
id="1_1termset_3"
name="termset[category][]" checked=checked/>
<label aria-hidden="true"
for="1_1termset_3">
Hidden label </label>
</div>
<div class="asp_option_label">
Briefings </div>
</div>
<div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
data-lvl="0"
asp_cat_parent="0">
<div class="asp_option_inner">
<input type="checkbox" value="4" class="asp_terms_checkbox"
aria-label="Reports"
id="1_1termset_4"
name="termset[category][]" checked=checked/>
<label aria-hidden="true"
for="1_1termset_4">
Hidden label </label>
</div>
<div class="asp_option_label">
Reports </div>
</div>
<div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
data-lvl="0"
asp_cat_parent="0">
<div class="asp_option_inner">
<input type="checkbox" value="5" class="asp_terms_checkbox"
aria-label="News"
id="1_1termset_5"
name="termset[category][]" checked=checked/>
<label aria-hidden="true"
for="1_1termset_5">
Hidden label </label>
</div>
<div class="asp_option_label">
News </div>
</div>
</div>
</fieldset>
<fieldset class="asp_content_type_filters">
<legend>Search Author</legend>
<div class="asp_option asp_option_cat ">
<div class="asp_option_inner">
<input type="checkbox" value="users" id="set_users1_1"
aria-label="Authors Only"
class="asp_ctf_cbx" name="asp_ctf[]" />
<label aria-hidden="true" for="set_users1_1">
Hidden label </label>
</div>
<div class="asp_option_label">
Authors Only </div>
</div>
</fieldset>
<div style="clear:both;"></div>
</form>
</div>
</div>
<div class='asp_hidden_data' id="asp_hidden_data_1_1" style="display:none;">
<div class='asp_item_overlay'>
<div class='asp_item_inner'>
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><path d="M448.225 394.243l-85.387-85.385c16.55-26.08 26.146-56.986 26.146-90.094 0-92.99-75.652-168.64-168.643-168.64-92.988 0-168.64 75.65-168.64 168.64s75.65 168.64 168.64 168.64c31.466 0 60.94-8.67 86.176-23.734l86.14 86.142c36.755 36.754 92.355-18.783 55.57-55.57zm-344.233-175.48c0-64.155 52.192-116.35 116.35-116.35s116.353 52.194 116.353 116.35S284.5 335.117 220.342 335.117s-116.35-52.196-116.35-116.352zm34.463-30.26c34.057-78.9 148.668-69.75 170.248 12.863-43.482-51.037-119.984-56.532-170.248-12.862z"/></svg> </div>
</div>
</div><div class="asp_init_data" style="display:none !important;" id="asp_init_id_1_1" data-aspdata="ew0KICAgICJob21ldXJsIjogImh0dHBzOi8vYnJpZWZpbmdzZm9yYnJleGl0LmNvbS8iLA0KICAgICJyZXN1bHRzdHlwZSI6ICJ2ZXJ0aWNhbCIsDQogICAgInJlc3VsdHNwb3NpdGlvbiI6ICJob3ZlciIsDQogICAgInJlc3VsdHNTbmFwVG8iOiAibGVmdCIsDQogICAgInJlc3VsdHMiOiB7DQogICAgICAgICJ3aWR0aCI6ICJhdXRvIiwNCiAgICAgICAgIndpZHRoX3RhYmxldCI6ICJhdXRvIiwNCiAgICAgICAgIndpZHRoX3Bob25lIjogImF1dG8iDQogICAgfSwNCiAgICAiaXRlbXNjb3VudCI6IDQsDQogICAgImltYWdld2lkdGgiOiA3MCwNCiAgICAiaW1hZ2VoZWlnaHQiOiA3MCwNCiAgICAicmVzdWx0aXRlbWhlaWdodCI6ICJhdXRvIiwNCiAgICAic2hvd2F1dGhvciI6IDEsDQogICAgInNob3dkYXRlIjogMSwNCiAgICAic2hvd2Rlc2NyaXB0aW9uIjogMSwNCiAgICAiY2hhcmNvdW50IjogIDAsDQogICAgImRlZmF1bHRJbWFnZSI6ICJodHRwczovL2JyaWVmaW5nc2ZvcmJyZXhpdC5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTkvMDMvdXBkYXRlZEJHLmpwZyIsDQogICAgImhpZ2hsaWdodCI6IDAsDQogICAgImhpZ2hsaWdodHdob2xld29yZHMiOiAxLA0KICAgICJvcGVuVG9CbGFuayI6IDAsDQogICAgInNjcm9sbFRvUmVzdWx0cyI6IDAsDQogICAgInJlc3VsdGFyZWFjbGlja2FibGUiOiAxLA0KICAgICJhdXRvY29tcGxldGUiOiB7DQogICAgICAgICJlbmFibGVkIjogMSwNCiAgICAgICAgImdvb2dsZU9ubHkiOiAwLA0KICAgICAgICAibGFuZyI6ICJlbiIsDQogICAgICAgICJtb2JpbGUiOiAxICAgIH0sDQogICAgInRyaWdnZXJvbnR5cGUiOiAxLA0KICAgICJ0cmlnZ2VyX29uX2NsaWNrIjogMCwNCiAgICAidHJpZ2dlck9uRmFjZXRDaGFuZ2UiOiAxLA0KICAgICJ0cmlnZ2VyIjogew0KICAgICAgICAiZGVsYXkiOiAzMDAsDQogICAgICAgICJhdXRvY29tcGxldGVfZGVsYXkiOiAzMTAgICAgfSwNCiAgICAib3ZlcnJpZGV3cGRlZmF1bHQiOiAxLA0KICAgICJvdmVycmlkZV9tZXRob2QiOiAiZ2V0IiwNCiAgICAicmVkaXJlY3RvbmNsaWNrIjogMSwNCiAgICAicmVkaXJlY3RDbGlja1RvIjogInJlc3VsdHNfcGFnZSIsDQogICAgInJlZGlyZWN0Q2xpY2tMb2MiOiAic2FtZSIsDQogICAgInJlZGlyZWN0X29uX2VudGVyIjogMCwNCiAgICAicmVkaXJlY3RFbnRlclRvIjogImFqYXhfc2VhcmNoIiwNCiAgICAicmVkaXJlY3RFbnRlckxvYyI6ICJzYW1lIiwNCiAgICAicmVkaXJlY3RfdXJsIjogIj9zPXtwaHJhc2V9IiwNCiAgICAic2V0dGluZ3NpbWFnZXBvcyI6ICJyaWdodCIsDQogICAgInNldHRpbmdzVmlzaWJsZSI6IDAsDQogICAgInNldHRpbmdzSGlkZU9uUmVzIjogMCwNCiAgICAiaHJlc3VsdGhpZGVkZXNjIjogIjAiLA0KICAgICJwcmVzY29udGFpbmVyaGVpZ2h0IjogIjQwMHB4IiwNCiAgICAicHNob3dzdWJ0aXRsZSI6ICIwIiwNCiAgICAicHNob3dkZXNjIjogIjEiLA0KICAgICJjbG9zZU9uRG9jQ2xpY2siOiAxLA0KICAgICJpc290b3BpYyI6IHsNCiAgICAgICAgIml0ZW1XaWR0aCI6ICIyMDBweCIsDQogICAgICAgICJpdGVtV2lkdGhUYWJsZXQiOiAiMjAwcHgiLA0KICAgICAgICAiaXRlbVdpZHRoUGhvbmUiOiAiMjAwcHgiLA0KICAgICAgICAiaXRlbUhlaWdodCI6ICIyMDBweCIsDQogICAgICAgICJpdGVtSGVpZ2h0VGFibGV0IjogIjIwMHB4IiwNCiAgICAgICAgIml0ZW1IZWlnaHRQaG9uZSI6ICIyMDBweCIsDQogICAgICAgICJpZk5vSW1hZ2UiOiAiZGVzY3JpcHRpb24iLA0KICAgICAgICAicGFnaW5hdGlvbiI6IDEsDQogICAgICAgICJyb3dzIjogMiwNCiAgICAgICAgImd1dHRlciI6IDUsDQogICAgICAgICJzaG93T3ZlcmxheSI6IDEsDQogICAgICAgICJibHVyT3ZlcmxheSI6IDEsDQogICAgICAgICJoaWRlQ29udGVudCI6IDEgICAgfSwNCiAgICAibG9hZGVyTG9jYXRpb24iOiAiYXV0byIsDQogICAgImFuYWx5dGljcyI6IDAsDQogICAgImFuYWx5dGljc1N0cmluZyI6ICI/YWpheF9zZWFyY2g9e2FzcF90ZXJtfSIsDQogICAgInNob3dfbW9yZSI6IHsNCiAgICAgICAgImVuYWJsZWQiOiAxLA0KICAgICAgICAidXJsIjogIj9zPXtwaHJhc2V9IiwNCiAgICAgICAgImFjdGlvbiI6ICJhamF4IiwNCiAgICAgICAgImxvY2F0aW9uIjogInNhbWUiLA0KICAgICAgICAiaW5maW5pdGUiOiAxICAgIH0sDQogICAgIm1vYmlsZSI6IHsNCiAgICAgICAgInRyaWdnZXJfb25fdHlwZSI6IDEsDQogICAgICAgICJjbGlja19hY3Rpb24iOiAicmVzdWx0c19wYWdlIiwNCiAgICAgICAgInJldHVybl9hY3Rpb24iOiAiYWpheF9zZWFyY2giLA0KICAgICAgICAiY2xpY2tfYWN0aW9uX2xvY2F0aW9uIjogInNhbWUiLA0KICAgICAgICAicmV0dXJuX2FjdGlvbl9sb2NhdGlvbiI6ICJzYW1lIiwNCiAgICAgICAgInJlZGlyZWN0X3VybCI6ICI/cz17cGhyYXNlfSIsDQogICAgICAgICJoaWRlX2tleWJvYXJkIjogMSwNCiAgICAgICAgImZvcmNlX3Jlc19ob3ZlciI6IDAsDQogICAgICAgICJmb3JjZV9zZXR0X2hvdmVyIjogMCwNCiAgICAgICAgImZvcmNlX3NldHRfc3RhdGUiOiAiY2xvc2VkIg0KICAgIH0sDQogICAgImNvbXBhY3QiOiB7DQogICAgICAgICJlbmFibGVkIjogMCwNCiAgICAgICAgIndpZHRoIjogIjEwMCUiLA0KICAgICAgICAid2lkdGhfdGFibGV0IjogIjQ4MHB4IiwNCiAgICAgICAgIndpZHRoX3Bob25lIjogIjMyMHB4IiwNCiAgICAgICAgImNsb3NlT25NYWduaWZpZXIiOiAxLA0KICAgICAgICAiY2xvc2VPbkRvY3VtZW50IjogMCwNCiAgICAgICAgInBvc2l0aW9uIjogInN0YXRpYyIsDQogICAgICAgICJvdmVybGF5IjogMCAgICB9LA0KICAgICJzYiI6IHsNCiAgICAgICAgInJlZGlyZWN0X2FjdGlvbiI6ICJhamF4X3NlYXJjaCIsDQogICAgICAgICJyZWRpcmVjdF9sb2NhdGlvbiI6ICJzYW1lIiwNCiAgICAgICAgInJlZGlyZWN0X3VybCI6ICI/cz17cGhyYXNlfSINCiAgICB9LA0KICAgICJyYiI6IHsNCiAgICAgICAgImFjdGlvbiI6ICJub3RoaW5nIg0KICAgIH0sDQogICAgImFuaW1hdGlvbnMiOiB7DQogICAgICAgICJwYyI6IHsNCiAgICAgICAgICAgICJzZXR0aW5ncyI6IHsNCiAgICAgICAgICAgICAgICAiYW5pbSIgOiAiZmFkZWRyb3AiLA0KICAgICAgICAgICAgICAgICJkdXIiICA6IDMwMCAgICAgICAgICAgIH0sDQogICAgICAgICAgICAicmVzdWx0cyIgOiB7DQogICAgICAgICAgICAgICAgImFuaW0iIDogImZhZGVkcm9wIiwNCiAgICAgICAgICAgICAgICAiZHVyIiAgOiAzMDAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgIml0ZW1zIiA6ICJmYWRlSW5Eb3duIg0KICAgICAgICB9LA0KICAgICAgICAibW9iIjogew0KICAgICAgICAgICAgInNldHRpbmdzIjogew0KICAgICAgICAgICAgICAgICJhbmltIiA6ICJmYWRlZHJvcCIsDQogICAgICAgICAgICAgICAgImR1ciIgIDogMzAwICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICJyZXN1bHRzIiA6IHsNCiAgICAgICAgICAgICAgICAiYW5pbSIgOiAiZmFkZWRyb3AiLA0KICAgICAgICAgICAgICAgICJkdXIiICA6IDMwMCAgICAgICAgICAgIH0sDQogICAgICAgICAgICAiaXRlbXMiIDogInZvaWRhbmltIg0KICAgICAgICB9DQogICAgfSwNCiAgICAiY2hvc2VuIjogew0KICAgICAgICAibm9yZXMiOiAiTm8gcmVzdWx0cyBtYXRjaCINCiAgICB9LA0KICAgICJkZXRlY3RWaXNpYmlsaXR5IiA6IDAsDQogICAgImF1dG9wIjogew0KICAgICAgICAic3RhdGUiOiAiZGlzYWJsZWQiLA0KICAgICAgICAicGhyYXNlIjogIiIsDQogICAgICAgICJjb3VudCI6IDEwICAgIH0sDQogICAgInJlc1BhZ2UiOiB7DQogICAgICAgICJ1c2VBamF4IjogMCwNCiAgICAgICAgInNlbGVjdG9yIjogIiNtYWluIg0KICAgIH0sDQogICAgImZzc19sYXlvdXQiOiAiZmxleCIsDQogICAgInN0YXRpc3RpY3MiOiAwfQ0K"></div>
</li></ul></li></ul></nav> </div>
</div></header>
<div id="sticky_header" class="header-sticky">
<div class="container">
<div class="vce-res-nav">
<a class="vce-responsive-nav" href="#sidr-main"><i class="fa fa-bars"></i></a>
</div>
<div class="site-branding">
<span class="site-title"><a href="https://briefingsforbrexit.com/" rel="home" class="has-logo"><picture class="vce-logo"><source media="(min-width: 1024px)" srcset="https://briefingsforbrexit.com/wp-content/uploads/2018/02/logo.png, https://briefingsforbrexit.com/wp-content/uploads/2018/02/briefings-for-brexit-retina-logo.png 2x"><source srcset="https://briefingsforbrexit.com/wp-content/uploads/2018/02/logo.png"><img src="https://briefingsforbrexit.com/wp-content/uploads/2018/02/logo.png" alt="Briefings For Brexit"></picture></a></span></div> <nav id="site-navigation" class="main-navigation" role="navigation">
<ul id="vce_main_navigation_menu" class="nav-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-563"><a href="https://briefingsforbrexit.com/">Home</a><li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-451 vce-cat-2"><a href="https://briefingsforbrexit.com/category/blog/">Blog</a><li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-454 vce-cat-3"><a href="https://briefingsforbrexit.com/category/key-issues/">Briefings</a><li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-453 vce-cat-4"><a href="https://briefingsforbrexit.com/category/articles/">Reports</a><li class="menu-item menu-item-type-taxonomy menu-item-object-category current-menu-item menu-item-452 vce-cat-5"><a href="https://briefingsforbrexit.com/category/news/" aria-current="page">News</a><li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1567 vce-cat-49"><a href="https://briefingsforbrexit.com/category/subscribers-views/">Subscribers’ Views</a><li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2051 vce-cat-126"><a href="https://briefingsforbrexit.com/category/podcasts/">Podcasts</a><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3443"><a href="https://briefingsforbrexit.com/donate-to-briefings-for-brexit/">Donate</a><li class="search-header-wrap"><a class="search_header" href="javascript:void(0)"><i class="fa fa-search"></i></a><ul class="search-header-form-ul"><li><div class='asp_w asp_m asp_m_1 asp_m_1_2 wpdreams_asp_sc wpdreams_asp_sc-1 ajaxsearchpro asp_main_container asp_non_compact'
data-id="1"
data-instance="2"
id='ajaxsearchpro1_2'>
<div class="probox">
<div class='promagnifier'>
<div class='asp_text_button hiddend'>
Search </div>
<div class='innericon'>
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><path d="M460.355 421.59l-106.51-106.512c20.04-27.553 31.884-61.437 31.884-98.037C385.73 124.935 310.792 50 218.685 50c-92.106 0-167.04 74.934-167.04 167.04 0 92.107 74.935 167.042 167.04 167.042 34.912 0 67.352-10.773 94.184-29.158L419.945 462l40.41-40.41zM100.63 217.04c0-65.095 52.96-118.055 118.056-118.055 65.098 0 118.057 52.96 118.057 118.056 0 65.097-52.96 118.057-118.057 118.057-65.096 0-118.055-52.96-118.055-118.056z"/></svg> </div>
<div class="asp_clear"></div>
</div>
<div class='prosettings' data-opened=0>
<div class='innericon'>
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><path id="control-panel-4-icon" d="M170 294c0 33.138-26.862 60-60 60-33.137 0-60-26.862-60-60 0-33.137 26.863-60 60-60 33.138 0 60 26.863 60 60zm-60 90c-6.872 0-13.565-.777-20-2.243V422c0 11.046 8.954 20 20 20s20-8.954 20-20v-40.243c-6.435 1.466-13.128 2.243-20 2.243zm0-180c6.872 0 13.565.777 20 2.243V90c0-11.046-8.954-20-20-20s-20 8.954-20 20v116.243c6.435-1.466 13.128-2.243 20-2.243zm146-7c12.13 0 22 9.87 22 22s-9.87 22-22 22-22-9.87-22-22 9.87-22 22-22zm0-38c-33.137 0-60 26.863-60 60 0 33.138 26.863 60 60 60 33.138 0 60-26.862 60-60 0-33.137-26.862-60-60-60zm0-30c6.872 0 13.565.777 20 2.243V90c0-11.046-8.954-20-20-20s-20 8.954-20 20v41.243c6.435-1.466 13.128-2.243 20-2.243zm0 180c-6.872 0-13.565-.777-20-2.243V422c0 11.046 8.954 20 20 20s20-8.954 20-20V306.757c-6.435 1.466-13.128 2.243-20 2.243zm146-75c-33.137 0-60 26.863-60 60 0 33.138 26.863 60 60 60 33.138 0 60-26.862 60-60 0-33.137-26.862-60-60-60zm0-30c6.872 0 13.565.777 20 2.243V90c0-11.046-8.954-20-20-20s-20 8.954-20 20v116.243c6.435-1.466 13.128-2.243 20-2.243zm0 180c-6.872 0-13.565-.777-20-2.243V422c0 11.046 8.954 20 20 20s20-8.954 20-20v-40.243c-6.435 1.466-13.128 2.243-20 2.243z"/></svg> </div>
</div>
<div class='proinput'>
<form action='#' autocomplete="off" aria-label="Search form 1">
<input type='search' class='orig'
placeholder='Search here...'
name='phrase' value=''
aria-label="Search input 1"
autocomplete="off"/>
<input type='text' class='autocomplete' name='phrase' value=''
aria-label="Search autocomplete, ignore please"
aria-hidden="true"
autocomplete="off" disabled/>
<input type='submit'
aria-hidden="true"
aria-label="Hidden button"
style='width:0; height: 0; visibility: hidden;'>
</form>
</div>
<div class='proloading'>
<div class="asp_loader">
<div class="asp_loader-inner asp_simple-circle">
</div>
</div>
</div>
<div class='proclose'>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px"
width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512"
xml:space="preserve">
<polygon id="x-mark-icon"
points="438.393,374.595 319.757,255.977 438.378,137.348 374.595,73.607 255.995,192.225 137.375,73.622 73.607,137.352 192.246,255.983 73.622,374.625 137.352,438.393 256.002,319.734 374.652,438.378 "/>
</svg>
</div>
</div><div id='ajaxsearchprores1_2' class='asp_w asp_r asp_r_1 asp_r_1_2 vertical ajaxsearchpro wpdreams_asp_sc wpdreams_asp_sc-1'
data-id="1"
data-instance="2">
<div class="results">
<div class="resdrg">
</div>
</div>
<div class="asp_showmore_container">
<p class='showmore'>
<a class='asp_showmore'>More results... <span></span></a>
</p>
<div class="asp_moreres_loader" style="display: none;">
<div class="asp_moreres_loader-inner"></div>
</div>
</div>
<div class="asp_res_loader hiddend">
<div class="asp_loader">
<div class="asp_loader-inner asp_simple-circle">
</div>
</div>
</div>
</div> <div id='ajaxsearchprosettings1_2' class="asp_w asp_s asp_s_1 asp_s_1_2 wpdreams_asp_sc wpdreams_asp_sc-1 ajaxsearchpro searchsettings"
data-id="1"
data-instance="2">
<form name='options' class="asp-fss-flex" autocomplete = 'off'>
<input type="hidden" style="display:none;" name="current_page_id" value="7976">
<input type="hidden" style="display:none;" name="woo_currency" value="GBP">
<fieldset class="">
<legend>Search In</legend>
<div class="asp_option_inner hiddend">
<input type='hidden' name='qtranslate_lang'
value='0'/>
</div>
<div class="asp_option">
<div class="asp_option_inner">
<input type="checkbox" value="exact" id="set_exact1_2"
aria-label="Exact matches only"
name="asp_gen[]" />
<label aria-hidden="true"
for="set_exact1_2">
Hidden label </label>
</div>
<div class="asp_option_label">
Exact matches only </div>
</div>
<div class="asp_option">
<div class="asp_option_inner">
<input type="checkbox" value="title" id="set_title1_2"
aria-label="Search in title"
name="asp_gen[]" checked="checked"/>
<label aria-hidden="true"
for="set_title1_2">
Hidden label </label>
</div>
<div class="asp_option_label">
Search in title </div>
</div>
<div class="asp_option">
<div class="asp_option_inner">
<input type="checkbox" value="content" id="set_content1_2"
aria-label="Search in content"
name="asp_gen[]" checked="checked"/>
<label aria-hidden="true"
for="set_content1_2">
Hidden label </label>
</div>
<div class="asp_option_label">
Search in content </div>
</div>
<div class="asp_option">
<div class="asp_option_inner">
<input type="checkbox" value="excerpt" id="set_excerpt1_2"
aria-label="Search in excerpt"
name="asp_gen[]" checked="checked"/>
<label aria-hidden="true"
for="set_excerpt1_2">
Hidden label </label>
</div>
<div class="asp_option_label">
Search in excerpt </div>
</div>
</fieldset><fieldset class="asp_sett_scroll asp_checkboxes_filter_box">
<legend>Content Type</legend>
<div class="asp_option">
<div class="asp_option_inner">
<input type="checkbox" value="post" id="1_2customset_1_21"
aria-label="Articles"
class="asp_post_type_checkbox"
name="customset[]" checked="checked"/>
<label aria-hidden="true" for="1_2customset_1_21">
Hidden label </label>
</div>
<div class="asp_option_label">
Articles </div>
</div>
<div class="asp_option">
<div class="asp_option_inner">
<input type="checkbox" value="page" id="1_2customset_1_22"
aria-label="Pages"
class="asp_post_type_checkbox"
name="customset[]" />
<label aria-hidden="true" for="1_2customset_1_22">
Hidden label </label>
</div>
<div class="asp_option_label">
Pages </div>
</div>
</fieldset>
<fieldset class="asp_tax_filter asp_checkboxes_filter_box">
<legend>Filter by Categories</legend>
<div class='categoryfilter asp_sett_scroll'>
<div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
data-lvl="0"
asp_cat_parent="0">
<div class="asp_option_inner">
<input type="checkbox" value="49" class="asp_terms_checkbox"
aria-label="Subscribers' Views"
id="1_2termset_49"
name="termset[category][]" checked=checked/>
<label aria-hidden="true"
for="1_2termset_49">
Hidden label </label>
</div>
<div class="asp_option_label">
Subscribers' Views </div>
</div>
<div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
data-lvl="0"
asp_cat_parent="0">
<div class="asp_option_inner">
<input type="checkbox" value="126" class="asp_terms_checkbox"
aria-label="Podcasts"
id="1_2termset_126"
name="termset[category][]" checked=checked/>
<label aria-hidden="true"
for="1_2termset_126">
Hidden label </label>
</div>
<div class="asp_option_label">
Podcasts </div>
</div>
<div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
data-lvl="0"
asp_cat_parent="0">
<div class="asp_option_inner">
<input type="checkbox" value="2" class="asp_terms_checkbox"
aria-label="Blog"
id="1_2termset_2"
name="termset[category][]" checked=checked/>
<label aria-hidden="true"
for="1_2termset_2">
Hidden label </label>
</div>
<div class="asp_option_label">
Blog </div>
</div>
<div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
data-lvl="0"
asp_cat_parent="0">
<div class="asp_option_inner">
<input type="checkbox" value="3" class="asp_terms_checkbox"
aria-label="Briefings"
id="1_2termset_3"
name="termset[category][]" checked=checked/>
<label aria-hidden="true"
for="1_2termset_3">
Hidden label </label>
</div>
<div class="asp_option_label">
Briefings </div>
</div>
<div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
data-lvl="0"
asp_cat_parent="0">
<div class="asp_option_inner">
<input type="checkbox" value="4" class="asp_terms_checkbox"
aria-label="Reports"
id="1_2termset_4"
name="termset[category][]" checked=checked/>
<label aria-hidden="true"
for="1_2termset_4">
Hidden label </label>
</div>
<div class="asp_option_label">
Reports </div>
</div>
<div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
data-lvl="0"
asp_cat_parent="0">
<div class="asp_option_inner">
<input type="checkbox" value="5" class="asp_terms_checkbox"
aria-label="News"
id="1_2termset_5"
name="termset[category][]" checked=checked/>
<label aria-hidden="true"
for="1_2termset_5">
Hidden label </label>
</div>
<div class="asp_option_label">
News </div>
</div>
</div>
</fieldset>
<fieldset class="asp_content_type_filters">
<legend>Search Author</legend>
<div class="asp_option asp_option_cat ">
<div class="asp_option_inner">
<input type="checkbox" value="users" id="set_users1_2"
aria-label="Authors Only"
class="asp_ctf_cbx" name="asp_ctf[]" />
<label aria-hidden="true" for="set_users1_2">
Hidden label </label>
</div>
<div class="asp_option_label">
Authors Only </div>
</div>
</fieldset>
<div style="clear:both;"></div>
</form>
</div>
</div>
<div class='asp_hidden_data' id="asp_hidden_data_1_2" style="display:none;">
<div class='asp_item_overlay'>
<div class='asp_item_inner'>
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><path d="M448.225 394.243l-85.387-85.385c16.55-26.08 26.146-56.986 26.146-90.094 0-92.99-75.652-168.64-168.643-168.64-92.988 0-168.64 75.65-168.64 168.64s75.65 168.64 168.64 168.64c31.466 0 60.94-8.67 86.176-23.734l86.14 86.142c36.755 36.754 92.355-18.783 55.57-55.57zm-344.233-175.48c0-64.155 52.192-116.35 116.35-116.35s116.353 52.194 116.353 116.35S284.5 335.117 220.342 335.117s-116.35-52.196-116.35-116.352zm34.463-30.26c34.057-78.9 148.668-69.75 170.248 12.863-43.482-51.037-119.984-56.532-170.248-12.862z"/></svg> </div>
</div>
</div><div class="asp_init_data" style="display:none !important;" id="asp_init_id_1_2" data-aspdata="ew0KICAgICJob21ldXJsIjogImh0dHBzOi8vYnJpZWZpbmdzZm9yYnJleGl0LmNvbS8iLA0KICAgICJyZXN1bHRzdHlwZSI6ICJ2ZXJ0aWNhbCIsDQogICAgInJlc3VsdHNwb3NpdGlvbiI6ICJob3ZlciIsDQogICAgInJlc3VsdHNTbmFwVG8iOiAibGVmdCIsDQogICAgInJlc3VsdHMiOiB7DQogICAgICAgICJ3aWR0aCI6ICJhdXRvIiwNCiAgICAgICAgIndpZHRoX3RhYmxldCI6ICJhdXRvIiwNCiAgICAgICAgIndpZHRoX3Bob25lIjogImF1dG8iDQogICAgfSwNCiAgICAiaXRlbXNjb3VudCI6IDQsDQogICAgImltYWdld2lkdGgiOiA3MCwNCiAgICAiaW1hZ2VoZWlnaHQiOiA3MCwNCiAgICAicmVzdWx0aXRlbWhlaWdodCI6ICJhdXRvIiwNCiAgICAic2hvd2F1dGhvciI6IDEsDQogICAgInNob3dkYXRlIjogMSwNCiAgICAic2hvd2Rlc2NyaXB0aW9uIjogMSwNCiAgICAiY2hhcmNvdW50IjogIDAsDQogICAgImRlZmF1bHRJbWFnZSI6ICJodHRwczovL2JyaWVmaW5nc2ZvcmJyZXhpdC5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTkvMDMvdXBkYXRlZEJHLmpwZyIsDQogICAgImhpZ2hsaWdodCI6IDAsDQogICAgImhpZ2hsaWdodHdob2xld29yZHMiOiAxLA0KICAgICJvcGVuVG9CbGFuayI6IDAsDQogICAgInNjcm9sbFRvUmVzdWx0cyI6IDAsDQogICAgInJlc3VsdGFyZWFjbGlja2FibGUiOiAxLA0KICAgICJhdXRvY29tcGxldGUiOiB7DQogICAgICAgICJlbmFibGVkIjogMSwNCiAgICAgICAgImdvb2dsZU9ubHkiOiAwLA0KICAgICAgICAibGFuZyI6ICJlbiIsDQogICAgICAgICJtb2JpbGUiOiAxICAgIH0sDQogICAgInRyaWdnZXJvbnR5cGUiOiAxLA0KICAgICJ0cmlnZ2VyX29uX2NsaWNrIjogMCwNCiAgICAidHJpZ2dlck9uRmFjZXRDaGFuZ2UiOiAxLA0KICAgICJ0cmlnZ2VyIjogew0KICAgICAgICAiZGVsYXkiOiAzMDAsDQogICAgICAgICJhdXRvY29tcGxldGVfZGVsYXkiOiAzMTAgICAgfSwNCiAgICAib3ZlcnJpZGV3cGRlZmF1bHQiOiAxLA0KICAgICJvdmVycmlkZV9tZXRob2QiOiAiZ2V0IiwNCiAgICAicmVkaXJlY3RvbmNsaWNrIjogMSwNCiAgICAicmVkaXJlY3RDbGlja1RvIjogInJlc3VsdHNfcGFnZSIsDQogICAgInJlZGlyZWN0Q2xpY2tMb2MiOiAic2FtZSIsDQogICAgInJlZGlyZWN0X29uX2VudGVyIjogMCwNCiAgICAicmVkaXJlY3RFbnRlclRvIjogImFqYXhfc2VhcmNoIiwNCiAgICAicmVkaXJlY3RFbnRlckxvYyI6ICJzYW1lIiwNCiAgICAicmVkaXJlY3RfdXJsIjogIj9zPXtwaHJhc2V9IiwNCiAgICAic2V0dGluZ3NpbWFnZXBvcyI6ICJyaWdodCIsDQogICAgInNldHRpbmdzVmlzaWJsZSI6IDAsDQogICAgInNldHRpbmdzSGlkZU9uUmVzIjogMCwNCiAgICAiaHJlc3VsdGhpZGVkZXNjIjogIjAiLA0KICAgICJwcmVzY29udGFpbmVyaGVpZ2h0IjogIjQwMHB4IiwNCiAgICAicHNob3dzdWJ0aXRsZSI6ICIwIiwNCiAgICAicHNob3dkZXNjIjogIjEiLA0KICAgICJjbG9zZU9uRG9jQ2xpY2siOiAxLA0KICAgICJpc290b3BpYyI6IHsNCiAgICAgICAgIml0ZW1XaWR0aCI6ICIyMDBweCIsDQogICAgICAgICJpdGVtV2lkdGhUYWJsZXQiOiAiMjAwcHgiLA0KICAgICAgICAiaXRlbVdpZHRoUGhvbmUiOiAiMjAwcHgiLA0KICAgICAgICAiaXRlbUhlaWdodCI6ICIyMDBweCIsDQogICAgICAgICJpdGVtSGVpZ2h0VGFibGV0IjogIjIwMHB4IiwNCiAgICAgICAgIml0ZW1IZWlnaHRQaG9uZSI6ICIyMDBweCIsDQogICAgICAgICJpZk5vSW1hZ2UiOiAiZGVzY3JpcHRpb24iLA0KICAgICAgICAicGFnaW5hdGlvbiI6IDEsDQogICAgICAgICJyb3dzIjogMiwNCiAgICAgICAgImd1dHRlciI6IDUsDQogICAgICAgICJzaG93T3ZlcmxheSI6IDEsDQogICAgICAgICJibHVyT3ZlcmxheSI6IDEsDQogICAgICAgICJoaWRlQ29udGVudCI6IDEgICAgfSwNCiAgICAibG9hZGVyTG9jYXRpb24iOiAiYXV0byIsDQogICAgImFuYWx5dGljcyI6IDAsDQogICAgImFuYWx5dGljc1N0cmluZyI6ICI/YWpheF9zZWFyY2g9e2FzcF90ZXJtfSIsDQogICAgInNob3dfbW9yZSI6IHsNCiAgICAgICAgImVuYWJsZWQiOiAxLA0KICAgICAgICAidXJsIjogIj9zPXtwaHJhc2V9IiwNCiAgICAgICAgImFjdGlvbiI6ICJhamF4IiwNCiAgICAgICAgImxvY2F0aW9uIjogInNhbWUiLA0KICAgICAgICAiaW5maW5pdGUiOiAxICAgIH0sDQogICAgIm1vYmlsZSI6IHsNCiAgICAgICAgInRyaWdnZXJfb25fdHlwZSI6IDEsDQogICAgICAgICJjbGlja19hY3Rpb24iOiAicmVzdWx0c19wYWdlIiwNCiAgICAgICAgInJldHVybl9hY3Rpb24iOiAiYWpheF9zZWFyY2giLA0KICAgICAgICAiY2xpY2tfYWN0aW9uX2xvY2F0aW9uIjogInNhbWUiLA0KICAgICAgICAicmV0dXJuX2FjdGlvbl9sb2NhdGlvbiI6ICJzYW1lIiwNCiAgICAgICAgInJlZGlyZWN0X3VybCI6ICI/cz17cGhyYXNlfSIsDQogICAgICAgICJoaWRlX2tleWJvYXJkIjogMSwNCiAgICAgICAgImZvcmNlX3Jlc19ob3ZlciI6IDAsDQogICAgICAgICJmb3JjZV9zZXR0X2hvdmVyIjogMCwNCiAgICAgICAgImZvcmNlX3NldHRfc3RhdGUiOiAiY2xvc2VkIg0KICAgIH0sDQogICAgImNvbXBhY3QiOiB7DQogICAgICAgICJlbmFibGVkIjogMCwNCiAgICAgICAgIndpZHRoIjogIjEwMCUiLA0KICAgICAgICAid2lkdGhfdGFibGV0IjogIjQ4MHB4IiwNCiAgICAgICAgIndpZHRoX3Bob25lIjogIjMyMHB4IiwNCiAgICAgICAgImNsb3NlT25NYWduaWZpZXIiOiAxLA0KICAgICAgICAiY2xvc2VPbkRvY3VtZW50IjogMCwNCiAgICAgICAgInBvc2l0aW9uIjogInN0YXRpYyIsDQogICAgICAgICJvdmVybGF5IjogMCAgICB9LA0KICAgICJzYiI6IHsNCiAgICAgICAgInJlZGlyZWN0X2FjdGlvbiI6ICJhamF4X3NlYXJjaCIsDQogICAgICAgICJyZWRpcmVjdF9sb2NhdGlvbiI6ICJzYW1lIiwNCiAgICAgICAgInJlZGlyZWN0X3VybCI6ICI/cz17cGhyYXNlfSINCiAgICB9LA0KICAgICJyYiI6IHsNCiAgICAgICAgImFjdGlvbiI6ICJub3RoaW5nIg0KICAgIH0sDQogICAgImFuaW1hdGlvbnMiOiB7DQogICAgICAgICJwYyI6IHsNCiAgICAgICAgICAgICJzZXR0aW5ncyI6IHsNCiAgICAgICAgICAgICAgICAiYW5pbSIgOiAiZmFkZWRyb3AiLA0KICAgICAgICAgICAgICAgICJkdXIiICA6IDMwMCAgICAgICAgICAgIH0sDQogICAgICAgICAgICAicmVzdWx0cyIgOiB7DQogICAgICAgICAgICAgICAgImFuaW0iIDogImZhZGVkcm9wIiwNCiAgICAgICAgICAgICAgICAiZHVyIiAgOiAzMDAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgIml0ZW1zIiA6ICJmYWRlSW5Eb3duIg0KICAgICAgICB9LA0KICAgICAgICAibW9iIjogew0KICAgICAgICAgICAgInNldHRpbmdzIjogew0KICAgICAgICAgICAgICAgICJhbmltIiA6ICJmYWRlZHJvcCIsDQogICAgICAgICAgICAgICAgImR1ciIgIDogMzAwICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICJyZXN1bHRzIiA6IHsNCiAgICAgICAgICAgICAgICAiYW5pbSIgOiAiZmFkZWRyb3AiLA0KICAgICAgICAgICAgICAgICJkdXIiICA6IDMwMCAgICAgICAgICAgIH0sDQogICAgICAgICAgICAiaXRlbXMiIDogInZvaWRhbmltIg0KICAgICAgICB9DQogICAgfSwNCiAgICAiY2hvc2VuIjogew0KICAgICAgICAibm9yZXMiOiAiTm8gcmVzdWx0cyBtYXRjaCINCiAgICB9LA0KICAgICJkZXRlY3RWaXNpYmlsaXR5IiA6IDAsDQogICAgImF1dG9wIjogew0KICAgICAgICAic3RhdGUiOiAiZGlzYWJsZWQiLA0KICAgICAgICAicGhyYXNlIjogIiIsDQogICAgICAgICJjb3VudCI6IDEwICAgIH0sDQogICAgInJlc1BhZ2UiOiB7DQogICAgICAgICJ1c2VBamF4IjogMCwNCiAgICAgICAgInNlbGVjdG9yIjogIiNtYWluIg0KICAgIH0sDQogICAgImZzc19sYXlvdXQiOiAiZmxleCIsDQogICAgInN0YXRpc3RpY3MiOiAwfQ0K"></div>
</li></ul></li></ul></nav> </div>
</div>
<div id="main-wrapper">
<div class="vce-featured">
<div class="vce-featured-header">
<div class="vce-featured-info">
<div class="vce-hover-effect">
<div class="vce-featured-section">
<a href="https://briefingsforbrexit.com/category/news/" class="category-5">News</a> </div>
<h2 class="vce-featured-title">
<a class="vce-featured-link-article" href="https://briefingsforbrexit.com/newsletter-28-july/" title="Newsletter 28 July">Newsletter 28 July</a>
</h2>
<div class="entry-meta"><div class="meta-item date"><span class="updated">28/07/2019</span></div><div class="meta-item author"><span>by<span class="vcard author">
<span class="fn">
<a href="https://briefingsforbrexit.com/author/brexit/">Briefings For Brexit</a>
</span>
</span></span></div><div class="meta-item views">442 Views</div></div>
</div>
</div>
<a href="https://briefingsforbrexit.com/newsletter-28-july/" class="vce-featured-header-background"></a>
</div>
<a href="https://briefingsforbrexit.com/newsletter-28-july/" title="Newsletter 28 July">
<img width="1024" height="500" src="https://briefingsforbrexit.com/wp-content/uploads/2019/03/updatedBG-1024x500.jpg" class="attachment-vce-fa-full size-vce-fa-full wp-post-image" alt="Briefings For Brexit" /> </a>
</div>
<div id="content" class="container site-content">
<div id="primary" class="vce-main-content">
<div class="main-box">