-
Notifications
You must be signed in to change notification settings - Fork 0
/
newsletter_2016_04.html
1005 lines (968 loc) · 65.6 KB
/
newsletter_2016_04.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Newsletter Educod@r</title>
<style type="text/css">
/* Client-specific Styles */
#outlook a {
padding: 0;
}
/* Force Outlook to provide a "view in browser" menu link. */
body {
width: 100% !important;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
margin: 0;
padding: 0;
}
/* Prevent Webkit and Windows Mobile platforms from changing default font sizes, while not breaking desktop design. */
.ExternalClass {
width: 100%;
}
/* Force Hotmail to display emails at full width */
.ExternalClass,
.ExternalClass p,
.ExternalClass span,
.ExternalClass font,
.ExternalClass td,
.ExternalClass div {
line-height: 100%;
}
/* Force Hotmail to display normal line spacing. More on that: http://www.emailonacid.com/forum/viewthread/43/ */
#backgroundTable {
margin: 0;
padding: 0;
width: 100% !important;
line-height: 100% !important;
}
img {
outline: none;
text-decoration: none;
border: none;
-ms-interpolation-mode: bicubic;
}
a img {
border: none;
}
.image_fix {
display: block;
}
p {
margin: 0px 0px !important;
}
table td {
border-collapse: collapse;
}
table {
border-collapse: collapse;
mso-table-lspace: 0pt;
mso-table-rspace: 0pt;
}
/*a {color: #e95353;text-decoration: none;text-decoration:none!important;}*/
/*STYLES*/
table[class=full] {
width: 100%;
clear: both;
}
/*################################################*/
/*IPAD STYLES*/
/*################################################*/
@media only screen and (max-width: 640px) {
a[href^="tel"],
a[href^="sms"] {
text-decoration: none;
color: #ffffff;
/* or whatever your want */
pointer-events: none;
cursor: default;
}
.mobile_link a[href^="tel"],
.mobile_link a[href^="sms"] {
text-decoration: default;
color: #ffffff !important;
pointer-events: auto;
cursor: default;
}
table[class=devicewidth] {
width: 440px!important;
text-align: center!important;
}
table[class=devicewidthinner] {
width: 420px!important;
text-align: center!important;
}
table[class="sthide"] {
display: none!important;
}
img[class="bigimage"] {
width: 420px!important;
height: 219px!important;
}
img[class="col2img"] {
width: 420px!important;
height: 258px!important;
}
img[class="image-banner"] {
width: 440px!important;
height: 106px!important;
}
td[class="menu"] {
text-align: center !important;
padding: 0 0 10px 0 !important;
}
td[class="logo"] {
padding: 10px 0 5px 0!important;
margin: 0 auto !important;
}
img[class="logo"] {
padding: 0!important;
margin: 0 auto !important;
}
}
/*##############################################*/
/*IPHONE STYLES*/
/*##############################################*/
@media only screen and (max-width: 480px) {
a[href^="tel"],
a[href^="sms"] {
text-decoration: none;
color: #ffffff;
/* or whatever your want */
pointer-events: none;
cursor: default;
}
.mobile_link a[href^="tel"],
.mobile_link a[href^="sms"] {
text-decoration: default;
color: #ffffff !important;
pointer-events: auto;
cursor: default;
}
table[class=devicewidth] {
width: 280px!important;
text-align: center!important;
}
table[class=devicewidthinner] {
width: 260px!important;
text-align: center!important;
}
table[class="sthide"] {
display: none!important;
}
img[class="bigimage"] {
width: 260px!important;
height: 136px!important;
}
img[class="col2img"] {
width: 260px!important;
height: 160px!important;
}
img[class="image-banner"] {
width: 280px!important;
height: 68px!important;
}
}
</style>
</head>
<body>
<div class="block">
<!-- start of header -->
<table width="100%" bgcolor="#f6f4f5" cellpadding="0" cellspacing="0" border="0" id="backgroundTable" st-sortable="header">
<tbody>
<tr>
<td width="100%" height="10"></td>
</tr>
<tr>
<td>
<table width="580" bgcolor="#26BECC" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth" hlitebg="edit" shadow="edit">
<tbody>
<tr>
<td>
<!-- menu -->
<table width="400" cellpadding="0" cellspacing="0" border="0" align="right" class="devicewidth">
<tbody>
<tr>
<td width="400" valign="middle" style="font-family: Open Sans, Arial, sans-serif;font-size: 14px; color: #ffffff;line-height: 24px; padding: 10px 0;" align="right" class="menu" st-content="menu">
NEWSLETTER EDUCOD@R ABRIL DE 2016
</td>
<td width="20"></td>
</tr>
</tbody>
</table>
<!-- End of Menu -->
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<!-- end of header -->
</div>
<div class="block">
<!-- image + text -->
<table width="100%" bgcolor="#f6f4f5" cellpadding="0" cellspacing="0" border="0" id="backgroundTable" st-sortable="bigimage">
<tbody>
<tr>
<td>
<table bgcolor="#ffffff" width="580" align="center" cellspacing="0" cellpadding="0" border="0" class="devicewidth" modulebg="edit">
<tbody>
<tr>
<td width="100%" height="20"></td>
</tr>
<tr>
<td>
<table width="540" align="center" cellspacing="0" cellpadding="0" border="0" class="devicewidthinner">
<tbody>
<tr>
<!-- start of image -->
<td align="center">
<a target="_blank" href="#"><img width="500" border="0" height="200" alt="Imagem com logo do projeto e com o texto Educodar, aprendendo a programar" style="display:block; border:none; outline:none; text-decoration:none;" src="https://gallery.mailchimp.com/1ce4deaf127d43325641e95d9/images/c5bc39ad-4fe6-4381-a336-7c05fc6a219a.jpg"
class="bigimage"></a>
</td>
</tr>
<!-- end of image -->
<!-- Spacing -->
<tr>
<td width="100%" height="20"></td>
</tr>
<!-- Spacing -->
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
<div class="block">
<!-- start textbox-with-title -->
<table width="100%" bgcolor="#f6f4f5" cellpadding="0" cellspacing="0" border="0" id="backgroundTable" st-sortable="fulltext">
<tbody>
<tr>
<td>
<table bgcolor="#ffffff" width="580" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth" modulebg="edit">
<tbody>
<!-- Spacing -->
<tr>
<td width="100%" height="20"></td>
</tr>
<!-- Spacing -->
<tr>
<td>
<table width="540" align="center" cellpadding="0" cellspacing="0" border="0" class="devicewidthinner">
<tbody>
<!-- Title -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 18px; color: #1C4280; text-align:left;line-height: 20px;font-weight:bold;" st-title="fulltext-title">
O QUE É O EDUCODAR?
</td>
</tr>
<!-- End of Title -->
<!-- spacing -->
<tr>
<td height="20"></td>
</tr>
<!-- End of spacing -->
<!-- content -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 13px; color: #333333; text-align:justify;line-height: 24px;" st-content="fulltext-paragraph">
O Educod@r é um projeto que visa apresentar a programação para crianças e adolescentes e inserí-los neste novo mundo. Atualmente o projeto acontece dentro da TW as vezes com parceria de outras empresas, mas a ideia é que futuramente qualquer um possa
utilizar o modelo que temos e replicar em outras empresas, escolas e afins.
</td>
</tr>
<!-- End of content -->
<!-- Spacing -->
<tr>
<td width="100%" height="10"></td>
</tr>
<!-- Spacing -->
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<!-- end of textbox-with-title -->
</div>
<div class="block">
<!-- start of left image -->
<table width="100%" bgcolor="#f6f4f5" cellpadding="0" cellspacing="0" border="0" id="backgroundTable" st-sortable="leftimage">
<tbody>
<tr>
<td>
<table bgcolor="#ffffff" width="580" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth" modulebg="edit">
<tbody>
<!-- Spacing -->
<tr>
<td height="20"></td>
</tr>
<!-- Spacing -->
<tr>
<td>
<table width="540" align="center" border="0" cellpadding="0" cellspacing="0" class="devicewidthinner">
<tbody>
<tr>
<td>
<!-- start of text content table -->
<table width="200" align="left" border="0" cellpadding="0" cellspacing="0" class="devicewidthinner">
<tbody>
<!-- image -->
<tr>
<td width="200" height="210" align="center">
<img src="https://s3-sa-east-1.amazonaws.com/educodar-news2/20160405_144929.jpg" alt="Foto da primira turma de 2016 de Porto Alegre durante a primeira aula " border="0" width="180" style="display:block; border:none; outline:none; text-decoration:none;">
</td>
</tr>
</tbody>
</table>
<!-- mobile spacing -->
<table align="left" border="0" cellpadding="0" cellspacing="0" class="mobilespacing">
<tbody>
<tr>
<td width="100%" height="15" style="font-size:1px; line-height:1px; mso-line-height-rule: exactly;"> </td>
</tr>
</tbody>
</table>
<!-- mobile spacing -->
<!-- start of right column -->
<table width="330" align="right" border="0" cellpadding="0" cellspacing="0" class="devicewidthinner">
<tbody>
<!-- title -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 18px; color: #1C4280; text-align:left;line-height: 20px;font-weight:bold;" st-title="leftimage-title">
EDUCODAR EM PoA
</td>
</tr>
<!-- end of title -->
<!-- Spacing -->
<tr>
<td width="100%" height="20"></td>
</tr>
<!-- Spacing -->
<!-- content -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 13px; color: #333333; text-align:justify;line-height: 24px;" st-content="leftimage-paragraph">
<p>O Educod@r em POA é uma parceria entre PUC e TW, que é incrível e facilita muito a existência do programa.
<br> Estamos com um grupo que está trabalhando para finalizar o material didático. Para que mais gente possa ajudar, estamos trabalhando de forma distribuida na confecção deste material.
Está bem legal e funcionando!! :D
<br> A primeira turma já começou com aulas de línguas e programação. São 8 meninas e 4 meninos das escolas Mariano Beck e Nsa Senhora de Fátima
</td>
</tr>
<!-- end of content -->
<!-- Spacing -->
<tr>
<td width="100%" height="10"></td>
</tr>
</tbody>
</table>
<!-- end of right column -->
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- Spacing -->
<tr>
<td height="20"></td>
</tr>
<!-- Spacing -->
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<!-- end of left image -->
</div>
<div class="block">
<!-- start of left image -->
<table width="100%" bgcolor="#f6f4f5" cellpadding="0" cellspacing="0" border="0" id="backgroundTable" st-sortable="leftimage">
<tbody>
<tr>
<td>
<table bgcolor="#ffffff" width="580" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth" modulebg="edit">
<tbody>
<!-- Spacing -->
<tr>
<td height="20"></td>
</tr>
<!-- Spacing -->
<tr>
<td>
<table width="540" align="center" border="0" cellpadding="0" cellspacing="0" class="devicewidthinner">
<tbody>
<tr>
<td>
<!-- start of text content table -->
<table width="200" align="left" border="0" cellpadding="0" cellspacing="0" class="devicewidthinner">
<tbody>
<!-- image -->
<tr>
<td width="200" height="230" align="center">
<img src="https://lh6.googleusercontent.com/-famLLjXbO7M/U-UNYUpavUI/AAAAAAAAY2o/bgInXQxhBkg/s568-k-no/" alt="Escritório de Recife" border="0" width="180" style="display:block; border:none; outline:none; text-decoration:none;">
</td>
</tr>
</tbody>
</table>
<!-- mobile spacing -->
<table align="left" border="0" cellpadding="0" cellspacing="0" class="mobilespacing">
<tbody>
<tr>
<td width="100%" height="15" style="font-size:1px; line-height:1px; mso-line-height-rule: exactly;"> </td>
</tr>
</tbody>
</table>
<!-- mobile spacing -->
<!-- start of right column -->
<table width="330" align="right" border="0" cellpadding="0" cellspacing="0" class="devicewidthinner">
<tbody>
<!-- title -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 18px; color: #1C4280; text-align:left;line-height: 20px;font-weight:bold;" st-title="leftimage-title">
EDUCODAR EM RECIFE
</td>
</tr>
<!-- end of title -->
<!-- Spacing -->
<tr>
<td width="100%" height="20"></td>
</tr>
<!-- Spacing -->
<!-- content -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 13px; color: #333333; text-align:justify;line-height: 24px;" st-content="leftimage-paragraph">
Diego Asfora e Carlos Souza participaram de algumas reuniões com o projeto com o objetivo analisar a viabilidade de rodar uma turma do Educod@r em Recife.
<p>Se estas em Recife e tem vontade de participar, procure o Diego ou o Carlos!
</td>
</tr>
<!-- end of content -->
<!-- Spacing -->
<tr>
<td width="100%" height="10"></td>
</tr>
</tbody>
</table>
<!-- end of right column -->
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<!-- end of left image -->
</div>
<div class="block">
<!-- start of left image -->
<table width="100%" bgcolor="#f6f4f5" cellpadding="0" cellspacing="0" border="0" id="backgroundTable" st-sortable="rightimage">
<tbody>
<tr>
<td>
<table bgcolor="#ffffff" width="580" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth" modulebg="edit">
<tbody>
<!-- Spacing -->
<tr>
<td height="20"></td>
</tr>
<!-- Spacing -->
<tr>
<td>
<table width="540" align="center" border="0" cellpadding="0" cellspacing="0" class="devicewidthinner">
<tbody>
<tr>
<td>
<!-- start of text content table -->
<table width="150" align="right" border="0" cellpadding="0" cellspacing="0" class="devicewidthinner">
<tbody>
<!-- image -->
<tr>
<td width="150" height="270" align="center">
<img src="https://s3-sa-east-1.amazonaws.com/educodar-news-1/mingle-our-best-thinking.png" alt="Imagem para ilustrar a área de Como participar do projeto" border="0" width="140" style="display:block; border:none; outline:none; text-decoration:none;">
</td>
</tr>
</tbody>
</table>
<!-- mobile spacing -->
<table align="left" border="0" cellpadding="0" cellspacing="0" class="mobilespacing">
<tbody>
<tr>
<td width="100%" height="15" style="font-size:1px; line-height:1px; mso-line-height-rule: exactly;"> </td>
</tr>
</tbody>
</table>
<!-- mobile spacing -->
<!-- start of right column -->
<table width="360" align="left" border="0" cellpadding="0" cellspacing="0" class="devicewidthinner">
<tbody>
<!-- title -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 18px; color: #1C4280; text-align:left;line-height: 20px;font-weight:bold;" st-title="rightimage-title">
LEGAL, COMO FAÇO PARA PARTICIPAR?
</td>
</tr>
<!-- end of title -->
<!-- Spacing -->
<tr>
<td width="100%" height="20"></td>
</tr>
<!-- Spacing -->
<!-- content -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 13px; color: #333333; text-align:justify;line-height: 24px;" st-content="rightimage-paragraph">
O projeto está sempre precisando de pessoas dispostas a ajudar de alguma forma, qualquer ajuda é bem-vinda. Nós precisamos de pessoas que queiram dar aulas, montar materiais, e também participar da parte operacional. Nós temos um grupo no Google Groups,
se inscreva e fique por dentro.
<br>Além de ajudar uma causa super legal e apresentar um mundo totalmente novo para os alunos, você trabalha suas habilidades de coaching, apresentação, escrita de materiais e falar em
público.
</td>
</tr>
<!-- end of content -->
<!-- Spacing -->
<tr>
<td width="100%" height="10"></td>
</tr>
<tr>
<td>
<table height="30" align="left" valign="middle" border="0" cellpadding="0" cellspacing="0" class="tablet-button" st-button="edit">
<tbody>
<tr>
<td width="auto" align="center" valign="middle" height="30" style=" background-color:#26BECC; border-top-left-radius:4px; border-bottom-left-radius:4px;border-top-right-radius:4px; border-bottom-right-radius:4px; background-clip: padding-box;font-size:13px; font-family:Open Sans, arial, sans-serif; text-align:center; color:#ffffff; font-weight: 300; padding-left:18px; padding-right:18px;">
<span style="color: #ffffff; font-weight: 600;">
<a style="color: #ffffff; text-align:center;text-decoration: none;" href="https://groups.google.com/forum/#!forum/educodar">Google Groups Educod@r</a>
</span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<!-- end of right column -->
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- Spacing -->
<tr>
<td height="20"></td>
</tr>
<!-- Spacing -->
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<!-- end of left image -->
</div>
<div class="block">
</div>
<div class="block">
<!-- fulltext -->
<table width="100%" bgcolor="#f6f4f5" cellpadding="0" cellspacing="0" border="0" id="backgroundTable" st-sortable="fulltext">
<tbody>
<tr>
<td>
<table bgcolor="#ffffff" width="580" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth" modulebg="edit">
<tbody>
<!-- Spacing -->
<tr>
<td width="100%" height="10"></td>
</tr>
<!-- Spacing -->
<tr>
<td>
<table width="540" align="center" cellpadding="0" cellspacing="0" border="0" class="devicewidthinner">
<tbody>
<!-- Title -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 18px; color: #1C4280; text-align:center;line-height: 20px;font-weight:bold;" st-title="fulltext-title">
UMA PALAVRINHA DE QUEM APOIA!
</td>
</tr>
<!-- End of Title -->
<!-- spacing -->
<tr>
<td height="5"></td>
</tr>
<!-- End of spacing -->
<!-- content -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 13px; color: #333333; text-align:center;line-height: 24px;" st-content="fulltext-paragraph">
</td>
</tr>
<!-- End of content -->
<!-- Spacing -->
<tr>
<td width="100%" height="10"></td>
</tr>
<!-- Spacing -->
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<!-- end of fulltext -->
</div>
<div class="block">
<!-- start of left image -->
<table width="100%" bgcolor="#f6f4f5" cellpadding="0" cellspacing="0" border="0" id="backgroundTable" st-sortable="leftimage">
<tbody>
<tr>
<td>
<table bgcolor="#ffffff" width="580" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth" modulebg="edit">
<tbody>
<!-- Spacing -->
<tr>
<td height="20"></td>
</tr>
<!-- Spacing -->
<tr>
<td>
<table width="540" align="center" border="0" cellpadding="0" cellspacing="0" class="devicewidthinner">
<tbody>
<tr>
<td>
<!-- mobile spacing -->
<table align="left" border="0" cellpadding="0" cellspacing="0" class="mobilespacing">
<tbody>
<tr>
<td width="100%" height="15" style="font-size:1px; line-height:1px; mso-line-height-rule: exactly;"> </td>
</tr>
</tbody>
</table>
<!-- mobile spacing -->
<!-- start of right column -->
<table width="500" align="right" border="0" cellpadding="0" cellspacing="0" class="devicewidthinner">
<tbody>
<!-- title -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 18px; color: #1C4280; text-align:left;line-height: 20px;font-weight:bold;" st-title="leftimage-title">
PET INFORMÁTICA
</td>
</tr>
<!-- end of title -->
<!-- Spacing -->
<tr>
<td width="100%" height="20"></td>
</tr>
<!-- Spacing -->
<!-- content -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 13px; color: #333333; text-align:left;line-height: 20px;font-style:italic;" st-content="2col-para1">
"O projeto EduCod@r tem grande impacto na vida de seus participantes. Infelizmente, a maioria deles carece de uma orientação adequada ou estrutura propícia para o aprendizado. O projeto acaba sendo, em alguns casos, a única oportunidade de conhecerem
um realidade diferente, onde eles podem ter alguma perspectiva de futuro profissional na informática."
</td>
</tr>
<!-- end of content -->
<!-- Spacing -->
<tr>
<td width="100%" height="10"></td>
</tr>
</tbody>
</table>
<!-- end of right column -->
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- Spacing -->
<tr>
<td height="20"></td>
</tr>
<!-- Spacing -->
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<!-- end of left image -->
</div>
<div class="block">
<!-- image + text -->
<table width="100%" bgcolor="#f6f4f5" cellpadding="0" cellspacing="0" border="0" id="backgroundTable" st-sortable="bigimage">
<tbody>
<tr>
<td>
<table bgcolor="#ffffff" width="580" align="center" cellspacing="0" cellpadding="0" border="0" class="devicewidth" modulebg="edit">
<tbody>
<tr>
<td width="100%" height="30"></td>
</tr>
<tr>
<td>
<table width="540" align="center" cellspacing="0" cellpadding="0" border="0" class="devicewidthinner">
<tbody>
<!-- title -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 18px; color: #1C4280; text-align:center;line-height: 20px;font-weight:bold;" st-title="fulltext-title">
O QUE ACONTECEU DESDE A ÚLTIMA NEWSLETTER
</td>
</tr>
<!-- end of title -->
<!-- Spacing -->
<tr>
<td width="100%" height="20"></td>
</tr>
<!-- Spacing -->
<!-- content -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 13px; color: #333333; text-align:left;line-height: 24px;" st-content="rightimage-paragraph">
<ul>
<li>Começaram as aulas da primeira turma de 2016 a todo o vapor. Na segunda-feira (dia 04/04), o curso teve sua primeira aula de línguas. Na terça-feira (dia 05/04), foi da primeira aula de programação
e dia 07/04 a segunda aula de programação. Foi gratificante estar presente e ver a empolgação dos alunos.</li>
<li> Criação do mural do educodar, em que as pessoas podem colocar seus nomes nas aulas que possuem interesse em participar e também a chamada em um local de fácil acesso para os voluntários pegarem
antes das aulas.
</ul>
</td>
</tr>
<!-- end of content -->
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
<div class="block">
<!-- fulltext -->
<table width="100%" bgcolor="#f6f4f5" cellpadding="0" cellspacing="0" border="0" id="backgroundTable" st-sortable="fulltext">
<tbody>
<tr>
<td>
<table bgcolor="#ffffff" width="580" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth" modulebg="edit">
<tbody>
<!-- Spacing -->
<tr>
<td width="100%" height="30"></td>
</tr>
<!-- Spacing -->
<tr>
<td>
<table width="540" align="center" cellpadding="0" cellspacing="0" border="0" class="devicewidthinner">
<tbody>
<!-- Title -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 18px; color: #1C4280; text-align:center;line-height: 20px;font-weight:bold;" st-title="fulltext-title">
PRECISAMOS DE VOLUNTÁRIOS
</td>
</tr>
<!-- End of Title -->
<!-- spacing -->
<tr>
<td height="10"></td>
</tr>
<!-- End of spacing -->
<!-- content -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 13px; color: #333333; text-align:center;line-height: 24px;" st-content="fulltext-paragraph">
Neste momento, estamos precisando de ajuda em duas frentes de trabalho:
<br>Precisamos de voluntários para:
</td>
</tr>
<!-- End of content -->
<!-- Spacing -->
<tr>
<td width="100%" height="10"></td>
</tr>
<!-- Spacing -->
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<!-- end of fulltext -->
</div>
<div class="block">
<!-- 3-columns -->
<table width="100%" bgcolor="#f6f4f5" cellpadding="0" cellspacing="0" border="0" id="backgroundTable" st-sortable="3columns">
<tbody>
<tr>
<td>
<table bgcolor="#ffffff" width="580" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth" modulebg="edit">
<tbody>
<tr>
<td width="100%" height="20"></td>
</tr>
<tr>
<td>
<table width="540" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">
<tbody>
<tr>
<td>
<!-- col 2 -->
<table width="250" align="left" border="0" cellpadding="0" cellspacing="0" class="devicewidth">
<tbody>
<!-- image 2 -->
<tr>
<td width="250" height="128" align="center" class="devicewidth">
<img src="https://s3-sa-east-1.amazonaws.com/educodar-news-1/edit.png" alt="Imagem para ilustrar a área de Precisamos de Voluntários para ajudar nos materiais" border="0" height="128" style="display:block; border:none; outline:none; text-decoration:none;"
class="col3img">
</td>
</tr>
<!-- end of image2 -->
<tr>
<td>
<!-- start of text content table -->
<table width="250" align="center" border="0" cellpadding="0" cellspacing="0" class="devicewidthinner">
<tbody>
<!-- Spacing -->
<tr>
<td width="100%" height="15" style="font-size:1px; line-height:1px; mso-line-height-rule: exactly;"> </td>
</tr>
<!-- Spacing -->
<!-- title2 -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 18px; color: #1C4280; text-align:left;line-height: 20px;font-weight:bold;" st-title="3col-title2">
MATERIAL PARA AS AULAS
</td>
</tr>
<!-- end of title2 -->
<!-- Spacing -->
<tr>
<td width="100%" height="15" style="font-size:1px; line-height:1px; mso-line-height-rule: exactly;"> </td>
</tr>
<!-- Spacing -->
<!-- content2 -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 13px; color: #333333; text-align:left;line-height: 20px;" st-content="3col-para2">
Estamos com um grupo que está trabalhando para finalizar o material didático. Para que mais gente possa ajudar, estamos trabalhando de forma distribuida na confecção deste material. Está bem legal e funcionando!! :D
<br>Gostou e quer ajudar? Precisamos de voluntários para dar aulas, criar/revisar material de aluno e professor e ajudar organização do programa.
<br>Detalhes nesta <a href="https://docs.google.com/spreadsheets/d/1HbKeaRzjoaV37Tw13L1H8teA197NxueaPr5zXUy8Ulw/edit#gid=0">planilha</a> ou conosco em <a href="http://bit.do/educodar">http://bit.do/educodar</a>
</td>
</tr>
<!-- end of content2 -->
<!-- Spacing -->
<tr>
<td width="100%" height="15" style="font-size:1px; line-height:1px; mso-line-height-rule: exactly;"> </td>
</tr>
<!-- /Spacing -->
</tbody>
</table>
</td>
</tr>
<!-- end of text content table -->
</tbody>
</table>
<!-- end of col 2 -->
<!-- spacing -->
<table width="1" align="left" border="0" cellpadding="0" cellspacing="0" class="removeMobile">
<tbody>
<tr>
<td width="100%" height="15" style="font-size:1px; line-height:1px; mso-line-height-rule: exactly;"> </td>
</tr>
</tbody>
</table>
<!-- end of spacing -->
<!-- col 3 -->
<table width="250" align="right" border="0" cellpadding="0" cellspacing="0" class="devicewidth">
<tbody>
<!-- image3 -->
<tr>
<td width="250" height="128" align="center" class="devicewidth">
<img src="https://s3-sa-east-1.amazonaws.com/educodar-news-1/date-2.png" alt="Imagem para ilustrar a área de Precisamos de Voluntários para ajudar em atividades gerais" height="128" border="0" style="display:block; border:none; outline:none; text-decoration:none;"
class="col3img">
</td>
</tr>
<!-- end of image3 -->
<tr>
<td>
<!-- start of text content table -->
<table width="250" align="center" border="0" cellpadding="0" cellspacing="0" class="devicewidthinner">
<tbody>
<!-- Spacing -->
<tr>
<td width="100%" height="15" style="font-size:1px; line-height:1px; mso-line-height-rule: exactly;"> </td>
</tr>
<!-- Spacing -->
<!-- title -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 18px; color: #1C4280; text-align:left;line-height: 20px;font-weight:bold;" st-title="3col-title3">
PROFESSORES
</td>
</tr>
<!-- end of title -->
<!-- Spacing -->
<tr>
<td width="100%" height="15" style="font-size:1px; line-height:1px; mso-line-height-rule: exactly;"> </td>
</tr>
<!-- Spacing -->
<!-- content -->
<tr>
<td style="font-family: Open Sans, arial, sans-serif; font-size: 13px; color: #333333; text-align:left;line-height: 20px;" st-content="3col-para1">
Precisamos professores!! \o/ E para isso criamos um mural bem legal na entrada com escritório. Neste quadro qualquer um é livre para se inscrever para dar aula em qualquer dia disponível (lembrando que as aulas são em pares).
<br>Você, também pode dar uma espiada em nosso calendário e veja se pode nos ajudar em algo!
<br><a href="https://docs.google.com/spreadsheets/d/1TmEhbV4Mbp4y237T-PneWC5HSBC6a3IVasKIfwR8RV4/edit#gid=208647003">Calendário 2016</a>
</td>
</tr>
<!-- end of content -->
<!-- Spacing -->
<tr>
<td width="100%" height="15" style="font-size:1px; line-height:1px; mso-line-height-rule: exactly;"> </td>
</tr>
<!-- Spacing -->
</tbody>
</table>
</td>
</tr>
<!-- end of text content table -->
</tbody>
</table>
</td>
<!-- spacing -->
<!-- end of spacing -->
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td width="100%" height="20"></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td width="100%" height="20"></td>
</tr>
</tbody>