-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
702 lines (611 loc) · 54.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
<!doctype html>
<html style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;height: auto;min-height: 100vh;box-sizing: border-box !important;">
<head style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<meta charset="UTF-8" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<title style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">QCatUCI_landing_page</title>
<style type="text/css" styl-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;nt;">html,body{
height:100%;
}
p{
margin:10px 0;
padding:0;
}
h1,h2,h3,h4,h5,h6{
display:block;
margin:0;
padding:0;
}
img,a img{
border:0;
height:auto;
outline:none;
text-decoration:none;
}
body{
margin:0 !important;
padding:0 !important;
width:100%;
background-color:#f7f7f7;
background-position:center;
background-size:cover;
}
.mcnTextBlock:after,.mcnTextBlockInner:after{
display:table;
clear:both;
}
*{
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box !important;
}
html,body,.wrapper{
height:auto;
min-height:100vh;
}
body{
position:relative;
background-color:#f7f7f7;
background-position:center;
background-size:cover;
}
.wrapper{
display:flex;
flex-direction:column;
}
.templateSection{
display:flex;
flex-shrink:0;
justify-content:center;
}
.templateSection:last-of-type{
flex-grow:2;
min-height:1px;
}
.sectionFlexColumn{
align-items:center;
display:flex;
flex-direction:column;
width:100%;
}
a.mcnButton{
display:block;
}
.mcnImage{
vertical-align:bottom;
}
.mcnTextContent{
word-break:break-word;
flex-flow:column;
}
.mcnTextContent img{
max-width:100%;
height:auto !important;
}
.mcnDividerBlock{
table-layout:fixed !important;
}
.mcPrivacyBadge{
opacity:0.6;
}
.mcPrivacyBadge:hover{
opacity:1;
}
.mcPrivacyBadge a.privacyLink{
text-decoration:none;
}
.mcPrivacyBadge a.privacyLink:hover{
text-decoration:underline;
}
.mcnTemplatePageBanner{
position:absolute;
top:0;
left:0;
right:0;
}
.mcnPageBannerContainer{
position:relative;
display:flex;
justify-content:center;
padding:18px;
}
.mcnPageBannerContentContainer{
padding:0 24px 0 0;
}
.mcnCloseButton{
opacity:.4;
background:url(data:image/png;
base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAABGdBTUEAALGPC/xhBQAAAEVQTFRFAAAA////////////////////////////////////////////////////////AAAACwsLlpaWv7+/wMDAwcHB5+fn////js+8jgAAAA90Uk5TABkaT2lvcJi1ttny8/v+KMQKuwAAAJdJREFUKM91UuEawiAIRGdp6pZzi/d/1HDo11bd/RAFTk6QSGFdiDnH4CydYfzMHbM3H/+U+IQ0Df994QuWW8//8kvk4JjEP0itjtf962K86FQ9a6nN1LKqNktOE8uzbMybGOU4eii3imvfZal6DhR7vZastAOR8lAi6UIap4wD8KqAikO58IGwJbiJsO14UHi0+DP8+z5v3a8i3EEOD1IAAAAASUVORK5CYII=); position:absolute;
top:18px;
right:18px;
height:24px;
width:24px;
}
.mcnCloseButton:hover{
opacity:.9;
}
.sr-only{
position:absolute;
width:1px;
height:1px;
padding:0;
margin:-1px;
overflow:hidden;
clip:rect(0,0,0,0);
border:0;
}
.mcnPaymentTextContent{
min-width:284px;
}
body{
background-color:#f7f7f7;
background-image:none;
background-repeat:no-repeat;
background-position:center;
background-size:cover;
}
.templateSection{
padding-right:0px;
padding-left:0px;
}
.contentContainer{
max-width:780px;
width:100%;
flex:0 0 auto;
}
h1{
color:#222222;
font-family:Helvetica;
font-size:40px;
font-style:normal;
font-weight:bold;
line-height:150%;
letter-spacing:normal;
text-align:center;
}
h2{
color:#222222;
font-family:Helvetica;
font-size:34px;
font-style:normal;
font-weight:bold;
line-height:150%;
letter-spacing:normal;
text-align:left;
}
h3{
color:#444444;
font-family:Helvetica;
font-size:22px;
font-style:normal;
font-weight:bold;
line-height:150%;
letter-spacing:normal;
text-align:center;
}
h4{
color:#7b203e;
font-family:'Helvetica Neue', Helvetica, Arial, Verdana, sans-serif;
font-size:30px;
font-style:normal;
font-weight:bold;
line-height:125%;
letter-spacing:normal;
text-align:left;
}
.templateHeader{
background-color:#242637;
background-image:none;
background-repeat:no-repeat;
background-position:center;
background-size:cover;
border-top:0;
border-bottom:0;
padding-top:54px;
padding-bottom:0;
}
.headerContainer{
background-color:#242637;
background-image:none;
background-repeat:no-repeat;
background-position:center;
background-size:cover;
border-top:0;
border-bottom:0;
padding-top:36px;
padding-bottom:18px;
box-shadow:none;
}
.headerContainer .mcnTextContent,.headerContainer .mcnTextContent p{
color:#808080;
font-family:Helvetica;
font-size:16px;
line-height:150%;
text-align:left;
}
.headerContainer .mcnTextContent a,.headerContainer .mcnTextContent p a{
color:#00ADD8;
font-weight:normal;
text-decoration:underline;
}
.templateBody{
background-color:#242637;
background-image:none;
background-repeat:no-repeat;
background-position:center;
background-size:cover;
border-top:0;
border-bottom:0;
padding-top:0;
padding-bottom:117px;
}
.bodyContainer{
background-color:#242637;
background-image:none;
background-repeat:no-repeat;
background-position:center;
background-size:cover;
border-top:0;
border-bottom:0;
padding-top:0;
padding-bottom:45px;
box-shadow:none;
}
.bodyContainer .mcnTextContent,.bodyContainer .mcnTextContent p,.mcnTemplatePageBanner{
color:#ffffff;
font-family:'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size:18px;
line-height:150%;
text-align:center;
}
.bodyContainer .mcnTextContent a,.bodyContainer .mcnTextContent p a,.mcnTemplatePageBanner a,.mcnTemplatePageBanner p a{
color:#00ADD8;
font-weight:normal;
text-decoration:underline;
}
@media only screen and (max-width: 480px){
body,table,td,p,a,li,blockquote{
-webkit-text-size-adjust:none !important;
}
} @media only screen and (max-width: 480px){
body{
width:100% !important;
min-width:100% !important;
}
} @media only screen and (max-width: 480px){
.mcnCaptionBlockInner{
flex:0 0 auto;
}
} @media only screen and (max-width: 480px){
.mcnCaptionBlock{
flex-direction:column;
}
} @media only screen and (max-width: 480px){
.mcnVideoContainer{
width:100% !important;
}
} @media only screen and (max-width: 480px){
.mcnRetinaImage{
max-width:100% !important;
}
} @media only screen and (max-width: 480px){
.mcnTextBlockInner{
padding:9px 0 !important;
}
} @media only screen and (max-width: 480px){
.mcnImageGroupContent{
padding:9px !important;
}
} @media only screen and (max-width: 480px){
.mcnCaptionColumn{
flex-direction:column !important;
}
} @media only screen and (max-width: 480px){
.mcnSignUpFormContentContainer{
flex:auto !important;
padding-right:0 !important;
padding-left:0 !important;
}
} @media only screen and (max-width: 480px){
.mcnCaptionLeftContentInner,.mcnCaptionRightContentInner{
padding:0 9px 9px 9px !important;
}
} @media only screen and (max-width: 480px){
.mcnImageCardRightContentInner .mcnImageCardImageContent,.mcnImageCardLeftContentInner .mcnImageCardImageContent{
padding:18px 18px 0 18px !important;
}
} @media only screen and (max-width: 480px){
.mcnTextBlockInner,.mcnBoxedTextBlockInner,.mcnImageCardLeftContentInner,.mcnImageCardRightContentInner,.mcnCaptionLeftContentInner,.mcnCaptionRightContentInner{
flex-direction:column !important;
}
} @media only screen and (max-width: 480px){
.mcnCaptionLeftContentInner .mcnTextContent,.mcnCaptionRightContentInner .mcnTextContent{
padding:9px 9px 0 9px !important;
}
} @media only screen and (max-width: 480px){
.mcnImageCardTopImageContent,.mcnCaptionBlockInner .mcnCaptionTopContent:last-child .mcnTextContent{
padding-top:18px !important;
}
} @media only screen and (max-width: 480px){
.mcnImageCardBottomImageContent{
padding-bottom:9px !important;
}
} @media only screen and (max-width: 480px){
.mcnImageGroupBlockInner{
padding-top:0 !important;
padding-bottom:0 !important;
}
} @media only screen and (max-width: 480px){
.mcnImageGroupBlockOuter{
padding-top:9px !important;
padding-bottom:9px !important;
}
} @media only screen and (max-width: 480px){
.mcnTextContent,.mcnBoxedTextContentColumn{
padding-right:18px !important;
padding-left:18px !important;
}
} @media only screen and (max-width: 480px){
.mcnImageCardLeftImageContent,.mcnImageCardRightImageContent{
padding-right:18px !important;
padding-bottom:0 !important;
padding-left:18px !important;
}
} @media only screen and (max-width: 480px){
.mcpreview-image-uploader{
display:none !important;
width:100% !important;
}
} @media only screen and (max-width: 480px){
.mcnRecContentContainer--row{
flex:0 0 50% !important;
}
} @media only screen and (max-width: 480px){
.mcnRecContentContainer .mcnProductTitle,.mcnRecContentContainer .mcnButtonBlock,.mcnRecContentContainer .mcnProductPrice{
padding-left:0 !important;
padding-right:0 !important;
}
} @media only screen and (max-width: 480px){
.mcnPaymentProduct{
flex-direction:column !important;
}
} @media only screen and (max-width: 480px){
.mcnPaymentTextContent{
min-width:200px !important;
}
} @media only screen and (max-width: 480px){
.mcnPaymentGalleryImages div{
width:100% !important;
min-width:0 !important;
}
} @media only screen and (max-width: 480px){
.mcnGalleryImage:nth-last-child(2):first-child,.mcnGalleryImage:nth-last-child(2):first-child ~ .mcnGalleryImage{
height:90px !important;
min-width:55px !important;
max-width:90px !important;
}
} @media only screen and (max-width: 480px){
.mcnGalleryImage:nth-last-child(3):first-child,.mcnGalleryImage:nth-last-child(3):first-child ~ .mcnGalleryImage{
height:60px !important;
min-width:55px !important;
max-width:60px !important;
}
} @media only screen and (max-width: 480px){
.mcnGalleryImage:nth-last-child(4):first-child,.mcnGalleryImage:nth-last-child(4):first-child ~ .mcnGalleryImage{
height:60px !important;
min-width:35px !important;
}
} @media only screen and (max-width: 480px){
.mcnGalleryImage:nth-last-child(5):first-child,.mcnGalleryImage:nth-last-child(5):first-child ~ .mcnGalleryImage{
height:50px !important;
min-width:35px !important;
}
} @media only screen and (max-width: 480px){
.mcPrivacyBadge{
opacity:1;
}
} @media only screen and (max-width: 480px){
h1{
font-size:30px !important;
line-height:125% !important;
}
} @media only screen and (max-width: 480px){
h2{
font-size:26px !important;
line-height:125% !important;
}
} @media only screen and (max-width: 480px){
h3{
font-size:20px !important;
line-height:150% !important;
}
} @media only screen and (max-width: 480px){
h4{
font-size:18px !important;
line-height:150% !important;
}
} @media only screen and (max-width: 480px){
.mcnBoxedTextContentContainer .mcnTextContent,.mcnBoxedTextContentContainer .mcnTextContent p{
font-size:14px !important;
line-height:150% !important;
}
} @media only screen and (max-width: 480px){
.headerContainer .mcnTextContent,.headerContainer .mcnTextContent p{
font-size:16px !important;
line-height:150% !important;
}
} @media only screen and (max-width: 480px){
.bodyContainer .mcnTextContent,.bodyContainer .mcnTextContent p,.mcnTemplatePageBanner{
font-size:16px !important;
line-height:150% !important;
}
}</style><!--[if !mso]><!--><link href="https://fonts.googleapis.com/css?family=Roboto:400,400i,700,700i" rel="stylesheet"><!--<![endif]--><link rel="stylesheet" type="text/css" href="https://eep.io/mc-release/1.1.184ec24688de97b0fbe489013a2b851affbbbcf38/css/signup-forms/pages/common.css"></head>
<body data-template-page-bg="" style="background:#f7f7f7 none no-repeat center/cover;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;height: auto;width: 100%;background-color: #f7f7f7;background-position: center;background-size: cover;position: relative;background-image: none;background-repeat: no-repeat;min-height: 100vh;box-sizing: border-box !important;margin: 0 !important;padding: 0 !important;">
<div class="wrapper" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;height: auto;min-height: 100vh;display: flex;flex-direction: column;box-sizing: border-box !important;">
<div class="templateSection templateHeader" style="background:#242637 none no-repeat center/cover;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;display: flex;flex-shrink: 0;justify-content: center;padding-right: 0px;padding-left: 0px;background-color: #242637;background-image: none;background-repeat: no-repeat;background-position: center;background-size: cover;border-top: 0;border-bottom: 0;padding-top: 54px;padding-bottom: 0;box-sizing: border-box !important;">
<div class="headerContainer contentContainer" style="background:#242637 none no-repeat center/cover;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;max-width: 780px;width: 100%;flex: 0 0 auto;background-color: #242637;background-image: none;background-repeat: no-repeat;background-position: center;background-size: cover;border-top: 0;border-bottom: 0;padding-top: 36px;padding-bottom: 18px;box-shadow: none;box-sizing: border-box !important;"><div width="100%" class="mcnTextBlock" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextBlockInner" style="display: flex;padding: 9px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div style="width: 100%;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextContent" style="padding-top: 0;padding-right: 9px;padding-bottom: 9px;padding-left: 9px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;word-break: break-word;flex-flow: column;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: left;box-sizing: border-box !important;">
<h1 style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;display: block;margin: 0;padding: 0;color: #222222;font-family: Helvetica;font-size: 40px;font-style: normal;font-weight: bold;line-height: 150%;letter-spacing: normal;text-align: center;box-sizing: border-box !important;"><img data-file-id="803893" height="41" src="https://eep.io/mc-gallery/9fefbfdf86a0518a32ebcd209/images/7c6efff5-3c5e-47cc-8403-35fe9a1be0bc.png" style="border: 0px;width: 300px;height: 41px;margin: 0px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;outline: none;text-decoration: none;max-width: 100%;box-sizing: border-box !important;" width="300"></h1>
</div>
</div>
</div>
</div></div>
</div>
<div class="templateSection templateBody" style="background:#242637 none no-repeat center/cover;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;display: flex;flex-shrink: 0;justify-content: center;padding-right: 0px;padding-left: 0px;background-color: #242637;background-image: none;background-repeat: no-repeat;background-position: center;background-size: cover;border-top: 0;border-bottom: 0;padding-top: 0;padding-bottom: 117px;box-sizing: border-box !important;">
<div class="sectionFlexColumn" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;align-items: center;display: flex;flex-direction: column;width: 100%;box-sizing: border-box !important;">
<div class="bodyContainer contentContainer" style="background:#242637 none no-repeat center/cover;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;max-width: 780px;width: 100%;flex: 0 0 auto;background-color: #242637;background-image: none;background-repeat: no-repeat;background-position: center;background-size: cover;border-top: 0;border-bottom: 0;padding-top: 0;padding-bottom: 45px;box-shadow: none;box-sizing: border-box !important;"><div width="100%" class="mcnTextBlock" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextBlockInner" style="display: flex;padding: 9px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div style="width: 100%;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextContent" style="padding: 0px 9px 9px;color: #FFFFFF;font-size: 16px;line-height: 200%;text-align: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;word-break: break-word;flex-flow: column;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;box-sizing: border-box !important;">
<h4 style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;display: block;margin: 0;padding: 0;color: #7b203e;font-family: 'Helvetica Neue', Helvetica, Arial, Verdana, sans-serif;font-size: 30px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: normal;text-align: left;box-sizing: border-box !important;"><span style="font-size: 30px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">Hi Anteaters!</span></h4>
<p style="color: #FFFFFF;font-size: 16px;line-height: 200%;text-align: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;margin: 10px 0;padding: 0;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;box-sizing: border-box !important;">Google's claim of <strong style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">quantum supremacy</strong> made the headlines. Wait, but... <br style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<br style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
Why did they use <strong style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">cross-entropy</strong> as benchmarking? Why did they use <strong style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">iSWAP</strong> gates instead of <strong style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">Controlled-Z</strong> gates? What happened to their broken qubit? What's IBM's claim against it? If you find those questions intriguing, you are at the right place. Welcome to Quantum Computing Club at UCI (QC@UCI)!</p>
</div>
</div>
</div>
</div><div width="100%" class="mcnTextBlock" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextBlockInner" style="display: flex;padding: 9px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div style="width: 100%;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextContent" style="padding: 0px 9px 9px;color: #FFFFFF;font-size: 16px;line-height: 200%;text-align: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;word-break: break-word;flex-flow: column;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;box-sizing: border-box !important;">
<h4 style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;display: block;margin: 0;padding: 0;color: #7b203e;font-family: 'Helvetica Neue', Helvetica, Arial, Verdana, sans-serif;font-size: 30px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: normal;text-align: left;box-sizing: border-box !important;"><span style="font-size: 30px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">QC@UCI?</span></h4>
<p style="color: #FFFFFF;font-size: 16px;line-height: 200%;text-align: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;margin: 10px 0;padding: 0;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;box-sizing: border-box !important;">QC@UCI was founded by passionate undergraduate and graduate students from <strong style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">various </strong>backgrounds. From the very beginning, we aim to connect people from <strong style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">different fields</strong> and encourage everyone to <strong style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">learn something new</strong> as the inherently <strong style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">interdisciplinary</strong> nature of quantum computing and quantum information suggests. Moreover, we hope to stimulate the research and general interest towards this topic at UCI.</p>
</div>
</div>
</div>
</div><div width="100%" class="mcnTextBlock" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextBlockInner" style="display: flex;padding: 9px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div style="width: 100%;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextContent" style="padding: 0px 9px 9px;color: #FFFFFF;font-size: 16px;line-height: 200%;text-align: center;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;word-break: break-word;flex-flow: column;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;box-sizing: border-box !important;">
<h4 style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;display: block;margin: 0;padding: 0;color: #7b203e;font-family: 'Helvetica Neue', Helvetica, Arial, Verdana, sans-serif;font-size: 30px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: normal;text-align: left;box-sizing: border-box !important;"> </h4>
<p style="color: #FFFFFF;font-size: 16px;line-height: 200%;text-align: center;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;margin: 10px 0;padding: 0;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;box-sizing: border-box !important;"><span style="font-size: 24px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">B</span>ut how? We have planned 3 kinds of activities</p>
</div>
</div>
</div>
</div><div width="100%" class="mcnTextBlock" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextBlockInner" style="display: flex;padding: 9px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div style="flex: 1 0 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextContent" style="padding: 0px 9px 9px;line-height: 200%;text-align: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;word-break: break-word;flex-flow: column;color: #ffffff;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 18px;box-sizing: border-box !important;">
<div style="text-align: center;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;"><img data-file-id="803677" height="145" src="https://eep.io/mc-gallery/9fefbfdf86a0518a32ebcd209/images/32057325-6080-4398-8d78-e83b8ca34e1e.png" style="border: 0px;width: 150px;height: 145px;float: right;margin: 0px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;outline: none;text-decoration: none;max-width: 100%;box-sizing: border-box !important;" width="150"></div>
</div>
</div>
<div style="flex: 2 0 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextContent" style="padding: 0px 9px 9px;line-height: 200%;text-align: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;word-break: break-word;flex-flow: column;color: #ffffff;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 18px;box-sizing: border-box !important;">
<h3 style="text-align: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;display: block;margin: 0;padding: 0;color: #444444;font-family: Helvetica;font-size: 22px;font-style: normal;font-weight: bold;line-height: 150%;letter-spacing: normal;box-sizing: border-box !important;"><span style="color: #ADD8E6;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">Paper Discussion</span></h3>
<p dir="ltr" style="text-align: left;line-height: 200%;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;margin: 10px 0;padding: 0;color: #ffffff;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 18px;box-sizing: border-box !important;"><br style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<span style="color: #ADD8E6;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">Paper discussion sessions to keep you informed with the latest advancement.</span></p>
</div>
</div>
</div>
</div><div width="100%" class="mcnTextBlock" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextBlockInner" style="display: flex;padding: 9px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div style="flex: 1 0 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextContent" style="padding: 0px 9px 9px;line-height: 200%;text-align: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;word-break: break-word;flex-flow: column;color: #ffffff;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 18px;box-sizing: border-box !important;">
<div style="text-align: right;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;"><img data-file-id="803681" height="135" src="https://eep.io/mc-gallery/9fefbfdf86a0518a32ebcd209/images/0750c822-aaa4-478d-87c4-aa69f2cf727f.png" style="border: 0px;width: 150px;height: 135px;margin: 0px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;outline: none;text-decoration: none;max-width: 100%;box-sizing: border-box !important;" width="150"></div>
</div>
</div>
<div style="flex: 2 0 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextContent" style="padding: 0px 9px 9px;line-height: 200%;text-align: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;word-break: break-word;flex-flow: column;color: #ffffff;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 18px;box-sizing: border-box !important;">
<h3 dir="ltr" style="text-align: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;display: block;margin: 0;padding: 0;color: #444444;font-family: Helvetica;font-size: 22px;font-style: normal;font-weight: bold;line-height: 150%;letter-spacing: normal;box-sizing: border-box !important;"><span style="color: #ADD8E6;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">Presentations</span></h3>
<p dir="ltr" style="text-align: left;line-height: 200%;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;margin: 10px 0;padding: 0;color: #ffffff;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 18px;box-sizing: border-box !important;"><br style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<span style="color: #ADD8E6;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">Presentations from students, professors and industry speakers to give you a taste of QC.</span></p>
</div>
</div>
</div>
</div><div width="100%" class="mcnTextBlock" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextBlockInner" style="display: flex;padding: 9px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div style="flex: 1 0 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextContent" style="padding: 0px 9px 9px;line-height: 200%;text-align: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;word-break: break-word;flex-flow: column;color: #ffffff;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 18px;box-sizing: border-box !important;">
<div style="text-align: center;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;"><img data-file-id="803685" height="134" src="https://eep.io/mc-gallery/9fefbfdf86a0518a32ebcd209/images/535deea4-23e5-45f9-8d9d-5b6a5b164c68.png" style="width: 150px;height: 134px;margin: 0px;float: right;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;border: 0;outline: none;text-decoration: none;max-width: 100%;box-sizing: border-box !important;" width="150"></div>
</div>
</div>
<div style="flex: 2 0 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextContent" style="padding: 0px 9px 9px;line-height: 200%;text-align: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;word-break: break-word;flex-flow: column;color: #ffffff;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 18px;box-sizing: border-box !important;">
<h3 style="text-align: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;display: block;margin: 0;padding: 0;color: #444444;font-family: Helvetica;font-size: 22px;font-style: normal;font-weight: bold;line-height: 150%;letter-spacing: normal;box-sizing: border-box !important;"><span style="color: #ADD8E6;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">Projects</span></h3>
<p dir="ltr" style="text-align: left;line-height: 200%;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;margin: 10px 0;padding: 0;color: #ffffff;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 18px;box-sizing: border-box !important;"><br style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<span style="color: #ADD8E6;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">Projects will be led by experienced students. Find a project of your interest or invent your own!</span></p>
</div>
</div>
</div>
</div><div width="100%" class="mcnTextBlock" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextBlockInner" style="display: flex;padding: 9px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div style="width: 100%;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextContent" style="padding: 0px 9px 9px;color: #FFFFFF;font-size: 16px;line-height: 200%;text-align: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;word-break: break-word;flex-flow: column;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;box-sizing: border-box !important;">
<h4 style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;display: block;margin: 0;padding: 0;color: #7b203e;font-family: 'Helvetica Neue', Helvetica, Arial, Verdana, sans-serif;font-size: 30px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: normal;text-align: left;box-sizing: border-box !important;"><span style="font-size: 30px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">Stay Tuned!</span></h4>
<p style="color: #FFFFFF;font-size: 16px;line-height: 200%;text-align: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;margin: 10px 0;padding: 0;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;box-sizing: border-box !important;">Please join our <strong style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">slack</strong> workspace for more information! Whatever background you may have, as long as you find QC interesting, we look forward to your participation and contribution! <br style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<br style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
For those with QC/QI related research experience, we have something <strong style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">special</strong> for you. Please shoot us an email to find which particle is in the box.</p>
</div>
</div>
</div>
</div><div class="mcnDividerBlock" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;table-layout: fixed !important;">
<div class="mcnDividerBlockInner" style="padding: 18px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnDividerContent" style="border-top-width: 2px;border-top-style: solid;border-top-color: #EAEAEA;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;"></div>
</div>
</div><div width="100%" class="mcnTextBlock" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextBlockInner" style="display: flex;padding: 9px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div style="width: 100%;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextContent" style="padding: 0px 9px 9px;font-family: Georgia, Times, "Times New Roman", serif;font-size: 18px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;word-break: break-word;flex-flow: column;color: #ffffff;line-height: 150%;text-align: center;box-sizing: border-box !important;">
<p style="font-family: Georgia, Times, "Times New Roman", serif;font-size: 18px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;margin: 10px 0;padding: 0;color: #ffffff;line-height: 150%;text-align: center;box-sizing: border-box !important;">From the very beginning, we aim to connect people from different fields and encourage everyone to learn something new as the inherently interdisciplinary nature of quantum computing and quantum information suggests.<br style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<br style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
Whatever background you may have, as long as you find QC interesting, we look forward to your participation!<br style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
</p>
</div>
</div>
</div>
</div><div class="mcnButtonBlock mcnButtonBlockInner" style="display: flex;justify-content: center;padding-top: 0;padding-right: 18px;padding-bottom: 18px;padding-left: 18px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<a id="0" class="mcnButtonContentContainer mcnButton " title="Join our Slack!" href="https://mc.us20.list-manage.com/pages/track/click?u=9fefbfdf86a0518a32ebcd209&id=1c966ea343" target="_blank" style="font-weight: normal;letter-spacing: 1px;line-height: 100%;text-align: center;text-decoration: none;border: 2px solid #7B203E;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;background-color: #323249;box-shadow: rgba(123, 32, 62, 0.568627) 9px 9px 7px 0px;padding: 3px 23px;color: #FFFFFF;font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;font-size: 24px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;display: block;box-sizing: border-box !important;">Join our Slack!</a>
</div>
</div><div width="100%" class="mcnTextBlock" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextBlockInner" style="display: flex;padding: 9px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div style="width: 100%;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextContent" style="padding-top: 0;padding-right: 9px;padding-bottom: 9px;padding-left: 9px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;word-break: break-word;flex-flow: column;color: #ffffff;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 18px;line-height: 150%;text-align: center;box-sizing: border-box !important;">
</div>
</div>
</div>
</div><div class="mcnSignUpBlockContentContainer" style="display: flex;justify-content: center;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnSignUpFormContentContainer" style="align-items: center;justify-content: center;padding-top: 18px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextContent" data-dojo-attach-point="formContentContainer" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;word-break: break-word;flex-flow: column;color: #ffffff;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 18px;line-height: 150%;text-align: center;box-sizing: border-box !important;">
<!-- Form Fields -->
<div class="content__formFields" data-dojo-attach-point="formFieldsContainer" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<span style="font-family: 'Courier New', Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div data-dojo-type="mojo/pages-signup-forms/Loader" endpoint="https://mc.us20.list-manage.com/signup-form/settings?u=9fefbfdf86a0518a32ebcd209&id=002a72e1f0&for_preview=0"></div>
</span>
</div>
</div>
</div>
</div><div width="100%" class="mcnTextBlock" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextBlockInner" style="display: flex;padding: 9px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div style="width: 100%;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextContent" style="padding-top: 0;padding-right: 9px;padding-bottom: 9px;padding-left: 9px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;word-break: break-word;flex-flow: column;color: #ffffff;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 18px;line-height: 150%;text-align: center;box-sizing: border-box !important;">
</div>
</div>
</div>
</div><div width="100%" class="mcnTextBlock" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextBlockInner" style="display: flex;padding: 9px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div style="width: 100%;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextContent" style="padding-top: 0;padding-right: 9px;padding-bottom: 9px;padding-left: 9px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;word-break: break-word;flex-flow: column;color: #ffffff;font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 18px;line-height: 150%;text-align: center;box-sizing: border-box !important;">
</div>
</div>
</div>
</div><div width="100%" class="mcnTextBlock" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextBlockInner" style="display: flex;padding: 9px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div style="width: 100%;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div class="mcnTextContent" style="padding: 0px 9px 9px;color: #FFFFFF;font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;font-size: 26px;font-style: normal;font-weight: normal;line-height: 100%;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;word-break: break-word;flex-flow: column;text-align: center;box-sizing: border-box !important;">
<span style="font-size: 26px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">[email protected]</span>
</div>
</div>
</div>
</div><div class="mcnButtonBlock mcnButtonBlockInner" style="display: flex;justify-content: center;padding-top: 0;padding-right: 18px;padding-bottom: 18px;padding-left: 18px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<div style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box !important;">
<a id="0" class="mcnButtonContentContainer mcnButton " title="Write us an Email!" href="mailto:[email protected]" target="_blank" style="font-weight: normal;letter-spacing: 1px;line-height: 100%;text-align: center;text-decoration: none;border: 2px solid #7B203E;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;background-color: #323249;box-shadow: rgba(123, 32, 62, 0.568627) 9px 9px 7px 0px;padding: 3px 23px;color: #FFFFFF;font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;font-size: 24px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;display: block;box-sizing: border-box !important;">Write us an Email!</a>
</div>
</div></div>
</div>
</div>
</div>
<div data-dojo-type="mojo/widgets/pages/PaymentGalleryImages"></div><script type="text/javascript" src="https://eep.io/mc-release/1.1.184ec24688de97b0fbe489013a2b851affbbbcf38/js/mojo/mclandingpage.js" data-dojo-config="baseUrl: "https://eep.io/mc-release/1.1.184ec24688de97b0fbe489013a2b851affbbbcf38/js/dojo/", parseOnLoad: true, usePlainJson: true, isDebug: false"></script><script type="text/javascript" src="https://mc.us20.list-manage.com/pages/track/open?u=9fefbfdf86a0518a32ebcd209&id=0300de87e1f0" async></script></body>
</html>