This repository has been archived by the owner on Jun 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·1088 lines (991 loc) · 75.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
<title>Stop Fast Track!</title>
<link rel="stylesheet" type="text/css" href="css/stopfasttrack.css"/>
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link rel="icon" type="image/png" href="https://s3.amazonaws.com/fftf-cms/static/img/fav.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Stop this secret trade agreement that would censor the Internet."/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://www.stopfasttrack.com"/>
<meta property="og:image" content="https://s3.amazonaws.com/fftf-cms/media/opengraph/Screen_Shot_2014-01-03_at_7.20.26_PM.png"/>
<meta property="og:site_name" content="Stop Fast Track! Stop the TPP!"/>
<meta property="og:description" content="Congress is pushing legislation right now that would 'Fast Track' the Trans-Pacific Partnership -- a secretive agreement negotiated behind closed doors by government bureaucrats and more than 600 corporate lobbyists. It threatens everything you care about: democracy, jobs, the environment, and the Internet."/>
<script type="text/javascript">
var TAG = "stop-fast-track"; // for purpose and donation tracking
var CALL_CAMPAIGN = "stop-tpp"; // used for call tool
var SITE_URL = "https://www.stopfasttrack.com"; // used for sharing
var TWEET_TEXT = "Stop Fast Track for the #TPP!";
var CALL_MODAL_TITLE = "We are calling you now!";
var CALL_MODAL_SUBTITLE = "We'll connect you with Congress. When they answer, be polite and say:"
var CALL_MODAL_SCRIPT = "Hello, I'm calling to urge my representative to oppose Fast Track for the Trans-Pacific Partnership agreement. Congress needs time to debate and amend trade agreements that affect all of us. Fast Track is undemocratic, and I expect my lawmakers to oppose it now and into the future."
var POST_CALL_TITLE = "Thanks for calling! Now can you email Congress?";
var POST_CALL_BLURB = "Enter your info below and we'll send an email to your congresspeople on your behalf, asking them to oppose Fast Track for TPP."
</script>
</head>
<body>
<div class="action_bar">
<a class="social twitter" href="#"><em>Tweet this</em></a>
<a class="social facebook" href="#"><em>Share this</em></a>
<a class="donate" href="#">Donate</a>
<a class="fftf" href="https://www.fightforthefuture.org" target="_blank"></a>
</div>
<div id="cta">
<h1>URGENT: The House just snuck Fast Track through. Now, just 8 undecided Senators are our last hope of stopping it.</h1>
<p>
We are organizing a last-ditch petition, and we're delivering it in-person to the Senate on Monday,
ahead of the expected Tuesday vote. Sign this petition and tell your Senator:
<br/><br/>
<strong class="urgent">"If you vote yes on Fast Track, we pledge to vote against you in the next election."</strong>
</p>
<div id="last_ditch_petition">
<div id="fields" style="display: block;">
<form id="email_form" method="post">
<input name="first_name" type="text" placeholder="Your name"/><input name="email" type="text" placeholder="Email"/><input name="address1" type="text" placeholder="Street Address"/><input name="zip" type="text" placeholder="Zip" class="right"/>
<button type="submit">SIGN THE PETITION</button>
<p class="disclosure">
<a href="https://www.fightforthefuture.org" target="_blank">Fight for the Future</a> will
will deliver your petition and email you with campaign updates.
<a href="https://www.fightforthefuture.org/privacy" target="_blank">Privacy Policy.</a>
</p>
</form>
</div>
<div class="thanks" style="display: none;">
<h2>Thanks for signing!</h2>
<p>
<strong>Now, please call and tweet your Senators.</strong>
</p>
<a class="social twitter" href="#">Tweet this</a>
<a class="social facebook" href="#">Share this</a>
<br/><br/>
</div>
</div>
<div id="targets">
</div>
</div>
<header>
<div class="cta">
<div class="action call" id="takeaction">
<h1>
Congress: Don't betray democracy!
<strong>No "Fast Track" for the TPP!</strong>
</h1>
<p>
Congress is pushing legislation right now that would "Fast Track"
the Trans-Pacific Partnership—a secretive agreement negotiated behind closed doors by government bureaucrats and more than 600 corporate lobbyists. It threatens everything you care about: democracy, jobs, the environment, and the Internet.
<a href="#video">[Learn More]</a>
</p>
<p>
Enter your phone number below. You'll get a call from us. We'll tell you what to say and connect you to your reps!
</p>
<form class="call">
<input type="text" id="userPhone" placeholder="555-555-5555"
/><button>Call Congress</button>
</form>
<p>
Can't call? <a href="#" class="email">Send an email!</a>
</p>
<p class="disclaimer">
Your phone number will only be used to make this call.
<a href="https://www.fightforthefuture.org/privacy" target="_blank">
Privacy Policy
</a>
</p>
</div>
<div class="action email hidden invisible">
<h1>
Congress: Don't betray democracy!
<strong>No "Fast Track" for the TPP!</strong>
</h1>
<p class="blurb">
Congress is pushing legislation right now that would "Fast Track"
the Trans-Pacific Partnership—a secretive agreement negotiated behind closed doors by government bureaucrats and more than 600 corporate lobbyists. It threatens everything you care about: democracy, jobs, the environment, and the Internet.
<a href="#video">[Learn More]</a>
</p>
<form class="email">
<input type="text" name="first_name" placeholder="Full Name"/>
<input type="text" name="email" placeholder="Email"/>
<input type="text" name="address1" placeholder="Address"/>
<input type="text" name="zip" placeholder="Zip Code"
/><button>Write Congress</button>
<input type="hidden" name="subject" value="Please oppose Fast Track for the Trans-Pacific Partnership"/>
<textarea>"I'm writing to urge my representatives to oppose Fast Track for the Trans-Pacific Partnership agreement. Congress needs time to debate and amend trade agreements that affect all of us. Fast Tracking the TPP is undemocratic, and I expect my lawmakers to oppose it. I'll be watching this issue closely in 2015."</textarea>
</form>
<div class="thanks">
<img src="images/site/heart.png" width="40" height="40"/>
<h1>Awesome! You rock!</h1>
<p>Help us spread the word! Share this page with your friends!</p>
<a class="social twitter" href="#">Tweet this</a>
<a class="social facebook" href="#">Share this</a>
</div>
<p class="disclaimer">
<a href="https://www.fightforthefuture.org">Fight for the Future</a>
will contact you about future campaigns.
<a href="https://www.fightforthefuture.org/privacy" target="_blank">
Privacy Policy
</a>
</p>
</div>
</div>
</header>
<div class="sections">
<!--
<section id="take_action">
<h2>Join the Global Day of Action — April 18, 2015!</h2>
<p>
People around the world are uniting against TPP. Together, we can stop the agreements that are being negotiated and reverse the negative impacts of past agreements. We can drive forward our alternatives based on human rights over corporate privileges.
</p>
<div style="padding: 20px 20%;">
<div id="attacfr-adhwidgetframe"> </div><script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)) {js=d.createElement(s);js.id=id;js.src='https://www.globaltradeday.org/?page=widget&type=map&lat=35.746512259918504&lon=-100.81054687499999&zoom=3';fjs.parentNode.insertBefore(js,fjs);}}(document,'script','attacfr-adhwidget');</script>
</div>
<p>
To add your own event to the map,
<a href="https://www.globaltradeday.org/en/events/article/add-an-event-to-the-map" target="_blank">click here</a>.
</p>
</section>
-->
<section id="orgs">
<h2>
These organizations oppose Fast Track.
<em>
Here's why, in their own words.
</em>
</h2>
<p>
(Click an organization's logo to learn why they oppose Fast Track.)
</p>
<div class="org fftf">
<!-- width of org image in pixels: -->
<b class="img_width">250</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Fight for the Future</b>
<b class="headline">We oppose Fast Track because it's fundamentally undemocratic and the TPP would censor the Internet.</b>
<b class="description">We built this page and helped organize this diverse range of groups to fight back because the TPP is bad for everything you care about. Follow us on <a href="http://twitter.com/fightfortheftr" target="_blank">Twitter</a> and <a href="http://facebook.com/fightfortheftr" target="_blank">Facebook</a> for updates.</b>
<b class="tweet_text">.@fightfortheftr opposes Fast Track for the TPP because it's fundamentally undemocratic and would censor the net.</b>
</div>
<div class="org sierra">
<!-- width of org image in pixels: -->
<b class="img_width">142</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Sierra Club</b>
<b class="headline">We oppose fast track because it could push trade pacts through Congress that would devastate our environment.</b>
<b class="description">Secret trade agreements will flood our communities with fracking; let’s flood the inboxes of Congress and say ‘no’ to fast track! <a href="https://secure.sierraclub.org/site/Advocacy?pagename=homepage&page=UserAction&id=12351&autologin=true" target="_blank">Take action!</a></b>
<b class="tweet_text">.@sierraclub opposes Fast Track for the TPP because it could push through trade pacts that devastate our environment</b>
</div>
<div class="org cwa">
<!-- width of org image in pixels: -->
<b class="img_width">138</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Communication Workers of America</b>
<b class="headline">We oppose Fast Track because it is critical that we work to stop the global race to the bottom that's been the result of old-style trade agreements.</b>
<b class="description">Trade agreements are about the food we eat, the air we breathe, the jobs we hold. We cannot cede this process to non-elected representatives.Learn more and <a href="http://cwa-union.org/tpp" target="_blank">take action.</a></b>
<b class="tweet_text">.@CWAUnion opposes Fast Track for the TPP because it is critical we work to stop the global race to the bottom.</b>
</div>
<div class="org openmedia">
<!-- width of org image in pixels: -->
<b class="img_width">106</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Open Media International</b>
<b class="headline">We oppose Fast Tracking the TPP because it will make our Internet more policed, expensive and censored.</b>
<b class="description">Over 3.1 million people around the world have sent a message to TPP decision makers and you can join them at: <a href="https://stopthesecrecy.net/" target="_blank">https://stopthesecrecy.net</a></b>
<b class="tweet_text">.@TheOpenMedia opposes Fast Track for the TPP bc it will make the internet more policed, expensive, and censored.</b>
</div>
<div class="org reddit">
<!-- width of org image in pixels: -->
<b class="img_width">175</b>
<b class="show_in_cloud">true</b>
<b class="org_name">reddit</b>
<b class="headline">We oppose Fast Track because it is an undemocratic agreement that threatens the Open Internet.</b>
<b class="description">We oppose Fast Track because it is an undemocratic agreement that threatens the Open Internet.</b>
<b class="tweet_text">.@reddit opposes Fast Track for the TPP because this undemocratic trade agreement threatens the Open Internet.</b>
</div>
<div class="org afl-cio">
<!-- width of org image in pixels: -->
<b class="img_width">155</b>
<b class="show_in_cloud">true</b>
<b class="org_name">AFL-CIO</b>
<b class="headline">We oppose Fast Track because it doesn’t provide the necessary transparency, accountability & oversight to do trade right</b>
<b class="description">Fast track will bring more trade deals that <a href="http://www.aflcio.org/Blog/Political-Action-Legislation/7-Reasons-We-Don-t-Want-Fast-Track-Trade-Deals" target="_blank">increase corporate power</a> & CEO bonuses while pushing down wages for the rest of us.</b>
<b class="tweet_text">.@AFLCIO opposes Fast Track for the TPP because it doesn’t provide the transparency & oversight to do trade right.</b>
</div>
<div class="org eff">
<!-- width of org image in pixels: -->
<b class="img_width">92</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Electronic Frontier Foundation</b>
<b class="headline">We oppose Fast Track because copyright doesn't belong in secret, undemocratic agreements. It's up to Congress to hold our negotiators accountable.</b>
<b class="description">Trade agreements like TPP have dangerous copyright provisions that would harm the Internet and users' rights to access, share, and remix media. <a href="https://www.eff.org/deeplinks/2013/08/stop-congress-taking-fast-track-one-sided-copyright-laws" target="_blank">Read more.</a></b>
<b class="tweet_text">.@EFF opposes Fast Track for the TPP because copyright doesn’t belong in secret, undemocratic agreements.</b>
</div>
<div class="org aclu">
<!-- width of org image in pixels: -->
<b class="img_width">200</b>
<b class="show_in_cloud">true</b>
<b class="org_name">American Civil Liberties Union</b>
<b class="headline">We oppose fast track for TPP because any change to our intellectual property laws affecting free speech must be subject to open and vigorous debate.</b>
<b class="tweet_text">.@ACLU opposes Fast Track for the TPP because any change to IP laws must be subject to open and vigorous debate StopFastTrack.com</b>
</div>
<div class="org imgur">
<!-- width of org image in pixels: -->
<b class="img_width">141</b>
<b class="show_in_cloud">true</b>
<b class="org_name">imgur</b>
<b class="headline">We oppose Fast Track.</b>
<b class="description"></b>
<b class="tweet_text">.@imgur opposes Fast Track for the TPP.</b>
</div>
<div class="org cai">
<!-- width of org image in pixels: -->
<b class="img_width">234</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Corporate Accountability International</b>
<b class="headline">We oppose Fast Track because it railroads the TPP through Congress, putting corporate profits above public health.</b>
<b class="description">Big Tobacco is lobbying behind the scenes of the TPP so they can sue countries for passing laws that protect kids from cigarettes. <a href="http://act.stopcorporateabuse.org/p/dia/action3/common/public/?action_KEY=14082" target="_blank">Act now.</a></b>
<b class="tweet_text">.@StopCorpAbuse opposes Fast Track bc it will railroad through the TPP, putting corporate profits above public health</b>
</div>
<div class="org teamsters">
<!-- width of org image in pixels: -->
<b class="img_width">200</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Teamsters</b>
<b class="headline">We oppose Fast Track because we don't want thousands of more U.S. jobs shipped overseas</b>
<b class="description">Congress shouldn't abdicate its responsibility to workers by punting their future away. Fast track is the wrong track for America!</b>
<b class="tweet_text">.@Teamsters opposes Fast Track for the TPP because we don’t want thousands more US jobs shipped overseas.</b>
</div>
<div class="org ran">
<!-- width of org image in pixels: -->
<b class="img_width">300</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Rainforest Action Network</b>
<b class="headline">We oppose Fast Track because the TPP is a dangerous, unacceptable corporate power grab that endangers people and planet.</b>
<b class="description">The TPP would <a href="The TPP would prioritize private profit at the inevitable expense of the environment, human rights and the stability of our climate." target="_blank">prioritize private profit</a> at the inevitable expense of the environment, human rights and the stability of our climate.</b>
<b class="tweet_text">.@RAN opposes Fast Track for the TPP because it is a dangerous corporate power grab that endangers people and planet.</b>
</div>
<div class="org publiccitizen">
<!-- width of org image in pixels: -->
<b class="img_width">200</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Public Citizen</b>
<b class="headline">We oppose Fast Track because it skirts Congress to use “trade” deals to rewrite policies that affect our daily lives.</b>
<b class="description">Fast Track has empowered foreign corporations to attack health and environmental policies, enabled drug firms to raise medicine prices, <a href="http://www.exposethetpp.org/TPPImpactsYou.html" target="_blank">and more.</a></b>
<b class="tweet_text">.@Public_Citizen opposes Fast Track because it skirts Congress to rewrite policies that affect our daily lives.</b>
</div>
<div class="org credoaction">
<!-- width of org image in pixels: -->
<b class="img_width">185</b>
<b class="show_in_cloud">true</b>
<b class="org_name">CREDO Action</b>
<b class="headline">We oppose Fast Track because Congress needs to ensure trade deals work for everyone, not just giant corporations.</b>
<b class="description"><a href="http://act.credoaction.com/sign/fast_track/?source=20140121_stopfasttrack" target="_blank">Tell Congress: Say NO to Fast Track and the Trans-Pacific Partnership.</a></b>
<b class="tweet_text">.@credomobile opposes Fast Track for the TPP bc trade deals need to work for everyone, not just giant corporations.</b>
</div>
<div class="org iam">
<!-- width of org image in pixels: -->
<b class="img_width">94</b>
<b class="show_in_cloud">true</b>
<b class="org_name">International Association of Machinists and Aerospace Workers</b>
<b class="headline">We oppose Fast track because it does not represent the new, transparent trade policy that our economy desperately needs</b>
<b class="description">The TPP would wreak havoc on U.S. manufacturing workers as thousands of more jobs will be outsourced to countries that do not respect human rights.</b>
<b class="tweet_text">.@Teamsters opposes Fast Track for the TPP because we don’t want thousands more US jobs shipped overseas.</b>
</div>
<div class="org pia">
<!-- width of org image in pixels: -->
<b class="img_width">207</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Private Internet Access</b>
<b class="headline">We oppose Fast Track because Fast Track undermines democracy. We're serious about protecting civil liberties of people in our world.</b>
<b class="description">If we stay quiet, it will be too late. Let our voices be heard! <a href="https://www.privateinternetaccess.com/">Read more.</a></b>
<b class="tweet_text">PIA opposes Fast Track because it undermines democracy. We're serious about protecting civil liberties.</b>
</div>
<div class="org seashepherd">
<!-- width of org image in pixels: -->
<b class="img_width">192</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Sea Shepherd</b>
<b class="headline">We oppose Fast Track because the economics of extinction must be reigned in.</b>
<b class="description">The emphasis of these agreements must balance both economic and environmental priorities carefully without rush. <a href="http://www.seashepherd.org/" target="_blank">Read more</a></b>
<b class="tweet_text">.@SeaShepherd opposes Fast Track for the TPP because the economics of extinction must be reigned in.</b>
</div>
<div class="org gmaa">
<!-- width of org image in pixels: -->
<b class="img_width">90</b>
<b class="show_in_cloud">true</b>
<b class="org_name">GMO Action Alliance</b>
<b class="headline">We oppose FastTrack because the TPP threatens the safety of our food and the future of humanely-raised, organic farming.</b>
<b class="description">We believe this is an issue of consumers’ rights to an informed choice superseding corporate rights to a nontransparent profit. - Pamm Larry <a href="http://gmoactionalliance.com/" target="_blank">Read more</a></b>
<b class="tweet_text">GMO Action Alliance opposes Fast Track bc the TPP threatens food safety and the future of humane, organic farming.</b>
</div>
<div class="org dp">
<!-- width of org image in pixels: -->
<b class="img_width">270</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Demand Progress</b>
<b class="headline">We oppose Fast Track because TPP was constructed in secret, and undermines the open Internet, and labor and environmental standards.</b>
<b class="description"><a href="http://www.demandprogress.org/" target="_blank">Read More</a></b>
<b class="tweet_text">.@demandprogress opposes Fast Track for the TPP bc it undermines the open internet, labor, & env. standards.</b>
</div>
<div class="org usft">
<!-- width of org image in pixels: -->
<b class="img_width">76</b>
<b class="show_in_cloud">true</b>
<b class="org_name">United Students for Fair Trade</b>
<b class="headline">We oppose Fast Track because it enables trade agreements that hurt small farmers, working families, and the environment.</b>
<b class="description">We need democratic, fair trade policies that are centered around people, not corporate profits. <a href="http://www.usft.org/topple-the-tpp/" target="_blank">Students are saying NO to Fast Track for the Trans-Pacific Partnership!</a></b>
<b class="tweet_text">.@FairTradeCampus opposes Fast Track for the TPP bc it will hurt small farms, working families, and the environment.</b>
</div>
<div class="org pda">
<!-- width of org image in pixels: -->
<b class="img_width">219</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Progressive Democrats of America</b>
<b class="headline">We oppose Fast Track because multinational special interests should not be empowered to control our ability to Tax Wall Street.</b>
<b class="description">Stable financial markets are critical to economic recovery. The $350 Billion raised each year supports jobs, housing and human needs. <a href="http://www.pdamerica.org/issues/economic-and-social-justice/the-robin-hood-tax" target="_blank">Tax Wall Street.</a></b>
<b class="tweet_text">.@StopCorpAbuse opposes Fast Track bc it will railroad through the TPP, putting corporate profits above public health</b>
</div>
<div class="org popres">
<!-- width of org image in pixels: -->
<b class="img_width">184</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Popular Resistance</b>
<b class="headline">We oppose Fast Track because trade agreements should be negotiated openly and through a democratic process.</b>
<b class="description">On critical issues, the massive Trans-Pacific Partnership (TPP) being negotiated in secret by the Obama administration will undermine democracy in the United States and around the world and further empower transnational corporations. <a href="http://www.flushthetpp.org/transpacific-partnership-will-undermine-democracy-empower-transnational-corporations/" target="_blank">Read more</a></b>
<b class="tweet_text">.@PopResistance opposes Fast Track for the TPP because trade agreements should be negotiated openly.</b>
</div>
<div class="org ctc">
<!-- width of org image in pixels: -->
<b class="img_width">90</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Citizens Trade Campaign</b>
<b class="headline">We oppose Fast Track because we want a just and sustainable global economy.</b>
<b class="description"><a href="http://citizenstrade.org/" target="_blank">Citizens Trade Campaign</a> is a national coalition of labor, environmental, family farm, consumer and human rights groups working together to stop Fast Track. Tweeting <a href="http://twitter.com/citizenstrade" target="_blank">@citizenstrade</a></b>
<b class="tweet_text">.@citizenstrade opposes Fast Track for the TPP because we want a just and sustainable global economy.</b>
</div>
<div class="org fp">
<!-- width of org image in pixels: -->
<b class="img_width">176</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Free Press</b>
<b class="headline">We oppose Fast Track for the TPP.</b>
<b class="description"></b>
<b class="tweet_text">.@freepress opposes Fast Track for the TPP.</b>
</div>
<div class="org cheezburger">
<!-- width of org image in pixels: -->
<b class="img_width">113</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Cheezburger Inc.</b>
<b class="headline">We oppose Fast Track because laws that affect our freedoms need to be written in daylight, with elected officials, and vigorous debate. Period.</b>
<b class="description">Fast Track is yet another special interest end-run to SOPA the American public. Let's do this the right way.</b>
</div>
<div class="org flushthetpp">
<!-- width of org image in pixels: -->
<b class="img_width">244</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Flush the TPP!</b>
<b class="headline">We oppose Fast Track because it’s a tool of corporate colonialism, harming local economies and worker rights everywhere.</b>
<b class="description">Communities across the world are resisting trade that puts profit over people and the planet.</b>
<b class="tweet_text">.@FlushtheTPP opposes Fast Track for TPP bc it’s a tool of corporate colonialism, harming local economies & workers.</b>
</div>
<div class="org speea">
<!-- width of org image in pixels: -->
<b class="img_width">199</b>
<b class="show_in_cloud">true</b>
<b class="org_name">The Society of Professional Engineering Employees in Aerospace</b>
<b class="headline">We oppose Fast Track because we need a robust public discussion of trade policy and Fast Track is designed to force a bad outcome.</b>
<b class="description">We are 100% in favor of a GOOD <a href="ttp://www.huffingtonpost.com/stan-sorscher/a-history-lesson-from-20-_b_4533488.html" target="_blank">trade policy that raises living standards at home and abroad.</a></b>
<b class="tweet_text">.@speea opposes Fast Track for the TPP bc we need public discussion of trade policy & it is designed to force a bad outcome.</b>
</div>
<div class="org cpa">
<!-- width of org image in pixels: -->
<b class="img_width">83</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Coalition for a Prosperous America</b>
<b class="headline">We oppose Fast Track because it gives power to the President to negotiate and ram FTAs through Congress, transfer sovereignty, and outsource jobs</b>
<b class="description"><a href="http://www.stopfasttrack.com/www.tradereform.org/2014/01/news-release-cpa-liberty-groups-petition-congress-fast-track/" target="_blank">News Release: CPA and Liberty Groups Petition Congress Against Fast Track</a></b>
<b class="tweet_text">.@cpa_tradereform opposes Fast Track for TPP bc it rams FTAs thru Congress to transfer sovereignty & outsource jobs.</b>
</div>
<div class="org arrow350">
<!-- width of org image in pixels: -->
<b class="img_width">160</b>
<b class="show_in_cloud">true</b>
<b class="org_name">350.org</b>
<b class="headline">We oppose Fast Track because the TPP would give corporations incentive to dig up and burn more fossil fuels, making climate change much worse.</b>
<b class="description">Legislation designed to address climate change, curb fossil fuel expansion and reduce air pollution <a href="http://350.org/the-largest-corporate-power-grab-youve-never-heard-of/" target="_blank">could be subject to attack</a> by corporations.</b>
<b class="tweet_text">.@350 opposes Fast Track for the TPP bc it would give corporations incentive to burn more fossil fuel.</b>
</div>
<div class="org arrow350seattle">
<!-- width of org image in pixels: -->
<b class="img_width">113</b>
<b class="show_in_cloud">false</b>
<b class="org_name">350.org Seattle</b>
<b class="headline">We oppose Fast Track because trade deals should raise the bar for environmental and labor standards; the TPP will lower it.</b>
<b class="description"><a href="http://350seattle.org/" target="_blank">We work hard for climate justice.</a> By undermining national sovereignty in favor of corporate profits, the TPP threatens everything we care about.</b>
<b class="tweet_text">.@350_Seattle opposes Fast Track bc trade deals should raise the bar for environmental and labor standards</b>
</div>
<div class="org gjae">
<!-- width of org image in pixels: -->
<b class="img_width">69</b>
<b class="show_in_cloud">false</b>
<b class="org_name">Global Justice for Animals and the Environment</b>
<b class="headline">We oppose Fast track because it'll push trade deals that harm animals, environment, food & human rights thru Congress.</b>
<b class="description">Fast Track will push TPP, resulting in more factory farms, genetically modified food, fracking and rainforest-killing palm oil plantations. <a href="http://gjae.org/tpp" target="_blank">Read More</a></b>
<b class="tweet_text">GJAE opposes Fast Track bc it’ll push trade deals that harm animals, environment, food & human rights thru Congress</b>
</div>
<div class="org familyfarmdefenders">
<!-- width of org image in pixels: -->
<b class="img_width">290</b>
<b class="show_in_cloud">false</b>
<b class="org_name">Family Farm Defenders</b>
<b class="headline">We oppose Fast Track it hurts farmers and consumers, and also violates food sovereignty</b>
<b class="description"><a href="https://www.commondreams.org/view/2012/03/12-6" target="_blank">https://www.commondreams.org/view/2012/03/12-6</a></b>
<b class="tweet_text">FFD opposes Fast Track for the TPP because it hurts farmers and consumers, and also violates food sovereignty.</b>
</div>
<div class="org enej">
<!-- width of org image in pixels: -->
<b class="img_width">290</b>
<b class="show_in_cloud">false</b>
<b class="org_name">The Episcopal Network for Economic Justice</b>
<b class="headline">We oppose Fast Track because it will stress to our already fragile environment, and will drive working communities into deeper poverty.</b>
<b class="description">Environmental and worker integrity is at risk.</b>
<b class="tweet_text">The ENEJ opposes Fast Track for the TPP bc it will stress our fragile env., & drive working communities deeper into poverty.</b>
</div>
<div class="org wftc">
<!-- width of org image in pixels: -->
<b class="img_width">201</b>
<b class="show_in_cloud">false</b>
<b class="org_name">Washington Fair Trade Coalition</b>
<b class="headline">We oppose Fast Track because Fast Track is undemocratic and contrary to our Constitution, since Congress is given the responsibility for regulation of foreign trade, not the Executive branch.</b>
<b class="description">Furthermore, the TPP is the multinationals' greatest dream: less regulation, ways to circumvent domestic laws and regulations, environmental and labor standards be damned. <a href="https://www.facebook.com/pages/Wisconsin-Fair-Trade-Coalition/103715807953" target="_blank">Read More</a></b>
<b class="tweet_text">WA Fair Trade Coalition opposes Fast Track for the TPP it is undemocratic and contrary to our Constitution, since Congress should regulate foreign trade.</b>
</div>
<div class="org stopfracking">
<!-- width of org image in pixels: -->
<b class="img_width">80</b>
<b class="show_in_cloud">false</b>
<b class="org_name">United for Action</b>
<b class="headline">We oppose Fast Track because the TPP could easily overturn all of United for Action's efforts to ban hydrofracking.</b>
<b class="description">TPP would also greatly encourage the export of LNG overseas. <a href="http://www.unitedforaction.org/" target="_blank">United for Action.</a></b>
<b class="tweet_text">.@UnitedForAction opposes Fast Track because the TPP could easily overturn all of United for Action</b>
</div>
<div class="org soa">
<!-- width of org image in pixels: -->
<b class="img_width">80</b>
<b class="show_in_cloud">false</b>
<b class="org_name">SOA Watch</b>
<b class="headline">We oppose Fast Track because militarization and trade liberalization have gone hand in hand (e.g. Chile)-- Human rights not corporate rights!</b>
<b class="description">This is an opportunity to ally with partners invested in the global human rights struggle and link neoliberalism with militarization. <a href="http://www.soaw.org/about-the-soawhinsec/soawhinsec-grads/notorious-grads" target="_blank">Read More.</a></b>
<b class="tweet_text">.@SOAWatch opposes Fast Track because militarization and trade liberalization have gone hand in hand.</b>
</div>
<div class="org progressivecongress">
<!-- width of org image in pixels: -->
<b class="img_width">290</b>
<b class="show_in_cloud">false</b>
<b class="org_name">Progressive Congress</b>
<b class="headline">We oppose “Fast Track” because the procedures usurp Congress’s authority over trade matters.</b>
<b class="description">The United States cannot afford another trade agreement that replicates the mistakes of the past.</b>
<b class="tweet_text">.@ProgCongress opposes Fast Track for the TPP because it usurps Congress’s authority over trade matters.</b>
</div>
<div class="org piratepartyok">
<!-- width of org image in pixels: -->
<b class="img_width">313</b>
<b class="show_in_cloud">false</b>
<b class="org_name">Pirate Party Oklahoma</b>
<b class="headline">We oppose Fast Track because in these secret negotiations, no one is representing the valid interests of the people.</b>
<b class="description">This secret deal encourages a surveillance state, is a handout to patent trolls and promotes the outsourcing of even more US jobs. <a href="http://www.okpirates.org/2014/01/13/stop-the-tpp/" target="_blank">Let them know!</a></b>
<b class="tweet_text">.@OKPirates opposes Fast Track for the TPP bc in secret negotiations, no one represents the interests of the people.</b>
</div>
<div class="org sumofus">
<!-- width of org image in pixels: -->
<b class="img_width">75</b>
<b class="show_in_cloud">true</b>
<b class="org_name">SumOfUs</b>
<b class="headline">We oppose TPP because secretive trade agreements are undermining our democracy to enrich corporations.</b>
<b class="description">We shouldn't stifle debate about a deal that could endanger everything from environmental protections to affordable medicines to internet freedoms. <a href="http://sumofus.org/" target="_blank">Read More.</a></b>
</div>
<div class="org iatp">
<!-- width of org image in pixels: -->
<b class="img_width">291</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Institute for Agriculture and Trade Policy</b>
<b class="headline">We oppose Fast Track because Fast track authority is undemocratic, favors corporations, and poses great risks for food sovereignty and international development.</b>
<b class="description">Fast track authority is undemocratic, favors corporations, and <a href="http://www.iatp.org/issue/trade" target="_blank">poses great risks for food sovereignty</a> and international development.</b>
<b class="tweet_text">.@IATP opposes Fast Track for the TPP bc it poses great risks for food sovereignty and international development.</b>
</div>
<div class="org thoughtworks">
<!-- width of org image in pixels: -->
<b class="img_width">207</b>
<b class="show_in_cloud">true</b>
<b class="org_name">ThoughtWorks</b>
<b class="headline">We oppose Fast Track because most US legislators, citizens and companies have been locked out of the process affecting complex changes to internet, copyright and patent law.</b>
<b class="tweet_text">.@thoughtworks opposes Fast Track for TPP bc most US legislators, citizens & companies are locked out of the process.</b>
</div>
<div class="org ifg">
<!-- width of org image in pixels: -->
<b class="img_width">137</b>
<b class="show_in_cloud">true</b>
<b class="org_name">International Forum on Globalization</b>
<b class="headline">We oppose Fast Track because NAFTA has been a disaster for North America and TPP's expansion of free trade to the Pacific will be even more horrific.</b>
<b class="description"></b>
<b class="tweet_text">.@IFGlobalization opposes Fast Track for TPP because NAFTA has been a disaster and TPP will be even more horrific.</b>
</div>
<div class="org jobswithjustice">
<!-- width of org image in pixels: -->
<b class="img_width">118</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Jobs With Justice</b>
<b class="headline">We oppose Fast Track because it is anti-democratic.</b>
<b class="description">Fast Track would prevent public hearings and open discussion of the most important action by Congress this year.</b>
</div>
<div class="org techdirt">
<!-- width of org image in pixels: -->
<b class="img_width">200</b>
<b class="show_in_cloud">true</b>
<b class="org_name">techdirt</b>
<b class="headline">We oppose Fast Track because it will enable the USTR to complete secretive agreements that hold back innovation</b>
<b class="description">Trade agreements that impact a very large percentage of our economy need to be negotiated and debated in public, not secret. <a href="http://www.techdirt.com/" target="_blank">TechDirt.</a></b>
<b class="tweet_text">.@techdirt opposes Fast Track for the TPP bc it will be used to pass secretive agreements that hold back innovation.</b>
</div>
<div class="org fairworld">
<!-- width of org image in pixels: -->
<b class="img_width">194</b>
<b class="show_in_cloud">false</b>
<b class="org_name">Fair World Project</b>
<b class="headline">We oppose Fast Track because a full and open discussion is the only way we will ensure fairness for farmers, workers, and consumers.</b>
<b class="description">FWP advocates for fair trade policies and TPP as currently stands will have a <a href="http://fairworldproject.org/blogs/free-trade-agreements-do-they-really-affect-you/" target="_blank">negative impact on farmers, workers, and consumers globally.</a></b>
<b class="tweet_text">.@fairworldprj opposes Fast Track for the TPP bc we need openness to get fair deals for farmers, workers, consumers.</b>
</div>
<div class="org waterkeeper">
<!-- width of org image in pixels: -->
<b class="img_width">213</b>
<b class="show_in_cloud">false</b>
<b class="org_name">Water Keeper Alliance</b>
<b class="headline">We oppose Fast Track because it threatens Waterkeeper Alliance's values of environmental protection and democracy.</b>
<b class="description"><a href="http://waterkeeper.org/" target="_blank">Waterkeeper Alliance</a> believes in clean water, democracy and the right of communities to protect themselves.</b>
<b class="tweet_text">.@Waterkeeper opposes Fast Track for the TPP bc it threatens environmental protection and democracy.</b>
</div>
<div class="org oca">
<!-- width of org image in pixels: -->
<b class="img_width">118</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Organic Consumers Association</b>
<b class="headline">We oppose Fast Track because secret trade agreements threaten food safety and subvert democracy.</b>
<b class="description">If these deals are <a href="http://salsa3.salsalabs.com/o/50865/p/dia/action3/common/public/?action_KEY=12779" target="_blank">rammed through Congress without scrutiny or debate</a>, we could lose our right to regulate factory farms and GMOs.</b>
<b class="tweet_text">.@OrganicConsumer opposes Fast Track for the TPP bc secret trade agreements threaten food safety and democracy.</b>
</div>
<div class="org gmofreeusa">
<!-- width of org image in pixels: -->
<b class="img_width">90</b>
<b class="show_in_cloud">true</b>
<b class="org_name">GMO Free USA</b>
<b class="headline">We oppose Fast Track because the TPP gives corporations the ability to undermine popular sovereignty.</b>
<b class="description">The TPP would unravel our movement’s work with GMO labeling, GMO cultivation bans and gut food & environmental safety standards. <a href="http://gmofreeusa.org/" target="_blank">Read More</a></b>
<b class="tweet_text">.@GMOFreeUSA opposes Fast Track for TPP because it gives corporations the ability to undermine popular sovereignty.</b>
</div>
<div class="org fsf">
<!-- width of org image in pixels: -->
<b class="img_width">140</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Free Software Foundation</b>
<b class="headline">We oppose Fast Track because TPP would promote Digital Restrictions Management (DRM) to enforce draconian copyright law.</b>
<b class="description">DRM undermines free software development and unethically restricts the freedom of all computer users.</b>
<b class="tweet_text">.@fsf opposes Fast Track bc TPP would promote Digital Restrictions Mgmt (DRM) to enforce draconian copyright law.</b>
</div>
<div class="org moveon">
<!-- width of org image in pixels: -->
<b class="img_width">207</b>
<b class="show_in_cloud">true</b>
<b class="org_name">MoveOn.org</b>
<b class="headline">We oppose Fast Track due to our focus on getting big money out of politics. We are very concerned with the secrecy and intent of the act to negate our laws,regulations and court sovereignty. The TPP would mean the end of our democracy.</b>
<b class="description">We have held informational demonstrations with other groups, visited our legislators' offices, delivered letters to them, joined the twitter storm and presented workshops to other progressive groups. <a href="https://www.facebook.com/denvermetro" target="_blank">Read more</a></b>
<b class="tweet_text">.@MoveOn opposes Fast Track due to our focus on getting big money out of politics. The TPP would end our democracy.</b>
</div>
<div class="org askthem">
<!-- width of org image in pixels: -->
<b class="img_width">155</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Ask Them</b>
<b class="headline">We oppose Fast Track because our non-profit organization believes in public input & questions on important policy.</b>
<b class="description">PPF enables anyone to communicate ideas to people in power. Our forthcoming questions-and-answers platform is AskThem.io. <a href="http://www.participatorypolitics.org/" target="_blank">Participatory Politics Foundation</a></b>
<b class="tweet_text">.@AskThemPPF opposes Fast Track for the TPP because we believe in public input & questions on important policy.</b>
</div>
<div class="org backbonecampaign">
<!-- width of org image in pixels: -->
<b class="img_width">77</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Backbone Campaign</b>
<b class="headline">We oppose Fast Track because the TPP is a Train Wreck for Workers, Communities, Democracy and the Planet. FLUSH the TPP!</b>
<b class="description">Humanity, Community, and Nature are Sacred. We MUST Fight and Win the battle against their commodification. The Corporatocracy STOPS Here!</b>
<b class="tweet_text">.@backboneprog opposes Fast Track for TPP bc it is a Train Wreck for Workers, Communities, Democracy, and the Planet.</b>
</div>
<div class="org globalexchange">
<!-- width of org image in pixels: -->
<b class="img_width">200</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Global Exchange</b>
<b class="headline">We oppose Fast Track because free trade causes sweatshops, human rights violations and environmental degradation.</b>
<b class="description">We envision a <a href="http://www.globalexchange.org/resources/econ101" target="_blank">people centered globalization to ensure that the cost of the economy does not come at the expense of us all.</a></b>
<b class="tweet_text">.@globalexchange opposes Fast Track for the TPP bc it causes sweatshops, human rights violations and env. degradation</b>
</div>
<div class="org drn">
<!-- width of org image in pixels: -->
<b class="img_width">77</b>
<b class="show_in_cloud">false</b>
<b class="org_name">Delaware Riverkeeper Network</b>
<b class="headline">We oppose Fast Track because it will harm environmental protection. A healthy environment is good for healthy trade, water, food, air & our future.</b>
<b class="description">15 million drink Delaware River water. We must protect it. <a href="http://www.delawarerivervoice.blogspot.com/2013/12/secret-trade-deals-undermine.html" target="_blank">Read more</a></b>
<b class="tweet_text">DE River Keeper’s Network opposes Fast Track for the TPP because it will harm environmental protection.</b>
</div>
<div class="org cec">
<!-- width of org image in pixels: -->
<b class="img_width">96</b>
<b class="show_in_cloud">false</b>
<b class="org_name">Citizen's Environmental Coalition</b>
<b class="headline">We oppose Fast Track & Trade Deals that are planned OF, BY and FOR Corporations in Secret.</b>
<b class="description">The Danger: the public will lose jobs, health, safety and environmental protections, as well as our democracy while corporations gain more power. <a href="http://www.stopfasttrack.com/www.cectoxic.org" target="_blank">Read more.</a></b>
<b class="tweet_text">CEC opposes Fast Track for the TPP because it is planned OF, BY, and FOR corporations in secret.</b>
</div>
<div class="org stpeteforpeace">
<!-- width of org image in pixels: -->
<b class="img_width">220</b>
<b class="show_in_cloud">false</b>
<b class="org_name">St. Pete for Peace</b>
<b class="headline">We oppose Fast Track because peace isn't real peace without the presence of economic justice.</b>
<b class="description">Democracy, justice, peace. <a href="http://stpeteforpeace.org/" target="_blank">Read more</a></b>
<b class="tweet_text">.@StPeteforPeace opposes Fast Track for the TPP because peace isn’t real peace without economic justice.</b>
</div>
<div class="org occupycoachellavalley">
<!-- width of org image in pixels: -->
<b class="img_width">80</b>
<b class="show_in_cloud">false</b>
<b class="org_name">Occupy Coachella Valley</b>
<b class="headline">We oppose Fast Track because it subverts the democratic process and nullifies checks and balances.</b>
<b class="description">Signing away constitutional authority and oversight of Congress to the executive branch is both unconscionable and irresponsible.</b>
<b class="tweet_text">.@99ocv opposes Fast Track for the TPP bc it subverts the democratic process and nullifies checks and balances.</b>
</div>
<div class="org boingboing">
<!-- width of org image in pixels: -->
<b class="img_width">207</b>
<b class="show_in_cloud">true</b>
<b class="org_name">boingboing</b>
<b class="headline">We oppose fast track because in America, Congress makes the laws, not the US Trade Representative and his corporate cronies.</b>
<b class="description">TPP is bad for the world's digital environment and the physical one, but even if it was an unassailably perfect confection made from unicorn hair and chocolate-coated bananas, we'd *still* want Congress to review and debate every provision. Because that is Congress's job.</b>
<b class="tweet_text">.@boingboing opposes Fast Track for the TPP bc Congress makes laws, not the USTR and corporate cronies.</b>
</div>
<div class="org benandjerrys">
<!-- width of org image in pixels: -->
<b class="img_width">207</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Ben & Jerry's Ice Cream</b>
<b class="headline">We oppose fast track because it’s a path to bad trade deals that put corporate profits ahead of people and the planet.</b>
<b class="description">(Great things often come from the slow track: Ben and Jerry met in 7th grade gym class - they were the slowest two kids on the mile run!)</b>
</div>
<div class="org youranonnews">
<!-- width of org image in pixels: -->
<b class="img_width">173</b>
<b class="show_in_cloud">true</b>
<b class="org_name">YourAnonNews</b>
<b class="headline">We oppose Fast Track because corporations are using their political contributions to gain influence over trade negotiations, whereas the public has no voice.</b>
<b class="description">It is entirely undemocratic for a government to negotiate and pass laws in secret. The public has a right to be made aware, in advance, of how the TPP will effect them. Our demand is transparency. <a href="https://twitter.com/YourAnonNews" target="_blank">Tweeting from @YourAnonNews.</a></b>
<b class="tweet_text">.@YourAnonNews opposes Fast Track for the TPP bc corporations buy influence, whereas the public has no voice.</b>
</div>
<div class="org pirateparty">
<!-- width of org image in pixels: -->
<b class="img_width">146</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Pirate Party</b>
<b class="headline">We oppose Fast Track because it disallows time for citizens to read the fine-print of the agreement.</b>
<b class="description">We have every right to see what our elected officials vote on and must be able to provide sufficient time to contact them and inform others.</b>
<b class="tweet_text">.@USPirates opposes Fast Track for the TPP because it disallows time for citizens to read the fine-print.</b>
</div>
<div class="org pccc">
<!-- width of org image in pixels: -->
<b class="img_width">64</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Progressive Change Campaign Committee</b>
<b class="headline">We oppose Fast Track because the TPP is a threat to working families and our democracy.</b>
<b class="description">The TPP was written in secret by corporate lobbyists, and now is being rammed through Congress without debate. This is unacceptable. <a href="http://boldprogressives.org/" target="_blank">Click here to read more about the work we do.</a></b>
<b class="tweet_text">.@BoldProgressive opposes Fast Track because the TPP is a threat to working families and our democracy.</b>
</div>
<div class="org bctgm">
<!-- width of org image in pixels: -->
<b class="img_width">70</b>
<b class="show_in_cloud">true</b>
<b class="org_name">BCTGM International Union</b>
<b class="headline">We oppose fast track because it is undemocratic and will elevate corporate interests at the expense of working people.</b>
<b class="description">Fast Track is license to continue trade and economic policies that have failed America’s working families for 30 years.</b>
<b class="tweet_text">.@BCTGM opposes fast track because it will elevate corporate interests at the expense of working people.</b>
</div>
<div class="org namecheap">
<!-- width of org image in pixels: -->
<b class="img_width">207</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Namecheap</b>
<b class="headline">We oppose Fast Track because at Namecheap, we stand up to protect your rights and privacy.</b>
<b class="description">Namecheap is a proponent of the open web and we'll do what it takes to protect it. Please reach out to your reps to urge them to stop Fast Track!</b>
</div>
<div class="org thunderclap">
<!-- width of org image in pixels: -->
<b class="img_width">207</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Thunderclap</b>
<b class="headline">We oppose TPP because a binding international agreement shouldn't be negotiated in secret.</b>
<b class="description">We oppose Fast Track because a binding international agreement shouldn't be negotiated in secret.</b>
</div>
<div class="org wilpfusa">
<!-- width of org image in pixels: -->
<b class="img_width">86</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Women's International League for Peace and Freedom</b>
<b class="headline">We oppose Fast Track because it unconstitutionally silences the voices of men, women and children who will greatly suffer under the TPP</b>
<b class="description">The TPP will limit access to safe water and food, affordable medicine, and the well-paying jobs women need to provide for their families. Under the TPP, peace and freedom across the Pacific Rim will be impossible to achieve. <a href="http://wilpfus.org/" target="_blank">Read more.</a></b>
<b class="tweet_text">.@WILPF opposes Fast Track because it silences the voices of men, women and children who will suffer under the TPP.</b>
</div>
<div class="org labornotes">
<!-- width of org image in pixels: -->
<b class="img_width">207</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Labor Notes</b>
<b class="headline">We oppose Fast Track because the TPP will foment competition among workers in different countries.</b>
<b class="description">TPP will be discussed at the <a href="http://labornotes.org/2014" target="_blank">Labor Notes Conference</a> April 2-4 in Chicago. Unless Fast Track is dead by then!</b>
<b class="tweet_text">.@labornotes opposes Fast Track because the TPP will foment competition among workers in different countries.</b>
</div>
<div class="org dfa">
<!-- width of org image in pixels: -->
<b class="img_width">89</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Democracy for America</b>
<b class="headline">We oppose Fast Track because the TPP would endanger working families, the environment and internet freedom.</b>
<b class="description">Congress must ensure that any trade agreement is a fair deal for all Americans, not just the rich and powerful. <a href="http://act.democracyforamerica.com/sign/fast_track/" target="_blank">Take action now!</a></b>
<b class="tweet_text">.@DFAaction opposes Fast Track because the TPP would endanger working families, the environment and internet freedom.</b>
</div>
<div class="org codepink">
<!-- width of org image in pixels: -->
<b class="img_width">207</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Code Pink</b>
<b class="headline">We oppose Fast Track because it is without debate, proving the US is run by corporations and democracy is officially dead.</b>
<b class="description">The TPP regulates information sharing and, most alarmingly, limits the ability of communities to control local resources like food and water.</b>
<b class="tweet_text">.@codepink opposes Fast Track because it is without debate, proving the US is run by corporations & democracy is dead</b>
</div>
<div class="org foodwaterwatch">
<!-- width of org image in pixels: -->
<b class="img_width">147</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Food and Water Watch</b>
<b class="headline">We oppose Fast Track because public and environmental health shouldn't be trumped by corporate profits.</b>
<b class="description">Fast track could have disastrous implications for American consumers. - Wenonah Hauter</b>
<b class="tweet_text">.@foodandwater opposes Fast Track because public and environmental health shouldn't be trumped by corporate profits.</b>
</div>
<div class="org friendsoftheearth">
<!-- width of org image in pixels: -->
<b class="img_width">176</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Friends of the Earth</b>
<b class="headline">We oppose Fast Track because it will rush the environmentally hazardous TPP and TTIP deals past Congress.</b>
<b class="description">Don't fast track a polluter's bill of rights. Learn more about Friends of the Earth and Fast Track by <a href="http://www.foe.org/news/blog/2014-01-dont-fast-track-a-polluters-bill-of-rights" target="_blank">clicking here.</a></b>
</div>
<div class="org usaction">
<!-- width of org image in pixels: -->
<b class="img_width">207</b>
<b class="show_in_cloud">true</b>
<b class="org_name">US Action</b>
<b class="headline">We oppose Fast Track.</b>
<b class="description"><a href="http://usaction.org/" target="_blank">More info.</a></b>
</div>
<div class="org fdl">
<!-- width of org image in pixels: -->
<b class="img_width">176</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Firedoglake</b>
<b class="headline">We oppose Fast Track because it fundamentally violates essential checks and balances in our democracy, vesting a tremendous amount of power in the executive to craft sweeping trade agreements away from the public eye.</b>
<b class="description">Join the thousands of Firedoglake activists working to stop this veritable "NAFTA-on-steroids" from giving corporations free-reign to reap massive profits, regardless of the consequences for the people, environment or the economy.</b>
<b class="tweet_text">.@Firedoglake opposes Fast Track because it violates checks & balances, allowing Pres to craft sweeping trade deals.</b>
</div>
<div class="org workingfamilies">
<!-- width of org image in pixels: -->
<b class="img_width">207</b>
<b class="show_in_cloud">true</b>
<b class="org_name">South Florida Voices for Working Families</b>
<b class="headline">We oppose Fast Track because it silences the Voices of democracy.</b>
<b class="description">Trade issues directly affect our lives. Fast Track cuts out any meaningful role for Congress, silencing the <a href="http://sfvoices.org/" target="_blank">Voices of Working Families</a>.</b>
</div>
<div class="org cfaf">
<!-- width of org image in pixels: -->
<b class="img_width">163</b>
<b class="show_in_cloud">true</b>
<b class="org_name">Campaign for America's Future</b>
<b class="headline">We oppose Fast Track because it sets aside Congress’ duty to represent the interests of We, the People.</b>
<b class="description">Fast Track is a rigged process for the benefit of multinational corporations. A real “trade" agreement would lift the world’s economy. <a href="http://ourfuture.org/category/featured-stories/trans-pacific-partnership" target="_blank">Read more</a>.</b>
<b class="tweet_text">CFA opposes Fast Track because it sets aside Congress’ duty to represent the interests of We, the People.</b>
</div>
<div class="org afsc">
<!-- width of org image in pixels: -->
<b class="img_width">290</b>
<b class="show_in_cloud">true</b>
<b class="org_name">American Friends Service Committee</b>
<b class="headline">We oppose Fast Track because it allows legislation to be passed without full due process</b>
<b class="description">Congress should set a new approval process to ensure that all requirements are met before the Executive Branch signs an international deal.</b>
</div>
<div class="org nuworld">
<!-- width of org image in pixels: -->
<b class="img_width">80</b>
<b class="show_in_cloud">false</b>
<b class="org_name">NuWorld Media</b>
<b class="headline">We oppose Fast Track because it undermines the rights of a falsely democratic society in what only perception says is a free world.</b>
<b class="description">Fast Track is a rigged process for the benefit of multinational corporations. A real “trade" agreement would lift the world’s economy. <a href="http://ourfuture.org/category/featured-stories/trans-pacific-partnership" target="_blank">Read more</a>.</b>
</div>
<div class="org gmoinside">
<!-- width of org image in pixels: -->
<b class="img_width">80</b>
<b class="show_in_cloud">false</b>
<b class="org_name">GMO Inside</b>
<b class="headline">We oppose Fast Track because under the TPP GMO labels for US food would not be allowed.</b>
<b class="description">GMO Inside is a campaign dedicated to removing GMOs from the food system. <a href="http://gmoinside.org/" target="_blank">Read more.</a></b>
</div>
<div class="org internationalrivers">
<!-- width of org image in pixels: -->
<b class="img_width">264</b>
<b class="show_in_cloud">false</b>
<b class="org_name">International Rivers</b>
<b class="headline">We oppose Fast Track because rivers and other ecosystems should not be sacrificed for short-term profits</b>
<b class="description"><a href="http://internationalrivers.org/" target="_blank">Find out more.</a></b>
</div>
<div class="org nyworkingfamilies">
<!-- width of org image in pixels: -->
<b class="img_width">290</b>
<b class="show_in_cloud">false</b>
<b class="org_name">New York Working Families</b>
<b class="headline">We oppose Fast Track because its policies negatively effect working people.</b>
<b class="description"><a href="http://workingfamilies.org/states/new-york/" target="_blank">Find out more.</a></b>
</div>
<div class="org lamav">
<!-- width of org image in pixels: -->
<b class="img_width">209</b>
<b class="show_in_cloud">false</b>
<b class="org_name">LaMav</b>
<b class="headline">We believe people should have the right to choose the foods and products they wish to use and grow.</b>
<b class="description">We're proponents of organic products & foods grown locally and don't believe a government should dictate what one can and can't use or consume! <a href="http://www.lamav.com/tpp" target="_blank">We believe people should have the right to choose the foods and products they wish to use and grow.</a></b>
</div>
<div class="org northwestmedia">
<!-- width of org image in pixels: -->
<b class="img_width">213</b>
<b class="show_in_cloud">false</b>
<b class="org_name">NorthWest Media ULC</b>
<b class="headline">We oppose Fast Track because It's just a overall bad bill, I would expect to see Child-Birth patented if this was passed.</b>
<b class="description">It would be hard to get our stuff out there and be bad for everyone if this passes.</b>
</div>
<div class="org cyberguerrilla">
<!-- width of org image in pixels: -->
<b class="img_width">166</b>
<b class="show_in_cloud">false</b>
<b class="org_name">CyberGuerrilla AnoNneXus collective</b>
<b class="headline">We oppose Fast Track and the TPP. The TPP is a backhanded slap directed across the face of the world.</b>
<b class="description">The TPP will be defeated, whether legislatively or by computer coding work. It is neither about trade nor freedom.</b>
</div>
<div class="org witnessforpeace">
<!-- width of org image in pixels: -->
<b class="img_width">230</b>
<b class="show_in_cloud">false</b>
<b class="org_name">Witness for Peace</b>
<b class="headline">We oppose Fast Track because we've seen from experience that free trade causes devastation across the Americas.</b>
<b class="description"><a href="http://witnessforpeace.org/userdata_display.php?modin=51&upcoming=1" target="_blank">We've been witnessing</a> the effects of FTAs on the people of Latin America for decades. It's time to say no!</b>
</div>
<div class="org jewishvoiceforpeace">
<!-- width of org image in pixels: -->
<b class="img_width">100</b>
<b class="show_in_cloud">false</b>
<b class="org_name">Jewish Voice for Peace</b>
<b class="headline">We oppose Fast Track.</b>
<b class="description"><a href="https://jewishvoiceforpeace.org/" target="_blank">More info.</a></b>
</div>
</section>
<section id="video" class="video">
<h2>
Why do we need to stop Fast Track?