-
Notifications
You must be signed in to change notification settings - Fork 0
/
interactive_tabbed_checkbox_hack_alice_li
1065 lines (1013 loc) · 66.5 KB
/
interactive_tabbed_checkbox_hack_alice_li
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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- THIS EMAIL WAS BUILT USING LITMUS BUILDER https://pages.litmus.com/e/31032/2019-09-30/jgp5h8/720438025?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc
-->
<!-- QUESTIONS? TWEET US @litmusapp -->
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office" lang="en" xml:lang="en">
<head>
<title>Litmus</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<style type="text/css">
/* BOILERPLATE STYLES */
#outlook a{padding:0;}
.ReadMsgBody{width:100%;} .ExternalClass{width:100%;}
.ExternalClass, .ExternalClass span, .ExternalClass td, .ExternalClass div {line-height: 100%;}
a { text-decoration: none; }
body, table, td, a{-webkit-text-size-adjust:100%; -ms-text-size-adjust:100%;}
table, td{mso-table-lspace:0pt; mso-table-rspace:0pt;}
img {-ms-interpolation-mode:bicubic; display: block; border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}
body {height:100% !important; margin:0 !important; padding:0 !important; width:100% !important;}
.appleFooter a { color:#ffffff !important; text-decoration: none !important; }
.appleText a,
.appleText span {
color:#50596E !important;
border: 0 !important;
}
.appleText2 a,
.appleText2 span {
color:#686E87 !important;
border: 0 !important;
}
@font-face {
font-family: 'proxima_nova';
src: url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.eot');
src: url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.woff') format('woff'),
url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.ttf') format('truetype'),
url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.svg#proxima_nova_rgregular') format('svg');
font-weight: normal;
font-style: normal;
mso-font-alt: 'Arial';
}
@font-face {
font-family: 'proxima_nova';
src: url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.eot');
src: url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.eot?#iefix') format('embedded-opentype'),
url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.woff') format('woff'),
url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.ttf') format('truetype'),
url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.svg#proxima_nova_rgbold') format('svg');
font-weight: bold;
font-style: normal;
mso-font-alt: 'Arial';
}
@font-face {
font-family: 'brandon';
src: url('https://litmus.com/fonts/Emails/brandon_reg-webfont.eot');
src: url('https://litmus.com/fonts/Emails/brandon_reg-webfont?#iefix') format('embedded-opentype'),
url('https://litmus.com/fonts/Emails/brandon_reg-webfont.woff') format('woff'),
url('https://litmus.com/fonts/Emails/brandon_reg-webfont.ttf') format('truetype'),
url('https://litmus.com/fonts/Emails/brandon_reg-webfont.svg#brandon_reg') format('svg');
font-weight: normal;
font-style: normal;
mso-font-alt: 'Arial';
}
@font-face {
font-family: 'brandon';
src: url('https://litmus.com/fonts/Emails/Brandon_bld-webfont.eot');
src: url('https://litmus.com/fonts/Emails/Brandon_bld-webfont?#iefix') format('embedded-opentype'),
url('https://litmus.com/fonts/Emails/Brandon_bld-webfont.woff') format('woff'),
url('https://litmus.com/fonts/Emails/Brandon_bld-webfont.ttf') format('truetype'),
url('https://litmus.com/fonts/Emails/Brandon_bld-webfont.svg#brandon_bold') format('svg');
font-weight: bold;
font-style: normal;
mso-font-alt: 'Arial';
}
u + .body .glist { margin-left: 0 !important; }
@media only screen and (max-width: 700px) {
.blockwrap { display:block !important; }
.text-center { text-align: center !important; }
.font36 { font-size: 36px !important; }
.lh40 { line-height: 40px !important; }
.mw450 { width: 100%; max-width: 450px !important; }
.wauto { width: auto !important; }
.w295 { width: 295px !important; }
.w100p { width: 100% !important; }
.hauto { height: auto !important; }
.h15 { height: 15px !important; }
.h20 { height: 20px !important; }
.padding15 { padding: 0 15px !important; }
.ptop15 { padding-top: 15px !important;}
.img-max {
max-width: 100% !important;
width: 100% !important;
height: auto !important;
}
u + .body .glist { margin-left: 25px !important; }
}
.link:hover { text-decoration:none !important; }
.cta-border:hover { border-bottom: 1px solid transparent !important; }
.fadeimg {
transition: 0.3s!important;
opacity: 1!important;
}
.fadeimg:hover {
transition: 0.3s!important;
opacity: 0.5!important;
}
.cta, .card-yt { transition: 0.3s !important; }
.btn-granite:hover {
transition: 0.3s !important;
background-color: #677386 !important;
border: 1px solid transparent !important;
mso-border-alt: 8px solid #677386 !important;
box-shadow: none !important;
}
.card-yt:hover {
transition: 0.3s !important;
background-color: rgba(255,255,255,.5) !important;
box-shadow: none !important;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
.webkitfont18 { font-size: 18px !important; line-height: 24px !important; }
[class="x_webkitfont18"] { font-size: 16px !important; line-height: 20px !important; }
}
</style>
<link rel="stylesheet" type="text/css" href="https://campaigns.litmus.com/_email/2019/09_sep/20190930_LL_Conference-for-All/images/tabs.css"
/>
<!--[if gte mso 9]>
<xml>
<o:OfficeDocumentSettings>
<o:AllowPNG/>
<o:PixelsPerInch>96</o:PixelsPerInch>
</o:OfficeDocumentSettings>
</xml>
<![endif]-->
</head>
<body class="body" style="padding:0; margin:0; text-align:center; background-color: #e1e7ed;">
<table role="article" aria-label="Email from Litmus" lang="en" cellpadding="0"
cellspacing="0" border="0" style="width: 100%; text-align:center; margin: 0 auto; table-layout: fixed;">
<tr>
<td>
<!-- start HIDDEN_PREVIEW_TEXT -->
<!--[if !mso]>
<! -->
<div style="display:none !important; display:none; overflow:hidden; float:left; width:0px; max-height:0px; max-width:0px; line-height:0px; visibility:hidden;">Whether you’re an expert conference mingler or one who revels in independent
learning, Litmus Live is the email conference for you. ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ </div>
<!--<![endif]-->
<!-- end HIDDEN_PREVIEW_TEXT -->
<!-- start HEADER_SECTION -->
<table role="presentation" width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="center" width="100%" bgcolor="#3c4656" valign="top" style="padding: 0px 15px;">
<table role="presentation" align="center" class="w100p" cellpadding="0" cellspacing="0"
border="0" style="width: 600px; max-width: 600px;">
<tr>
<td class="w100p" align="center" style="width: 600px; max-width: 600px;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 25px;"> </td>
</tr>
</table>
<!-- start HEADER_LOGO -->
<table role="presentation" align="center" class="w100p" cellpadding="0" cellspacing="0"
border="0" style="width: 600px; max-width: 600px;">
<tr>
<td class="w100p" align="center" style="width: 600px; max-width: 600px;">
<a href="https://pages.litmus.com/e/31032/ntent-0dynamic-content-1456url/jgp5h2/720438025/staff?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc"
target="_blank">
<img src="https://campaigns.litmus.com/_email/_global/images/logo_ll_icon-name.png"
width="275" height="70" alt="Litmus Live" style="color: #ffffff; font-family:'proxima_nova', Helvetica, Arial, sans-serif; text-align:center; font-weight:bold; font-size:36px; line-height:40px; text-decoration: none; margin: 0 auto; padding: 0;"
border="0" />
</a>
</td>
</tr>
</table>
<!-- end HEADER_LOGO -->
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 35px;"> </td>
</tr>
</table>
<h1 class="font36 lh40" style="font-family: 'brandon', Helvetica, Arial, sans-serif; font-weight: bold; font-size: 40px; line-height: 48px; color: #ffffff; text-align:center; margin:0; padding:0;">
The Email Conference For You
</h1>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 35px;"> </td>
</tr>
</table>
<a href="https://pages.litmus.com/e/31032/ntent-0dynamic-content-1456url/jgp5h4/720438025/staff?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc"
aria-hidden="true" target="_blank">
<img class="fadeimg" src="https://campaigns.litmus.com/_email/2019/09_sep/20190930_LL_Conference-for-All/images/hero.png"
width="600" alt="" style="display: block; margin: 0 auto; padding: 0; max-width: 100%;"
border="0" />
</a>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
<p style="font-family: 'proxima_nova', Helvetica, Arial, sans-serif; text-align: left; font-size: 18px; line-height: 26px; color: #ffffff; margin: 0 auto;">Litmus Live is <em>the</em> email marketing conference of the year packed full of
inspirational sessions, hands-on workshops, and one-of-a-kind networking opportunities.</p>
<table
role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- end HEADER_SECTION -->
<!-- start BODY -->
<table role="presentation" width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="center" bgcolor="#e1e7ed" valign="top" style="padding: 0px 15px;">
<table role="presentation" align="center" class="w100p" cellpadding="0" cellspacing="0"
border="0" style="width: 600px; max-width: 600px;">
<tr>
<td class="w100p" align="center" style="width: 600px; max-width: 600px;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
<p style="font-family: 'proxima_nova', Helvetica, Arial, sans-serif; text-align: left; font-size: 18px; line-height: 26px; color: #3B4656; margin: 0 auto;">With a jam-packed agenda and so many attendees, we've got something for every
#emailgeek—no matter what sort of conference attendee you are!</p>
<table
role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 30px;"> </td>
</tr>
</table>
<!-- start SECTION_FALLBACK -->
<div class="staticfallback">
<!-- start FALLBACK_Extrovert -->
<table role="presentation" class="w100p" cellpadding="0" cellspacing="0" border="0"
style="box-shadow: 0 3px 6px 1px rgba(0,0,0,0.1), 0 10px 12px -5px rgba(206,213,219,0.8); border-radius: 3px; background-color: #3C4656;">
<tr>
<td class="padding15" align="center" valign="top" style="width: 600px; max-width: 600px; padding: 0 20px;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="padding15 card-yt" align="center" valign="top" style="box-shadow: 0 3px 6px 1px rgba(0,0,0,0.1); padding: 0 15px; background-color: #ffffff;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 15px;"> </td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="center" valign="middle" width="162" height="141" bgcolor="#EEB35B"
style="vertical-align:middle;">
<img src="https://campaigns.litmus.com/_email/2019/09_sep/20190930_LL_Conference-for-All/images/icon_extrovert.png"
width="125" height="131" alt="" style="display: block; margin: 0; padding: 0;"
border="0" />
</td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 15px;"> </td>
</tr>
</table>
<h2 style="font-family:'proxima_nova', Helvetica, Arial, sans-serif; font-weight:bold; font-size:28px; line-height:34px; color:#3C4656; text-align:center; margin:0; padding:0; max-width: 450px;">
Extrovert
</h2>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 15px;"> </td>
</tr>
</table>
</td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 30px;"> </td>
</tr>
</table>
<p style="font-family:'proxima_nova', Helvetica, Arial, sans-serif; font-weight:bold; font-size:22px; line-height:30px; color:#ffffff; text-align:center; margin:0; padding:0; max-width: 450px;">You’re an extrovert and love to learn in big groups—the more voices,
the better!</p>
<table role="presentation" cellpadding="0" cellspacing="0"
border="0">
<tr>
<td style="font-size: 1px; line-height: 20px;"> </td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td bgcolor="#EEB35B" width="100" style="font-size: 1px; line-height: 2px;"> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="padding15" align="left" valign="top" style="width: 600px; max-width: 600px; padding: 0 20px;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
<ul class="glist" style="Margin:0; Margin-left: 25px; padding:0; font-family:'proxima_nova', Helvetica, Arial, sans-serif;"
type="disc">
<li style="color: #EEB35B; font-size:18px; line-height:26px; margin-bottom: 30px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
<a href="https://pages.litmus.com/e/31032/ntent-0dynamic-content-1456url/jgp5gx/720438025/staff?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc" class="link" style="color: #ffffff; font-weight:bold; text-decoration:underline;" target="_blank">Submit your email for Live Optimization</a>, see your email on the big screen, and learn from the Litmus team, some special guests, and your email peers in the audience.
</span>
</li>
<li style="color: #EEB35B; font-size:18px; line-height:26px; margin-bottom: 30px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
Focus your email learning during a <a href="https://pages.litmus.com/e/31032/ntent-0dynamic-content-1456url/jgp5gz/720438025/staff?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc" class="link" style="color: #ffffff; font-weight:bold; text-decoration:underline;" target="_blank">pre-conference workshop</a>. Exclusive to Litmus Live attendees, dig into email development or marketing strategy during these group sessions.
</span>
</li>
<li style="color: #EEB35B; font-size:18px; line-height:26px;"> <span class="appleFooter" style="color: #ffffff; font-size:18px; line-height:26px;">
Enjoy a post-conference beverage at Thursday night’s after-party and talk email with your fellow attendees.
</span>
</li>
</ul>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
</td>
</tr>
</table>
<!-- end FALLBACK_Extrovert -->
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 30px;"> </td>
</tr>
</table>
<!-- start FALLBACK_Introvert -->
<table role="presentation" class="w100p" cellpadding="0" cellspacing="0" border="0"
style="box-shadow: 0 3px 6px 1px rgba(0,0,0,0.1), 0 10px 12px -5px rgba(206,213,219,0.8); border-radius: 3px; background-color: #3C4656;">
<tr>
<td class="padding15" align="center" valign="top" style="width: 600px; max-width: 600px; padding: 0 20px;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="padding15 card-yt" align="center" valign="top" style="box-shadow: 0 3px 6px 1px rgba(0,0,0,0.1); padding: 0 15px; background-color: #ffffff;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 15px;"> </td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="center" valign="bottom" width="162" height="141" bgcolor="#EA7165"
style="vertical-align:bottom;">
<img src="https://campaigns.litmus.com/_email/2019/09_sep/20190930_LL_Conference-for-All/images/icon_introvert.png"
width="111" height="138" alt="" style="display: block; margin: 0; padding: 0;"
border="0" />
</td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 15px;"> </td>
</tr>
</table>
<h2 style="font-family:'proxima_nova', Helvetica, Arial, sans-serif; font-weight:bold; font-size:28px; line-height:34px; color:#3C4656; text-align:center; margin:0; padding:0; max-width: 450px;">
Introvert
</h2>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 15px;"> </td>
</tr>
</table>
</td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 30px;"> </td>
</tr>
</table>
<p style="font-family:'proxima_nova', Helvetica, Arial, sans-serif; font-weight:bold; font-size:22px; line-height:30px; color:#ffffff; text-align:center; margin:0; padding:0; max-width: 450px;">You’re an introvert and get the most out of conferences by learning at your
own pace. Speaking to folks 1-on-1 is your jam.</p>
<table role="presentation"
cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 20px;"> </td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td bgcolor="#EA7165" width="100" style="font-size: 1px; line-height: 2px;"> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="padding15" align="left" valign="top" style="width: 600px; max-width: 600px; padding: 0 20px;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
<ul class="glist" style="Margin:0; Margin-left: 25px; padding:0; font-family:'proxima_nova', Helvetica, Arial, sans-serif;"
type="disc">
<li style="color: #EA7165; font-size:18px; line-height:26px; margin-bottom: 30px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
Learn everything from email development to marketing strategy in small group <a href="https://pages.litmus.com/e/31032/ntent-0dynamic-content-1456url/jgp5gz/720438025/staff?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc" class="link" style="color: #ffffff; font-weight:bold; text-decoration:underline;" target="_blank">workshops</a>, only available to Litmus Live attendees.
</span>
</li>
<li style="color: #EA7165; font-size:18px; line-height:26px; margin-bottom: 30px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
Meet with speakers during a 1:1 Ask-an-Expert session to ask your burning email questions.
</span>
</li>
<li style="color: #EA7165; font-size:18px; line-height:26px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
Soak in some serious email knowledge during any one of the 28 sessions over 2 days—that’s a lot of learning!
</span>
</li>
</ul>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
</td>
</tr>
</table>
<!-- end FALLBACK_Introvert -->
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 30px;"> </td>
</tr>
</table>
<!-- start FALLBACK_Ambivert -->
<table role="presentation" class="w100p" cellpadding="0" cellspacing="0" border="0"
style="box-shadow: 0 3px 6px 1px rgba(0,0,0,0.1), 0 10px 12px -5px rgba(206,213,219,0.8); border-radius: 3px; background-color: #3C4656;">
<tr>
<td class="padding15" align="center" valign="top" style="width: 600px; max-width: 600px; padding: 0 20px;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="padding15 card-yt" align="center" valign="top" style="box-shadow: 0 3px 6px 1px rgba(0,0,0,0.1); padding: 0 15px; background-color: #ffffff;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 15px;"> </td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="center" valign="bottom" width="162" height="141" bgcolor="#60C1E3"
style="vertical-align:bottom;">
<img src="https://campaigns.litmus.com/_email/2019/09_sep/20190930_LL_Conference-for-All/images/icon_ambivert.png"
width="107" height="137" alt="" style="display: block; margin: 0; padding: 0;"
border="0" />
</td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 15px;"> </td>
</tr>
</table>
<h2 style="font-family:'proxima_nova', Helvetica, Arial, sans-serif; font-weight:bold; font-size:28px; line-height:34px; color:#3C4656; text-align:center; margin:0; padding:0; max-width: 450px;">
Ambivert
</h2>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 15px;"> </td>
</tr>
</table>
</td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 30px;"> </td>
</tr>
</table>
<p style="font-family:'proxima_nova', Helvetica, Arial, sans-serif; font-weight:bold; font-size:22px; line-height:30px; color:#ffffff; text-align:center; margin:0; padding:0; max-width: 450px;">You’re an ambivert and spend entire conferences soaking in content-laden
sessions and email chats over coffee breaks.</p>
<table role="presentation"
cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 20px;"> </td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td bgcolor="#60C1E3" width="100" style="font-size: 1px; line-height: 2px;"> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="padding15" align="left" valign="top" style="width: 600px; max-width: 600px; padding: 0 20px;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
<ul class="glist" style="Margin:0; Margin-left: 25px; padding:0; font-family:'proxima_nova', Helvetica, Arial, sans-serif;"
type="disc">
<li style="color: #60C1E3; font-size:18px; line-height:26px; margin-bottom: 30px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
With 28 sessions, pull up a chair and learn from the brightest minds in the industry.
</span>
</li>
<li style="color: #60C1E3; font-size:18px; line-height:26px; margin-bottom: 30px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
Lunch and email? Why not! Talk email with your peers during the lunch breaks and networking sessions and see what you can learn from your peers.
</span>
</li>
<li style="color: #60C1E3; font-size:18px; line-height:26px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
Get a deep dive into everything from email development to marketing strategy during one of the exclusive Litmus Live <a href="https://pages.litmus.com/e/31032/ntent-0dynamic-content-1456url/jgp5gz/720438025/staff?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc" class="link" style="color: #ffffff; font-weight:bold; text-decoration:underline;" target="_blank">workshops</a>—with limited seating you don’t want to miss this.
</span>
</li>
</ul>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
</td>
</tr>
</table>
<!-- end FALLBACK_Ambivert -->
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 20px;"> </td>
</tr>
</table>
</div>
<!-- end SECTION_FALLBACK -->
<!-- start TAB_SWITCHER -->
<div class="switchinputs">
<!--[if (!mso)&(gte IE 10)]>
<!-- -->
<input id="extrovert-layout" class="extrovert-layout" type="radio" name="layout"
style="position:absolute;visibility:hidden;display:none;">
<input id="introvert-layout" class="introvert-layout" type="radio" name="layout"
style="position:absolute;visibility:hidden;display:none;">
<input id="ambivert-layout" class="ambivert-layout" type="radio" name="layout"
style="position:absolute;visibility:hidden;display:none;">
<!--<![endif]-->
<div class="main-wrapper">
<!--[if (!mso)&(gte IE 10)]>
<!-- -->
<div class="checkswitcher" style="display:none; max-height:0; mso-hide:all;">
<!--[if !mso]>
<! -->
<div class="switchtabs" style="width: 600px; max-width: 600px;">
<label for="extrovert-layout" class="layout-buttons lay-extrovert"> <span class="icon"></span>
<span class="label-text">Extrovert</span>
</label> <span class="spacer"><!-- start MOBILE_EXTROVERT -->
<table role="presentation" width="100%" class="extrovert-mob" cellpadding="0" cellspacing="0" border="0" style="box-shadow: 0 3px 6px 1px rgba(0,0,0,0.1), 0 10px 12px -5px rgba(206,213,219,0.8); padding: 0 15px; border-radius: 3px; background-color: #3C4656; display:none;"><tr>
<td align="center" valign="top">
<table role="presentation" cellpadding="0" cellspacing="0" border="0"><tr><td style="font-size: 1px; line-height: 50px;"> </td></tr></table>
<p style="font-family:'proxima_nova', Helvetica, Arial, sans-serif; font-weight:bold; font-size:22px; line-height:30px; color:#ffffff; text-align:center; margin:0; padding:0; max-width: 450px;">
You’re an extrovert and love to learn in big groups—the more voices, the better!
</p>
<table role="presentation" cellpadding="0" cellspacing="0" border="0"><tr><td style="font-size: 1px; line-height: 20px;"> </td></tr></table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0"><tr><td bgcolor="#EEB35B" width="100" style="font-size: 1px; line-height: 2px;"> </td></tr></table>
</td></tr><tr><td align="left" style="width: 600px; max-width: 600px;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0"><tr><td style="font-size: 1px; line-height: 50px;"> </td></tr></table>
<ul class="glist" style="Margin:0; Margin-left: 25px; padding:0; font-family:'proxima_nova', Helvetica, Arial, sans-serif;" type="disc">
<li style="color: #EEB35B; font-size:18px; line-height:26px; margin-bottom: 30px;">
<span style="color: #ffffff; font-size:18px; line-height:26px;">
<a href="https://pages.litmus.com/e/31032/ntent-0dynamic-content-1456url/jgp5gx/720438025/staff?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc" class="link" style="color: #ffffff; font-weight:bold; text-decoration:underline;" target="_blank">Submit your email for Live Optimization</a>, see your email on the big screen, and learn from the Litmus team, some special guests, and your email peers in the audience.
</span>
</li>
<li style="color: #EEB35B; font-size:18px; line-height:26px; margin-bottom: 30px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
Focus your email learning during a <a href="https://pages.litmus.com/e/31032/ntent-0dynamic-content-1456url/jgp5gz/720438025/staff?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc" class="link" style="color: #ffffff; font-weight:bold; text-decoration:underline;" target="_blank">pre-conference workshop</a>. Exclusive to Litmus Live attendees, dig into email development or marketing strategy during these group sessions.
</span>
</li>
<li style="color: #EEB35B; font-size:18px; line-height:26px;"> <span class="appleFooter" style="color: #ffffff; font-size:18px; line-height:26px;">
Enjoy a post-conference beverage at Thursday night’s after-party and talk email with your fellow attendees.
</span>
</li>
</ul>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
</td>
</tr>
</table>
<!-- end MOBILE_EXTROVERT -->
</span>
<label for="introvert-layout" class="layout-buttons lay-introvert"> <span class="icon"></span>
<span class="label-text">Introvert</span>
</label> <span class="spacer"><!-- start MOBILE_INTROVERT -->
<table role="presentation" width="100%" class="introvert-mob" cellpadding="0" cellspacing="0" border="0" style="box-shadow: 0 3px 6px 1px rgba(0,0,0,0.1), 0 10px 12px -5px rgba(206,213,219,0.8); padding: 0 15px; border-radius: 3px; background-color: #3C4656; display:none;"><tr>
<td align="center" valign="top">
<table role="presentation" cellpadding="0" cellspacing="0" border="0"><tr><td style="font-size: 1px; line-height: 50px;"> </td></tr></table>
<p style="font-family:'proxima_nova', Helvetica, Arial, sans-serif; font-weight:bold; font-size:22px; line-height:30px; color:#ffffff; text-align:center; margin:0; padding:0; max-width: 450px;">
You’re an introvert and get the most out of conferences by learning at your own pace. Speaking to folks 1-on-1 is your jam.
</p>
<table role="presentation" cellpadding="0" cellspacing="0" border="0"><tr><td style="font-size: 1px; line-height: 20px;"> </td></tr></table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0"><tr><td bgcolor="#EA7165" width="100" style="font-size: 1px; line-height: 2px;"> </td></tr></table>
</td></tr><tr><td align="left" style="width: 600px; max-width: 600px;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0"><tr><td style="font-size: 1px; line-height: 50px;"> </td></tr></table>
<ul class="glist" style="Margin:0; Margin-left: 25px; padding:0; font-family:'proxima_nova', Helvetica, Arial, sans-serif;" type="disc">
<li style="color: #EA7165; font-size:18px; line-height:26px; margin-bottom: 30px;">
<span style="color: #ffffff; font-size:18px; line-height:26px;">
Learn everything from email development to marketing strategy in small group <a href="https://pages.litmus.com/e/31032/ntent-0dynamic-content-1456url/jgp5gz/720438025/staff?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc" class="link" style="color: #ffffff; font-weight:bold; text-decoration:underline;" target="_blank">workshops</a>, only available to Litmus Live attendees.
</span>
</li>
<li style="color: #EA7165; font-size:18px; line-height:26px; margin-bottom: 30px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
Meet with speakers during a 1:1 Ask-an-Expert session to ask your burning email questions.
</span>
</li>
<li style="color: #EA7165; font-size:18px; line-height:26px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
Soak in some serious email knowledge during any one of the 28 sessions over 2 days—that’s a lot of learning!
</span>
</li>
</ul>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
</td>
</tr>
</table>
<!-- end MOBILE_INTROVERT -->
</span>
<label for="ambivert-layout" class="layout-buttons lay-ambivert"> <span class="icon"></span>
<span class="label-text">Ambivert</span>
</label> <span class="spacer"><!-- start MOBILE_AMBIVERT -->
<table role="presentation" width="100%" class="ambivert-mob" cellpadding="0" cellspacing="0" border="0" style="box-shadow: 0 3px 6px 1px rgba(0,0,0,0.1), 0 10px 12px -5px rgba(206,213,219,0.8); padding: 0 15px; border-radius: 3px; background-color: #3C4656; display:none;"><tr>
<td align="center" valign="top">
<table role="presentation" cellpadding="0" cellspacing="0" border="0"><tr><td style="font-size: 1px; line-height: 50px;"> </td></tr></table>
<p style="font-family:'proxima_nova', Helvetica, Arial, sans-serif; font-weight:bold; font-size:22px; line-height:30px; color:#ffffff; text-align:center; margin:0; padding:0; max-width: 450px;">
You’re an ambivert and spend entire conferences soaking in content-laden sessions and email chats over coffee breaks.
</p>
<table role="presentation" cellpadding="0" cellspacing="0" border="0"><tr><td style="font-size: 1px; line-height: 20px;"> </td></tr></table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0"><tr><td bgcolor="#60C1E3" width="100" style="font-size: 1px; line-height: 2px;"> </td></tr></table>
</td></tr><tr><td align="left" style="width: 600px; max-width: 600px;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0"><tr><td style="font-size: 1px; line-height: 50px;"> </td></tr></table>
<ul class="glist" style="Margin:0; Margin-left: 25px; padding:0; font-family:'proxima_nova', Helvetica, Arial, sans-serif;" type="disc">
<li style="color: #60C1E3; font-size:18px; line-height:26px; margin-bottom: 30px;">
<span style="color: #ffffff; font-size:18px; line-height:26px;">
With 28 sessions, pull up a chair and learn from the brightest minds in the industry.
</span>
</li>
<li style="color: #60C1E3; font-size:18px; line-height:26px; margin-bottom: 30px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
Lunch and email? Why not! Talk email with your peers during the lunch breaks and networking sessions and see what you can learn from your peers.
</span>
</li>
<li style="color: #60C1E3; font-size:18px; line-height:26px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
Get a deep dive into everything from email development to marketing strategy during one of the exclusive Litmus Live <a href="https://pages.litmus.com/e/31032/ntent-0dynamic-content-1456url/jgp5gz/720438025/staff?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc" class="link" style="color: #ffffff; font-weight:bold; text-decoration:underline;" target="_blank">workshops</a>—with limited seating you don’t want to miss this.
</span>
</li>
</ul>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
</td>
</tr>
</table>
<!-- end MOBILE_AMBIVERT -->
</span>
</div>
<!--<![endif]-->
</div>
<!--<![endif]-->
<!--[if !mso]>
<! -->
<!-- start MODULE_EXTROVERT -->
<table role="presentation" class="padding15 w100p extrovert" cellpadding="0" cellspacing="0"
border="0" style="box-shadow: 0 3px 6px 1px rgba(0,0,0,0.1), 0 10px 12px -5px rgba(206,213,219,0.8); padding: 0 20px; border-radius: 3px; background-color: #3C4656; display:none;">
<tr>
<td align="center" valign="top" style="width: 600px; max-width: 600px;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
<p style="font-family:'proxima_nova', Helvetica, Arial, sans-serif; font-weight:bold; font-size:22px; line-height:30px; color:#ffffff; text-align:center; margin:0; padding:0; max-width: 450px;">You’re an extrovert and love to learn in big groups—the more voices,
the better!</p>
<table role="presentation" cellpadding="0" cellspacing="0"
border="0">
<tr>
<td style="font-size: 1px; line-height: 20px;"> </td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td bgcolor="#EEB35B" width="100" style="font-size: 1px; line-height: 2px;"> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="left" style="width: 600px; max-width: 600px;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
<ul class="glist" style="Margin:0; Margin-left: 25px; padding:0; font-family:'proxima_nova', Helvetica, Arial, sans-serif;"
type="disc">
<li style="color: #EEB35B; font-size:18px; line-height:26px; margin-bottom: 30px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
<a href="https://pages.litmus.com/e/31032/ntent-0dynamic-content-1456url/jgp5gx/720438025/staff?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc" class="link" style="color: #ffffff; font-weight:bold; text-decoration:underline;" target="_blank">Submit your email for Live Optimization</a>, see your email on the big screen, and learn from the Litmus team, some special guests, and your email peers in the audience.
</span>
</li>
<li style="color: #EEB35B; font-size:18px; line-height:26px; margin-bottom: 30px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
Focus your email learning during a <a href="https://pages.litmus.com/e/31032/ntent-0dynamic-content-1456url/jgp5gz/720438025/staff?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc" class="link" style="color: #ffffff; font-weight:bold; text-decoration:underline;" target="_blank">pre-conference workshop</a>. Exclusive to Litmus Live attendees, dig into email development or marketing strategy during these group sessions.
</span>
</li>
<li style="color: #EEB35B; font-size:18px; line-height:26px;"> <span class="appleFooter" style="color: #ffffff; font-size:18px; line-height:26px;">
Enjoy a post-conference beverage at Thursday night’s after-party and talk email with your fellow attendees.
</span>
</li>
</ul>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
</td>
</tr>
</table>
<!-- end MODULE_EXTROVERT -->
<!-- start MODULE_INTROVERT -->
<table role="presentation" class="padding15 w100p introvert" cellpadding="0" cellspacing="0"
border="0" style="box-shadow: 0 3px 6px 1px rgba(0,0,0,0.1), 0 10px 12px -5px rgba(206,213,219,0.8); padding: 0 20px; border-radius: 3px; background-color: #3C4656; display:none;">
<tr>
<td align="center" valign="top" style="width: 600px; max-width: 600px;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
<p style="font-family:'proxima_nova', Helvetica, Arial, sans-serif; font-weight:bold; font-size:22px; line-height:30px; color:#ffffff; text-align:center; margin:0; padding:0; max-width: 450px;">You’re an introvert and get the most out of conferences by learning at your
own pace. Speaking to folks 1-on-1 is your jam.</p>
<table role="presentation"
cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 20px;"> </td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td bgcolor="#EA7165" width="100" style="font-size: 1px; line-height: 2px;"> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="left" style="width: 600px; max-width: 600px;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
<ul class="glist" style="Margin:0; Margin-left: 25px; padding:0; font-family:'proxima_nova', Helvetica, Arial, sans-serif;"
type="disc">
<li style="color: #EA7165; font-size:18px; line-height:26px; margin-bottom: 30px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
Learn everything from email development to marketing strategy in small group <a href="https://pages.litmus.com/e/31032/ntent-0dynamic-content-1456url/jgp5gz/720438025/staff?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc" class="link" style="color: #ffffff; font-weight:bold; text-decoration:underline;" target="_blank">workshops</a>, only available to Litmus Live attendees.
</span>
</li>
<li style="color: #EA7165; font-size:18px; line-height:26px; margin-bottom: 30px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
Meet with speakers during a 1:1 Ask-an-Expert session to ask your burning email questions.
</span>
</li>
<li style="color: #EA7165; font-size:18px; line-height:26px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
Soak in some serious email knowledge during any one of the 28 sessions over 2 days—that’s a lot of learning!
</span>
</li>
</ul>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
</td>
</tr>
</table>
<!-- end MODULE_INTROVERT -->
<!-- start MODULE_AMBIVERT -->
<table role="presentation" class="padding15 w100p ambivert" cellpadding="0" cellspacing="0"
border="0" style="box-shadow: 0 3px 6px 1px rgba(0,0,0,0.1), 0 10px 12px -5px rgba(206,213,219,0.8); padding: 0 20px; border-radius: 3px; background-color: #3C4656; display:none;">
<tr>
<td align="center" valign="top" style="width: 600px; max-width: 600px;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
<p style="font-family:'proxima_nova', Helvetica, Arial, sans-serif; font-weight:bold; font-size:22px; line-height:30px; color:#ffffff; text-align:center; margin:0; padding:0; max-width: 450px;">You’re an ambivert and spend entire conferences soaking in content-laden
sessions and email chats over coffee breaks.</p>
<table role="presentation"
cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 20px;"> </td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td bgcolor="#60C1E3" width="100" style="font-size: 1px; line-height: 2px;"> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="left" style="width: 600px; max-width: 600px;">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
<ul class="glist" style="Margin:0; Margin-left: 25px; padding:0; font-family:'proxima_nova', Helvetica, Arial, sans-serif;"
type="disc">
<li style="color: #60C1E3; font-size:18px; line-height:26px; margin-bottom: 30px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
With 28 sessions, pull up a chair and learn from the brightest minds in the industry.
</span>
</li>
<li style="color: #60C1E3; font-size:18px; line-height:26px; margin-bottom: 30px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
Lunch and email? Why not! Talk email with your peers during the lunch breaks and networking sessions and see what you can learn from your peers.
</span>
</li>
<li style="color: #60C1E3; font-size:18px; line-height:26px;"> <span style="color: #ffffff; font-size:18px; line-height:26px;">
Get a deep dive into everything from email development to marketing strategy during one of the exclusive Litmus Live <a href="https://pages.litmus.com/e/31032/ntent-0dynamic-content-1456url/jgp5gz/720438025/staff?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc" class="link" style="color: #ffffff; font-weight:bold; text-decoration:underline;" target="_blank">workshops</a>—with limited seating you don’t want to miss this.
</span>
</li>
</ul>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
</td>
</tr>
</table>
<!-- end MODULE_AMBIVERT -->
<!--<![endif]-->
<!-- end TAB_SWITCHER -->
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 30px;"> </td>
</tr>
</table>
<p style="font-family: 'proxima_nova', Helvetica, Arial, sans-serif; text-align: left; font-size: 16px; line-height: 26px; color: #3B4656; margin: 0 auto;">As an added bonus, by attending any Litmus Live 2019 event, you’ll receive
session recordings and slides from <i>all</i> three of our conferences: London, Boston,
and San Francisco! And with tickets selling fast, you don’t want to miss out.</p>
<table
role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 30px;"> </td>
</tr>
</table>
<!-- start CTA_BUTTON -->
<a href="https://pages.litmus.com/e/31032/ntent-0dynamic-content-1456url/jgp5h2/720438025/staff?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc"
class="cta btn-granite" target="_blank" style="background-color:#3c4656;border-width:1px;border-style:solid;border-color:#3c4656;mso-border-alt:8px solid #3c4656;font-size:18px;color:#FFFFFF;font-family:'proxima_nova_rgregular', Proxima Nova, Helvetica, Arial, sans-serif;font-weight:bold;text-decoration:none;padding-top:15px;padding-bottom:15px;padding-right:30px;padding-left:30px;display:inline-block;mso-padding-alt:0px;box-shadow:0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);border-radius:50px !important;">Get your ticket <span aria-hidden="true">→</span>
</a>
<!-- start CTA_BUTTON -->
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 50px;"> </td>
</tr>
</table>
<a href="https://pages.litmus.com/e/31032/ntent-0dynamic-content-1456url/jgp5h4/720438025/staff?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc"
aria-hidden="true" target="_blank">
<img class="fadeimg" src="https://campaigns.litmus.com/_email/2019/09_sep/20190913_LL-London-Highlights/images/tickets.png"
width="311" alt="" style="display: block; margin: 0 auto; padding: 0; max-width: 100%;"
border="0" />
</a>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 30px;"> </td>
</tr>
</table>
<h2 style="font-family: 'brandon', Helvetica, Arial, sans-serif; font-weight: bold; font-size: 36px; line-height: 44px; color: #454F62; text-align:center; margin:0; padding:0;">
Bring Your Team and Get a 10% Discount
</h2>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 20px;"> </td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td bgcolor="#cad2df" width="82" style="font-size: 1px; line-height: 3px;"> </td>
</tr>
</table>
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 30px;"> </td>
</tr>
</table>
<p style="font-family: 'proxima_nova', Helvetica, Arial, sans-serif; text-align: left; font-size: 16px; line-height: 26px; color: #3B4656; margin: 0 auto;">Email marketing is a team sport and in honor of this, we’re offering a 10%
discount to groups of 3 or more attendees from the same company who register together.
With sessions covering email design, marketing strategy, and innovative coding
techniques, there’s something for every team member at Litmus Live.</p>
<table
role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height:30px;"> </td>
</tr>
</table>
<!-- start CTA_BUTTON -->
<a href="https://pages.litmus.com/e/31032/ntent-0dynamic-content-1456url/jgp5h4/720438025/staff?h=G84If7IySpEdUy9N5NRVfOspemRH7H_JNMGDw2Pu3vc"
class="cta btn-granite" target="_blank" style="background-color:#3c4656;border-width:1px;border-style:solid;border-color:#3c4656;mso-border-alt:8px solid #3c4656;font-size:18px;color:#FFFFFF;font-family:'proxima_nova_rgregular', Proxima Nova, Helvetica, Arial, sans-serif;font-weight:bold;text-decoration:none;padding-top:15px;padding-bottom:15px;padding-right:30px;padding-left:30px;display:inline-block;mso-padding-alt:0px;box-shadow:0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);border-radius:50px !important;">Get your team to Litmus Live <span aria-hidden="true">→</span>
</a>
<!-- start CTA_BUTTON -->
<table role="presentation" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 30px;"> </td>
</tr>
</table>
<p style="font-family: 'proxima_nova', Helvetica, Arial, sans-serif; margin: 0; font-size: 14px; line-height: 22px; text-align: left; color: #3C4656;">To redeem your discount, please purchase tickets as normal and contact us at
<a
href="mailto:conference@litmus.com?subject=I%27d%20like%20to%20bring%20my%20team%20to%20Litmus%20Live"
class="link" style="color: #3C4656; text-decoration: underline;" target="_blank">conference@litmus.com</a>. After we verify your group purchase, we'll issue the
discount as a refund through EventBrite.</p>
<table role="presentation" cellpadding="0"
cellspacing="0" border="0">
<tr>
<td style="font-size: 1px; line-height: 70px;"> </td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- end BODY -->
<!-- start FOOTER_SECTION -->
<table role="presentation" width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="center" bgcolor="#3c4656" style="padding: 0px 15px;">
<table role="presentation" class="w100p" cellpadding="0" cellspacing="0" border="0"
style="width: 600px; max-width: 600px;">
<tr>
<td align="center">
<table role="presentation" cellpadding="0" cellspacing="0" border="0">