summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/fivefilters/readability.php/test/test-pages/aclu/source.html
blob: d8e99bbb1348f0e37fc3def98efd2d436c2b1b1b (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
<!DOCTYPE html>
<!--[if IEMobile 7]><html class="iem7"  lang="en" dir="ltr"><![endif]--><!--[if lte IE 6]><html class="lt-ie9 lt-ie8 lt-ie7"  lang="en" dir="ltr"><![endif]--><!--[if (IE 7)&(!IEMobile)]><html class="lt-ie9 lt-ie8"  lang="en" dir="ltr"><![endif]--><!--[if IE 8]><html class="lt-ie9"  lang="en" dir="ltr"><![endif]--><!--[if IE 9]><html class="lt-ie10"  lang="en" dir="ltr"><![endif]--><!--[if (gte IE 10)|(gt IEMobile 7)]><!-->
<html lang="en" dir="ltr" prefix="fb: http://ogp.me/ns/fb# og: http://ogp.me/ns# article: http://ogp.me/ns/article# book: http://ogp.me/ns/book# profile: http://ogp.me/ns/profile# video: http://ogp.me/ns/video# product: http://ogp.me/ns/product#" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <!--<![endif]-->
    <head>
        <!--[if IE]><![endif]-->
        <meta charset="utf-8" />
        <link rel="shortcut icon" href="https://www.aclu.org/misc/favicon.ico" />
        <meta name="description" content="I don't use Facebook. I'm not technophobic — I'm a geek. I've been using email since the early 1990s, I have accounts on hundreds of services around the net, and I do software development and internet protocol design both for work and for fun. I believe that a globe-spanning communications network like the internet can be a positive social force, and I publish much of my own work on the open web." />
        <link rel="canonical" href="https://www.aclu.org/blog/privacy-technology/internet-privacy/facebook-tracking-me-even-though-im-not-facebook" />
        <meta name="generator" content="Drupal 7 (http://drupal.org)" />
        <link rel="shortlink" href="https://www.aclu.org/node/67865" />
        <meta property="fb:pages" content="18982436812" />
        <meta property="og:site_name" content="American Civil Liberties Union" />
        <meta property="og:type" content="article" />
        <meta property="og:title" content="Facebook Is Tracking Me Even Though I’m Not on Facebook" />
        <meta property="og:url" content="https://www.aclu.org/blog/privacy-technology/internet-privacy/facebook-tracking-me-even-though-im-not-facebook" />
        <meta property="og:image" content="https://www.aclu.org/sites/default/files/styles/metatag_og_image_1200x630/public/field_share_image/web18-facebook-socialshare-1200x628-v02.png?itok=p77cQjOm" />
        <meta name="twitter:card" content="summary_large_image" />
        <meta name="twitter:creator" content="@ACLU" />
        <meta name="twitter:title" content="Facebook Is Tracking Me Even Though I’m Not on Facebook" />
        <meta name="twitter:description" content="I don't use Facebook. I'm not technophobic — I'm a geek. I've been using email since the early 1990s, I have accounts on hundreds of services around the net, and I do software development and internet protocol design both for work and for fun. I believe that a globe-spanning communications network like the internet can be a positive social force, and I publish much of my own work on the open web.But Facebook and other massive web companies represent a strong push toward unaccountable centralized social control, which I think makes our society more unequal and more unjust. The Cambridge Analytica scandal is one instance of this long-running problem with what I call the &quot;surveillance economy.&quot; I don't want to submit to these power structures, and I don’t want my presence on such platforms to serve as bait that lures other people into the digital panopticon.But while I've never &quot;opted in&quot; to Facebook or any of the other big social networks, Facebook still has a detailed profile that can be used to target me. I've never consented to having Facebook collect my data, which can be used to draw very detailed inferences about my life, my habits, and my relationships. As we aim to take Facebook to task for its breach of user trust, we need to think about what its capabilities imply for society overall. After all, if you do #deleteFacebook, you'll find yourself in my shoes: non-consenting, but still subject to Facebook’s globe-spanning surveillance and targeting network.There are at least two major categories of information available to Facebook about non-participants like me: information from other Facebook users, and information from sites on the open web.Information from other Facebook usersWhen you sign up for Facebook, it encourages you to upload your list of contacts so that the site can &quot;find your friends.&quot; Facebook uses this contact information to learn about people, even if those people don't agree to participate. It also links people together based on who they know, even if the shared contact hasn't agreed to this use.For example, I received an email from Facebook that lists the people who have all invited me to join Facebook: my aunt, an old co-worker, a friend from elementary school, etc. This email includes names and email addresses — including my own name — and at least one web bug designed to identify me to Facebook’s web servers when I open the email. Facebook records this group of people as my contacts, even though I've never agreed to this kind of data collection.Similarly, I'm sure that I'm in some photographs that someone has uploaded to Facebook — and I'm probably tagged in some of them. I've never agreed to this, but Facebook could still be keeping track.So even if you decide you need to join Facebook, remember that you might be giving the company information about someone else who didn't agree to be part of its surveillance platform.Information from sites on the open WebNearly every website that you visit that has a &quot;Like&quot; button is actually encouraging your browser to tell Facebook about your browsing habits. Even if you don't click on the &quot;Like&quot; button, displaying it requires your browser to send a request to Facebook's servers for the &quot;Like&quot; button itself. That request includes information mentioning the name of the page you are visiting and any Facebook-specific cookies your browser might have collected. (See Facebook's own description of this process.) This is called a &quot;third-party request.&quot;This makes it possible for Facebook to create a detailed picture of your browsing history — even if you've never even visited Facebook directly, let alone signed up for a Facebook account.Think about most of the web pages you've visited — how many of them don't have a &quot;Like&quot; button? If you administer a website and you include a &quot;Like&quot; button on every page, you're helping Facebook to build profiles of your visitors, even those who have opted out of the social network. Facebook’s “Share” buttons on other sites — along with other tools — work a bit differently from the “Like” button, but do effectively the same thing.The profiles that Facebook builds on non-users don't necessarily include so-called &quot;personally identifiable information&quot; (PII) like names or email addresses. But they do include fairly unique patterns. Using Chromium's NetLog dumping, I performed a simple five-minute browsing test last week that included visits to various sites — but not Facebook. In that test, the PII-free data that was sent to Facebook included information about which news articles I was reading, my dietary preferences, and my hobbies.Given the precision of this kind of mapping and targeting, &quot;PII&quot; isn’t necessary to reveal my identity. How many vegans examine specifications for computer hardware from the ACLU's offices while reading about Cambridge Analytica? Anyway, if Facebook combined that information with the &quot;web bug&quot; from the email mentioned above — which is clearly linked to my name and e-mail address — no guesswork would be required.I'd be shocked if Facebook were not connecting those dots given the goals they claim for data collection:We use the information we have to improve our advertising and measurement systems so we can show you relevant ads on and off our Services and measure the effectiveness and reach of ads and services.This is, in essence, exactly what Cambridge Analytica did.ConsentFacebook and other tech companies often deflect accusations against excessive data collection by arguing &quot;consent&quot; — that they harvest and use data with the consent of the users involved.But even if we accept that clicking through a &quot;Terms of Service&quot; that no one reads can actually constitute true consent, even if we ignore the fact that these terms are overwhelmingly one-sided and non-negotiable, and even if we accept that it's meaningful for people to give consent when sharing data about other people who may have also opted in — what is the recourse for someone who has not opted into these systems at all?Are those of us who have explicitly avoided agreeing to the Facebook terms of service simply fair game for an industry-wide surveillance and targeting network?PrivilegeI don’t mean to critique people who have created a Facebook profile or suggest they deserve whatever they get.My ability to avoid Facebook comes from privilege — I have existing social contacts with whom I know how to stay in touch without using Facebook's network. My job does not require that I use Facebook. I can afford the time and expense to communicate with my electoral representatives and political allies via other channels.Many people do not have these privileges and are compelled to &quot;opt in&quot; on Facebook's non-negotiable terms.Many journalists, organizers, schools, politicians, and others who have good reasons to oppose Facebook's centralized social control feel compelled by Facebook's reach and scale to participate in their practices, even those we know to be harmful. That includes the ACLU.Privacy should not be a luxury good, and while I'm happy to encourage people to opt out of these subtle and socially fraught arrangements, I do not argue that anyone who has signed up has somehow relinquished concerns about their privacy. We need to evaluate privacy concerns in their full social contexts. These are not problems that can be resolved on an individual level, because of the interpersonal nature of much of this data and the complexities of the tradeoffs involved.Technical countermeasuresWhile they may not solve the problem, there are some technical steps people can take to limit the scope of these surveillance practices. For example, some web browsers do not send &quot;third-party cookies&quot; by default, or they scope cookies so that centralized surveillance doesn't get a single view of one user. The most privacy-preserving modern browser is the Tor Browser, which everyone should have installed and available, even if it's not the browser they choose to use every day. It limits the surveillance ability of systems that you have not signed up for to track you as you move around the web.You can also modify some browsers — for example, with plug-ins for Firefox and Chrome — so that they do not send third-party requests at all. Firefox is also exploring even more privacy-preserving techniques. It can’t be denied, though, that these tools are harder to use than the web browsers most people are accustomed to, and they create barriers to some online activities. (For example, logging in to some sites and accessing some web applications is impossible without third-party cookies.)Some website operators take their visitors' privacy more seriously than others, by reducing the amount of third-party requests. For example, it's possible to display &quot;share on Facebook&quot; or &quot;Like&quot; buttons without sending user requests to Facebook in the first place. The ACLU's own website does this because we believe that the right to read with privacy is a fundamental protection for civic discourse.If you are responsible for running a website, try browsing it with a third-party-blocking extension turned on. Think about how much information you're requiring your users to send to third parties as a condition for using your site. If you care about being a good steward of your visitors' data, you can re-design your website to reduce this kind of leakage.Opting out?Some advertisers claim that you can &quot;opt out&quot; of their targeted advertising, and even offer a centralized place meant to help you do so. However, my experience with these tools isn't a positive one. They don't appear to work all of the time. (In a recent experiment I conducted, two advertisers’ opt-out mechanisms failed to take effect.) And while advertisers claim to allow the user to opt out of &quot;interest-based ads,&quot; it's not clear that the opt-outs govern data collection itself, rather than just the use of the collected data for displaying ads. Moreover, opting out on their terms requires the use of third-party cookies, thereby enabling another mechanism that other advertisers can then exploit.It's also not clear how they function over time: How frequently do I need to take these steps? Do they expire? How often should I check back to make sure I’m still opted out? I'd much prefer an approach requiring me to opt in to surveillance and targeting.Fix the surveillance economy, not just FacebookThese are just a few of the mechanisms that enable online tracking. Facebook is just one culprit in this online &quot;surveillance economy,&quot; albeit a massive one — the company owns Instagram, Atlas, WhatsApp, and dozens of other internet and technology companies and services. But it’s not the only player in this space. Google’s business model also relies on this kind of surveillance, and there are dozens of smaller players as well.As we work to address the fallout from the current storm around Facebook and Cambridge Analytica, we can't afford to lose sight of these larger mechanisms at play. Cambridge Analytica's failures and mistakes are inherent to Facebook's business model. We need to seriously challenge the social structures that encourage people to opt in to this kind of surveillance. At the same time, we also need to protect those of us who manage to opt out." />
        <meta name="twitter:image" content="https://www.aclu.org/sites/default/files/field_image/web18-facebook-1160x768.jpg" />
        <link rel="shortcut icon" href="/favicon.ico?v=1" />
        <link rel="apple-touch-icon" sizes="180x180" href="/sites/all/themes/custom/aclu/favicons/apple-touch-icon.png?v=1" />
        <link rel="icon" type="image/png" sizes="32x32" href="/sites/all/themes/custom/aclu/favicons/favicon-32x32.png?v=1" />
        <link rel="icon" type="image/png" sizes="16x16" href="/sites/all/themes/custom/aclu/favicons/favicon-16x16.png?v=1" />
        <link rel="manifest" href="/sites/all/themes/custom/aclu/favicons/manifest.json?v=1" />
        <link rel="mask-icon" href="/sites/all/themes/custom/aclu/favicons/safari-pinned-tab.svg?v=1" color="#ef404d" />
        <meta name="msapplication-config" content="/sites/all/themes/custom/aclu/favicons/browserconfig.xml?v=1" />
        <meta name="theme-color" content="#ffffff" />
        <title>
            Facebook Is Tracking Me Even Though I’m Not on Facebook | American Civil Liberties Union
        </title>
        <meta name="MobileOptimized" content="width" />
        <meta name="HandheldFriendly" content="true" />
        <meta name="viewport" content="width=device-width" />
        <meta http-equiv="cleartype" content="on" />
        <link rel="stylesheet" href="https://www.aclu.org/sites/default/files/advagg_css/css__9cWqptSUNYq5YedfIwh33VxtugFVWjDdEsblT8GhLKI__quUjyhSfbEukHj8a0hYvzm9VTmPALmSZvA0xfM_Oxzo__VITBFqYjCWZ55Wpxq9xcXRqOD9xxPlR-vPRDis8bQN4.css" media="all" />
        <style>
        <![CDATA[
        .pane-aclu-blog-news-signup div.pane-title{line-height:1.77778rem;margin:0 0 .66667rem;color:#423a38;font-family:gtam,Arial,Helvetica,Nimbus Sans L,sans-serif;font-weight:800}@media (min-width:48em){.pane-aclu-blog-news-signup div.pane-title{font-size:1.22222rem;line-height:1.77778rem}}h3{line-height:1.55556rem;margin:0 0 .66667rem;font-family:gtam,Arial,Helvetica,Nimbus Sans L,sans-serif}.more,h3{font-size:1rem;color:#423a38;font-weight:800}.more{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIGZpbGw9IiMwMDVBQUEiIGQ9Ik0yNCwyMmMwLDEuMS0wLjksMi0yLDJIMmMtMS4xLDAtMi0wLjktMi0yVjJjMC0xLjEsMC45LTIsMi0yaDIwYzEuMSwwLDIsMC45LDIsMlYyMnoiLz4NCjwvZz4NCjxnIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgICAgIj4NCgk8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMTMuMzE2LDE5LjM0MWgtMS42OTJsNi41NzItNi41NTRIMy45OXYtMS4yNjFoMTQuMjA2bC02LjU3Mi02LjU1NGgxLjY5Mmw3LjE4NSw3LjE4NEwxMy4zMTYsMTkuMzQxeiIvPg0KPC9nPg0KPC9zdmc+DQo=);padding-top:.05556rem;padding-right:2rem;padding-bottom:.05556rem;text-transform:uppercase;text-decoration:none;vertical-align:middle;cursor:pointer;font-family:gtamcond,Arial,Helvetica,Nimbus Sans L,sans-serif;line-height:1.33333rem;background-position:100% 0;background-repeat:no-repeat}.more:link{color:#423a38}.item-list ul{padding-left:0}.item-list ul li{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAgLS0+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiIFsNCgk8IUVOVElUWSBuc19mbG93cyAiaHR0cDovL25zLmFkb2JlLmNvbS9GbG93cy8xLjAvIj4NCl0+DQo8c3ZnIHZlcnNpb249IjEuMSINCgkgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6YT0iaHR0cDovL25zLmFkb2JlLmNvbS9BZG9iZVNWR1ZpZXdlckV4dGVuc2lvbnMvMy4wLyINCgkgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxOHB4IiBoZWlnaHQ9IjE1cHgiIHZpZXdCb3g9Ii0xLjYyNSAtMC40ODkgMTggMTUiDQoJIG92ZXJmbG93PSJ2aXNpYmxlIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IC0xLjYyNSAtMC40ODkgMTggMTUiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGRlZnM+DQo8L2RlZnM+DQo8cGF0aCBmaWxsPSIjOEREQkZGIiBkPSJNMTAuMDEzLDEzLjU3Nkg2LjMxOWw1LjQ3Ny01LjRIMFY1LjQwMWgxMS43OTZMNi4zMTksMGgzLjY5M0wxNi44LDYuNzg5TDEwLjAxMywxMy41NzZ6Ii8+DQo8L3N2Zz4NCg==);color:#423a38;list-style:none;padding-left:1.83333rem;background-position:0 .44444rem;background-repeat:no-repeat}.date,.item-list ul li{margin-bottom:1.11111rem}.date{font-family:gtam,Arial,Helvetica,Nimbus Sans L,sans-serif;font-weight:400;font-size:1rem;text-transform:uppercase}.pane-aclu-blog-news-signup form input{display:inline-block;vertical-align:middle}.pane-aclu-blog-news-signup form input[type=text]{margin-right:.55556rem;width:11.55556rem}.pane-aclu-blog-news-signup form input[type=submit]{background-color:transparent;padding:0;text-indent:-119988px;overflow:hidden;text-align:left;text-transform:capitalize;background-image:none,url(../images/arrows/more-arrow.svg?1512413232);display:inline-block;vertical-align:middle;background-size:28px;width:28px;height:28px;background-repeat:no-repeat}.pane-aclu-blog-news-signup{box-shadow:inset 0 0 0 1px #cfcfcf;padding:1.11111rem .88889rem;margin:0}.pane-aclu-blog-news-signup div.pane-title{margin-bottom:1.11111rem}.pane-aclu-blog-news-signup .form-item{float:left;margin-bottom:.33333rem;margin-top:0}.element-focusable,.element-invisible{height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);position:absolute!important}@media (min-width:0){.small-viewport-hide{display:none}}@media (min-width:60em){.small-viewport-hide{display:block}}.scrollbar-swiper .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{display:none}body{min-width:320px}body:after{display:none;content:small}@media (max-width:59.9375em) and (min-width:48em){body:after{content:medium}}@media (max-width:74.9375em) and (min-width:60em){body:after{content:large}}@media (min-width:75em){body:after{content:wide}}#page{margin-left:auto;margin-right:auto}#header>.inner{clear:both}@media (max-width:47.9375em) and (min-width:0){#header>.inner{max-width:90%;margin-left:auto;margin-right:auto}#header>.inner:after{content:" ";display:block;clear:both}}@media (max-width:59.9375em) and (min-width:48em){#header>.inner{width:748px;margin-left:auto;margin-right:auto}#header>.inner:after{content:" ";display:block;clear:both}}@media (max-width:74.9375em) and (min-width:60em){#header>.inner{width:880px;margin-left:auto;margin-right:auto}#header>.inner:after{content:" ";display:block;clear:both}}@media (min-width:75em){#header>.inner{width:1180px;margin-left:auto;margin-right:auto}#header>.inner:after{content:" ";display:block;clear:both}}#page>.menu-panel .inner{clear:both}@media (min-width:60em){#page>.menu-panel .inner{width:880px;margin-left:auto;margin-right:auto}#page>.menu-panel .inner:after{content:" ";display:block;clear:both}}@media (min-width:75em){#page>.menu-panel .inner{width:1180px;margin-left:auto;margin-right:auto}#page>.menu-panel .inner:after{content:" ";display:block;clear:both}}@media (max-width:59.9375em) and (min-width:48em){#header .region-header{padding-left:64px;padding-right:64px}}@media (min-width:75em){#header .region-header{padding-left:75px;padding-right:75px}}#page>.menu-panel .inner .inner-inner{overflow:visible}@media (min-width:75em){#page>.menu-panel .inner .inner-inner{padding-left:75px;padding-right:75px}}#header .region-header{overflow:hidden}@media (min-width:75em){#header .region-header{padding:0;margin-left:75px;margin-right:75px}}#block-search-api-page-search-aclu .search-header span{display:inline-block;vertical-align:middle;text-indent:-119988px;overflow:hidden;text-align:left;text-transform:capitalize;height:16px;width:16px;background-image:url(../images/sprites/icons-s48fdd0f329.png);background-position:0 -490px;background-repeat:no-repeat}@media (-webkit-min-device-pixel-ratio:1.5),(min-resolution:144dpi),not all{#block-search-api-page-search-aclu .search-header span{background-image:url(../images/sprites/icons2x-s56d40e25f8.png);background-size:92px;background-position:0 -490px}}@media (min-width:60em){.not-sticky #block-search-api-page-search-aclu .search-header span{display:inline-block;vertical-align:middle;text-indent:-119988px;overflow:hidden;text-align:left;text-transform:capitalize;height:20px;width:20px;background-image:url(../images/sprites/icons-s48fdd0f329.png);background-position:0 -294px;background-repeat:no-repeat}}@media (-webkit-min-device-pixel-ratio:1.5) and (min-width:60em),(min-resolution:144dpi) and (min-width:60em),not all{.not-sticky #block-search-api-page-search-aclu .search-header span{background-image:url(../images/sprites/icons2x-s56d40e25f8.png);background-size:92px;background-position:0 -294px}}header{display:block}html{font-family:cschoolbook,Georgia,Times New Roman,DejaVu Serif,serif;font-size:112.5%;line-height:1.55556em;color:#423a38}body{margin:0;padding:0}a:link{color:#005aaa}a:link,h3 a:link{text-decoration:none}h3 a:link,p{color:#423a38}p,ul{margin:0 0 1.55556em}ul ul{margin:0}ul{padding:0 0 0 30px}img{border:0;max-width:100%}button,input{font-family:inherit;font-size:100%;margin:0;max-width:100%;box-sizing:border-box;line-height:normal}button{text-transform:none}button,input[type=submit]{-webkit-appearance:none;font-family:gtamcond,Arial,Helvetica,Nimbus Sans L,sans-serif;background-color:#005aaa;border:0;color:#fff;cursor:pointer;font-size:1.22222rem;font-weight:800;padding:.66667rem;text-transform:uppercase}form{position:relative}input{box-sizing:border-box;background-image:none;color:#423a38;font-family:gtamcond,Arial,Helvetica,Nimbus Sans L,sans-serif;font-size:.77778rem;line-height:1.22222rem;height:1.55556rem;font-weight:400;padding:.11111rem .44444rem;border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0;-webkit-appearance:none;border:1px solid #423a38}@media (min-width:48em){input{width:14.44444rem}}input[type=submit]{height:auto;width:auto}label{color:#423a38;display:block;font-family:gtamcond,Arial,Helvetica,Nimbus Sans L,sans-serif;font-size:1rem;font-weight:400}@media (min-width:48em){label{font-size:1.22222rem}}@media (max-width:47.9375em) and (min-width:0){#block-superfish-1{float:right;margin-right:.16667rem}#block-superfish-1>ul.menu>li.menu-link-title-take-action{display:none}}@media (min-width:48em){#block-superfish-1{display:block;margin-left:18.05556rem}}@media (min-width:60em){#block-superfish-1{margin-left:15.55556rem}.not-sticky #block-superfish-1{bottom:0;position:absolute;right:5px;clear:right}}#block-superfish-1>ul.menu{padding:0;margin:0}#block-superfish-1>ul.menu>li.sf-depth-1{height:2.83333rem;line-height:2.83333rem;margin-left:.44444rem;outline:none}#block-superfish-1>ul.menu>li.sf-depth-1:after{content:"/";font-family:Georgia,Times New Roman,DejaVu Serif,serif;font-weight:600;position:absolute;color:#b8e7ee}@media (min-width:60em){.not-sticky #block-superfish-1>ul.menu>li.sf-depth-1{height:2.72222rem;line-height:2.72222rem}.not-sticky #block-superfish-1>ul.menu>li.sf-depth-1:after{color:#414141}}#block-superfish-1>ul.menu>li.sf-depth-1>a{display:inline-block;font-family:gtamcond,Arial,Helvetica,Nimbus Sans L,sans-serif;text-transform:uppercase;font-size:.88889rem;line-height:2.83333rem;padding:0 .38889rem}#block-superfish-1>ul.menu>li.sf-depth-1>a:link{color:#b8e7ee;text-decoration:none}@media (min-width:48em){#block-superfish-1>ul.menu>li.sf-depth-1>a{font-size:1rem;padding:0 1rem}}@media (min-width:60em){.not-sticky #block-superfish-1>ul.menu>li.sf-depth-1>a{font-size:1.05556rem;line-height:2.72222rem}.not-sticky #block-superfish-1>ul.menu>li.sf-depth-1>a:link{color:#ef404d;text-decoration:none}}#block-superfish-1>ul.menu>li.menu-link-title-get-updates{display:none}@media (max-width:59.9375em) and (min-width:48em){#block-superfish-1>ul.menu>li.menu-link-title-get-updates{display:block}}#block-superfish-1>ul.menu>li.sf-depth-1.menu-link-title-become-a-member{display:none}@media (min-width:60em){.not-sticky #block-superfish-1>ul.menu>li.sf-depth-1.menu-link-title-become-a-member{display:block}}#block-superfish-1>ul.menu>li.menu-link-title-renew{display:none}@media (min-width:60em){.not-sticky #block-superfish-1>ul.menu>li.menu-link-title-renew{display:block}}@media (max-width:59.9375em) and (min-width:48em){#block-superfish-1>ul.menu>li.menu-link-title-take-action{display:none}}#block-superfish-1>ul.menu>li.menu-link-title-donate:after{display:none}#block-superfish-1>ul.menu ul{font-family:gtamcond,Arial,Helvetica,Nimbus Sans L,sans-serif;background-color:#fff;border:1px solid #423a38;display:none;left:auto!important}@media (max-width:59.9375em) and (min-width:0){#block-superfish-1>ul.menu ul{display:none!important}}@media (min-width:48em){#block-superfish-1>ul.menu ul{top:1.66667rem;right:-5.55556rem}}@media (min-width:60em){#block-superfish-1>ul.menu ul{top:2.72222rem;right:1.27778rem}}#block-superfish-1>ul.menu ul li{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#423a38}#block-superfish-1>ul.menu ul li:last-child{border-bottom-width:0}#block-superfish-1>ul.menu ul a{color:#005aaa;padding:.83333rem 1.11111rem .5rem;text-transform:none;font-size:1rem;line-height:1.44444rem}@media (min-width:48em){#block-superfish-1>ul.menu ul a{padding:.61111rem 1.11111rem .55556rem}}a.main-menu--burger{vertical-align:middle;text-indent:-119988px;overflow:hidden;text-align:left;text-transform:capitalize;height:28px;width:34px;background-image:url(../images/sprites/icons-s48fdd0f329.png);display:block;float:left;margin-top:.61111rem;margin-right:1rem;cursor:pointer;background-position:0 -186px;background-repeat:no-repeat}@media (-webkit-min-device-pixel-ratio:1.5),(min-resolution:144dpi),not all{a.main-menu--burger{background-image:url(../images/sprites/icons2x-s56d40e25f8.png);background-size:92px;background-position:0 -186px}}@media (min-width:60em){a.main-menu--burger{display:none}}#navigation .block{margin-bottom:0}@media (max-width:59.9375em) and (min-width:48em){#navigation .block{position:relative}}#navigation .menu{margin:0;padding:0;text-align:left;display:none}@media (min-width:60em){#navigation .menu{display:block}}#navigation .menu li{padding:0;list-style-type:none;list-style-image:none}@media (min-width:60em){#navigation .menu li{float:left}}@media (max-width:47.9375em) and (min-width:0){#navigation .block>.menu{background-color:#fff;list-style:none;padding:0;margin:0;z-index:15;position:absolute;border:1px solid #423a38;width:13.77778rem;background-position:initial initial;background-repeat:initial initial}#navigation .block>.menu li .menu__link,#navigation .block>.menu li a{display:block;cursor:pointer;padding:.61111rem 1.22222rem;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#423a38;font-weight:400;font-size:.88889rem;line-height:1.11111rem;color:#005aaa;text-decoration:none}}@media (max-width:47.9375em) and (min-width:0) and (min-width:48em){#navigation .block>.menu li .menu__link,#navigation .block>.menu li a{padding:.5rem 1.22222rem;font-size:1rem;line-height:1.44444rem}}@media (max-width:47.9375em) and (min-width:0){#navigation .block>.menu li:last-child .menu__link,#navigation .block>.menu li:last-child a{border-bottom-style:none}}@media (max-width:59.9375em) and (min-width:48em){#navigation .block>.menu{background-color:#fff;list-style:none;padding:0;margin:0;z-index:15;position:absolute;border:1px solid #423a38;width:16.88889rem;background-position:initial initial;background-repeat:initial initial}#navigation .block>.menu li .menu__link,#navigation .block>.menu li a{display:block;cursor:pointer;padding:.61111rem 1.22222rem;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#423a38;font-weight:400;font-size:.88889rem;line-height:1.11111rem;color:#005aaa;text-decoration:none;padding:.5rem 1.22222rem;font-size:1rem;line-height:1.44444rem}}@media (max-width:59.9375em) and (min-width:48em){#navigation .block>.menu li:last-child .menu__link,#navigation .block>.menu li:last-child a{border-bottom-style:none}}@media (min-width:60em){#navigation .block>.menu{overflow:hidden}}#navigation .block>.menu>li{font-family:gtamcond,Arial,Helvetica,Nimbus Sans L,sans-serif;font-weight:600;font-size:.88889rem;line-height:2.66667rem}#navigation .block>.menu>li>.menu__link{cursor:pointer;text-transform:capitalize}@media (min-width:60em){#navigation .block>.menu>li>.menu__link{color:#b8e7ee;text-transform:uppercase;font-weight:800;display:block}}#navigation .block>.menu>li.menu-link-title-become-a-member,#navigation .block>.menu>li.menu-link-title-get-updates,#navigation .block>.menu>li.menu-link-title-renew{display:none}#navigation .block>.menu>li.sf-depth-1{float:left;text-transform:uppercase;background-color:#ff8a00;text-align:center;width:50%;background-position:initial initial;background-repeat:initial initial}#navigation .block>.menu>li.sf-depth-1 a:link{color:#423a38;text-decoration:none}#navigation .block>.menu>li.sf-depth-1 a .wrap-arrow{background-image:none;padding-right:0;background-position:initial initial;background-repeat:initial initial}#navigation .block>.menu>li.sf-depth-1.menu-link-title-take-action{position:relative;z-index:1;background-color:#ef404d;width:48%}#navigation .block>.menu>li.sf-depth-1.menu-link-title-take-action:after{content:" ";position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;background-color:#ef404d;-webkit-transform-origin:0 100%;-webkit-transform:skew(-28deg,0deg)}#navigation .block>.menu>li.sf-depth-1.menu-link-title-donate{background-color:#ff8a00;width:52%}#navigation .block>.menu>li.sf-depth-1.menu-link-title-donate>ul{display:none!important}#navigation .block>.menu>li.js-added{clear:both}@media (min-width:60em){#navigation .block>.menu>li.issues a{display:inline-block;padding-left:1.38889rem;vertical-align:top;background-image:url(../images/icons/burger-small-sprite.png?1512413232);background-position:0 18px;background-repeat:no-repeat}}@media (max-width:74.9375em) and (min-width:60em){#navigation .block>.menu>li.issues a{width:6rem}}@media (min-width:60em) and (min-width:75em){#navigation .block>.menu>li.issues a{width:7.61111rem}}@media not all,only screen and (-webkit-min-device-pixel-ratio:1.3) and (min-width:60em),only screen and (-webkit-min-device-pixel-ratio:1.3020833333333333) and (min-width:60em),only screen and (min-resolution:1.3dppx) and (min-width:60em),only screen and (min-resolution:125dpi) and (min-width:60em){#navigation .block>.menu>li.issues a{background-image:url(../images/icons2x/burger-small-sprite.png?1512413232);background-size:18px}}#navigation .block-taxonomy-menu-block,#navigation .sf-hidden{display:none}#navigation li .wrapArrow-processed.closed .wrap-arrow{display:block}@media (min-width:0){#navigation li .wrapArrow-processed.closed .wrap-arrow{padding-right:1.38889rem;background-image:url(../images/arrows/mobile-menu-right.png?1487181507);background-position:100% 3px;background-repeat:no-repeat}}@media not all,only screen and (-webkit-min-device-pixel-ratio:1.3) and (min-width:0),only screen and (-webkit-min-device-pixel-ratio:1.3020833333333333) and (min-width:0),only screen and (min-resolution:1.3dppx) and (min-width:0),only screen and (min-resolution:125dpi) and (min-width:0){#navigation li .wrapArrow-processed.closed .wrap-arrow{background-image:url(../images/arrows2x/mobile-menu-right.png?1487181507);background-size:6px}}@media (min-width:48em){#navigation li .wrapArrow-processed.closed .wrap-arrow{background-position:100% 7px}}@media (min-width:60em){#navigation li .wrapArrow-processed.closed .wrap-arrow{display:inline;background-image:none;padding-right:0;background-position:initial initial;background-repeat:initial initial}}@media not all,only screen and (-webkit-min-device-pixel-ratio:1.3) and (min-width:60em),only screen and (-webkit-min-device-pixel-ratio:1.3020833333333333) and (min-width:60em),only screen and (min-resolution:1.3dppx) and (min-width:60em),only screen and (min-resolution:125dpi) and (min-width:60em){#navigation li .wrapArrow-processed.closed .wrap-arrow{background-image:none;background-size:inherit}}#page>.menu-panel{overflow:hidden;background-color:#b8e7ee;font-family:gtamcond,Arial,Helvetica,Nimbus Sans L,sans-serif;padding:1.38889rem 0 1.94444rem;background-position:initial initial;background-repeat:initial initial}@media (max-width:47.9375em) and (min-width:0){#page>.menu-panel{display:none!important}}@media (max-width:59.9375em) and (min-width:48em){#page>.menu-panel{display:none!important}}#page>.menu-panel a{font-family:gtamcond,Arial,Helvetica,Nimbus Sans L,sans-serif}#page>.menu-panel a:link{color:#005aaa;text-decoration:none}#page>.menu-panel a.more{font-family:gtamcond,Arial,Helvetica,Nimbus Sans L,sans-serif;padding-top:0;padding-bottom:0;background-size:18px;line-height:1.22222rem;display:inline-block;background-position:100% 50%}#page>.menu-panel .menu-panel-bbs{float:left;width:205px;font-size:1.11111rem;line-height:1.55556rem}@media (min-width:75em){#page>.menu-panel .menu-panel-bbs{width:280px}}#page>.menu-panel .menu-panel-container,#page>.menu-panel .menu-panel-content{font-size:1.11111rem;line-height:1.44444rem}#page>.menu-panel .menu-panel-container .item-list ul,#page>.menu-panel .menu-panel-content .item-list ul{overflow:hidden;margin:0}#page>.menu-panel .menu-panel-container .item-list ul li,#page>.menu-panel .menu-panel-content .item-list ul li{background-image:none;padding:0;margin:0;background-position:initial initial;background-repeat:initial initial}#page>.menu-panel .menu-panel-container h3{font-family:gtamcond,Arial,Helvetica,Nimbus Sans L,sans-serif;text-transform:uppercase;padding-bottom:.27778rem;margin-bottom:.66667rem;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#7cbcda}#page>.menu-panel .menu-panel-container h3 a{color:#423a38}#page>.menu-panel .menu-panel-container .item-list ul li:nth-child(3n){margin-right:0}#page>.menu-panel .menu-panel-content{border-left-width:1px;border-left-style:solid;border-left-color:#fff;float:right;width:580px;padding-left:20px}@media (min-width:75em){#page>.menu-panel .menu-panel-content{width:580px;padding-left:75px}}#page>.menu-panel .menu-panel-content img{display:block;margin-bottom:.33333rem}#page>.menu-panel .menu-panel-content ul.menu{overflow:hidden;padding:0;margin:0}#page>.menu-panel .menu-panel-content .item-list ul li,#page>.menu-panel .menu-panel-content ul.menu li.menu__item{float:left;width:130px;margin-right:95px;margin-bottom:1.38889rem}#page>.menu-panel .menu-panel-content .item-list ul li:nth-child(4n),#page>.menu-panel .menu-panel-content ul.menu li.menu__item:nth-child(3n+1){margin-right:0}#page>.menu-panel .menu-panel-content .menu__item.is-leaf{list-style:none}@media (min-width:60em){a.submenu-header{display:none}}#page>.menu-panel#main_menu-dor-dropdown .menu-panel-content ul.menu{overflow:hidden;padding:0;margin:0}#page>.menu-panel#main_menu-dor-dropdown .menu-panel-content ul.menu li.menu__item{float:left;width:205px;margin-right:170px;margin-bottom:1.11111rem}#page>.menu-panel#main_menu-dor-dropdown .menu-panel-content ul.menu li.menu__item:nth-child(odd){margin-right:0}#page>.menu-panel#main_menu-dor-dropdown .menu-panel-content .menu__item.is-leaf{list-style:none}#page>.menu-panel#main_menu-blogs-dropdown .menu-panel-container{margin-bottom:1.66667rem}#page>.menu-panel#main_menu-blogs-dropdown .menu-panel-container img{float:left;margin-right:.55556rem}#page>.menu-panel#main_menu-blogs-dropdown .menu-panel-container .item-list ul li{float:left;width:280px;margin-right:20px}#page>.menu-panel#main_menu-blogs-dropdown .menu-panel-container .item-list ul li a{position:relative}@media (min-width:75em){#page>.menu-panel#main_menu-blogs-dropdown .menu-panel-container .item-list ul li{margin-right:95px}}#page>.menu-panel#main_menu-blogs-dropdown .menu-panel-container .item-list ul li:nth-child(3n){margin-right:0}#block-taxonomy-menu-block-2{z-index:1}@media (min-width:60em){#block-taxonomy-menu-block-2{background-color:#fff;list-style:none;padding:0;margin:2.61111rem 0 0;border:1px solid #423a38;width:11.38889rem;position:absolute;z-index:40;background-position:initial initial;background-repeat:initial initial}}body,html{width:100%}#page{overflow:hidden}#header{background-color:#423a38;padding-top:0;padding-bottom:0}@media (min-width:60em){#header{background-color:#fff;padding-top:1.11111rem;padding-bottom:0;top:-3.88889rem;transition:top .25s ease-out;-webkit-transition:top .25s ease-out}}#header .region-header{overflow:visible;position:relative}#header .block{margin-bottom:0}#block-blockify-blockify-logo{float:left}#block-blockify-blockify-site-name{height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);position:absolute!important}#block-search-api-page-search-aclu{float:right;margin-top:9px;margin-right:0;position:static}@media (max-width:59.9375em) and (min-width:48em){#block-search-api-page-search-aclu{margin-right:0;float:right}}@media (min-width:60em){.not-sticky #block-search-api-page-search-aclu{position:absolute;right:1.55556rem;float:none;margin-left:.55556rem;margin-top:.16667rem}}#block-search-api-page-search-aclu .search-header{cursor:pointer;outline:none;display:block;padding:.44444rem .16667rem .38889rem .83333rem;position:relative;z-index:999;line-height:1}#block-search-api-page-search-aclu .search-header span{display:block;position:relative}@media (min-width:60em){.not-sticky #block-search-api-page-search-aclu .search-header{border:1px solid #005aaa;padding:.11111rem .16667rem}}#block-search-api-page-search-aclu .content{display:none;position:absolute;top:2.83333rem;right:0;z-index:998;background-color:#b8e7ee;padding:.83333rem;width:14.22222rem;background-position:initial initial;background-repeat:initial initial}@media (max-width:59.9375em) and (min-width:48em){#block-search-api-page-search-aclu .content{right:3.5rem}}@media (min-width:60em){.not-sticky #block-search-api-page-search-aclu .content{top:0;right:0;width:13.33333rem;padding:1.66667rem 1.55556rem}}#block-search-api-page-search-aclu .content form{position:relative}#block-search-api-page-search-aclu .content form .form-item{margin:0;float:left}#block-search-api-page-search-aclu .content form .form-text{font-family:gtamcond,Arial,Helvetica,Nimbus Sans L,sans-serif;font-size:1rem;line-height:1.77778rem;padding:.33333rem .5rem;border:1px solid #423a38;height:2.55556rem;color:#423a38;border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0;-webkit-appearance:none;width:11.33333rem;margin-right:.55556rem;outline:none}@media (min-width:60em){.not-sticky #block-search-api-page-search-aclu .content form .form-text{font-size:.77778rem;line-height:1.22222rem;padding:.22222rem .55556rem .16667rem;height:1.66667rem}}#block-search-api-page-search-aclu .content form input[type=submit]{position:absolute;right:0;top:0;font-size:1rem;margin:0;padding:0;background-color:transparent;outline:none;border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0;-webkit-appearance:none;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIGZpbGw9IiMwMDVBQUEiIGQ9Ik0yNCwyMmMwLDEuMS0wLjksMi0yLDJIMmMtMS4xLDAtMi0wLjktMi0yVjJjMC0xLjEsMC45LTIsMi0yaDIwYzEuMSwwLDIsMC45LDIsMlYyMnoiLz4NCjwvZz4NCjxnIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgICAgIj4NCgk8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMTMuMzE2LDE5LjM0MWgtMS42OTJsNi41NzItNi41NTRIMy45OXYtMS4yNjFoMTQuMjA2bC02LjU3Mi02LjU1NGgxLjY5Mmw3LjE4NSw3LjE4NEwxMy4zMTYsMTkuMzQxeiIvPg0KPC9nPg0KPC9zdmc+DQo=);background-size:46px;width:46px;height:46px;text-indent:-9999px;background-position:50% 50%;background-repeat:no-repeat}@media (min-width:60em){.not-sticky #block-search-api-page-search-aclu .content form input[type=submit]{font-size:.77778rem;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIGZpbGw9IiMwMDVBQUEiIGQ9Ik0yNCwyMmMwLDEuMS0wLjksMi0yLDJIMmMtMS4xLDAtMi0wLjktMi0yVjJjMC0xLjEsMC45LTIsMi0yaDIwYzEuMSwwLDIsMC45LDIsMlYyMnoiLz4NCjwvZz4NCjxnIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgICAgIj4NCgk8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMTMuMzE2LDE5LjM0MWgtMS42OTJsNi41NzItNi41NTRIMy45OXYtMS4yNjFoMTQuMjA2bC02LjU3Mi02LjU1NGgxLjY5Mmw3LjE4NSw3LjE4NEwxMy4zMTYsMTkuMzQxeiIvPg0KPC9nPg0KPC9zdmc+DQo=);background-size:30px;width:30px;height:30px;text-indent:-9999px;background-position:50% 50%;background-repeat:no-repeat}}#block-blockify-blockify-logo .button--expand-minimized-nav{display:none;cursor:pointer;position:absolute;right:-1.55556rem;bottom:0;padding-bottom:12px}#logo{text-indent:-119988px;overflow:hidden;text-align:left;text-transform:capitalize;background-image:url(../images/logos/logo-small.png?1512413232);width:80px;height:28px;margin-top:11px;margin-bottom:12px;outline:none;display:block;background-position:50% 50%;background-repeat:no-repeat}@media not all,only screen and (-webkit-min-device-pixel-ratio:1.3),only screen and (-webkit-min-device-pixel-ratio:1.3020833333333333),only screen and (min-resolution:1.3dppx),only screen and (min-resolution:125dpi){#logo{background-image:url(../images/logos2x/logo-small.png?1512413232);background-size:cover}}@media (min-width:60em){.not-sticky #logo{text-indent:-119988px;overflow:hidden;text-align:left;text-transform:capitalize;background-image:url(../images/logos/logo-large.png?1512413232);width:190px;height:67px;margin-top:8px;margin-bottom:25px;background-position:50% 50%;background-repeat:no-repeat}}@media not all,only screen and (-webkit-min-device-pixel-ratio:1.3) and (min-width:60em),only screen and (-webkit-min-device-pixel-ratio:1.3020833333333333) and (min-width:60em),only screen and (min-resolution:1.3dppx) and (min-width:60em),only screen and (min-resolution:125dpi) and (min-width:60em){.not-sticky #logo{background-image:url(../images/logos2x/logo-large.png?1512413232);background-size:cover}}#logo img,#site-name{display:none}@media (max-width:47.9375em) and (min-width:0){#page .block-aclu-promotions{margin-bottom:0}}@media (max-width:59.9375em) and (min-width:48em){#page .block-aclu-promotions{margin-bottom:0}}#page .block-aclu-promotions.aclu-promotions-banner-eoy{margin:0;height:90px}@media (max-width:47.9375em) and (min-width:0){#page .block-aclu-promotions.aclu-promotions-banner-eoy{padding-top:0}}#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner{overflow:auto;display:table;margin:auto;width:100%;height:100%;text-align:center;vertical-align:middle}@media (max-width:59.9375em) and (min-width:48em){#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner{width:auto}}@media (max-width:47.9375em) and (min-width:0){#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner{width:auto}}#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-nav{margin:auto;padding:0;display:table;vertical-align:middle;overflow:auto;text-align:center;width:100%;height:100%}@media (max-width:47.9375em) and (min-width:0){#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-nav{width:auto}}@media (max-width:59.9375em) and (min-width:48em){#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-nav .banner-left,#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-nav .banner-right{display:none}}@media (max-width:47.9375em) and (min-width:0){#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-nav .banner-left,#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-nav .banner-right{display:none}}#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-nav .banner-middle{overflow:hidden;padding:0 20px;width:auto;background-color:#ffdf69;display:table-cell;vertical-align:middle}@media (max-width:47.9375em) and (min-width:0){#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-nav .banner-middle{padding:0}}@media (max-width:59.9375em) and (min-width:48em){#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-nav .banner-middle{padding:0}}#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-eoy-text-container{text-align:left;line-height:23px;display:inline-block;margin-right:1.11111rem}@media (max-width:47.9375em) and (min-width:0){#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-eoy-text-container{text-align:left;float:left;margin-right:0;width:50%;padding-left:15px}}@media (max-width:59.9375em) and (min-width:48em){#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-eoy-text-container{margin-right:.94444rem}}#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-eoy-alert-text{font-size:1.94444rem;font-family:gtam,Arial,Helvetica,Nimbus Sans L,sans-serif;font-weight:600;color:#005aaa}@media (max-width:47.9375em) and (min-width:0){#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-eoy-alert-text{margin:0 .83333rem 0 0;font-size:1rem;line-height:1rem}}@media (max-width:59.9375em) and (min-width:48em){#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-eoy-alert-text{font-size:1.55556rem;line-height:1.66667rem}}#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-eoy-alert-subtext{font-size:1.33333rem;font-family:gtam,Arial,Helvetica,Nimbus Sans L,sans-serif;font-weight:600;color:#005aaa;margin-top:.44444rem}@media (max-width:47.9375em) and (min-width:0){#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-eoy-alert-subtext{margin:0 .83333rem 0 0;font-size:.83333rem;line-height:.83333rem}}@media (max-width:59.9375em) and (min-width:48em){#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-eoy-alert-subtext{font-size:.88889rem;line-height:.88889rem;padding-top:0}}#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-eoy-alert-linktext{padding:0;display:inline-block;width:auto}@media (max-width:47.9375em) and (min-width:0){#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-eoy-alert-linktext{margin-right:0}}@media (max-width:59.9375em) and (min-width:48em){#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-eoy-alert-linktext{margin-right:1rem}}#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-eoy-alert-linktext a{width:auto;color:#fff;font-size:1.33333rem;background-color:#ef404d;padding:0 2.11111rem;line-height:3.55556rem;height:3.44444rem;font-family:gtam,Arial,Helvetica,Nimbus Sans L,sans-serif;font-weight:600;vertical-align:middle;text-align:center;display:inline-block}#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-eoy-alert-linktext a:link{color:#fff;text-decoration:none}@media (max-width:74.9375em) and (min-width:60em){#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-eoy-alert-linktext a{font-weight:400}}@media (max-width:47.9375em) and (min-width:0){#page .block-aclu-promotions.aclu-promotions-banner-eoy .banner-eoy-inner .banner-eoy-alert-linktext a{width:100px;padding:.55556rem .83333rem;line-height:1;height:2.77778rem}}#block-aclu-promotions-aclu-promotions-banner{display:block;background-color:#ffdf69;overflow:hidden;margin-bottom:1.11111rem;margin-top:-1.11111rem}@media (max-width:74.9375em) and (min-width:60em){#block-aclu-promotions-aclu-promotions-banner{margin-left:-40px;margin-right:-40px}}@media (min-width:75em){#block-aclu-promotions-aclu-promotions-banner{margin-left:-80px;margin-right:-80px}}@media (max-width:47.9375em) and (min-width:0){#block-aclu-promotions-aclu-promotions-banner{margin:0}}@media (max-width:59.9375em) and (min-width:48em){#block-aclu-promotions-aclu-promotions-banner{margin:0;height:100px}}#block-aclu-promotions-aclu-promotions-banner div{vertical-align:middle}#block-aclu-promotions-aclu-promotions-banner .banner-eoy-alert-text{display:inline-block;font-family:gtam,Arial,Helvetica,Nimbus Sans L,sans-serif;font-weight:600;font-size:1.44444rem;color:#005aaa}#skip-link{margin:0}#skip-link a{display:block;width:100%;padding:2px 0 3px;text-align:center;background-color:#666;color:#fff}.header__region{clear:both}.inline{display:inline;padding:0}.inline li{display:inline;list-style-type:none;padding:0 1em 0 0}.block{margin-bottom:1.55556em}.form-item{margin:1.55556em 0}.form-required{color:#c00}#block-aclu-social-get-updates{float:right;margin-right:4.66667rem;line-height:1}@media (max-width:47.9375em) and (min-width:0){#block-aclu-social-get-updates{display:none}}@media (max-width:59.9375em) and (min-width:48em){#block-aclu-social-get-updates{display:none;padding:.83333rem;position:absolute;right:0;top:2.83333rem;z-index:10;background-color:#b8e7ee}}@media (min-width:60em){.not-sticky #block-aclu-social-get-updates{margin-top:.16667rem;display:block!important}}#block-aclu-social-get-updates .form-item{float:left;margin:0 .44444rem 0 0}#block-aclu-social-get-updates .form-item.form-item-signup-email{width:9rem}@media (max-width:59.9375em) and (min-width:48em){#block-aclu-social-get-updates .form-item.form-item-signup-email{width:11.11111rem}}#block-aclu-social-get-updates .form-item.form-item-signup-zip{width:4.55556rem}#block-aclu-social-get-updates .form-item .form-text{font-size:1rem;line-height:1.77778rem;padding:.33333rem .5rem;height:2.55556rem}@media (min-width:60em){.not-sticky #block-aclu-social-get-updates .form-item .form-text{font-size:.77778rem;line-height:1.11111rem;padding:.16667rem .5rem;height:1.55556rem}}#block-aclu-social-get-updates input[type=submit]{background-color:transparent;padding:0;outline:none;border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0;-webkit-appearance:none}@media (max-width:59.9375em) and (min-width:48em){#block-aclu-social-get-updates input[type=submit]{float:left;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIGZpbGw9IiMwMDVBQUEiIGQ9Ik0yNCwyMmMwLDEuMS0wLjksMi0yLDJIMmMtMS4xLDAtMi0wLjktMi0yVjJjMC0xLjEsMC45LTIsMi0yaDIwYzEuMSwwLDIsMC45LDIsMlYyMnoiLz4NCjwvZz4NCjxnIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgICAgIj4NCgk8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMTMuMzE2LDE5LjM0MWgtMS42OTJsNi41NzItNi41NTRIMy45OXYtMS4yNjFoMTQuMjA2bC02LjU3Mi02LjU1NGgxLjY5Mmw3LjE4NSw3LjE4NEwxMy4zMTYsMTkuMzQxeiIvPg0KPC9nPg0KPC9zdmc+DQo=);background-size:2.55556rem;width:2.55556rem;height:2.55556rem;text-indent:-9999px;background-position:100% 50%;background-repeat:no-repeat}}@media (min-width:60em){.not-sticky #block-aclu-social-get-updates input[type=submit]{font-family:gtamcond,Arial,Helvetica,Nimbus Sans L,sans-serif;font-weight:600;font-size:.77778rem;line-height:1.11111rem;padding:.22222rem .5rem;height:1.55556rem;background-color:#005aaa}}.pane-aclu-blog-news-signup{padding:0}.pane-aclu-blog-news-signup .form-item.form-item-signup-email{float:none}.node-type-blog .pane-aclu-blog-news-signup{box-shadow:none}.node-type-blog .pane-aclu-blog-news-signup #aclu-social-signup-form .form-item.form-item-signup-email{float:none}@media (min-width:48em){.node-type-blog .pane-aclu-blog-news-signup #aclu-social-signup-form .form-item.form-item-signup-email{float:left}}.pane-aclu-blog-news-signup .close{display:none}.node-type-blog .pane-aclu-blog-news-signup .close{display:block}.pane-aclu-blog-news-signup div.pane-title{font-family:gtamcond,Arial,Helvetica,Nimbus Sans L,sans-serif;margin-bottom:.66667rem;text-transform:uppercase;font-size:1.22222rem;line-height:1.33333rem}.node-type-blog .pane-aclu-blog-news-signup div.pane-title{margin-bottom:.16667rem;font-size:.94444rem;line-height:.94444rem}@media (min-width:48em){.node-type-blog .pane-aclu-blog-news-signup div.pane-title{font-size:1.22222rem;line-height:1.33333rem}}
        ]]>
        </style>
        <link rel="stylesheet" href="https://www.aclu.org/sites/default/files/advagg_css/css__9spNr2y6sE7534vMtObhB-C6V7JoL17hQl6yVpVQHu0__jAYGrhJFgVdQGXTwGEQcuOV8h8Wa9vZRjf8mDLqYdNI__VITBFqYjCWZ55Wpxq9xcXRqOD9xxPlR-vPRDis8bQN4.css" media="all" />
        <style>
        <![CDATA[
        .aclu-name-textfield{display:none !important;}
        ]]>
        </style>
        <link rel="stylesheet" href="https://www.aclu.org/sites/default/files/advagg_css/css___ZnduM86wslayiEyMdexZdaCufgTPtFrrb78WVTtAuo__4rm0A7gt5xkfaPFTzbLqhPPFeiUfgjOnqlkui-UV0fU__VITBFqYjCWZ55Wpxq9xcXRqOD9xxPlR-vPRDis8bQN4.css" media="all" />
        <link rel="stylesheet" href="https://www.aclu.org/sites/default/files/advagg_css/css__pRDlzt0BVbbFqHQ3wQZq9xZxqgvQn100X3uSS1nLkiA__-VJy8i6iAowOFfi_Ts9NFnSSGv1dL4JaHTbh_a5yltM__VITBFqYjCWZ55Wpxq9xcXRqOD9xxPlR-vPRDis8bQN4.css" media="all" />
        <link rel="stylesheet" href="https://www.aclu.org/sites/default/files/advagg_css/css__xtweB_zAlOiZIBl2jHti46I8SiqUqqkHZATEYclfit0__j-rVGQJFT35ljMsuo5uEiaKeXg2xOVCo1SaqcUGZc7I__VITBFqYjCWZ55Wpxq9xcXRqOD9xxPlR-vPRDis8bQN4.css" media="all" />
        <link rel="stylesheet" href="https://www.aclu.org/sites/default/files/advagg_css/css__af8bNHU4hQBa2-PQX1X50gCJDA4cQ5w1rkPz8PsW4_4__6H7TVPMkdrIGuW35oghJ6A5hL9K-A825oBniIdmgc30__VITBFqYjCWZ55Wpxq9xcXRqOD9xxPlR-vPRDis8bQN4.css" media="all" />
        <script defer="defer" src="https://www.aclu.org/sites/all/libraries/modernizr/modernizr.min.js?p7vly2"></script><!--[if lt IE 9]>
    <script src="/sites/all/themes/contrib/zen/js/respond.js"></script>
    <![endif]-->
    </head>
    <body class="html not-front not-logged-in no-sidebars page-node page-node- page-node-67865 node-type-blog section-blog page-panels panel-layout-two-col-sidebar-right-mix">
        <p id="skip-link">
            <a href="#block-system-main-menu" class="element-invisible element-focusable skip-to-nav">Jump to navigation</a> <a href="#content" class="element-invisible element-focusable skip-nav">Skip navigation</a>
        </p>
        <div id="page">
            <header class="header not-sticky" id="header" role="banner">
                <div class="inner">
                    <div class="inner-inner">
                        <div class="header__region region region-header clearfix">
                            <div id="block-aclu-promotions-aclu-promotions-banner" class="block block-aclu-promotions eoy-banner first odd aclu-promotions-banner-eoy">
                                <div class="banner-eoy-inner">
                                    <div class="banner-nav">
                                        <div class="banner-left"></div>
                                        <div class="banner-middle">
                                            <div class="banner-eoy-text-container">
                                                <div class="banner-eoy-alert-text">
                                                    ACLU Conference
                                                </div>
                                                <div class="banner-eoy-alert-subtext">
                                                    Early bird discount ends today
                                                </div>
                                            </div>
                                            <div class="banner-eoy-alert-linktext">
                                                <a href="https://www.aclu.org/membership-conference-banner-2018">SIGN UP NOW</a>
                                            </div>
                                        </div>
                                        <div class="banner-right"></div>
                                    </div>
                                </div>
                            </div>
                            <div id="block-blockify-blockify-logo" class="block block-blockify even">
                                <a href="/" id="logo" rel="home" title="Return to the American Civil Liberties Union home page"><img src="https://www.aclu.org/sites/all/themes/custom/aclu/logo.png" alt="American Civil Liberties Union logo" /></a>
                            </div>
                            <div id="block-blockify-blockify-site-name" class="block block-blockify odd">
                                <span id="site-name"><a href="/" title="Return to the American Civil Liberties Union home page" rel="home"><span>American Civil Liberties Union</span></a></span>
                            </div>
                            <div id="block-aclu-social-get-updates" class="block block-aclu-social even">
                                <div class="signup">
                                    <div class="signup__form">
                                        <form action="/blog/privacy-technology/internet-privacy/facebook-tracking-me-even-though-im-not-facebook" method="post" id="aclu-social-signup-form--2" accept-charset="UTF-8" name="aclu-social-signup-form--2">
                                            <div>
                                                <div class="form-item form-type-textfield form-item-signup-email">
                                                    <label class="element-invisible" for="edit-signup-email--2">Email Address <span class="form-required" title="This field is required.">*</span></label> <input placeholder="Email address" type="text" id="edit-signup-email--2" name="signup_email" value="" size="60" maxlength="128" class="form-text required" />
                                                </div>
                                                <div class="form-item form-type-textfield form-item-signup-zip">
                                                    <label class="element-invisible" for="edit-signup-zip--2">ZIP Code <span class="form-required" title="This field is required.">*</span></label> <input placeholder="ZIP code" type="text" id="edit-signup-zip--2" name="signup_zip" value="" size="60" maxlength="128" class="form-text required" />
                                                </div><input type="hidden" name="location" value="header" /> <input type="submit" id="edit-submit--3" name="op" value="Get updates" class="form-submit" /><input type="hidden" name="form_build_id" value="form-hGG60UoLJiORDthH98ot7Z00BGE0w7ibTdtstuGQ8zM" /> <input type="hidden" name="form_id" value="aclu_social_signup_form" />
                                            </div>
                                        </form>
                                    </div>
                                </div>
                            </div>
                            <div id="block-search-api-page-search-aclu" class="block block-search-api-page odd">
                                <div class="container-inline">
                                    <div class="search-header">
                                        <span>Search form</span>
                                    </div>
                                    <div class="content">
                                        <form action="/issues/capital-punishment/mental-illness-and-death-penalty" method="post" id="search-api-page-search-form-search-aclu" accept-charset="UTF-8" name="search-api-page-search-form-search-aclu">
                                            <div>
                                                <div class="form-item form-type-textfield form-item-keys-1">
                                                    <label class="element-invisible" for="edit-keys-1">Enter your keywords</label> <input placeholder="Keyword Search" tabindex="1" type="text" id="edit-keys-1" name="keys_1" value="" size="15" maxlength="128" class="form-text" />
                                                </div><input type="hidden" name="id" value="1" /> <input type="submit" id="edit-submit-1" name="op" value="Search" class="form-submit" /><input type="hidden" name="form_build_id" value="form-A7n1UyigMND-e8scTxRdWLVL5n3t6OlyQ_u6dUsHiXM" /> <input type="hidden" name="form_id" value="search_api_page_search_form_search_aclu" />
                                            </div>
                                        </form>
                                    </div>
                                </div>
                            </div>
                            <div id="block-superfish-1" class="block block-superfish last even">
                                <ul id="superfish-1" class="menu sf-menu sf-menu-secondary-main-menu sf-horizontal sf-style-none sf-total-items-5 sf-parent-items-1 sf-single-items-4">
                                    <li id="menu-4854-1" class="first odd sf-item-1 sf-depth-1 sf-no-children menu-link-title-get-updates">
                                        <a href="/" class="menu-item-get-updates sf-depth-1">Get Updates</a>
                                    </li>
                                    <li id="menu-5048-1" class="middle even sf-item-2 sf-depth-1 sf-no-children menu-link-title-become-a-member">
                                        <a href="https://action.aclu.org/give/become-freedom-fighter-join-aclu?cid=70136000001Oa5D&amp;alt_src=70136000001OZf5&amp;ms=horiz_nav_hp_join&amp;ms_aff=NAT&amp;ms_chan=web&amp;initms=horiz_nav_hp_join&amp;initms_aff=NAT&amp;initms_chan=web" class="sf-depth-1">Become a Member</a>
                                    </li>
                                    <li id="menu-1661-1" class="middle odd sf-item-3 sf-depth-1 sf-no-children menu-link-title-renew">
                                        <a href="https://action.aclu.org/give/renew-your-aclu-membership?cid=70136000001OYGR&amp;ms=horiz_nav_hp_renew&amp;ms_aff=NAT&amp;ms_chan=web&amp;initms=horiz_nav_hp_renew&amp;initms_aff=NAT&amp;initms_chan=web" id="menu-item-renew" class="small-viewport-hide sf-depth-1">Renew</a>
                                    </li>
                                    <li id="menu-1662-1" class="middle even sf-item-4 sf-depth-1 sf-no-children menu-link-title-take-action">
                                        <a href="/action" id="menu-item-take-action" class="sf-depth-1">Take Action</a>
                                    </li>
                                    <li id="menu-1663-1" class="last odd sf-item-5 sf-depth-1 sf-total-children-5 sf-parent-children-0 sf-single-children-5 menuparent menu-link-title-donate">
                                        <a href="https://action.aclu.org/donate-aclu?&amp;ms=horiz_nav_hp&amp;ms_aff=NAT&amp;ms_chan=web&amp;initms=horiz_nav_hp&amp;initms_aff=NAT&amp;initms_chan=web" id="menu-item-donate" class="sf-depth-1 menuparent">Donate</a>
                                        <ul>
                                            <li id="menu-1664-1" class="first odd sf-item-1 sf-depth-2 sf-no-children menu-link-title-make-a-gift">
                                                <a href="https://action.aclu.org/donate-aclu?ms=menu_gift&amp;ms_aff=NAT&amp;ms_chan=web&amp;initms=menu_gift&amp;initms_aff=NAT&amp;initms_chan=web" class="sf-depth-2">Make a Gift</a>
                                            </li>
                                            <li id="menu-2667-1" class="middle even sf-item-2 sf-depth-2 sf-no-children menu-link-title-join-become-a-member">
                                                <a href="https://action.aclu.org/give/become-aclu-member?cid=70136000001Oa5D&amp;ms=menu_join&amp;ms_aff=NAT&amp;ms_chan=web&amp;initms=menu_join&amp;initms_aff=NAT&amp;initms_chan=web" class="sf-depth-2">Join/Become a Member</a>
                                            </li>
                                            <li id="menu-3830-1" class="middle odd sf-item-3 sf-depth-2 sf-no-children menu-link-title-renew-your-membership">
                                                <a href="https://action.aclu.org/give/renew-your-aclu-membership?cid=70136000001Ob7Z&amp;ms=menu_renew&amp;ms_aff=NAT&amp;ms_chan=web&amp;initms=menu_renew&amp;initms_aff=NAT&amp;initms_chan=web" class="sf-depth-2">Renew Your Membership</a>
                                            </li>
                                            <li id="menu-3831-1" class="middle even sf-item-4 sf-depth-2 sf-no-children menu-link-title-monthly-giving">
                                                <a href="https://action.aclu.org/give/fight-back-against-attacks-our-civil-liberties?cid=70136000001OZf5&amp;ms=menu_monthly&amp;ms_aff=NAT&amp;ms_chan=web&amp;initms=menu_monthly&amp;initms_aff=NAT&amp;initms_chan=web" class="sf-depth-2">Monthly Giving</a>
                                            </li>
                                            <li id="menu-3832-1" class="last odd sf-item-5 sf-depth-2 sf-no-children menu-link-title-other-ways-to-give">
                                                <a href="https://www.aclu.org/donate-aclu?ms=menu_other&amp;ms_aff=NAT&amp;ms_chan=web&amp;initms=menu_other&amp;initms_aff=NAT&amp;initms_chan=web" class="sf-depth-2">Other Ways to Give</a>
                                            </li>
                                        </ul>
                                    </li>
                                </ul>
                            </div>
                        </div>
                    </div>
                </div>
            </header>
            <div id="navigation" role="navigation">
                <div class="inner">
                    <div class="region region-navigation">
                        <div id="block-taxonomy-menu-block-2" class="block block-taxonomy-menu-block first odd">
                            <ul class="menu"></ul>
                        </div>
                        <div id="block-system-main-menu" class="block block-system block-menu last even" role="navigation">
                            <ul class="menu">
                                <li class="menu__item is-expanded first expanded">
                                    <span id="main_menu-kyr" class="menu__link aclu_menu_expand-bbs_images nolink">Know your rights</span>
                                    <div class="menu-panel">
                                        <div class="inner">
                                            <div class="inner-inner">
                                                <div class="menu-panel-content">
                                                    <div class="item-list">
                                                        <ul>
                                                            <li class="first">
                                                                <a href="/know-your-rights" class="submenu-header">Know Your Rights</a>
                                                            </li>
                                                            <li>
                                                                <a href="https://www.aclu.org/know-your-rights/demonstrations-and-protests"><img src="https://www.aclu.org/sites/default/files/styles/blog_index_thumbnail_130x110/public/field_image/web16-kyr-featuredimg-560x480-v01.jpg?itok=d6YrpMuP" width="130" height="110" alt="" /> Demonstrations and Protests</a>
                                                            </li>
                                                            <li>
                                                                <a href="https://www.aclu.org/know-your-rights/know-your-rights-about-daca"><img src="https://www.aclu.org/sites/default/files/styles/blog_index_thumbnail_130x110/public/field_image/web17-dreamersconcerned-kyr-560x480.jpg?itok=F0bxbZUi" width="130" height="110" alt="" /> For DACA Recipients</a>
                                                            </li>
                                                            <li class="last">
                                                                <a href="https://www.aclu.org/know-your-rights/what-do-if-youre-stopped-police-immigration-agents-or-fbi"><img src="https://www.aclu.org/sites/default/files/styles/blog_index_thumbnail_130x110/public/field_image/kyr-stoppedbythepolice-560x480-v01.jpg?itok=TZ3ks829" width="130" height="110" alt="" /> What To Do If You're Stopped By Police</a>
                                                            </li>
                                                        </ul>
                                                    </div><a href="/know-your-rights" class="more">See all Know Your Rights</a>
                                                </div>
                                                <div class="menu-panel-bbs">
                                                    Do you know your rights? These easy-to-use resources were created by the ACLU so you can have your rights at your fingertips.
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </li>
                                <li class="menu__item is-expanded expanded">
                                    <span id="main_menu-dor" class="menu__link aclu_menu_expand-bbs nolink">Defending our rights</span>
                                    <div class="menu-panel">
                                        <div class="inner">
                                            <div class="inner-inner">
                                                <div class="menu-panel-content">
                                                    <ul class="menu">
                                                        <li class="menu__item is-leaf leaf">
                                                            <a href="/defending-our-rights" class="menu__link submenu-header">Defending Our Rights</a>
                                                        </li>
                                                        <li class="menu__item is-leaf leaf">
                                                            <a href="/defending-our-rights/court-battles" title="Court Battles" class="menu__link">Court Battles</a>
                                                        </li>
                                                        <li class="menu__item is-leaf leaf">
                                                            <a href="/defending-our-rights/court-battles/supreme-court" class="menu__link">Supreme Court Cases</a>
                                                        </li>
                                                        <li class="menu__item is-leaf leaf">
                                                            <a href="/issues/public-policy" class="menu__link">Federal Advocacy</a>
                                                        </li>
                                                        <li class="menu__item is-leaf last leaf">
                                                            <a href="/about/affiliates" class="menu__link">Find Your Local Affiliate</a>
                                                        </li>
                                                    </ul><a href="/defending-our-rights" class="more">Go to Defending Our Rights</a>
                                                </div>
                                                <div class="menu-panel-bbs">
                                                    The ACLU works tirelessly in courts, legislatures, and communities to defend and preserve the Constitution’s promise of liberty for everyone in our country.
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </li>
                                <li class="menu__item is-expanded expanded">
                                    <span id="main_menu-blogs" class="menu__link aclu_menu_expand-images nolink">Blogs</span>
                                    <div class="menu-panel">
                                        <div class="inner">
                                            <div class="inner-inner">
                                                <div class="menu-panel-container">
                                                    <h3>
                                                        <a href="/blog">Blogs</a>
                                                    </h3>
                                                    <div class="item-list">
                                                        <ul>
                                                            <li class="first">
                                                                <a href="https://www.aclu.org/blog/speak-freely"><img src="https://www.aclu.org/sites/default/files/styles/blog_index_thumbnail_130x110/public/field_banner_image/web18-siteimages-blog-speakfreely-2400x720-v02.jpg?itok=CGvxNq0e" width="130" height="110" alt="" /> Speak Freely</a>
                                                            </li>
                                                            <li>
                                                                <a href="https://www.aclu.org/blog/free-future"><img src="https://www.aclu.org/sites/default/files/styles/blog_index_thumbnail_130x110/public/field_banner_image/web15-siteimages-blog-ff-2400x960-v06_0.jpg?itok=Nfp3z-1K" width="130" height="110" alt="" /> Free Future</a>
                                                            </li>
                                                            <li class="last">
                                                                <a href="https://www.aclu.org/blog/washington-markup"><img src="https://www.aclu.org/sites/default/files/styles/blog_index_thumbnail_130x110/public/field_banner_image/web15-siteimages-blog-wshgtnmu-2400-960_5.jpg?itok=f7CaqQ76" width="130" height="110" alt="" /> Washington Markup</a>
                                                            </li>
                                                        </ul>
                                                    </div>
                                                </div>
                                                <div class="menu-panel-container">
                                                    <h3>
                                                        <a href="/blog">Feeds</a>
                                                    </h3>
                                                    <div class="item-list">
                                                        <ul>
                                                            <li class="first">
                                                                <a href="https://www.aclu.org/blog-feed/editors-picks"><img src="https://www.aclu.org/sites/default/files/styles/blog_index_thumbnail_130x110/public/field_banner_image/web15-blog-editorspicks-2400x960_1.jpg?itok=1ognkSD7" width="130" height="110" alt="" /> Editor's Picks</a>
                                                            </li>
                                                            <li>
                                                                <a href="https://www.aclu.org/blog-feed/people-power"><img src="https://www.aclu.org/sites/default/files/styles/blog_index_thumbnail_130x110/public/field_banner_image/web17-siteimages-blog-peoplepower-2400x720-v01.jpg?itok=u0hNyyaH" width="130" height="110" alt="" /> People Power</a>
                                                            </li>
                                                            <li class="last">
                                                                <a href="https://www.aclu.org/blog-feed/breaking-news"><img src="https://www.aclu.org/sites/default/files/styles/blog_index_thumbnail_130x110/public/field_banner_image/web16-siteimages-blog-breakingnews-2400x720-rel02.jpg?itok=DDzAKoR7" width="130" height="110" alt="" /> Breaking News</a>
                                                            </li>
                                                        </ul>
                                                    </div>
                                                </div><a href="/blog" class="more">See all blogs and feeds</a>
                                            </div>
                                        </div>
                                    </div>
                                </li>
                                <li class="menu__item is-expanded expanded">
                                    <span id="main_menu-about" class="menu__link aclu_menu_expand-bbs nolink">About</span>
                                    <div class="menu-panel">
                                        <div class="inner">
                                            <div class="inner-inner">
                                                <div class="menu-panel-content">
                                                    <ul class="menu">
                                                        <li class="menu__item is-leaf leaf">
                                                            <a href="/about-aclu" class="menu__link submenu-header">About</a>
                                                        </li>
                                                        <li class="menu__item is-leaf leaf">
                                                            <a href="/about/leadership" class="menu__link">Leadership</a>
                                                        </li>
                                                        <li class="menu__item is-leaf leaf">
                                                            <a href="/about/aclu-history" class="menu__link">History</a>
                                                        </li>
                                                        <li class="menu__item is-leaf leaf">
                                                            <a href="/about/media" class="menu__link">Media</a>
                                                        </li>
                                                        <li class="menu__item is-leaf leaf">
                                                            <a href="/about/affiliates" class="menu__link">Local Affiliates</a>
                                                        </li>
                                                        <li class="menu__item is-leaf leaf">
                                                            <a href="/careers" class="menu__link">Careers</a>
                                                        </li>
                                                        <li class="menu__item is-leaf leaf">
                                                            <a href="/issues/aclu-ambassador-project" class="menu__link">Ambassadors</a>
                                                        </li>
                                                        <li class="menu__item is-leaf leaf">
                                                            <a href="/officers-board-directors" class="menu__link">Officers and Board</a>
                                                        </li>
                                                        <li class="menu__item is-leaf leaf">
                                                            <a href="/finances" class="menu__link">Financial Info and Reports</a>
                                                        </li>
                                                        <li class="menu__item is-leaf leaf">
                                                            <a href="/how-you-can-help" class="menu__link">How You Can Help</a>
                                                        </li>
                                                        <li class="menu__item is-leaf leaf">
                                                            <a href="/faqs" class="menu__link">FAQ</a>
                                                        </li>
                                                        <li class="menu__item is-leaf leaf">
                                                            <a href="/aclu-centers" class="menu__link">Centers</a>
                                                        </li>
                                                        <li class="menu__item is-leaf leaf">
                                                            <a href="/contact-us" class="menu__link">Contact Us</a>
                                                        </li>
                                                    </ul><a href="/about-aclu" class="more">Go to About the ACLU</a>
                                                </div>
                                                <div class="menu-panel-bbs">
                                                    For almost 100 years, the ACLU has worked to defend and preserve the individual rights and liberties guaranteed by the Constitution and laws of the United States.
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </li>
                                <li class="menu__item is-leaf last leaf">
                                    <a href="https://shop.aclu.org/?a=mainsite_nav" id="main_menu-shop" class="menu__link">Shop</a>
                                </li>
                            </ul>
                        </div>
                    </div>
                </div>
            </div>
            <div id="main">
                <div id="content" class="column" role="main">
                    <div class="full-page-width">
                        <div class="inner">
                            <a id="main-content"></a>
                            <div class="region region-help">
                                <div id="block-blockify-blockify-messages" class="block block-blockify first last odd"></div>
                            </div>
                        </div>
                    </div>
                    <div class="panel-display panel-two-col-sidebar-right-mix">
                        <div class="panel-panel panel-header-full-bleed full-bleed">
                            <div class="panel-pane pane-aclu-blog-channel-header">
                                <a href="https://www.aclu.org/blog/free-future"><noscript class="adaptive-image" data-adaptive-image-breakpoints="480 768" data-adaptive-image-480-img="&lt;img class=&quot;adaptive-image&quot; data-adaptive-image-breakpoint=&quot;480&quot; src=&quot;https://www.aclu.org/sites/default/files/styles/blog_channel_header_small_480x63/public/field_banner_image/web15-siteimages-blog-ff-2400x960-v06_0.jpg?itok=Z5RaZm46&quot; width=&quot;480&quot; height=&quot;63&quot; alt=&quot;&quot; /&gt;" data-adaptive-image-768-img="&lt;img class=&quot;adaptive-image&quot; data-adaptive-image-breakpoint=&quot;768&quot; src=&quot;https://www.aclu.org/sites/default/files/styles/blog_channel_header_medium_768x100/public/field_banner_image/web15-siteimages-blog-ff-2400x960-v06_0.jpg?itok=IckmIOhh&quot; width=&quot;768&quot; height=&quot;100&quot; alt=&quot;&quot; /&gt;" data-adaptive-image-max-img="&lt;img class=&quot;adaptive-image&quot; data-adaptive-image-breakpoint=&quot;max&quot; src=&quot;https://www.aclu.org/sites/default/files/styles/blog_channel_header_wide_1200x100/public/field_banner_image/web15-siteimages-blog-ff-2400x960-v06_0.jpg?itok=bQHln3c_&quot; width=&quot;1200&quot; height=&quot;100&quot; alt=&quot;&quot; /&gt;"><img src="https://www.aclu.org/sites/default/files/styles/blog_channel_header_wide_1200x100/public/field_banner_image/web15-siteimages-blog-ff-2400x960-v06_0.jpg?itok=bQHln3c_" width="1200" height="100" alt="" /></noscript></a>
                                <div class="blog_channel_header--title text-large">
                                    <a href="https://www.aclu.org/blog/free-future">Free Future</a>
                                </div>
                            </div>
                        </div>
                        <div class="panel-panel panel-full-width-1 full-page-width">
                            <div class="inner">
                                <div class="panel-pane pane-node-title">
                                    <h1>
                                        Facebook Is Tracking Me Even Though I’m Not on Facebook
                                    </h1>
                                </div>
                                <div class="panel-pane pane-aclu-blog-byline">
                                    <div class="blog-image">
                                        <div class="field-image">
                                            <img src="https://www.aclu.org/sites/default/files/styles/blog_author_54x46/public/biography-images/web16-dkg-final2.jpg?itok=yZxVPbHI" width="55" height="46" alt="" />
                                        </div>
                                    </div>
                                    <div class="blog-author">
                                        By <a href="/bio/daniel-kahn-gillmor">Daniel Kahn Gillmor</a>, Senior Staff Technologist, ACLU Speech, Privacy, and Technology Project
                                    </div>
                                    <div class="updated-date">
                                        April 5, 2018 | 6:00 PM
                                    </div>
                                </div>
                                <div class="panel-pane pane-aclu-components-issue-area related-issues">
                                    <div class="issues-horizontal">
                                        <span class="label">Tags</span>
                                        <div class="item-list">
                                            <ul>
                                                <li class="first">
                                                    <a href="/search/%20?f%5B0%5D=field_issues%3A99&amp;f%5B1%5D=type%3Ablog">Internet Privacy</a>
                                                </li>
                                                <li>
                                                    <a href="/search/%20?f%5B0%5D=field_issues%3A98&amp;f%5B1%5D=type%3Ablog">Privacy &amp; Technology</a>
                                                </li>
                                                <li class="last">
                                                    <a href="/search/%20?f%5B0%5D=field_issues%3A125&amp;f%5B1%5D=type%3Ablog">Consumer Privacy</a>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                </div>
                                <div class="panel-pane pane-aclu-components-share-icons share-icons">
                                    <ul>
                                        <li class="facebook">
                                            <a href="https://www.facebook.com/v2.7/dialog/feed?app_id=782898798486624&amp;link=https%3A//www.aclu.org/blog/privacy-technology/internet-privacy/facebook-tracking-me-even-though-im-not-facebook&amp;name=Facebook%20Is%20Tracking%20Me%20Even%20Though%20I%E2%80%99m%20Not%20on%20Facebook&amp;redirect_uri=https%3A//www.aclu.org/blog/privacy-technology/internet-privacy/facebook-tracking-me-even-though-im-not-facebook" target="_blank" title="Submit this to Facebook">Facebook</a>
                                        </li>
                                        <li class="twitter">
                                            <a href="http://twitter.com/intent/tweet?text=Facebook%20Is%20Tracking%20Me%20Even%20Though%20I%E2%80%99m%20Not%20on%20Facebook&amp;via=aclu&amp;title=Facebook%20Is%20Tracking%20Me%20Even%20Though%20I%E2%80%99m%20Not%20on%20Facebook&amp;url=https%3A//www.aclu.org/blog/privacy-technology/internet-privacy/facebook-tracking-me-even-though-im-not-facebook" target="_blank" title="Submit this to Twitter">Twitter</a>
                                        </li>
                                        <li class="reddit">
                                            <a href="http://reddit.com/submit?title=Facebook%20Is%20Tracking%20Me%20Even%20Though%20I%E2%80%99m%20Not%20on%20Facebook%20%7C%20American%20Civil%20Liberties%20Union&amp;url=https%3A//www.aclu.org/blog/privacy-technology/internet-privacy/facebook-tracking-me-even-though-im-not-facebook" target="_blank" title="Submit this to Reddit">Reddit</a>
                                        </li>
                                        <li class="email">
                                            <a href="mailto:?body=https%3A%2F%2Fwww.aclu.org%2Fblog%2Fprivacy-technology%2Finternet-privacy%2Ffacebook-tracking-me-even-though-im-not-facebook%0D%0A%0D%0AI%20don't%20use%20Facebook.%20I'm%20not%20technophobic%20%E2%80%94%20I'm%20a%20geek.%20I've%20been%20using%20email%20since%20the%20early%201990s,%20I%20have%20accounts%20on%20hundreds%20of%20services%20around%20the%20net,%20and%20I%20do%20software%20development%20and%20internet%20protocol%20design%20both%20for%20work%20and%20for%20fun.%20I%20believe%20that%20a%20globe-spanning%20communications%20network%20like%20the%20internet%20can%20be%20a%20positive%20social%20force,%20and%20I%20publish%20much%20of%20my%20own%20work%20on%20the%20open%20web.&amp;subject=Facebook%20Is%20Tracking%20Me%20Even%20Though%20I%E2%80%99m%20Not%20on%20Facebook%20%7C%20American%20Civil%20Liberties%20Union" target="_blank" title="Submit this to Email">Email</a>
                                        </li>
                                        <li class="print">
                                            <a href="/print/node/67865" target="_blank" title="Submit this to Print">Print</a>
                                        </li>
                                    </ul>
                                </div>
                            </div>
                        </div>
                        <div class="center-wrapper clearfix full-page-width">
                            <div class="inner">
                                <div class="panel-panel panel-main-3 content-column">
                                    <div class="panel-pane pane-aclu-blog-multimedia">
                                        <div class="node node-blog view-mode-blog_multimedia">
                                            <div class="blog-multimedia--figure-caption">
                                                <figure class="field-image">
                                                    <div id="file-39939" class="file file-image file-image-jpeg">
                                                        <h2 class="element-invisible">
                                                            <a href="/file/39939">WEB18-Facebook-1160x768.jpg</a>
                                                        </h2>
                                                        <div class="content">
                                                            <img src="https://www.aclu.org/sites/default/files/styles/blog_main_wide_580x384/public/field_image/web18-facebook-1160x768.jpg?itok=V5vZM_G3" width="580" height="384" alt="Cell phone with Facebook on it in front of blue data" />
                                                        </div>
                                                    </div>
                                                </figure>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="panel-pane pane-aclu-components-description description">
                                        <p class="FirstParagraph">
                                            I don't use Facebook. I'm not technophobic — I'm a geek. I've been using email since the early 1990s, I have accounts on hundreds of services around the net, and I do software development and internet protocol design both for work and for fun. I believe that a globe-spanning communications network like the internet can be a positive social force, and I publish much of my own work on the open web.
                                        </p>
                                        <p class="MsoBodyText">
                                            But Facebook and other massive web companies represent a strong push toward unaccountable centralized social control, which I think makes our society more unequal and more unjust. The Cambridge Analytica scandal is one instance of this long-running problem with what I call the "surveillance economy." I don't want to submit to these power structures, and I don’t want my presence on such platforms to serve as bait that lures other people into the digital panopticon.
                                        </p>
                                        <p class="MsoBodyText">
                                            But while I've never "opted in" to Facebook or any of the other big social networks, Facebook still has a detailed profile that can be used to target me. I've never consented to having Facebook collect my data, which can be used to draw very detailed inferences about my life, my habits, and my relationships. As we aim to take Facebook to task for its breach of user trust, we need to think about what its capabilities imply for society overall. After all, if you do #deleteFacebook, you'll find yourself in my shoes: non-consenting, but still subject to Facebook’s globe-spanning surveillance and targeting network.
                                        </p>
                                        <p class="MsoBodyText">
                                            There are at least two major categories of information available to Facebook about non-participants like me: information from other Facebook users, and information from sites on the open web.
                                        </p>
                                        <h3 class="node-type-blog">
                                            <strong>Information from other Facebook users</strong>
                                        </h3>
                                        <p class="FirstParagraph">
                                            When you sign up for Facebook, it encourages you to upload your list of contacts so that the site can "find your friends." Facebook uses this contact information to learn about people, even if those people don't agree to participate. It also links people together based on who they know, even if the shared contact hasn't agreed to this use.
                                        </p>
                                        <p class="MsoBodyText">
                                            For example, I received an email from Facebook that lists the people who have all invited me to join Facebook: my aunt, an old co-worker, a friend from elementary school, etc. This email includes names and email addresses — including my own name — and at least one <a href="https://en.wikipedia.org/wiki/Web_bug">web bug</a> designed to identify me to Facebook’s web servers when I open the email. Facebook records this group of people as my contacts, even though I've never agreed to this kind of data collection.
                                        </p>
                                        <p class="MsoBodyText">
                                            Similarly, I'm sure that I'm in some photographs that someone has uploaded to Facebook — and I'm probably tagged in some of them. I've never agreed to this, but Facebook could still be keeping track.
                                        </p>
                                        <p class="MsoBodyText">
                                            So even if you decide you need to join Facebook, remember that you might be giving the company information about someone else who didn't agree to be part of its surveillance platform.
                                        </p>
                                        <h3 class="node-type-blog">
                                            <strong>Information from sites on the open Web</strong>
                                        </h3>
                                        <p class="FirstParagraph">
                                            Nearly every website that you visit that has a "Like" button is actually encouraging your browser to tell Facebook about your browsing habits. Even if you don't click on the "Like" button, displaying it requires your browser to send a request to Facebook's servers for the "Like" button itself. That request includes <a href="https://en.wikipedia.org/wiki/HTTP_referer">information</a> mentioning the name of the page you are visiting and any Facebook-specific <a href="https://en.wikipedia.org/wiki/HTTP_cookie">cookies</a> your browser might have collected. (See <a href="https://www.facebook.com/help/186325668085084">Facebook's own description of this process</a>.) This is called a "third-party request."
                                        </p>
                                        <p class="MsoBodyText">
                                            This makes it possible for Facebook to create a detailed picture of your browsing history — even if you've never even visited Facebook directly, let alone signed up for a Facebook account.
                                        </p>
                                        <p class="MsoBodyText">
                                            Think about most of the web pages you've visited — how many of them <em>don't</em> have a "Like" button? If you administer a website and you include a "Like" button on every page, you're helping Facebook to build profiles of your visitors, even those who have opted out of the social network. Facebook’s <a href="https://developers.facebook.com/docs/plugins/">“Share” buttons</a> on other sites — along with <a href="https://www.facebook.com/business/learn/facebook-ads-pixel">other tools</a> — work a bit differently from the “Like” button, but do effectively the same thing.
                                        </p>
                                        <p class="MsoBodyText">
                                            The profiles that Facebook builds on non-users don't necessarily include so-called "personally identifiable information" (PII) like names or email addresses. But they do include fairly unique patterns. Using <a href="https://dev.chromium.org/for-testers/providing-network-details">Chromium's NetLog dumping</a>, I performed a simple five-minute browsing test last week that included visits to various sites — but not Facebook. In that test, the PII-free data that was sent to Facebook included information about which news articles I was reading, my dietary preferences, and my hobbies.
                                        </p>
                                        <p class="MsoBodyText">
                                            Given the precision of this kind of mapping and targeting, "PII" isn’t necessary to reveal my identity. How many vegans examine specifications for computer hardware from the ACLU's offices while reading about Cambridge Analytica? Anyway, if Facebook combined that information with the "web bug" from the email mentioned above — which <em>is</em> clearly linked to my name and e-mail address — no guesswork would be required.
                                        </p>
                                        <p class="MsoBodyText">
                                            I'd be shocked if Facebook were not connecting those dots given the goals <a href="https://www.facebook.com/about/privacy/cookies">they claim for data collection</a>:
                                        </p>
                                        <blockquote>
                                            <p class="MsoBlockText">
                                                We use the information we have to improve our advertising and measurement systems so we can show you relevant ads on and off our Services and measure the effectiveness and reach of ads and services.
                                            </p>
                                        </blockquote>
                                        <p class="FirstParagraph">
                                            This is, in essence, exactly what Cambridge Analytica did.
                                        </p>
                                        <h3 class="node-type-blog">
                                            <strong>Consent</strong>
                                        </h3>
                                        <p class="FirstParagraph">
                                            Facebook and other tech companies often deflect accusations against excessive data collection by arguing "consent" — that they harvest and use data with the consent of the users involved.
                                        </p>
                                        <p class="MsoBodyText">
                                            But even if we accept that clicking through a "Terms of Service" that <a href="https://tosdr.org/">no one reads</a> can actually constitute true consent, even if we ignore the fact that these terms are overwhelmingly one-sided and non-negotiable, and even if we accept that it's meaningful for people to give consent when sharing data about other people who may have also opted in — what is the recourse for someone who has not opted into these systems at all?
                                        </p>
                                        <p class="MsoBodyText">
                                            Are those of us who have explicitly avoided agreeing to the Facebook terms of service simply fair game for an industry-wide surveillance and targeting network?
                                        </p>
                                        <h3 class="node-type-blog">
                                            <strong>Privilege</strong>
                                        </h3>
                                        <p class="FirstParagraph">
                                            I don’t mean to critique people who have created a Facebook profile or suggest they deserve whatever they get.
                                        </p>
                                        <p class="MsoBodyText">
                                            My ability to avoid Facebook comes from privilege — I have existing social contacts with whom I know how to stay in touch without using Facebook's network. My job does not require that I use Facebook. I can afford the time and expense to communicate with my electoral representatives and political allies via other channels.
                                        </p>
                                        <p class="MsoBodyText">
                                            Many people do not have these privileges and are compelled to "opt in" on Facebook's non-negotiable terms.
                                        </p>
                                        <p class="MsoBodyText">
                                            Many journalists, organizers, schools, politicians, and others who have good reasons to oppose Facebook's centralized social control feel compelled by Facebook's reach and scale to participate in their practices, even those we know to be harmful. That includes the ACLU.
                                        </p>
                                        <p class="MsoBodyText">
                                            Privacy should not be a luxury good, and while I'm happy to encourage people to opt out of these subtle and socially fraught arrangements, I do not argue that anyone who has signed up has somehow relinquished concerns about their privacy. We need to evaluate privacy concerns in their full social contexts. These are not problems that can be resolved on an individual level, because of the interpersonal nature of much of this data and the complexities of the tradeoffs involved.
                                        </p>
                                        <h3 class="node-type-blog">
                                            <strong>Technical countermeasures</strong>
                                        </h3>
                                        <p class="FirstParagraph">
                                            While they may not solve the problem, there are some technical steps people can take to limit the scope of these surveillance practices. For example, some web browsers do not send "third-party cookies" by default, or <a href="https://wiki.mozilla.org/Thirdparty">they scope cookies</a> so that centralized surveillance doesn't get a single view of one user. The most privacy-preserving modern browser is <a href="https://www.torproject.org/">the Tor Browser</a>, which everyone should have installed and available, even if it's not the browser they choose to use every day. It limits the surveillance ability of systems that you have not signed up for to track you as you move around the web.
                                        </p>
                                        <p class="MsoBodyText">
                                            You can also modify some browsers — for example, with plug-ins for <a href="https://requestpolicycontinued.github.io/">Firefox</a> and <a href="https://chrome.google.com/webstore/detail/umatrix/ogfcmafjalglgifnmanfmnieipoejdcf">Chrome</a> — so that they <a href="https://addons.mozilla.org/en-US/firefox/addon/umatrix/">do not send third-party</a> <a href="https://requestpolicycontinued.github.io/">requests at all</a>. Firefox is also exploring even more <a href="https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/">privacy-preserving techniques</a><a href="https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/">.</a>
                                        </p>
                                        <p class="MsoBodyText">
                                            It can’t be denied, though, that these tools are harder to use than the web browsers most people are accustomed to, and they create barriers to some online activities. (For example, logging in to <a href="https://offcampushousing.uconn.edu/login">some sites</a> and accessing some <a href="https://filestore.community.support.microsoft.com/api/images/0253d8fb-b050-401a-834d-9d80a99c0b12">web applications</a> is impossible without third-party cookies.)
                                        </p>
                                        <p class="MsoBodyText">
                                            Some website operators take their visitors' privacy more seriously than others, by reducing the amount of third-party requests. For example, it's possible to display "share on Facebook" or "Like" buttons without sending user requests to Facebook in the first place. The ACLU's own website does this because we believe that the right to read with privacy is a fundamental protection for civic discourse.
                                        </p>
                                        <p class="MsoBodyText">
                                            If you are responsible for running a website, try browsing it with a third-party-blocking extension turned on. Think about how much information you're requiring your users to send to third parties as a condition for using your site. If you care about being a good steward of your visitors' data, you can re-design your website to reduce this kind of leakage.
                                        </p>
                                        <h3 class="node-type-blog">
                                            <strong>Opting out?</strong>
                                        </h3>
                                        <p class="MsoBodyText">
                                            Some advertisers claim that you can "opt out" of their targeted advertising, and even offer <a href="http://optout.aboutads.info/">a centralized place meant to help you do so</a>.&nbsp;However, my experience with these tools isn't a positive one. They don't appear to work all of the time. (In a recent experiment I conducted, two advertisers’ opt-out mechanisms failed to take effect.) And while advertisers claim to allow the user to opt out of "interest-based ads," it's not clear that the opt-outs govern data collection itself, rather than just the use of the collected data for displaying ads. Moreover, opting out on their terms requires the use of third-party cookies, thereby enabling another mechanism that other advertisers can then exploit.
                                        </p>
                                        <p class="MsoBodyText">
                                            It's also not clear how they function over time: How frequently do I need to take these steps? Do they expire? How often should I check back to make sure I’m still opted out? I'd much prefer an approach requiring me to opt <em>in</em> to surveillance and targeting.
                                        </p>
                                        <h3 class="node-type-blog">
                                            <strong>Fix the surveillance economy, not just Facebook</strong>
                                        </h3>
                                        <p class="FirstParagraph">
                                            These are just a few of the mechanisms that enable online tracking. Facebook is just one culprit in this online "surveillance economy," albeit a massive one — the company owns <a href="https://www.instagram.com/">Instagram</a>, <a href="https://atlassolutions.com/">Atlas</a>, <a href="https://www.whatsapp.com/">WhatsApp</a>, and dozens of other internet and technology companies and services. But it’s not the only player in this space. Google’s business model also relies on this kind of surveillance, and there are dozens of smaller players as well.
                                        </p>
                                        <p class="MsoBodyText">
                                            As we work to address the fallout from the current storm around Facebook and Cambridge Analytica, we can't afford to lose sight of these larger mechanisms at play. Cambridge Analytica's failures and mistakes are inherent to Facebook's business model. We need to seriously challenge the social structures that encourage people to opt in to this kind of surveillance. At the same time, we also need to protect those of us who manage to opt out.
                                        </p>
                                    </div>
                                    <div class="panel-pane pane-aclu-social-comments">
                                        <div class="comments comment-wrapper">
                                            <div class="comments-header">
                                                <span class="title">View comments</span> (27)
                                            </div>
                                            <div class="content">
                                                <div class="terms">
                                                    <div class="terms-title read-comments-tou">
                                                        Read the Terms of Use
                                                    </div>
                                                    <div class="terms-content comments-tou"></div>
                                                </div>
                                                <div id="comments">
                                                    <form class="comment-form" action="/comment/reply/67865" method="post" id="comment-form" accept-charset="UTF-8" name="comment-form">
                                                        <div>
                                                            <div class="form-item form-type-textfield form-item-name">
                                                                <label for="edit-name">Your name <span class="form-required" title="This field is required.">*</span></label> <input type="text" id="edit-name" name="name" value="Anonymous" size="30" maxlength="60" class="form-text required" />
                                                            </div>
                                                            <div class="field-type-text-long field-name-comment-body field-widget-text-textarea form-wrapper" id="edit-comment-body">
                                                                <div id="comment-body-add-more-wrapper">
                                                                    <div class="text-format-wrapper">
                                                                        <div class="form-item form-type-textarea form-item-comment-body-und-0-value">
                                                                            <label for="edit-comment-body-und-0-value">Comment <span class="form-required" title="This field is required.">*</span></label>
                                                                            <div class="form-textarea-wrapper resizable">
                                                                                <textarea class="text-full form-textarea required" id="edit-comment-body-und-0-value" name="comment_body[und][0][value]" cols="60" rows="5"></textarea>
                                                                            </div>
                                                                        </div>
                                                                        <fieldset class="filter-wrapper hide-filter-formats collapsible collapsed form-wrapper" id="edit-comment-body-und-0-format">
                                                                            <legend><span class="fieldset-legend">Text formats options</span></legend>
                                                                            <div class="fieldset-wrapper">
                                                                                <div class="filter-help form-wrapper" id="edit-comment-body-und-0-format-help">
                                                                                    <p>
                                                                                        <a href="/filter/tips" target="_blank">More information about text formats</a>
                                                                                    </p>
                                                                                </div>
                                                                                <div class="form-item form-type-select form-item-comment-body-und-0-format">
                                                                                    <label for="edit-comment-body-und-0-format--2">Text format</label> <select class="filter-list form-select" id="edit-comment-body-und-0-format--2" name="comment_body[und][0][format]">
                                                                                        <option value="basic_html" selected="selected">
                                                                                            Basic HTML
                                                                                        </option>
                                                                                        <option value="plain_text">
                                                                                            Plain text
                                                                                        </option>
                                                                                    </select>
                                                                                </div>
                                                                                <div class="filter-guidelines form-wrapper" id="edit-comment-body-und-0-format-guidelines">
                                                                                    <div class="filter-guidelines-item filter-guidelines-basic_html">
                                                                                        <h3>
                                                                                            Basic HTML
                                                                                        </h3>
                                                                                        <ul class="tips">
                                                                                            <li>Allowed HTML tags: &lt;em&gt; &lt;strong&gt; &lt;blockquote&gt; &lt;cite&gt; &lt;p&gt; &lt;br&gt; &lt;ol&gt; &lt;ul&gt; &lt;li&gt;
                                                                                            </li>
                                                                                            <li>Lines and paragraphs break automatically.
                                                                                            </li>
                                                                                        </ul>
                                                                                    </div>
                                                                                    <div class="filter-guidelines-item filter-guidelines-plain_text">
                                                                                        <h3>
                                                                                            Plain text
                                                                                        </h3>
                                                                                        <ul class="tips">
                                                                                            <li>No HTML tags allowed.
                                                                                            </li>
                                                                                            <li>Web page addresses and e-mail addresses turn into links automatically.
                                                                                            </li>
                                                                                            <li>Lines and paragraphs break automatically.
                                                                                            </li>
                                                                                        </ul>
                                                                                    </div>
                                                                                </div>
                                                                            </div>
                                                                        </fieldset>
                                                                    </div>
                                                                </div>
                                                            </div><input type="hidden" name="form_build_id" value="form-6Q08FDAfOeXeEl3Vz8dgdmuvc04IXpGWXoiLVB015DU" /> <input type="hidden" name="form_id" value="comment_node_blog_form" />
                                                            <div class="form-actions form-wrapper" id="edit-actions">
                                                                <input type="submit" id="edit-submit" name="op" value="Add comment" class="form-submit" />
                                                            </div>
                                                            <div class="aclu-name-textfield">
                                                                <div class="form-item form-type-textfield form-item-aclu-name">
                                                                    <label for="edit-aclu-name">Leave this field blank</label> <input autocomplete="off" type="text" id="edit-aclu-name" name="aclu-name" value="" size="20" maxlength="128" class="form-text" />
                                                                </div>
                                                            </div>
                                                        </div>
                                                    </form><a id="comments-top" class="top"></a> <a id="comment-223379"></a>
                                                    <div class="clear-block comment comment comment-by-anonymous first odd clearfix">
                                                        <div class="comment-content">
                                                            <div class="content">
                                                                <h3 class="name">
                                                                    <span class="username">Anonymous</span>
                                                                </h3>
                                                                <div class="field-comment-body text-area">
                                                                    <p>
                                                                        One valuable reform would be to mandate, under penalty of felony, that anyone that searches your information has to notify you - to include private investigotors screening potential employers to police officers trolling your online profile. It would be a great consumer protection.
                                                                    </p>
                                                                    <p>
                                                                        For example: if you lost the job offer due to your Facebook post, the employer should be required to tell you that. If you got pulled over and ticketed because you "Liked" police body cameras on FB you should know that also.
                                                                    </p>
                                                                    <p>
                                                                        The real danger is allowing punitive actions, in retaliation of your Free Speech to be hidden from us. If someone is spying on us, bypassing privacy filters, without a judicial warrant - we should know that.
                                                                    </p>
                                                                </div>
                                                            </div>
                                                        </div>
                                                        <div class="meta">
                                                            <ul class="links inline">
                                                                <li class="comment-reply first">
                                                                    <a href="/comment/reply/67865/223379">reply</a>
                                                                </li>
                                                                <li class="date">
                                                                    <span>April 5, 2018</span>
                                                                </li>
                                                                <li class="time last">
                                                                    <span>6:32 PM</span>
                                                                </li>
                                                            </ul>
                                                        </div>
                                                    </div><a id="comment-223395"></a>
                                                    <div class="clear-block comment comment comment-by-anonymous even clearfix">
                                                        <div class="comment-content">
                                                            <div class="content">
                                                                <h3 class="name">
                                                                    <span class="username">Lars</span>
                                                                </h3>
                                                                <div class="field-comment-body text-area">
                                                                    <p>
                                                                        Couldn’t I just bloc facebook in my private filer (squid filter)?
                                                                    </p>
                                                                </div>
                                                            </div>
                                                        </div>
                                                        <div class="meta">
                                                            <ul class="links inline">
                                                                <li class="comment-reply first">
                                                                    <a href="/comment/reply/67865/223395">reply</a>
                                                                </li>
                                                                <li class="date">
                                                                    <span>April 6, 2018</span>
                                                                </li>
                                                                <li class="time last">
                                                                    <span>2:20 AM</span>
                                                                </li>
                                                            </ul>
                                                        </div>
                                                    </div><a id="comment-223408"></a>
                                                    <div class="clear-block comment comment comment-by-anonymous odd clearfix">
                                                        <div class="comment-content">
                                                            <div class="content">
                                                                <h3 class="name">
                                                                    <span class="username">Anonymous</span>
                                                                </h3>
                                                                <div class="field-comment-body text-area">
                                                                    <p>
                                                                        privacy badger is also a good plugin to mention
                                                                    </p>
                                                                </div>
                                                            </div>
                                                        </div>
                                                        <div class="meta">
                                                            <ul class="links inline">
                                                                <li class="comment-reply first">
                                                                    <a href="/comment/reply/67865/223408">reply</a>
                                                                </li>
                                                                <li class="date">
                                                                    <span>April 6, 2018</span>
                                                                </li>
                                                                <li class="time last">
                                                                    <span>12:13 PM</span>
                                                                </li>
                                                            </ul>
                                                        </div>
                                                    </div><a id="comment-223409"></a>
                                                    <div class="clear-block comment comment comment-by-anonymous even clearfix">
                                                        <div class="comment-content">
                                                            <div class="content">
                                                                <h3 class="name">
                                                                    <span class="username">Anonymous</span>
                                                                </h3>
                                                                <div class="field-comment-body text-area">
                                                                    <p>
                                                                        The U.S. Justice Department and U.S. Congress - more than a decade behind schedule - still haven't reconciled the "Joseph Nacchio" case. Nacchio's telecommunications company, Qwest Communications, was apparently the one and only telecommunications company that refused to participate in the felony crime of Warrantless Wire-tapping around February of 2001 (roughly 6 months BEFORE 9/11 when no wartime emergency existed)., being pressured by the Bush Administration to commit a felony under federal law.
                                                                    </p>
                                                                    <p>
                                                                        Congress then passed an ex post facto law - illegal under Article I of the U.S. Constitution - making those past felonies legal. Congress has no such authority under Article VI.
                                                                    </p>
                                                                    <p>
                                                                        Joseph Nacchio claims he was then indicted by the U.S. Department of Justice - on trumped up charges - and served a few years in federal prison. A CEO of a large American corporation was sent to prison for COMPLYING with federal wiretaping laws. The Washington Post ran a story after Nacchio was released from prison, he still claims to this day that he went to prison for not participating in Bush felony crimes.
                                                                    </p>
                                                                    <p>
                                                                        What is to prevent a future lawless Executive Branch from pressuring Facebook or other social media networks to also bypass Judicial Warrants? If an honest U.S. Attorney or state prosecutor started indicting the former Bush folks, it would create a powerful "deterrent effect" to lawless officials in the future.
                                                                    </p>
                                                                </div>
                                                            </div>
                                                        </div>
                                                        <div class="meta">
                                                            <ul class="links inline">
                                                                <li class="comment-reply first">
                                                                    <a href="/comment/reply/67865/223409">reply</a>
                                                                </li>
                                                                <li class="date">
                                                                    <span>April 6, 2018</span>
                                                                </li>
                                                                <li class="time last">
                                                                    <span>12:23 PM</span>
                                                                </li>
                                                            </ul>
                                                        </div>
                                                    </div><a id="comment-223419"></a>
                                                    <div class="clear-block comment comment comment-by-anonymous odd clearfix">
                                                        <div class="comment-content">
                                                            <div class="content">
                                                                <h3 class="name">
                                                                    <span class="username">Anonymous</span>
                                                                </h3>
                                                                <div class="field-comment-body text-area">
                                                                    <p>
                                                                        There is strong circumstantial evidence that "Post 9/11 Blacklisting" of U.S. citizens is still alive and well. Maybe the most dangerous blacklisting tactic is "Employment Tampering". It basically means if you were blacklisted after 9/11, you may not be allowed to work in certain occupations. The Government essentially decides where you are allowed work, without an official hearing by judge - blacklistees are never informed of their 2nd Class status as Americans - not entitled to the same rights as other Americans.
                                                                    </p>
                                                                    <p>
                                                                        "Employment Tampering" by government officials/contractors - which violates Title 18 US Code 242 - is one of the hardest blacklisting tactics for federal prosecutors to police. We may even need a new federal watchdog agency to properly police this felony crime by officials.
                                                                    </p>
                                                                    <p>
                                                                        Maybe the most famous case, was exposed by a federal appeals court that severely reprimanded former Attorney General John Ashcroft (although he was never criminally indicted). Ashcroft grossly and fraudulently exploited the federal "Material Witness Statute" to be used as a quasi form of imprisonment and involntary servitude. The 13th Amendment makes this practice totally illegal without an official and overt constitutional due process.
                                                                    </p>
                                                                    <p>
                                                                        This tactic has a long history in authoritarian regimes. It was originally called "Zersetzung" and was first used in 1940's Germany during World War Two to silence dissent. During the Cold War, this tactic was adopted by then Communist East Germany. The FBI started using it in the 1950's commonly called Cointelpro tactics. Ashcroft then exploited the Material Witness Statute to be used as a Zersetzung tactic. Employment Tampering was probably the most potent tactic.
                                                                    </p>
                                                                </div>
                                                            </div>
                                                        </div>
                                                        <div class="meta">
                                                            <ul class="links inline">
                                                                <li class="comment-reply first">
                                                                    <a href="/comment/reply/67865/223419">reply</a>
                                                                </li>
                                                                <li class="date">
                                                                    <span>April 6, 2018</span>
                                                                </li>
                                                                <li class="time last">
                                                                    <span>2:35 PM</span>
                                                                </li>
                                                            </ul>
                                                        </div>
                                                    </div><a id="comment-223421"></a>
                                                    <div class="clear-block comment comment comment-by-anonymous even clearfix">
                                                        <div class="comment-content">
                                                            <div class="content">
                                                                <h3 class="name">
                                                                    <span class="username">Anonymous</span>
                                                                </h3>
                                                                <div class="field-comment-body text-area">
                                                                    <p>
                                                                        This was the most elightening piece on Facebook Ive seen of late.
                                                                    </p>
                                                                    <p>
                                                                        Hate their format, so don't use it.
                                                                    </p>
                                                                </div>
                                                            </div>
                                                        </div>
                                                        <div class="meta">
                                                            <ul class="links inline">
                                                                <li class="comment-reply first">
                                                                    <a href="/comment/reply/67865/223421">reply</a>
                                                                </li>
                                                                <li class="date">
                                                                    <span>April 6, 2018</span>
                                                                </li>
                                                                <li class="time last">
                                                                    <span>3:12 PM</span>
                                                                </li>
                                                            </ul>
                                                        </div>
                                                    </div>
                                                    <div class="indented">
                                                        <a id="comment-223672"></a>
                                                        <div class="clear-block comment comment comment-by-anonymous odd clearfix">
                                                            <div class="comment-content">
                                                                <div class="content">
                                                                    <h3 class="name">
                                                                        <span class="username">Anonymous</span>
                                                                    </h3>
                                                                    <div class="field-comment-body text-area">
                                                                        <p>
                                                                            Didn't you read the article? You might not use it, but they still know all about you, even including name, address, phone number, etc. if you are in someone's contacts.
                                                                        </p>
                                                                        <p>
                                                                            Ironically, by refusing to register with them as a user, you have no control at all over the collection and usage of your data and information. At least users have some little control over it.
                                                                        </p>
                                                                    </div>
                                                                </div>
                                                            </div>
                                                            <div class="meta">
                                                                <ul class="links inline">
                                                                    <li class="date first">
                                                                        <span>April 10, 2018</span>
                                                                    </li>
                                                                    <li class="time last">
                                                                        <span>10:14 PM</span>
                                                                    </li>
                                                                </ul>
                                                            </div>
                                                        </div>
                                                    </div><a id="comment-223424"></a>
                                                    <div class="clear-block comment comment comment-by-anonymous even clearfix">
                                                        <div class="comment-content">
                                                            <div class="content">
                                                                <h3 class="name">
                                                                    <span class="username">Ed B. -Netherlands</span>
                                                                </h3>
                                                                <div class="field-comment-body text-area">
                                                                    <p>
                                                                        Well written, well-thought article. I agree with the content. Although I hate regulation in general, it seems about time that website should be required to offer a cookie free, traceless version at all times.
                                                                    </p>
                                                                </div>
                                                            </div>
                                                        </div>
                                                        <div class="meta">
                                                            <ul class="links inline">
                                                                <li class="comment-reply first">
                                                                    <a href="/comment/reply/67865/223424">reply</a>
                                                                </li>
                                                                <li class="date">
                                                                    <span>April 6, 2018</span>
                                                                </li>
                                                                <li class="time last">
                                                                    <span>5:29 PM</span>
                                                                </li>
                                                            </ul>
                                                        </div>
                                                    </div>
                                                    <div class="indented">
                                                        <a id="comment-223761"></a>
                                                        <div class="clear-block comment comment comment-by-anonymous odd clearfix">
                                                            <div class="comment-content">
                                                                <div class="content">
                                                                    <h3 class="name">
                                                                        <span class="username">Anonymous</span>
                                                                    </h3>
                                                                    <div class="field-comment-body text-area">
                                                                        <p>
                                                                            HTTP is stateless. That means that when you click on a link to another page, the second page doesn't know that you were the person on page 1. Cookies, or some form of tracking, are needed for things like eCommerce and shopping carts. You need a cookie to associate *you* with your cart. Anything where you log in needs a cookie in order to know you are you, such as subscriptions.
                                                                        </p>
                                                                        <p>
                                                                            However, those cookies can easily be "session cookies". That is, cookies that don't persist after you log out or close your web browser. They exists solely for the duration of your session, and do not persist.
                                                                        </p>
                                                                        <p>
                                                                            Cookies are only an association mechanism. The heart of the problem is the harvesting of every click and everything on a page -- the over-collection of data to begin with.
                                                                        </p>
                                                                    </div>
                                                                </div>
                                                            </div>
                                                            <div class="meta">
                                                                <ul class="links inline">
                                                                    <li class="date first">
                                                                        <span>April 11, 2018</span>
                                                                    </li>
                                                                    <li class="time last">
                                                                        <span>2:51 PM</span>
                                                                    </li>
                                                                </ul>
                                                            </div>
                                                        </div>
                                                    </div><a id="comment-223425"></a>
                                                    <div class="clear-block comment comment comment-by-anonymous even clearfix">
                                                        <div class="comment-content">
                                                            <div class="content">
                                                                <h3 class="name">
                                                                    <span class="username">Anonymous</span>
                                                                </h3>
                                                                <div class="field-comment-body text-area">
                                                                    <p>
                                                                        Great article.
                                                                    </p>
                                                                </div>
                                                            </div>
                                                        </div>
                                                        <div class="meta">
                                                            <ul class="links inline">
                                                                <li class="comment-reply first">
                                                                    <a href="/comment/reply/67865/223425">reply</a>
                                                                </li>
                                                                <li class="date">
                                                                    <span>April 6, 2018</span>
                                                                </li>
                                                                <li class="time last">
                                                                    <span>5:42 PM</span>
                                                                </li>
                                                            </ul>
                                                        </div>
                                                    </div>
                                                    <h2 class="element-invisible">
                                                        Pages
                                                    </h2>
                                                    <div class="item-list">
                                                        <ul class="pager">
                                                            <li class="pager-current first">1
                                                            </li>
                                                            <li class="pager-item">
                                                                <a title="Go to page 2" href="/blog/privacy-technology/internet-privacy/facebook-tracking-me-even-though-im-not-facebook?page=1">2</a>
                                                            </li>
                                                            <li class="pager-item">
                                                                <a title="Go to page 3" href="/blog/privacy-technology/internet-privacy/facebook-tracking-me-even-though-im-not-facebook?page=2">3</a>
                                                            </li>
                                                            <li class="pager-next">
                                                                <a href="/blog/privacy-technology/internet-privacy/facebook-tracking-me-even-though-im-not-facebook?page=1">next</a>
                                                            </li>
                                                            <li class="pager-last last">
                                                                <a title="Go to last page" href="/blog/privacy-technology/internet-privacy/facebook-tracking-me-even-though-im-not-facebook?page=2">last »</a>
                                                            </li>
                                                        </ul>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                                <div class="panel-panel panel-right-3 sidebar-right">
                                    <div class="panel-pane pane-fieldable-panels-pane pane-fpid-1005 pane-bundle-donation-promo">
                                        <a href="https://action.aclu.org/secure/donate-to-aclu?ms=donate_bo&amp;ms_aff=NAT&amp;ms_chan=web&amp;initms=donate_bo&amp;initms_aff=NAT&amp;initms_chan=web" title="Donate Now" target="_blank" class="promo-link" alt="Donate Now">
                                        <div class="fieldable-panels-pane">
                                            <div class="field-promo-text">
                                                Fight for everyone's rights - support the ACLU.
                                            </div>
                                            <div class="field-button-url">
                                                Donate Now
                                            </div>
                                        </div></a>
                                    </div>
                                    <div class="panel-pane pane-aclu-blog-news-signup">
                                        <div class="inner">
                                            <div class="pane-title">
                                                Sign Up For Breaking News <span>Alerts</span>
                                            </div><a href="" class="close">Close</a>
                                            <form action="/blog/privacy-technology/internet-privacy/facebook-tracking-me-even-though-im-not-facebook" method="post" id="aclu-social-signup-form" accept-charset="UTF-8" name="aclu-social-signup-form">
                                                <div>
                                                    <div class="form-item form-type-textfield form-item-signup-email">
                                                        <label class="element-invisible" for="edit-signup-email">Email Address <span class="form-required" title="This field is required.">*</span></label> <input placeholder="Your email address" type="text" id="edit-signup-email" name="signup_email" value="" size="60" maxlength="128" class="form-text required" />
                                                    </div>
                                                    <div class="form-item form-type-textfield form-item-signup-zip">
                                                        <label class="element-invisible" for="edit-signup-zip">ZIP Code <span class="form-required" title="This field is required.">*</span></label> <input placeholder="ZIP code" type="text" id="edit-signup-zip" name="signup_zip" value="" size="60" maxlength="128" class="form-text required" />
                                                    </div><input type="hidden" name="location" value="blog_sidebar" /> <input type="submit" id="edit-submit--2" name="op" value="Go" class="form-submit" /><input type="hidden" name="form_build_id" value="form-V-iFbwGg1bnlbXW0i278HSQfREJVQ4S38pbnJL9sWao" /> <input type="hidden" name="form_id" value="aclu_social_signup_form" />
                                                </div>
                                            </form>
                                        </div>
                                    </div>
                                    <div class="panel-pane pane-featured-action">
                                        <article class="node-67524 node node-action view-mode-featured_action action-background-style-featured_image clearfix component action featured-action">
                                            <div class="inner">
                                                <header>
                                                    <h2 class="node__title node-title">
                                                        <a href="https://action.aclu.org/send-message/restore-net-neutrality-protections?ms_aff=NAT&amp;initms_aff=NAT&amp;ms=180307_freespeech_messageaction_&amp;initms=180307_freespeech_messageaction_&amp;ms_chan=web&amp;initms_chan=web"><span>Restore Net Neutrality Protections</span></a>
                                                    </h2>
                                                </header>
                                                <div class="field-image">
                                                    <a href="https://action.aclu.org/send-message/restore-net-neutrality-protections?ms_aff=NAT&amp;initms_aff=NAT&amp;ms=180307_freespeech_messageaction_&amp;initms=180307_freespeech_messageaction_&amp;ms_chan=web&amp;initms_chan=web"><img src="https://www.aclu.org/sites/default/files/styles/action_sidebar_wide_280x240/public/field_image/act17-netneutrality-rebrand-2400x960-v01.jpg?itok=f1Ixpcsw" width="280" height="240" alt="" /></a>
                                                </div>
                                                <div class="field-action-link">
                                                    <div class="field-items">
                                                        <div class="field-item even">
                                                            <!-- Adding an arrow span next to link --><a href="https://action.aclu.org/send-message/restore-net-neutrality-protections?ms_aff=NAT&amp;initms_aff=NAT&amp;ms=180307_freespeech_messageaction_&amp;initms=180307_freespeech_messageaction_&amp;ms_chan=web&amp;initms_chan=web">Send a message now</a>
                                                        </div>
                                                    </div>
                                                </div>
                                            </div>
                                        </article>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="panel-panel panel-full-width-2 full-page-width">
                            <div class="inner">
                                <div class="panel-pane pane-aclu-blog-related-stories">
                                    <div class="component featured-stories">
                                        <div class="pane-title">
                                            Related Stories
                                        </div>
                                        <div class="scrollbar-swiper">
                                            <div class="window">
                                                <article class="has-image">
                                                    <a href="/blog/privacy-technology/internet-privacy/staying-safe-when-you-say-metoo">
                                                    <figure class="field-image">
                                                        <img src="https://www.aclu.org/sites/default/files/styles/blog_index_thumbnail_130x110/public/field_image/blog7-1160x768.png?itok=WL14QDmD" width="130" height="110" alt="" />
                                                    </figure></a>
                                                    <h3>
                                                        <a href="/blog/privacy-technology/internet-privacy/staying-safe-when-you-say-metoo">Staying Safe When You Say #MeToo</a>
                                                    </h3><span class="date">February 12, 2018</span>
                                                </article>
                                                <article class="has-image">
                                                    <a href="/blog/privacy-technology/internet-privacy/why-youtube-shouldnt-over-rely-artificial-intelligence">
                                                    <figure class="field-image">
                                                        <img src="https://www.aclu.org/sites/default/files/styles/blog_index_thumbnail_130x110/public/field_image/web18-robothandcomputer-1160x768.jpg?itok=L6wAQaKN" width="130" height="110" alt="" />
                                                    </figure></a>
                                                    <h3>
                                                        <a href="/blog/privacy-technology/internet-privacy/why-youtube-shouldnt-over-rely-artificial-intelligence">Why YouTube Shouldn’t Over-Rely on Artificial Intelligence to Police Its...</a>
                                                    </h3><span class="date">April 26, 2018</span>
                                                </article>
                                                <article class="has-image">
                                                    <a href="/blog/privacy-technology/internet-privacy/8-questions-members-congress-should-ask-mark-zuckerberg">
                                                    <figure class="field-image">
                                                        <img src="https://www.aclu.org/sites/default/files/styles/blog_index_thumbnail_130x110/public/field_image/web18-qsforzuckerberg-1160x768-v01.jpg?itok=npeL5qrf" width="130" height="110" alt="" />
                                                    </figure></a>
                                                    <h3>
                                                        <a href="/blog/privacy-technology/internet-privacy/8-questions-members-congress-should-ask-mark-zuckerberg">8 Questions Members of Congress Should Ask Mark Zuckerberg</a>
                                                    </h3><span class="date">April 2, 2018</span>
                                                </article>
                                                <article class="has-image">
                                                    <a href="/blog/national-security/privacy-and-surveillance/how-irish-court-ruling-could-affect-us-spying">
                                                    <figure class="field-image">
                                                        <img src="https://www.aclu.org/sites/default/files/styles/blog_index_thumbnail_130x110/public/field_image/web17-servers3-1160x768.jpg?itok=7QKUv8Zx" width="130" height="110" alt="" />
                                                    </figure></a>
                                                    <h3>
                                                        <a href="/blog/national-security/privacy-and-surveillance/how-irish-court-ruling-could-affect-us-spying">How an Irish Court Ruling Could Affect U.S. Spying</a>
                                                    </h3><span class="date">April 20, 2018</span>
                                                </article>
                                                <article class="has-image">
                                                    <a href="/blog/privacy-technology/internet-privacy/landmark-european-law-could-change-facebook-and-improve">
                                                    <figure class="field-image">
                                                        <img src="https://www.aclu.org/sites/default/files/styles/blog_index_thumbnail_130x110/public/field_image/web18-fb-gdpr-1160x768.jpg?itok=5CbfDCXk" width="130" height="110" alt="" />
                                                    </figure></a>
                                                    <h3>
                                                        <a href="/blog/privacy-technology/internet-privacy/landmark-european-law-could-change-facebook-and-improve">The Landmark European Law That Could Change Facebook and Improve Privacy in...</a>
                                                    </h3><span class="date">April 12, 2018</span>
                                                </article>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div id="block-aclu-social-stay-informed" class="block block-aclu-social last even">
                        <div class="inner">
                            <div class="inner-inner">
                                <h2 class="block__title block-title">
                                    Stay Informed
                                </h2>
                                <form action="/blog/privacy-technology/internet-privacy/facebook-tracking-me-even-though-im-not-facebook" method="post" id="aclu-social-signup-form--3" accept-charset="UTF-8" name="aclu-social-signup-form--3">
                                    <div>
                                        <div class="form-item form-type-textfield form-item-signup-email">
                                            <label class="element-invisible" for="edit-signup-email--3">Email Address <span class="form-required" title="This field is required.">*</span></label> <input placeholder="Your email address" type="text" id="edit-signup-email--3" name="signup_email" value="" size="60" maxlength="128" class="form-text required" />
                                        </div>
                                        <div class="form-item form-type-textfield form-item-signup-zip">
                                            <label class="element-invisible" for="edit-signup-zip--3">ZIP Code <span class="form-required" title="This field is required.">*</span></label> <input placeholder="ZIP code" type="text" id="edit-signup-zip--3" name="signup_zip" value="" size="60" maxlength="128" class="form-text required" />
                                        </div><input type="hidden" name="location" value="footer" /> <input type="submit" id="edit-submit--4" name="op" value="Join our newsletter" class="form-submit" /><input type="hidden" name="form_build_id" value="form-4X8Q9WkE1kSbcA101IJ_Yr5Zrs1RKyheMIv_kez9Kxk" /> <input type="hidden" name="form_id" value="aclu_social_signup_form" />
                                    </div>
                                </form>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <footer id="footer" class="region region-footer" role="contentinfo">
                <div class="inner">
                    <div class="inner-inner">
                        <div id="block-menu-menu-footer-menu" class="block block-menu first odd" role="navigation">
                            <ul class="menu">
                                <li class="menu__item is-leaf first leaf">
                                    <a href="/publications" class="menu__link">Publications</a>
                                </li>
                                <li class="menu__item is-leaf leaf">
                                    <a href="/multimedia" class="menu__link">Multimedia</a>
                                </li>
                                <li class="menu__item is-leaf leaf">
                                    <a href="/about/media" class="menu__link small-viewport-copy-to-main-menu">Media</a>
                                </li>
                                <li class="menu__item is-leaf leaf">
                                    <a href="/contact-us" class="menu__link small-viewport-copy-to-main-menu">Contact</a>
                                </li>
                                <li class="menu__item is-leaf last leaf">
                                    <a href="https://action.aclu.org/secure/donate-to-aclu?ms=footer_sitemap_donate&amp;ms_aff=NAT&amp;ms_chan=web&amp;initms=footer_sitemap_donate&amp;initms_aff=NAT&amp;initms_chan=web" class="menu__link">Donate</a>
                                </li>
                            </ul>
                        </div>
                        <div id="block-menu-menu-social-links" class="block block-menu even" role="navigation">
                            <ul class="menu">
                                <li class="menu__item is-leaf first leaf">
                                    <a href="https://www.facebook.com/aclu" id="menu-item-facebook" class="menu__link">ACLU on Facebook</a>
                                </li>
                                <li class="menu__item is-leaf leaf">
                                    <a href="https://twitter.com/aclu" id="menu-item-twitter" class="menu__link">ACLU on Twitter</a>
                                </li>
                                <li class="menu__item is-leaf leaf">
                                    <a href="https://www.youtube.com/user/acluvideos" id="menu-item-youtube" class="menu__link">ACLU on YouTube</a>
                                </li>
                                <li class="menu__item is-leaf last leaf">
                                    <a href="/taxonomy/channel-term/1/feed" id="menu-item-rss" class="menu__link">The ACLU RSS Feed</a>
                                </li>
                            </ul>
                        </div>
                        <div id="block-block-2" class="block block-block odd">
                            <div class="charity">
                                <p class="charity-nav">
                                    <a href="https://www.charitynavigator.org/index.cfm?bay=search.summary&amp;orgid=3247">Charity Navigator</a>
                                </p>
                                <p class="bbb-accredited">
                                    <a href="http://www.bbb.org/charity-reviews/national/civil-rights/american-civil-liberties-union-foundation-in-new-york-ny-227">BBB Accredited Charity</a>
                                </p>
                            </div>
                        </div>
                        <div id="block-menu-menu-secondary-footer-menu" class="block block-menu even" role="navigation">
                            <ul class="menu">
                                <li class="menu__item is-leaf first leaf">
                                    <a href="/aclu-site-user-agreement" class="menu__link">User agreement</a>
                                </li>
                                <li class="menu__item is-leaf leaf">
                                    <a href="/american-civil-liberties-union-privacy-statement" class="menu__link">Privacy statement</a>
                                </li>
                                <li class="menu__item is-leaf last leaf">
                                    <a href="/aclu-statement-accessibility" class="menu__link">Accessibility</a>
                                </li>
                            </ul>
                        </div>
                        <div id="block-block-1" class="block block-block odd">
                            <div class="fine-print">
                                <p>
                                    This is the website of the American Civil Liberties Union and the ACLU Foundation.
                                </p>
                                <p>
                                    <a href="/donating-american-civil-liberties-union-and-aclu-foundation-what-difference">Learn more about these two components of the ACLU.</a>
                                </p>
                                <p>
                                    © 2018&nbsp;ACLU
                                </p>
                            </div>
                            <p>
                                &nbsp;
                            </p>
                        </div>
                        <div id="block-block-3" class="block block-block last even">
                            <div class="branding">
                                <p class="slogan">
                                    We the People
                                </p>
                            </div>
                        </div>
                    </div>
                </div>
            </footer>
        </div>
        <script type="application/ld+json">
        <![CDATA[
        {"@context":"http:\/\/schema.org","@type":"Article","url":"https:\/\/www.aclu.org\/blog\/privacy-technology\/internet-privacy\/facebook-tracking-me-even-though-im-not-facebook","inLanguage":"en-US","description":"Facebook collects data about people who have never even opted in. But there are ways these non-users can protect themselves. ","headline":"Facebook Is Tracking Me Even Though I\u2019m Not on Facebook","datePublished":"2018-04-05T06:00","dateModified":"2018-04-11","articleBody":"\u003Cp class=\u0022FirstParagraph\u0022\u003EI don\u0027t use Facebook. I\u0027m not technophobic \u2014 I\u0027m a geek. I\u0027ve been using email since the early 1990s, I have accounts on hundreds of services around the net, and I do software development and internet protocol design both for work and for fun. I believe that a globe-spanning communications network like the internet can be a positive social force, and I publish much of my own work on the open web.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EBut Facebook and other massive web companies represent a strong push toward unaccountable centralized social control, which I think makes our society more unequal and more unjust. The Cambridge Analytica scandal is one instance of this long-running problem with what I call the \u0022surveillance economy.\u0022 I don\u0027t want to submit to these power structures, and I don\u2019t want my presence on such platforms to serve as bait that lures other people into the digital panopticon.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EBut while I\u0027ve never \u0022opted in\u0022 to Facebook or any of the other big social networks, Facebook still has a detailed profile that can be used to target me. I\u0027ve never consented to having Facebook collect my data, which can be used to draw very detailed inferences about my life, my habits, and my relationships. As we aim to take Facebook to task for its breach of user trust, we need to think about what its capabilities imply for society overall. After all, if you do #deleteFacebook, you\u0027ll find yourself in my shoes: non-consenting, but still subject to Facebook\u2019s globe-spanning surveillance and targeting network.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EThere are at least two major categories of information available to Facebook about non-participants like me: information from other Facebook users, and information from sites on the open web.\u003C\/p\u003E\n\u003Ch3 class=\u0022node-type-blog\u0022\u003E\u003Cstrong\u003EInformation from other Facebook users\u003C\/strong\u003E\u003C\/h3\u003E\n\u003Cp class=\u0022FirstParagraph\u0022\u003EWhen you sign up for Facebook, it encourages you to upload your list of contacts so that the site can \u0022find your friends.\u0022 Facebook uses this contact information to learn about people, even if those people don\u0027t agree to participate. It also links people together based on who they know, even if the shared contact hasn\u0027t agreed to this use.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EFor example, I received an email from Facebook that lists the people who have all invited me to join Facebook: my aunt, an old co-worker, a friend from elementary school, etc. This email includes names and email addresses \u2014 including my own name \u2014 and at least one \u003Ca href=\u0022https:\/\/en.wikipedia.org\/wiki\/Web_bug\u0022\u003Eweb bug\u003C\/a\u003E designed to identify me to Facebook\u2019s web servers when I open the email. Facebook records this group of people as my contacts, even though I\u0027ve never agreed to this kind of data collection.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003ESimilarly, I\u0027m sure that I\u0027m in some photographs that someone has uploaded to Facebook \u2014 and I\u0027m probably tagged in some of them. I\u0027ve never agreed to this, but Facebook could still be keeping track.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003ESo even if you decide you need to join Facebook, remember that you might be giving the company information about someone else who didn\u0027t agree to be part of its surveillance platform.\u003C\/p\u003E\n\u003Ch3 class=\u0022node-type-blog\u0022\u003E\u003Cstrong\u003EInformation from sites on the open Web\u003C\/strong\u003E\u003C\/h3\u003E\n\u003Cp class=\u0022FirstParagraph\u0022\u003ENearly every website that you visit that has a \u0022Like\u0022 button is actually encouraging your browser to tell Facebook about your browsing habits. Even if you don\u0027t click on the \u0022Like\u0022 button, displaying it requires your browser to send a request to Facebook\u0027s servers for the \u0022Like\u0022 button itself. That request includes \u003Ca href=\u0022https:\/\/en.wikipedia.org\/wiki\/HTTP_referer\u0022\u003Einformation\u003C\/a\u003E mentioning the name of the page you are visiting and any Facebook-specific \u003Ca href=\u0022https:\/\/en.wikipedia.org\/wiki\/HTTP_cookie\u0022\u003Ecookies\u003C\/a\u003E your browser might have collected. (See \u003Ca href=\u0022https:\/\/www.facebook.com\/help\/186325668085084\u0022\u003EFacebook\u0027s own description of this process\u003C\/a\u003E.) This is called a \u0022third-party request.\u0022\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EThis makes it possible for Facebook to create a detailed picture of your browsing history \u2014 even if you\u0027ve never even visited Facebook directly, let alone signed up for a Facebook account.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EThink about most of the web pages you\u0027ve visited \u2014 how many of them \u003Cem\u003Edon\u0027t\u003C\/em\u003E have a \u0022Like\u0022 button? If you administer a website and you include a \u0022Like\u0022 button on every page, you\u0027re helping Facebook to build profiles of your visitors, even those who have opted out of the social network. Facebook\u2019s \u003Ca href=\u0022https:\/\/developers.facebook.com\/docs\/plugins\/\u0022\u003E\u201cShare\u201d buttons\u003C\/a\u003E on other sites \u2014 along with \u003Ca href=\u0022https:\/\/www.facebook.com\/business\/learn\/facebook-ads-pixel\u0022\u003Eother tools\u003C\/a\u003E \u2014 work a bit differently from the \u201cLike\u201d button, but do effectively the same thing.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EThe profiles that Facebook builds on non-users don\u0027t necessarily include so-called \u0022personally identifiable information\u0022 (PII) like names or email addresses. But they do include fairly unique patterns. Using \u003Ca href=\u0022https:\/\/dev.chromium.org\/for-testers\/providing-network-details\u0022\u003EChromium\u0027s NetLog dumping\u003C\/a\u003E, I performed a simple five-minute browsing test last week that included visits to various sites \u2014 but not Facebook. In that test, the PII-free data that was sent to Facebook included information about which news articles I was reading, my dietary preferences, and my hobbies.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EGiven the precision of this kind of mapping and targeting, \u0022PII\u0022 isn\u2019t necessary to reveal my identity. How many vegans examine specifications for computer hardware from the ACLU\u0027s offices while reading about Cambridge Analytica? Anyway, if Facebook combined that information with the \u0022web bug\u0022 from the email mentioned above \u2014 which \u003Cem\u003Eis\u003C\/em\u003E clearly linked to my name and e-mail address \u2014 no guesswork would be required.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EI\u0027d be shocked if Facebook were not connecting those dots given the goals \u003Ca href=\u0022https:\/\/www.facebook.com\/about\/privacy\/cookies\u0022\u003Ethey claim for data collection\u003C\/a\u003E:\u003C\/p\u003E\n\u003Cblockquote\u003E\n\u003Cp class=\u0022MsoBlockText\u0022\u003EWe use the information we have to improve our advertising and measurement systems so we can show you relevant ads on and off our Services and measure the effectiveness and reach of ads and services.\u003C\/p\u003E\n\u003C\/blockquote\u003E\n\u003Cp class=\u0022FirstParagraph\u0022\u003EThis is, in essence, exactly what Cambridge Analytica did.\u003C\/p\u003E\n\u003Ch3 class=\u0022node-type-blog\u0022\u003E\u003Cstrong\u003EConsent\u003C\/strong\u003E\u003C\/h3\u003E\n\u003Cp class=\u0022FirstParagraph\u0022\u003EFacebook and other tech companies often deflect accusations against excessive data collection by arguing \u0022consent\u0022 \u2014 that they harvest and use data with the consent of the users involved.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EBut even if we accept that clicking through a \u0022Terms of Service\u0022 that \u003Ca href=\u0022https:\/\/tosdr.org\/\u0022\u003Eno one reads\u003C\/a\u003E can actually constitute true consent, even if we ignore the fact that these terms are overwhelmingly one-sided and non-negotiable, and even if we accept that it\u0027s meaningful for people to give consent when sharing data about other people who may have also opted in \u2014 what is the recourse for someone who has not opted into these systems at all?\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EAre those of us who have explicitly avoided agreeing to the Facebook terms of service simply fair game for an industry-wide surveillance and targeting network?\u003C\/p\u003E\n\u003Ch3 class=\u0022node-type-blog\u0022\u003E\u003Cstrong\u003EPrivilege\u003C\/strong\u003E\u003C\/h3\u003E\n\u003Cp class=\u0022FirstParagraph\u0022\u003EI don\u2019t mean to critique people who have created a Facebook profile or suggest they deserve whatever they get.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EMy ability to avoid Facebook comes from privilege \u2014 I have existing social contacts with whom I know how to stay in touch without using Facebook\u0027s network. My job does not require that I use Facebook. I can afford the time and expense to communicate with my electoral representatives and political allies via other channels.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EMany people do not have these privileges and are compelled to \u0022opt in\u0022 on Facebook\u0027s non-negotiable terms.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EMany journalists, organizers, schools, politicians, and others who have good reasons to oppose Facebook\u0027s centralized social control feel compelled by Facebook\u0027s reach and scale to participate in their practices, even those we know to be harmful. That includes the ACLU.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EPrivacy should not be a luxury good, and while I\u0027m happy to encourage people to opt out of these subtle and socially fraught arrangements, I do not argue that anyone who has signed up has somehow relinquished concerns about their privacy. We need to evaluate privacy concerns in their full social contexts. These are not problems that can be resolved on an individual level, because of the interpersonal nature of much of this data and the complexities of the tradeoffs involved.\u003C\/p\u003E\n\u003Ch3 class=\u0022node-type-blog\u0022\u003E\u003Cstrong\u003ETechnical countermeasures\u003C\/strong\u003E\u003C\/h3\u003E\n\u003Cp class=\u0022FirstParagraph\u0022\u003EWhile they may not solve the problem, there are some technical steps people can take to limit the scope of these surveillance practices. For example, some web browsers do not send \u0022third-party cookies\u0022 by default, or \u003Ca href=\u0022https:\/\/wiki.mozilla.org\/Thirdparty\u0022\u003Ethey scope cookies \u003C\/a\u003Eso that centralized surveillance doesn\u0027t get a single view of one user. The most privacy-preserving modern browser is \u003Ca href=\u0022https:\/\/www.torproject.org\/\u0022\u003Ethe Tor Browser\u003C\/a\u003E, which everyone should have installed and available, even if it\u0027s not the browser they choose to use every day. It limits the surveillance ability of systems that you have not signed up for to track you as you move around the web.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EYou can also modify some browsers \u2014 for example, with plug-ins for \u003Ca href=\u0022https:\/\/requestpolicycontinued.github.io\/\u0022\u003EFirefox\u003C\/a\u003E and \u003Ca href=\u0022https:\/\/chrome.google.com\/webstore\/detail\/umatrix\/ogfcmafjalglgifnmanfmnieipoejdcf\u0022\u003EChrome\u003C\/a\u003E \u2014 so that they \u003Ca href=\u0022https:\/\/addons.mozilla.org\/en-US\/firefox\/addon\/umatrix\/\u0022\u003Edo not send third-party\u003C\/a\u003E \u003Ca href=\u0022https:\/\/requestpolicycontinued.github.io\/\u0022\u003Erequests at all\u003C\/a\u003E. Firefox is also exploring even more \u003Ca href=\u0022https:\/\/addons.mozilla.org\/en-US\/firefox\/addon\/multi-account-containers\/\u0022\u003Eprivacy-preserving techniques\u003C\/a\u003E\u003Ca href=\u0022https:\/\/addons.mozilla.org\/en-US\/firefox\/addon\/multi-account-containers\/\u0022\u003E. \u003C\/a\u003E\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EIt can\u2019t be denied, though, that these tools are harder to use than the web browsers most people are accustomed to, and they create barriers to some online activities. (For example, logging in to \u003Ca href=\u0022https:\/\/offcampushousing.uconn.edu\/login\u0022\u003Esome sites\u003C\/a\u003E and accessing some \u003Ca href=\u0022https:\/\/filestore.community.support.microsoft.com\/api\/images\/0253d8fb-b050-401a-834d-9d80a99c0b12\u0022\u003Eweb applications\u003C\/a\u003E is impossible without third-party cookies.)\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003ESome website operators take their visitors\u0027 privacy more seriously than others, by reducing the amount of third-party requests. For example, it\u0027s possible to display \u0022share on Facebook\u0022 or \u0022Like\u0022 buttons without sending user requests to Facebook in the first place. The ACLU\u0027s own website does this because we believe that the right to read with privacy is a fundamental protection for civic discourse.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EIf you are responsible for running a website, try browsing it with a third-party-blocking extension turned on. Think about how much information you\u0027re requiring your users to send to third parties as a condition for using your site. If you care about being a good steward of your visitors\u0027 data, you can re-design your website to reduce this kind of leakage.\u003C\/p\u003E\n\u003Ch3 class=\u0022node-type-blog\u0022\u003E\u003Cstrong\u003EOpting out?\u003C\/strong\u003E\u003C\/h3\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003ESome advertisers claim that you can \u0022opt out\u0022 of their targeted advertising, and even offer \u003Ca href=\u0022http:\/\/optout.aboutads.info\/\u0022\u003Ea centralized place meant to help you do so\u003C\/a\u003E.\u00a0However, my experience with these tools isn\u0027t a positive one. They don\u0027t appear to work all of the time. (In a recent experiment I conducted, two advertisers\u2019 opt-out mechanisms failed to take effect.) And while advertisers claim to allow the user to opt out of \u0022interest-based ads,\u0022 it\u0027s not clear that the opt-outs govern data collection itself, rather than just the use of the collected data for displaying ads. Moreover, opting out on their terms requires the use of third-party cookies, thereby enabling another mechanism that other advertisers can then exploit.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EIt\u0027s also not clear how they function over time: How frequently do I need to take these steps? Do they expire? How often should I check back to make sure I\u2019m still opted out? I\u0027d much prefer an approach requiring me to opt \u003Cem\u003Ein\u003C\/em\u003E to surveillance and targeting.\u003C\/p\u003E\n\u003Ch3 class=\u0022node-type-blog\u0022\u003E\u003Cstrong\u003EFix the surveillance economy, not just Facebook\u003C\/strong\u003E\u003C\/h3\u003E\n\u003Cp class=\u0022FirstParagraph\u0022\u003EThese are just a few of the mechanisms that enable online tracking. Facebook is just one culprit in this online \u0022surveillance economy,\u0022 albeit a massive one \u2014 the company owns \u003Ca href=\u0022https:\/\/www.instagram.com\/\u0022\u003EInstagram\u003C\/a\u003E, \u003Ca href=\u0022https:\/\/atlassolutions.com\/\u0022\u003EAtlas\u003C\/a\u003E, \u003Ca href=\u0022https:\/\/www.whatsapp.com\/\u0022\u003EWhatsApp\u003C\/a\u003E, and dozens of other internet and technology companies and services. But it\u2019s not the only player in this space. Google\u2019s business model also relies on this kind of surveillance, and there are dozens of smaller players as well.\u003C\/p\u003E\n\u003Cp class=\u0022MsoBodyText\u0022\u003EAs we work to address the fallout from the current storm around Facebook and Cambridge Analytica, we can\u0027t afford to lose sight of these larger mechanisms at play. Cambridge Analytica\u0027s failures and mistakes are inherent to Facebook\u0027s business model. We need to seriously challenge the social structures that encourage people to opt in to this kind of surveillance. At the same time, we also need to protect those of us who manage to opt out.\u003C\/p\u003E","image":{"@type":"ImageObject","url":"https:\/\/www.aclu.org\/sites\/default\/files\/field_image\/web18-facebook-1160x768.jpg","width":{"@type":"Intangible","name":"1160"},"height":{"@type":"Intangible","name":"768"}},"publisher":{"@type":"Organization","name":"American Civil Liberties Union","logo":{"@type":"ImageObject","url":"https:\/\/www.aclu.org\/sites\/all\/themes\/custom\/aclu\/images\/logos\/logo-schema-json-ld.png","width":{"@type":"Intangible","name":145},"height":{"@type":"Intangible","name":60}}},"mainEntityOfPage":{"@type":"WebPage","@id":"https:\/\/www.aclu.org\/blog"},"keywords":"Internet Privacy, Privacy \u0026amp; Technology, Consumer Privacy","author":[{"@type":"Person","name":"Daniel Kahn Gillmor"}]}
        ]]>
        </script>
        <div class="region region-page-bottom">
            <div class="inner">
                <!-- SiteCatalyst code version: AppMeasurement 1.6.1
Copyright 1996-2018 Adobe, Inc. -->
                <script type="text/javascript" src="/sites/all/libraries/sitecatalyst/AppMeasurement.js?p7vly2"></script> 
                <script type="text/javascript">
                //<![CDATA[
                <!--
                if (typeof s !== 'undefined') {
                s.pageName="blog:April 5 2018:Facebook Is Tracking Me Even Though I\u2019m Not on Facebook";
                s.prop4="Blog Post";
                s.prop5="Facebook Is Tracking Me Even Though I\u2019m Not on Facebook";
                s.prop7="";
                s.prop28="Daniel Kahn Gillmor";
                s.prop30="";
                s.list1="Internet Privacy, Privacy \u0026amp; Technology, Consumer Privacy";
                s.prop12="www.aclu.org";
                /************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
                var s_code=s.t();if(s_code)document.write(s_code)}//-->
                //]]>
                </script> 
                <script type="text/javascript">
                //<![CDATA[
                <!--
                if(navigator.appVersion.indexOf('MSIE')>=0)document.write(unescape('%3C')+'\!-'+'-')
                //-->
                //]]>
                </script> <noscript><img src="https://smetrics.aclu.org/b/ss/aclumain/1/H.27.5/7077111" height="1" width="1" alt="" /></noscript> <!--/DO NOT REMOVE/-->
                <!-- End SiteCatalyst code version: AppMeasurement 1.6.1 -->
            </div>
        </div><!--[if lte IE 9]>
<script src="https://www.aclu.org/sites/default/files/advagg_js/js__swwNp8uYzlQSfaQZggyXUVgR3xX6hndYCbm0OzNQ3Uo__J5c5rUy0xx1jPW79TyLu-tguE83mpB72BCzpp29JDG0__VITBFqYjCWZ55Wpxq9xcXRqOD9xxPlR-vPRDis8bQN4.js#ie9-" onload=";if(jQuery.isFunction(jQuery.holdReady)){jQuery.holdReady(!0)};function advagg_mod_1(){advagg_mod_1.count=++advagg_mod_1.count||1;try{if(advagg_mod_1.count<=40){init_drupal_core_settings();advagg_mod_1.count=100}}catch(d){if(advagg_mod_1.count>=40){throw d}
else{window.setTimeout(advagg_mod_1,1)}}};function advagg_mod_1_check(){if(window.init_drupal_core_settings&&window.jQuery&&window.Drupal){advagg_mod_1()}
else{window.setTimeout(advagg_mod_1_check,1)}};advagg_mod_1_check();"></script>
<![endif]-->
        <!--[if gt IE 9]>
<script src="https://www.aclu.org/sites/default/files/advagg_js/js__swwNp8uYzlQSfaQZggyXUVgR3xX6hndYCbm0OzNQ3Uo__J5c5rUy0xx1jPW79TyLu-tguE83mpB72BCzpp29JDG0__VITBFqYjCWZ55Wpxq9xcXRqOD9xxPlR-vPRDis8bQN4.js#ie10+" defer="defer" onload=";if(jQuery.isFunction(jQuery.holdReady)){jQuery.holdReady(!0)};function advagg_mod_1(){advagg_mod_1.count=++advagg_mod_1.count||1;try{if(advagg_mod_1.count<=40){init_drupal_core_settings();advagg_mod_1.count=100}}catch(d){if(advagg_mod_1.count>=40){throw d}
else{window.setTimeout(advagg_mod_1,1)}}};function advagg_mod_1_check(){if(window.init_drupal_core_settings&&window.jQuery&&window.Drupal){advagg_mod_1()}
else{window.setTimeout(advagg_mod_1_check,1)}};advagg_mod_1_check();"></script>
<![endif]-->
        <!--[if !IE]><!-->
        <script src="https://www.aclu.org/sites/default/files/advagg_js/js__swwNp8uYzlQSfaQZggyXUVgR3xX6hndYCbm0OzNQ3Uo__J5c5rUy0xx1jPW79TyLu-tguE83mpB72BCzpp29JDG0__VITBFqYjCWZ55Wpxq9xcXRqOD9xxPlR-vPRDis8bQN4.js" defer="defer" onload=";if(jQuery.isFunction(jQuery.holdReady)){jQuery.holdReady(!0)};function advagg_mod_1(){advagg_mod_1.count=++advagg_mod_1.count||1;try{if(advagg_mod_1.count&lt;=40){init_drupal_core_settings();advagg_mod_1.count=100}}catch(d){if(advagg_mod_1.count&gt;=40){throw d} else{window.setTimeout(advagg_mod_1,1)}}};function advagg_mod_1_check(){if(window.init_drupal_core_settings&amp;&amp;window.jQuery&amp;&amp;window.Drupal){advagg_mod_1()} else{window.setTimeout(advagg_mod_1_check,1)}};advagg_mod_1_check();"></script> <!--<![endif]-->
        <script src="https://www.aclu.org/sites/default/files/advagg_js/js__KIOxqGQgSG_MNdzEXnXctFChj8F419LLh-pk74jqifE__L-MIV3EoYrT27xwlbqTCaW4Fnzl1Y0UD5Vas-oPZE-s__VITBFqYjCWZ55Wpxq9xcXRqOD9xxPlR-vPRDis8bQN4.js" defer="defer"></script> 
        <script src="https://www.aclu.org/sites/default/files/advagg_js/js__EkkosXTt0cnwMaY9XDJNynP2YPv5JANpb3OmTs5oxB4__qZR9s22Z3rj0kf4R4Ym7Aw_dActYuqmQr12cw6Kz9fA__VITBFqYjCWZ55Wpxq9xcXRqOD9xxPlR-vPRDis8bQN4.js" defer="defer"></script> 
        <script>
        <![CDATA[
        function init_drupal_core_settings() {;jQuery.extend(Drupal.settings,{'basePath':'\/','pathPrefix':'','ajaxPageState':{'theme':'aclu','theme_token':'L129Z08-v-ipJ2mCsh7GK1-m0G8Gu1h_WGmZCtI_z4A'},'aclu_statistics':{'data':{'nid':'67865'},'url':'\/sites\/all\/modules\/custom\/aclu_statistics\/aclu_statistics_counter.php'},'colorbox':{'transition':'none','speed':'350','opacity':'0.90','slideshow':!1,'slideshowAuto':!0,'slideshowSpeed':'2500','slideshowStart':'start slideshow','slideshowStop':'stop slideshow','current':'{current} of {total}','previous':'\u00ab Prev','next':'Next \u00bb','close':'Close','overlayClose':!0,'maxWidth':'98%','maxHeight':'98%','initialWidth':'300','initialHeight':'250','fixed':!0,'scrolling':!1,'mobiledetect':!1,'mobiledevicewidth':'480px'},'mytube':{'enable_js_api':1},'CToolsModal':{'modalSize':{'type':'scale','width':'.9','height':'.9','addWidth':0,'addHeight':0,'contentRight':25,'contentBottom':75},'modalOptions':{'opacity':'.55','background-color':'#FFF'},'animationSpeed':'fast','modalTheme':'CToolsModalDialog','throbberTheme':'CToolsModalThrobber'},'splashify':{'js_splash_always':'0','js_splash_session_only':'0','js_splash_timestamp':1517583933,'js_expire_after':86399913600,'js_mode':'colorbox','js_mode_settings':{'mode':'random','system_splash':'','urls':['\/aclu_promotions\/lightbox\/standard_1'],'total_urls':1,'size_width':'800','size_height':'300'},'js_disable_referrer_check':0,'js_hide_on_screen_width':1,'js_hide_width':'767'},'acluSocialSiteCatalystClicks':{'nodeterm_id':'n67865','nodeterm_name':'Facebook Is Tracking Me Even Though I\u2019m Not on Facebook','jump':'0','anonymous_user':!0},'tagmap':[],'urlIsAjaxTrusted':{'\/comment\/reply\/67865':!0,'\/blog\/privacy-technology\/internet-privacy\/facebook-tracking-me-even-though-im-not-facebook':!0,'\/issues\/capital-punishment\/mental-illness-and-death-penalty':!0},'acluSocial':{'tou_text':'\u003Cp\u003EOur goal is to provide a forum where readers can express their views on posts and on comments made by other people. Comments will not appear on the site until they have been approved. We do not edit comments; they are either approved or rejected. We will not approve comments that are off-topic or contain violent or threatening language, advertising or commercial promotions, links, spam, efforts to solicit personal information from users of our website, or the posting of other people\u2019s personal information without consent.\u003Cp\u003E\n\n\u003Cp\u003EWe are not able to respond to inquiries, complaints or requests for assistance sent to the comment section. Requests for legal assistance left in the comments will not receive a response or be published.\u003C\/p\u003E\n\n\u003Cp\u003EThe ACLU makes no representation about the accuracy of any information in the comment section and disclaims any liability for information in this section.\u003C\/p\u003E'},'fitvids':{'custom_domains':['iframe[src^=\u0027http:\/\/youtube-nocookie.com\u0027]','iframe[src^=\u0027https:\/\/youtube-nocookie.com\u0027]','iframe[src^=\u0027https:\/\/content.newsbound.com\u0027]','iframe[src^=\u0027https:\/\/embed-ssl.ted.com\u0027]','iframe[src^=\u0027https:\/\/www.facebook.com\u0027]','iframe[src^=\u0027https:\/\/embed.theguardian.com\u0027]'],'selectors':['body\r','.video'],'simplifymarkup':0},'aclu_social':{'node_id':'67865','node_title':'Facebook Is Tracking Me Even Though I\u2019m Not on Facebook'},'aclu_promotions':{'header_banner':'2','header_banner_eoy':'2','bottom_banner':'0'},'superfish':{'1':{'id':'1','sf':{'animation':{'opacity':'show','height':'show'},'speed':0,'autoArrows':!1,'dropShadows':!1,'disableHI':!1},'plugins':{'supposition':!1,'bgiframe':!1,'supersubs':{'minWidth':'12','maxWidth':'27','extraWidth':1}}}},'acluTopicsDropdownMenu':{'topicsJsonUrl':'https:\/\/www.aclu.org\/sites\/default\/files\/aclu_topics_dropdown.json?1524242426'}});
        if(jQuery.isFunction(jQuery.holdReady)){jQuery.holdReady(false);}} if(window.jQuery && window.Drupal){init_drupal_core_settings();}
        ]]>
        </script> 
        <script defer="defer" src="/sites/all/libraries/iframe-resizer/js/iframeResizer.min.js?p7vly2"></script> 
        <script src="https://www.aclu.org/sites/default/files/advagg_js/js__6HycQHHRWXZk4rT92IRL7rjUaQmVTPehv-zv1UN2O14__4R1PUkClJ0nV3_5DROl3oALgi-wYg_JrOOVIu2IzUPM__VITBFqYjCWZ55Wpxq9xcXRqOD9xxPlR-vPRDis8bQN4.js" defer="defer"></script>
    </body>
</html>