wco_email 0.1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.txt +129 -0
- data/Rakefile +5 -0
- data/app/assets/config/wco_email_manifest.js +7 -0
- data/app/assets/javascript/vendor-trash/jquery-ui.min.js +13 -0
- data/app/assets/javascript/vendor-trash/jquery.fileupload.js +1482 -0
- data/app/assets/javascript/vendor-trash/jquery.iframe-transport.js +224 -0
- data/app/assets/javascript/vendor-trash/jquery.ui.widget.js +572 -0
- data/app/assets/javascript/vendor-trash/summernote-bs4.min.js +3 -0
- data/app/assets/javascript/wco_email/application.js +11 -0
- data/app/assets/javascript/wco_email/contexts.js +19 -0
- data/app/assets/javascript/wco_email/conversations.js +177 -0
- data/app/assets/javascript/wco_email/file_upload.js-trash +32 -0
- data/app/assets/javascript/wco_email/shared.js +22 -0
- data/app/assets/stylesheets/wco_email/application.scss +29 -0
- data/app/assets/stylesheets/wco_email/contexts.scss +63 -0
- data/app/assets/stylesheets/wco_email/conversations.scss +16 -0
- data/app/assets/stylesheets/wco_email/tags.scss +6 -0
- data/app/controllers/wco_email/application_controller.rb +16 -0
- data/app/controllers/wco_email/contexts_controller.rb +156 -0
- data/app/controllers/wco_email/conversations_controller.rb +129 -0
- data/app/controllers/wco_email/email_action_templates_controller.rb +77 -0
- data/app/controllers/wco_email/email_actions_controller.rb +55 -0
- data/app/controllers/wco_email/email_campaigns_controller.rb +73 -0
- data/app/controllers/wco_email/email_filters_controller.rb +72 -0
- data/app/controllers/wco_email/email_layouts_controller.rb +13 -0
- data/app/controllers/wco_email/email_templates_controller.rb +124 -0
- data/app/controllers/wco_email/message_stubs_controller.rb +14 -0
- data/app/controllers/wco_email/messages_controller.rb +28 -0
- data/app/controllers/wco_email/obfuscated_redirects_controller.rb +20 -0
- data/app/controllers/wco_email/sessions_controller.rb +19 -0
- data/app/controllers/wco_email/unsubscribes_controller.rb +40 -0
- data/app/helpers/wco_email/application_helper.rb +20 -0
- data/app/jobs/wco_email/message_intake_job.rb +54 -0
- data/app/mailers/wco_email/application_mailer.rb +98 -0
- data/app/views/202212 Mailchimp Templates/202212 1col fixed-width.html +863 -0
- data/app/views/202212 Mailchimp Templates/202212 1col full-width.html +906 -0
- data/app/views/202212 Mailchimp Templates/202212 2col fixed-width 2.html +1003 -0
- data/app/views/202212 Mailchimp Templates/202212 2col fixed-width.html +1082 -0
- data/app/views/202212 Mailchimp Templates/202212 2col full-width 2.html +1053 -0
- data/app/views/202212 Mailchimp Templates/202212 2col full-width.html +1147 -0
- data/app/views/202212 Mailchimp Templates/202212 3col fixed-width.html +1087 -0
- data/app/views/202212 Mailchimp Templates/202212 3col full-width.html +1136 -0
- data/app/views/202212 Mailchimp Templates/202212 catalog various-colors-1.html +1223 -0
- data/app/views/202212 Mailchimp Templates/202212 educate.html +1080 -0
- data/app/views/202212 Mailchimp Templates/202212 follow up.html +1001 -0
- data/app/views/202212 Mailchimp Templates/202212 make an announcement.html +1048 -0
- data/app/views/202212 Mailchimp Templates/202212 sell-a-product.html +977 -0
- data/app/views/202212 Mailchimp Templates/202212 tell a story.html +1168 -0
- data/app/views/202212 Mailchimp Templates/202212 theme art-newsletter.html +1612 -0
- data/app/views/202212 Mailchimp Templates/202212 theme caribou-xmas.html +856 -0
- data/app/views/202212 Mailchimp Templates/202212 theme colorbox.html +1027 -0
- data/app/views/202212 Mailchimp Templates/202212 theme competition-invitation.html +918 -0
- data/app/views/202212 Mailchimp Templates/202212 theme event-veerle.html +1132 -0
- data/app/views/202212 Mailchimp Templates/202212 theme fall-colors.html +1407 -0
- data/app/views/202212 Mailchimp Templates/202212 theme gift-giving.html +787 -0
- data/app/views/202212 Mailchimp Templates/202212 theme giftgiving-snowmen.html +731 -0
- data/app/views/202212 Mailchimp Templates/202212 theme heart-of-flowers.html +795 -0
- data/app/views/202212 Mailchimp Templates/202212 theme hero-card.html +915 -0
- data/app/views/202212 Mailchimp Templates/202212 theme hero-image.html +1148 -0
- data/app/views/202212 Mailchimp Templates/202212 theme monthly-contest.html +967 -0
- data/app/views/202212 Mailchimp Templates/202212 theme multiple-event.html +1189 -0
- data/app/views/202212 Mailchimp Templates/202212 theme postcard.html +914 -0
- data/app/views/202212 Mailchimp Templates/202212 theme snowy-fields.html +733 -0
- data/app/views/202212 Mailchimp Templates/202212 theme soft.html +849 -0
- data/app/views/202212 Mailchimp Templates/202212 theme sophisticated.html +1079 -0
- data/app/views/202212 Mailchimp Templates/202212 theme subtle.html +1218 -0
- data/app/views/202212 Mailchimp Templates/202212 theme ticket.html +1015 -0
- data/app/views/202212 Mailchimp Templates/202212 theme whale.html +888 -0
- data/app/views/202310 Email Templates/_acknowledgement_of_document_receipt.html.erb +23 -0
- data/app/views/202310 Email Templates/_support_ticket_created.html.erb +26 -0
- data/app/views/layouts/wco_email/application.haml +64 -0
- data/app/views/layouts/wco_email/mailbox.haml-trash +62 -0
- data/app/views/wco_email/_analytics.erb +16 -0
- data/app/views/wco_email/_main_header.haml +31 -0
- data/app/views/wco_email/_sidebar.haml +10 -0
- data/app/views/wco_email/application_mailer/_footer_unsubscribe.html.erb +24 -0
- data/app/views/wco_email/application_mailer/_header_logo.html.erb +12 -0
- data/app/views/wco_email/application_mailer/forwarder_notify.html.erb +17 -0
- data/app/views/wco_email/contexts/_form.haml +59 -0
- data/app/views/wco_email/contexts/_form_reply.haml +27 -0
- data/app/views/wco_email/contexts/_header.haml +22 -0
- data/app/views/wco_email/contexts/_index.haml +8 -0
- data/app/views/wco_email/contexts/edit.haml +8 -0
- data/app/views/wco_email/contexts/iframe_src.haml +3 -0
- data/app/views/wco_email/contexts/index.haml +51 -0
- data/app/views/wco_email/contexts/new.haml +5 -0
- data/app/views/wco_email/contexts/show.haml +34 -0
- data/app/views/wco_email/contexts/summary.csv.erb +4 -0
- data/app/views/wco_email/contexts/summary.haml +16 -0
- data/app/views/wco_email/conversations/_actions.haml +21 -0
- data/app/views/wco_email/conversations/_search.haml +14 -0
- data/app/views/wco_email/conversations/index.haml +43 -0
- data/app/views/wco_email/conversations/show.haml +27 -0
- data/app/views/wco_email/email_action_templates/_form.haml +45 -0
- data/app/views/wco_email/email_action_templates/_header.haml +8 -0
- data/app/views/wco_email/email_action_templates/edit.haml +7 -0
- data/app/views/wco_email/email_action_templates/index.haml +36 -0
- data/app/views/wco_email/email_action_templates/new.haml +9 -0
- data/app/views/wco_email/email_action_templates/show.haml +11 -0
- data/app/views/wco_email/email_actions/_form.haml +24 -0
- data/app/views/wco_email/email_actions/_form_mini.haml-trash +28 -0
- data/app/views/wco_email/email_actions/_header.haml +8 -0
- data/app/views/wco_email/email_actions/edit.haml +4 -0
- data/app/views/wco_email/email_actions/index.haml +31 -0
- data/app/views/wco_email/email_actions/new.haml +4 -0
- data/app/views/wco_email/email_actions/show.haml +0 -0
- data/app/views/wco_email/email_campaigns/_form.haml +33 -0
- data/app/views/wco_email/email_campaigns/_header.haml +5 -0
- data/app/views/wco_email/email_campaigns/edit.haml +5 -0
- data/app/views/wco_email/email_campaigns/index.haml +14 -0
- data/app/views/wco_email/email_campaigns/new.haml +5 -0
- data/app/views/wco_email/email_campaigns/show.haml +17 -0
- data/app/views/wco_email/email_filters/_form.haml +40 -0
- data/app/views/wco_email/email_filters/_header.haml +5 -0
- data/app/views/wco_email/email_filters/edit.haml +5 -0
- data/app/views/wco_email/email_filters/index.haml +48 -0
- data/app/views/wco_email/email_filters/new.haml +5 -0
- data/app/views/wco_email/email_templates/_form.haml +48 -0
- data/app/views/wco_email/email_templates/_form_mini.haml +9 -0
- data/app/views/wco_email/email_templates/_form_reply_mini.haml +8 -0
- data/app/views/wco_email/email_templates/_form_schedule_mini.haml +11 -0
- data/app/views/wco_email/email_templates/_header.haml +6 -0
- data/app/views/wco_email/email_templates/_index.haml +26 -0
- data/app/views/wco_email/email_templates/_index_expanded.haml +13 -0
- data/app/views/wco_email/email_templates/_m20221201react.html.erb +1202 -0
- data/app/views/wco_email/email_templates/_m20221222merryxmas.html.erb +766 -0
- data/app/views/wco_email/email_templates/_m202309_feedback.html.erb +1161 -0
- data/app/views/wco_email/email_templates/_m202309_ror4.html.erb +1068 -0
- data/app/views/wco_email/email_templates/_marketing_node_1.html.erb +984 -0
- data/app/views/wco_email/email_templates/_marketing_react_1.html +0 -0
- data/app/views/wco_email/email_templates/_marketing_react_2.html.erb +749 -0
- data/app/views/wco_email/email_templates/_marketing_react_3.html.erb +628 -0
- data/app/views/wco_email/email_templates/_marketing_ror_1.html +751 -0
- data/app/views/wco_email/email_templates/_marketing_ror_2.html.erb +755 -0
- data/app/views/wco_email/email_templates/_marketing_ror_3.html.erb +25 -0
- data/app/views/wco_email/email_templates/_marketing_ror_4.html.erb +25 -0
- data/app/views/wco_email/email_templates/_marketing_ror_5.html.erb +17 -0
- data/app/views/wco_email/email_templates/_marketing_wordpress_1.html +0 -0
- data/app/views/wco_email/email_templates/_marketing_wordpress_2.html +0 -0
- data/app/views/wco_email/email_templates/_meta.haml +6 -0
- data/app/views/wco_email/email_templates/_piousbox_roundborders.html.erb +1007 -0
- data/app/views/wco_email/email_templates/_piousbox_social.html.erb +181 -0
- data/app/views/wco_email/email_templates/_plain.haml +15 -0
- data/app/views/wco_email/email_templates/_rec_resume_shared_with_you.html.erb +39 -0
- data/app/views/wco_email/email_templates/_slug-1.html.erb +0 -0
- data/app/views/wco_email/email_templates/_slug-2.html.erb +0 -0
- data/app/views/wco_email/email_templates/_slug-3.html.erb +0 -0
- data/app/views/wco_email/email_templates/_tracking_footer.html.erb +13 -0
- data/app/views/wco_email/email_templates/_wasyaco_roundborders.html.erb +686 -0
- data/app/views/wco_email/email_templates/_wasyaco_social.html.erb +181 -0
- data/app/views/wco_email/email_templates/edit.haml +6 -0
- data/app/views/wco_email/email_templates/new.haml +6 -0
- data/app/views/wco_email/email_templates/show.haml +11 -0
- data/app/views/wco_email/email_templates/show_iframe.haml +2 -0
- data/app/views/wco_email/lead_action_templates/_header.haml +7 -0
- data/app/views/wco_email/lead_actions/_header.haml +8 -0
- data/app/views/wco_email/message_stubs/_index.haml +10 -0
- data/app/views/wco_email/messages/_form_reply.haml-trash +17 -0
- data/app/views/wco_email/messages/_meta.haml +30 -0
- data/app/views/wco_email/messages/show.haml +13 -0
- data/app/views/wco_email/messages/show_iframe.haml +5 -0
- data/app/views/wco_email/sessions/new.html.erb +4 -0
- data/app/views/wco_email/unsubscribes/_header.haml +4 -0
- data/app/views/wco_email/unsubscribes/_table.haml +22 -0
- data/config/initializers/assets.rb +10 -0
- data/config/routes.rb +49 -0
- data/lib/tasks/bjjcollective/sitemap.rb +50 -0
- data/lib/tasks/db_tasks.rake +12 -0
- data/lib/tasks/direct_mail_tasks.rake +35 -0
- data/lib/tasks/infinite_shelter/sitemap.rb +25 -0
- data/lib/tasks/piousbox/sitemap.rb +80 -0
- data/lib/tasks/publish2_wordpress_tasks.rake +54 -0
- data/lib/tasks/scrape_reddit_tasks.rake-bk +23 -0
- data/lib/tasks/trash/email_tasks.rake-trash +126 -0
- data/lib/tasks/trash/sitemap_tasks.rake-trash +146 -0
- data/lib/tasks/wasya_co/sitemap.rb +281 -0
- data/lib/tasks/wco_email_tasks.rake +117 -0
- data/lib/wco_email/README_email_actions.rb +7 -0
- data/lib/wco_email/README_email_contexts.rb +7 -0
- data/lib/wco_email/engine.rb +8 -0
- data/lib/wco_email.rb +19 -0
- metadata +493 -0
@@ -0,0 +1,1612 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
|
3
|
+
<head>
|
4
|
+
<!-- NAME: ART NEWSLETTER -->
|
5
|
+
<!--[if gte mso 15]>
|
6
|
+
<xml>
|
7
|
+
<o:OfficeDocumentSettings>
|
8
|
+
<o:AllowPNG/>
|
9
|
+
<o:PixelsPerInch>96</o:PixelsPerInch>
|
10
|
+
</o:OfficeDocumentSettings>
|
11
|
+
</xml>
|
12
|
+
<![endif]-->
|
13
|
+
<meta charset="UTF-8">
|
14
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
15
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
16
|
+
<title>*|MC:SUBJECT|*</title>
|
17
|
+
|
18
|
+
<style type="text/css">
|
19
|
+
p{
|
20
|
+
margin:10px 0;
|
21
|
+
padding:0;
|
22
|
+
}
|
23
|
+
table{
|
24
|
+
border-collapse:collapse;
|
25
|
+
}
|
26
|
+
h1,h2,h3,h4,h5,h6{
|
27
|
+
display:block;
|
28
|
+
margin:0;
|
29
|
+
padding:0;
|
30
|
+
}
|
31
|
+
img,a img{
|
32
|
+
border:0;
|
33
|
+
height:auto;
|
34
|
+
outline:none;
|
35
|
+
text-decoration:none;
|
36
|
+
}
|
37
|
+
body,#bodyTable,#bodyCell{
|
38
|
+
height:100%;
|
39
|
+
margin:0;
|
40
|
+
padding:0;
|
41
|
+
width:100%;
|
42
|
+
}
|
43
|
+
.mcnPreviewText{
|
44
|
+
display:none !important;
|
45
|
+
}
|
46
|
+
#outlook a{
|
47
|
+
padding:0;
|
48
|
+
}
|
49
|
+
img{
|
50
|
+
-ms-interpolation-mode:bicubic;
|
51
|
+
}
|
52
|
+
table{
|
53
|
+
mso-table-lspace:0pt;
|
54
|
+
mso-table-rspace:0pt;
|
55
|
+
}
|
56
|
+
.ReadMsgBody{
|
57
|
+
width:100%;
|
58
|
+
}
|
59
|
+
.ExternalClass{
|
60
|
+
width:100%;
|
61
|
+
}
|
62
|
+
p,a,li,td,blockquote{
|
63
|
+
mso-line-height-rule:exactly;
|
64
|
+
}
|
65
|
+
a[href^=tel],a[href^=sms]{
|
66
|
+
color:inherit;
|
67
|
+
cursor:default;
|
68
|
+
text-decoration:none;
|
69
|
+
}
|
70
|
+
p,a,li,td,body,table,blockquote{
|
71
|
+
-ms-text-size-adjust:100%;
|
72
|
+
-webkit-text-size-adjust:100%;
|
73
|
+
}
|
74
|
+
.ExternalClass,.ExternalClass p,.ExternalClass td,.ExternalClass div,.ExternalClass span,.ExternalClass font{
|
75
|
+
line-height:100%;
|
76
|
+
}
|
77
|
+
a[x-apple-data-detectors]{
|
78
|
+
color:inherit !important;
|
79
|
+
text-decoration:none !important;
|
80
|
+
font-size:inherit !important;
|
81
|
+
font-family:inherit !important;
|
82
|
+
font-weight:inherit !important;
|
83
|
+
line-height:inherit !important;
|
84
|
+
}
|
85
|
+
.templateContainer{
|
86
|
+
max-width:600px !important;
|
87
|
+
}
|
88
|
+
a.mcnButton{
|
89
|
+
display:block;
|
90
|
+
}
|
91
|
+
.mcnImage,.mcnRetinaImage{
|
92
|
+
vertical-align:bottom;
|
93
|
+
}
|
94
|
+
.mcnTextContent{
|
95
|
+
word-break:break-word;
|
96
|
+
}
|
97
|
+
.mcnTextContent img{
|
98
|
+
height:auto !important;
|
99
|
+
}
|
100
|
+
.mcnDividerBlock{
|
101
|
+
table-layout:fixed !important;
|
102
|
+
}
|
103
|
+
/*
|
104
|
+
@tab Page
|
105
|
+
@section Heading 1
|
106
|
+
@style heading 1
|
107
|
+
*/
|
108
|
+
h1{
|
109
|
+
/*@editable*/color:#FFFFFF;
|
110
|
+
/*@editable*/font-family:'Noticia Text', Georgia, 'Times New Roman', serif;
|
111
|
+
/*@editable*/font-size:48px;
|
112
|
+
/*@editable*/font-style:normal;
|
113
|
+
/*@editable*/font-weight:bold;
|
114
|
+
/*@editable*/line-height:150%;
|
115
|
+
/*@editable*/letter-spacing:normal;
|
116
|
+
/*@editable*/text-align:center;
|
117
|
+
}
|
118
|
+
/*
|
119
|
+
@tab Page
|
120
|
+
@section Heading 2
|
121
|
+
@style heading 2
|
122
|
+
*/
|
123
|
+
h2{
|
124
|
+
/*@editable*/color:#1F2F38;
|
125
|
+
/*@editable*/font-family:'Noticia Text', Georgia, 'Times New Roman', serif;
|
126
|
+
/*@editable*/font-size:48px;
|
127
|
+
/*@editable*/font-style:normal;
|
128
|
+
/*@editable*/font-weight:bold;
|
129
|
+
/*@editable*/line-height:150%;
|
130
|
+
/*@editable*/letter-spacing:normal;
|
131
|
+
/*@editable*/text-align:center;
|
132
|
+
}
|
133
|
+
/*
|
134
|
+
@tab Page
|
135
|
+
@section Heading 3
|
136
|
+
@style heading 3
|
137
|
+
*/
|
138
|
+
h3{
|
139
|
+
/*@editable*/color:#1F2F38;
|
140
|
+
/*@editable*/font-family:'Noticia Text', Georgia, 'Times New Roman', serif;
|
141
|
+
/*@editable*/font-size:36px;
|
142
|
+
/*@editable*/font-style:normal;
|
143
|
+
/*@editable*/font-weight:bold;
|
144
|
+
/*@editable*/line-height:150%;
|
145
|
+
/*@editable*/letter-spacing:normal;
|
146
|
+
/*@editable*/text-align:center;
|
147
|
+
}
|
148
|
+
/*
|
149
|
+
@tab Page
|
150
|
+
@section Heading 4
|
151
|
+
@style heading 4
|
152
|
+
*/
|
153
|
+
h4{
|
154
|
+
/*@editable*/color:#435864;
|
155
|
+
/*@editable*/font-family:'Noticia Text', Georgia, 'Times New Roman', serif;
|
156
|
+
/*@editable*/font-size:22px;
|
157
|
+
/*@editable*/font-style:italic;
|
158
|
+
/*@editable*/font-weight:normal;
|
159
|
+
/*@editable*/line-height:125%;
|
160
|
+
/*@editable*/letter-spacing:normal;
|
161
|
+
/*@editable*/text-align:left;
|
162
|
+
}
|
163
|
+
/*
|
164
|
+
@tab Header
|
165
|
+
@section Header Container Style
|
166
|
+
*/
|
167
|
+
#templateHeader{
|
168
|
+
/*@editable*/background-color:#324D5C;
|
169
|
+
/*@editable*/background-image:url("https://cdn-images.mailchimp.com/template_images/gallery/bg_muralheader.jpg");
|
170
|
+
/*@editable*/background-repeat:no-repeat;
|
171
|
+
/*@editable*/background-position:center;
|
172
|
+
/*@editable*/background-size:cover;
|
173
|
+
/*@editable*/border-top:0;
|
174
|
+
/*@editable*/border-bottom:0;
|
175
|
+
/*@editable*/padding-top:153px;
|
176
|
+
/*@editable*/padding-bottom:153px;
|
177
|
+
}
|
178
|
+
/*
|
179
|
+
@tab Header
|
180
|
+
@section Header Interior Style
|
181
|
+
*/
|
182
|
+
.headerContainer{
|
183
|
+
/*@editable*/background-color:transparent;
|
184
|
+
/*@editable*/background-image:none;
|
185
|
+
/*@editable*/background-repeat:no-repeat;
|
186
|
+
/*@editable*/background-position:center;
|
187
|
+
/*@editable*/background-size:cover;
|
188
|
+
/*@editable*/border-top:0;
|
189
|
+
/*@editable*/border-bottom:0;
|
190
|
+
/*@editable*/padding-top:0;
|
191
|
+
/*@editable*/padding-bottom:0;
|
192
|
+
}
|
193
|
+
/*
|
194
|
+
@tab Header
|
195
|
+
@section Header Text
|
196
|
+
*/
|
197
|
+
.headerContainer .mcnTextContent,.headerContainer .mcnTextContent p{
|
198
|
+
/*@editable*/color:#FFFFFF;
|
199
|
+
/*@editable*/font-family:'Noticia Text', Georgia, 'Times New Roman', serif;
|
200
|
+
/*@editable*/font-size:18px;
|
201
|
+
/*@editable*/line-height:150%;
|
202
|
+
/*@editable*/text-align:left;
|
203
|
+
}
|
204
|
+
/*
|
205
|
+
@tab Header
|
206
|
+
@section Header Link
|
207
|
+
*/
|
208
|
+
.headerContainer .mcnTextContent a,.headerContainer .mcnTextContent p a{
|
209
|
+
/*@editable*/color:#FFFFFF;
|
210
|
+
/*@editable*/font-weight:normal;
|
211
|
+
/*@editable*/text-decoration:underline;
|
212
|
+
}
|
213
|
+
/*
|
214
|
+
@tab Body
|
215
|
+
@section Body Container Style
|
216
|
+
*/
|
217
|
+
#templateBody{
|
218
|
+
/*@editable*/background-color:#FFFFFF;
|
219
|
+
/*@editable*/background-image:none;
|
220
|
+
/*@editable*/background-repeat:no-repeat;
|
221
|
+
/*@editable*/background-position:center;
|
222
|
+
/*@editable*/background-size:cover;
|
223
|
+
/*@editable*/border-top:0;
|
224
|
+
/*@editable*/border-bottom:0;
|
225
|
+
/*@editable*/padding-top:72px;
|
226
|
+
/*@editable*/padding-bottom:9px;
|
227
|
+
}
|
228
|
+
/*
|
229
|
+
@tab Body
|
230
|
+
@section Body Interior Style
|
231
|
+
*/
|
232
|
+
.bodyContainer{
|
233
|
+
/*@editable*/background-color:transparent;
|
234
|
+
/*@editable*/background-image:none;
|
235
|
+
/*@editable*/background-repeat:no-repeat;
|
236
|
+
/*@editable*/background-position:center;
|
237
|
+
/*@editable*/background-size:cover;
|
238
|
+
/*@editable*/border-top:0;
|
239
|
+
/*@editable*/border-bottom:0;
|
240
|
+
/*@editable*/padding-top:0;
|
241
|
+
/*@editable*/padding-bottom:0;
|
242
|
+
}
|
243
|
+
/*
|
244
|
+
@tab Body
|
245
|
+
@section Body Text
|
246
|
+
*/
|
247
|
+
.bodyContainer .mcnTextContent,.bodyContainer .mcnTextContent p{
|
248
|
+
/*@editable*/color:#202020;
|
249
|
+
/*@editable*/font-family:'Noticia Text', Georgia, 'Times New Roman', serif;
|
250
|
+
/*@editable*/font-size:18px;
|
251
|
+
/*@editable*/line-height:150%;
|
252
|
+
/*@editable*/text-align:left;
|
253
|
+
}
|
254
|
+
/*
|
255
|
+
@tab Body
|
256
|
+
@section Body Link
|
257
|
+
*/
|
258
|
+
.bodyContainer .mcnTextContent a,.bodyContainer .mcnTextContent p a{
|
259
|
+
/*@editable*/color:#DE5B49;
|
260
|
+
/*@editable*/font-weight:normal;
|
261
|
+
/*@editable*/text-decoration:underline;
|
262
|
+
}
|
263
|
+
/*
|
264
|
+
@tab Upper Columns
|
265
|
+
@section Upper Columns Container Style
|
266
|
+
*/
|
267
|
+
#templateUpperColumns{
|
268
|
+
/*@editable*/background-color:#FFFFFF;
|
269
|
+
/*@editable*/background-image:none;
|
270
|
+
/*@editable*/background-repeat:no-repeat;
|
271
|
+
/*@editable*/background-position:center;
|
272
|
+
/*@editable*/background-size:cover;
|
273
|
+
/*@editable*/border-top:0;
|
274
|
+
/*@editable*/border-bottom:0;
|
275
|
+
/*@editable*/padding-top:9px;
|
276
|
+
/*@editable*/padding-bottom:90px;
|
277
|
+
}
|
278
|
+
/*
|
279
|
+
@tab Upper Columns
|
280
|
+
@section Upper Columns Interior Style
|
281
|
+
*/
|
282
|
+
#templateUpperColumns .columnContainer{
|
283
|
+
/*@editable*/background-color:transparent;
|
284
|
+
/*@editable*/background-image:none;
|
285
|
+
/*@editable*/background-repeat:no-repeat;
|
286
|
+
/*@editable*/background-position:center;
|
287
|
+
/*@editable*/background-size:cover;
|
288
|
+
/*@editable*/border-top:0;
|
289
|
+
/*@editable*/border-bottom:0;
|
290
|
+
/*@editable*/padding-top:0;
|
291
|
+
/*@editable*/padding-bottom:0;
|
292
|
+
}
|
293
|
+
/*
|
294
|
+
@tab Upper Columns
|
295
|
+
@section Upper Columns Text
|
296
|
+
*/
|
297
|
+
#templateUpperColumns .columnContainer .mcnTextContent,#templateUpperColumns .columnContainer .mcnTextContent p{
|
298
|
+
/*@editable*/color:#202020;
|
299
|
+
/*@editable*/font-family:'Noticia Text', Georgia, 'Times New Roman', serif;
|
300
|
+
/*@editable*/font-size:16px;
|
301
|
+
/*@editable*/line-height:150%;
|
302
|
+
/*@editable*/text-align:left;
|
303
|
+
}
|
304
|
+
/*
|
305
|
+
@tab Upper Columns
|
306
|
+
@section Upper Columns Link
|
307
|
+
*/
|
308
|
+
#templateUpperColumns .columnContainer .mcnTextContent a,#templateUpperColumns .columnContainer .mcnTextContent p a{
|
309
|
+
/*@editable*/color:#DE5B49;
|
310
|
+
/*@editable*/font-weight:normal;
|
311
|
+
/*@editable*/text-decoration:underline;
|
312
|
+
}
|
313
|
+
/*
|
314
|
+
@tab Lower Columns
|
315
|
+
@section Lower Columns Container Style
|
316
|
+
*/
|
317
|
+
#templateLowerColumns{
|
318
|
+
/*@editable*/background-color:#CDDCE4;
|
319
|
+
/*@editable*/background-image:url("https://cdn-images.mailchimp.com/template_images/gallery/bg_muralbody.jpg");
|
320
|
+
/*@editable*/background-repeat:no-repeat;
|
321
|
+
/*@editable*/background-position:center;
|
322
|
+
/*@editable*/background-size:cover;
|
323
|
+
/*@editable*/border-top:0;
|
324
|
+
/*@editable*/border-bottom:0;
|
325
|
+
/*@editable*/padding-top:63px;
|
326
|
+
/*@editable*/padding-bottom:63px;
|
327
|
+
}
|
328
|
+
/*
|
329
|
+
@tab Lower Columns
|
330
|
+
@section Lower Columns Interior Style
|
331
|
+
*/
|
332
|
+
#templateLowerColumns .columnContainer{
|
333
|
+
/*@editable*/background-color:transparent;
|
334
|
+
/*@editable*/background-image:none;
|
335
|
+
/*@editable*/background-repeat:no-repeat;
|
336
|
+
/*@editable*/background-position:center;
|
337
|
+
/*@editable*/background-size:cover;
|
338
|
+
/*@editable*/border-top:0;
|
339
|
+
/*@editable*/border-bottom:0;
|
340
|
+
/*@editable*/padding-top:0;
|
341
|
+
/*@editable*/padding-bottom:0;
|
342
|
+
}
|
343
|
+
/*
|
344
|
+
@tab Lower Columns
|
345
|
+
@section Lower Column Section Header Text
|
346
|
+
*/
|
347
|
+
.lowerColumnHeaderContainer .mcnTextContent,.lowerColumnHeaderContainer .mcnTextContent p{
|
348
|
+
/*@editable*/color:#202020;
|
349
|
+
/*@editable*/font-family:'Noticia Text', Georgia, 'Times New Roman', serif;
|
350
|
+
/*@editable*/font-size:18px;
|
351
|
+
/*@editable*/line-height:150%;
|
352
|
+
/*@editable*/text-align:left;
|
353
|
+
}
|
354
|
+
/*
|
355
|
+
@tab Lower Columns
|
356
|
+
@section Lower Column Section Header Link
|
357
|
+
*/
|
358
|
+
.lowerColumnHeaderContainer .mcnTextContent a,.lowerColumnHeaderContainer .mcnTextContent p a{
|
359
|
+
/*@editable*/color:#DE5B49;
|
360
|
+
/*@editable*/font-weight:normal;
|
361
|
+
/*@editable*/text-decoration:underline;
|
362
|
+
}
|
363
|
+
/*
|
364
|
+
@tab Lower Columns
|
365
|
+
@section Lower Columns Text
|
366
|
+
*/
|
367
|
+
#templateLowerColumns .columnContainer .mcnTextContent,#templateLowerColumns .columnContainer .mcnTextContent p{
|
368
|
+
/*@editable*/color:#202020;
|
369
|
+
/*@editable*/font-family:'Noticia Text', Georgia, 'Times New Roman', serif;
|
370
|
+
/*@editable*/font-size:18px;
|
371
|
+
/*@editable*/line-height:150%;
|
372
|
+
/*@editable*/text-align:left;
|
373
|
+
}
|
374
|
+
/*
|
375
|
+
@tab Lower Columns
|
376
|
+
@section Lower Columns Link
|
377
|
+
*/
|
378
|
+
#templateLowerColumns .columnContainer .mcnTextContent a,#templateLowerColumns .columnContainer .mcnTextContent p a{
|
379
|
+
/*@editable*/color:#DE5B49;
|
380
|
+
/*@editable*/font-weight:normal;
|
381
|
+
/*@editable*/text-decoration:underline;
|
382
|
+
}
|
383
|
+
/*
|
384
|
+
@tab Footer
|
385
|
+
@section Footer Style
|
386
|
+
*/
|
387
|
+
#templateFooter{
|
388
|
+
/*@editable*/background-color:#324D5C;
|
389
|
+
/*@editable*/background-image:none;
|
390
|
+
/*@editable*/background-repeat:no-repeat;
|
391
|
+
/*@editable*/background-position:center;
|
392
|
+
/*@editable*/background-size:cover;
|
393
|
+
/*@editable*/border-top:0;
|
394
|
+
/*@editable*/border-bottom:0;
|
395
|
+
/*@editable*/padding-top:90px;
|
396
|
+
/*@editable*/padding-bottom:90px;
|
397
|
+
}
|
398
|
+
/*
|
399
|
+
@tab Footer
|
400
|
+
@section Footer Interior Style
|
401
|
+
*/
|
402
|
+
.footerContainer{
|
403
|
+
/*@editable*/background-color:transparent;
|
404
|
+
/*@editable*/background-image:none;
|
405
|
+
/*@editable*/background-repeat:no-repeat;
|
406
|
+
/*@editable*/background-position:center;
|
407
|
+
/*@editable*/background-size:cover;
|
408
|
+
/*@editable*/border-top:0;
|
409
|
+
/*@editable*/border-bottom:0;
|
410
|
+
/*@editable*/padding-top:0;
|
411
|
+
/*@editable*/padding-bottom:0;
|
412
|
+
}
|
413
|
+
/*
|
414
|
+
@tab Footer
|
415
|
+
@section Footer Text
|
416
|
+
*/
|
417
|
+
.footerContainer .mcnTextContent,.footerContainer .mcnTextContent p{
|
418
|
+
/*@editable*/color:#FFFFFF;
|
419
|
+
/*@editable*/font-family:Helvetica;
|
420
|
+
/*@editable*/font-size:12px;
|
421
|
+
/*@editable*/line-height:150%;
|
422
|
+
/*@editable*/text-align:center;
|
423
|
+
}
|
424
|
+
/*
|
425
|
+
@tab Footer
|
426
|
+
@section Footer Link
|
427
|
+
*/
|
428
|
+
.footerContainer .mcnTextContent a,.footerContainer .mcnTextContent p a{
|
429
|
+
/*@editable*/color:#FFFFFF;
|
430
|
+
/*@editable*/font-weight:normal;
|
431
|
+
/*@editable*/text-decoration:underline;
|
432
|
+
}
|
433
|
+
@media only screen and (max-width: 480px){
|
434
|
+
.columnWrapper{
|
435
|
+
max-width:100% !important;
|
436
|
+
width:100% !important;
|
437
|
+
}
|
438
|
+
|
439
|
+
} @media only screen and (max-width: 480px){
|
440
|
+
body,table,td,p,a,li,blockquote{
|
441
|
+
-webkit-text-size-adjust:none !important;
|
442
|
+
}
|
443
|
+
|
444
|
+
} @media only screen and (max-width: 480px){
|
445
|
+
body{
|
446
|
+
width:100% !important;
|
447
|
+
min-width:100% !important;
|
448
|
+
}
|
449
|
+
|
450
|
+
} @media only screen and (max-width: 480px){
|
451
|
+
.mcnRetinaImage{
|
452
|
+
max-width:100% !important;
|
453
|
+
}
|
454
|
+
|
455
|
+
} @media only screen and (max-width: 480px){
|
456
|
+
.mcnImage{
|
457
|
+
width:100% !important;
|
458
|
+
}
|
459
|
+
|
460
|
+
} @media only screen and (max-width: 480px){
|
461
|
+
.mcnCartContainer,.mcnCaptionTopContent,.mcnRecContentContainer,.mcnCaptionBottomContent,.mcnTextContentContainer,.mcnBoxedTextContentContainer,.mcnImageGroupContentContainer,.mcnCaptionLeftTextContentContainer,.mcnCaptionRightTextContentContainer,.mcnCaptionLeftImageContentContainer,.mcnCaptionRightImageContentContainer,.mcnImageCardLeftTextContentContainer,.mcnImageCardRightTextContentContainer,.mcnImageCardLeftImageContentContainer,.mcnImageCardRightImageContentContainer{
|
462
|
+
max-width:100% !important;
|
463
|
+
width:100% !important;
|
464
|
+
}
|
465
|
+
|
466
|
+
} @media only screen and (max-width: 480px){
|
467
|
+
.mcnBoxedTextContentContainer{
|
468
|
+
min-width:100% !important;
|
469
|
+
}
|
470
|
+
|
471
|
+
} @media only screen and (max-width: 480px){
|
472
|
+
.mcnImageGroupContent{
|
473
|
+
padding:9px !important;
|
474
|
+
}
|
475
|
+
|
476
|
+
} @media only screen and (max-width: 480px){
|
477
|
+
.mcnCaptionLeftContentOuter .mcnTextContent,.mcnCaptionRightContentOuter .mcnTextContent{
|
478
|
+
padding-top:9px !important;
|
479
|
+
}
|
480
|
+
|
481
|
+
} @media only screen and (max-width: 480px){
|
482
|
+
.mcnImageCardTopImageContent,.mcnCaptionBottomContent:last-child .mcnCaptionBottomImageContent,.mcnCaptionBlockInner .mcnCaptionTopContent:last-child .mcnTextContent{
|
483
|
+
padding-top:18px !important;
|
484
|
+
}
|
485
|
+
|
486
|
+
} @media only screen and (max-width: 480px){
|
487
|
+
.mcnImageCardBottomImageContent{
|
488
|
+
padding-bottom:9px !important;
|
489
|
+
}
|
490
|
+
|
491
|
+
} @media only screen and (max-width: 480px){
|
492
|
+
.mcnImageGroupBlockInner{
|
493
|
+
padding-top:0 !important;
|
494
|
+
padding-bottom:0 !important;
|
495
|
+
}
|
496
|
+
|
497
|
+
} @media only screen and (max-width: 480px){
|
498
|
+
.mcnImageGroupBlockOuter{
|
499
|
+
padding-top:9px !important;
|
500
|
+
padding-bottom:9px !important;
|
501
|
+
}
|
502
|
+
|
503
|
+
} @media only screen and (max-width: 480px){
|
504
|
+
.mcnTextContent,.mcnBoxedTextContentColumn{
|
505
|
+
padding-right:18px !important;
|
506
|
+
padding-left:18px !important;
|
507
|
+
}
|
508
|
+
|
509
|
+
} @media only screen and (max-width: 480px){
|
510
|
+
.mcnImageCardLeftImageContent,.mcnImageCardRightImageContent{
|
511
|
+
padding-right:18px !important;
|
512
|
+
padding-bottom:0 !important;
|
513
|
+
padding-left:18px !important;
|
514
|
+
}
|
515
|
+
|
516
|
+
} @media only screen and (max-width: 480px){
|
517
|
+
.mcpreview-image-uploader{
|
518
|
+
display:none !important;
|
519
|
+
width:100% !important;
|
520
|
+
}
|
521
|
+
|
522
|
+
} @media only screen and (max-width: 480px){
|
523
|
+
/*
|
524
|
+
@tab Mobile Styles
|
525
|
+
@section Heading 1
|
526
|
+
*/
|
527
|
+
h1{
|
528
|
+
/*@editable*/font-size:36px !important;
|
529
|
+
/*@editable*/line-height:125% !important;
|
530
|
+
}
|
531
|
+
|
532
|
+
} @media only screen and (max-width: 480px){
|
533
|
+
/*
|
534
|
+
@tab Mobile Styles
|
535
|
+
@section Heading 2
|
536
|
+
*/
|
537
|
+
h2{
|
538
|
+
/*@editable*/font-size:30px !important;
|
539
|
+
/*@editable*/line-height:125% !important;
|
540
|
+
}
|
541
|
+
|
542
|
+
} @media only screen and (max-width: 480px){
|
543
|
+
/*
|
544
|
+
@tab Mobile Styles
|
545
|
+
@section Heading 3
|
546
|
+
*/
|
547
|
+
h3{
|
548
|
+
/*@editable*/font-size:26px !important;
|
549
|
+
/*@editable*/line-height:150% !important;
|
550
|
+
}
|
551
|
+
|
552
|
+
} @media only screen and (max-width: 480px){
|
553
|
+
/*
|
554
|
+
@tab Mobile Styles
|
555
|
+
@section Heading 4
|
556
|
+
*/
|
557
|
+
h4{
|
558
|
+
/*@editable*/font-size:22px !important;
|
559
|
+
/*@editable*/line-height:150% !important;
|
560
|
+
}
|
561
|
+
|
562
|
+
} @media only screen and (max-width: 480px){
|
563
|
+
/*
|
564
|
+
@tab Mobile Styles
|
565
|
+
@section Boxed Text
|
566
|
+
*/
|
567
|
+
.mcnBoxedTextContentContainer .mcnTextContent,.mcnBoxedTextContentContainer .mcnTextContent p{
|
568
|
+
/*@editable*/font-size:14px !important;
|
569
|
+
/*@editable*/line-height:150% !important;
|
570
|
+
}
|
571
|
+
|
572
|
+
} @media only screen and (max-width: 480px){
|
573
|
+
/*
|
574
|
+
@tab Mobile Styles
|
575
|
+
@section Header Text
|
576
|
+
*/
|
577
|
+
.headerContainer .mcnTextContent,.headerContainer .mcnTextContent p{
|
578
|
+
/*@editable*/font-size:16px !important;
|
579
|
+
/*@editable*/line-height:150% !important;
|
580
|
+
}
|
581
|
+
|
582
|
+
} @media only screen and (max-width: 480px){
|
583
|
+
/*
|
584
|
+
@tab Mobile Styles
|
585
|
+
@section Body Text
|
586
|
+
*/
|
587
|
+
.bodyContainer .mcnTextContent,.bodyContainer .mcnTextContent p{
|
588
|
+
/*@editable*/font-size:16px !important;
|
589
|
+
/*@editable*/line-height:150% !important;
|
590
|
+
}
|
591
|
+
|
592
|
+
} @media only screen and (max-width: 480px){
|
593
|
+
/*
|
594
|
+
@tab Mobile Styles
|
595
|
+
@section Upper Column Text
|
596
|
+
*/
|
597
|
+
#templateUpperColumns .columnContainer .mcnTextContent,#templateUpperColumns .columnContainer .mcnTextContent p{
|
598
|
+
/*@editable*/font-size:16px !important;
|
599
|
+
/*@editable*/line-height:150% !important;
|
600
|
+
}
|
601
|
+
|
602
|
+
} @media only screen and (max-width: 480px){
|
603
|
+
/*
|
604
|
+
@tab Mobile Styles
|
605
|
+
@section Lower Column Section Header Text
|
606
|
+
*/
|
607
|
+
.lowerColumnHeaderContainer .mcnTextContent,.lowerColumnHeaderContainer .mcnTextContent p{
|
608
|
+
/*@editable*/font-size:16px !important;
|
609
|
+
/*@editable*/line-height:150% !important;
|
610
|
+
}
|
611
|
+
|
612
|
+
} @media only screen and (max-width: 480px){
|
613
|
+
/*
|
614
|
+
@tab Mobile Styles
|
615
|
+
@section Lower Column Text
|
616
|
+
*/
|
617
|
+
#templateLowerColumns .columnContainer .mcnTextContent,#templateLowerColumns .columnContainer .mcnTextContent p{
|
618
|
+
/*@editable*/font-size:16px !important;
|
619
|
+
/*@editable*/line-height:150% !important;
|
620
|
+
}
|
621
|
+
|
622
|
+
} @media only screen and (max-width: 480px){
|
623
|
+
/*
|
624
|
+
@tab Mobile Styles
|
625
|
+
@section Footer Text
|
626
|
+
*/
|
627
|
+
.footerContainer .mcnTextContent,.footerContainer .mcnTextContent p{
|
628
|
+
/*@editable*/font-size:14px !important;
|
629
|
+
/*@editable*/line-height:150% !important;
|
630
|
+
}
|
631
|
+
|
632
|
+
}</style></head>
|
633
|
+
<body>
|
634
|
+
<!--*|IF:MC_PREVIEW_TEXT|*-->
|
635
|
+
<!--[if !gte mso 9]><!----><span class="mcnPreviewText" style="display:none; font-size:0px; line-height:0px; max-height:0px; max-width:0px; opacity:0; overflow:hidden; visibility:hidden; mso-hide:all;">*|MC_PREVIEW_TEXT|*</span>
|
636
|
+
<!--<![endif]-->
|
637
|
+
<!--*|END:IF|*-->
|
638
|
+
<center>
|
639
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="bodyTable">
|
640
|
+
<tr>
|
641
|
+
<td align="center" valign="top" id="bodyCell">
|
642
|
+
<!-- BEGIN TEMPLATE // -->
|
643
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
644
|
+
<tr>
|
645
|
+
<td align="center" valign="top" id="templateHeader" data-template-container>
|
646
|
+
<!--[if (gte mso 9)|(IE)]>
|
647
|
+
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
|
648
|
+
<tr>
|
649
|
+
<td align="center" valign="top" width="600" style="width:600px;">
|
650
|
+
<![endif]-->
|
651
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
|
652
|
+
<tr>
|
653
|
+
<td valign="top" class="headerContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnImageBlock" style="min-width:100%;">
|
654
|
+
<tbody class="mcnImageBlockOuter">
|
655
|
+
<tr>
|
656
|
+
<td valign="top" style="padding:9px" class="mcnImageBlockInner">
|
657
|
+
<table align="left" width="100%" border="0" cellpadding="0" cellspacing="0" class="mcnImageContentContainer" style="min-width:100%;">
|
658
|
+
<tbody><tr>
|
659
|
+
<td class="mcnImageContent" valign="top" style="padding-right: 9px; padding-left: 9px; padding-top: 0; padding-bottom: 0; text-align:center;">
|
660
|
+
|
661
|
+
|
662
|
+
<img align="center" alt="Art Biz" src="https://cdn-images.mailchimp.com/template_images/gallery/artbizlogo.png" width="400" style="max-width:400px; padding-bottom: 0; display: inline !important; vertical-align: bottom;" class="mcnImage">
|
663
|
+
|
664
|
+
|
665
|
+
</td>
|
666
|
+
</tr>
|
667
|
+
</tbody></table>
|
668
|
+
</td>
|
669
|
+
</tr>
|
670
|
+
</tbody>
|
671
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
672
|
+
<tbody class="mcnTextBlockOuter">
|
673
|
+
<tr>
|
674
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
675
|
+
<!--[if mso]>
|
676
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
677
|
+
<tr>
|
678
|
+
<![endif]-->
|
679
|
+
|
680
|
+
<!--[if mso]>
|
681
|
+
<td valign="top" width="600" style="width:600px;">
|
682
|
+
<![endif]-->
|
683
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
684
|
+
<tbody><tr>
|
685
|
+
|
686
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
687
|
+
|
688
|
+
<h1>Street Artist Showcase</h1>
|
689
|
+
</td>
|
690
|
+
</tr>
|
691
|
+
</tbody></table>
|
692
|
+
<!--[if mso]>
|
693
|
+
</td>
|
694
|
+
<![endif]-->
|
695
|
+
|
696
|
+
<!--[if mso]>
|
697
|
+
</tr>
|
698
|
+
</table>
|
699
|
+
<![endif]-->
|
700
|
+
</td>
|
701
|
+
</tr>
|
702
|
+
</tbody>
|
703
|
+
</table></td>
|
704
|
+
</tr>
|
705
|
+
</table>
|
706
|
+
<!--[if (gte mso 9)|(IE)]>
|
707
|
+
</td>
|
708
|
+
</tr>
|
709
|
+
</table>
|
710
|
+
<![endif]-->
|
711
|
+
</td>
|
712
|
+
</tr>
|
713
|
+
<tr>
|
714
|
+
<td align="center" valign="top" id="templateBody" data-template-container>
|
715
|
+
<!--[if (gte mso 9)|(IE)]>
|
716
|
+
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
|
717
|
+
<tr>
|
718
|
+
<td align="center" valign="top" width="600" style="width:600px;">
|
719
|
+
<![endif]-->
|
720
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
|
721
|
+
<tr>
|
722
|
+
<td valign="top" class="bodyContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
723
|
+
<tbody class="mcnTextBlockOuter">
|
724
|
+
<tr>
|
725
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
726
|
+
<!--[if mso]>
|
727
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
728
|
+
<tr>
|
729
|
+
<![endif]-->
|
730
|
+
|
731
|
+
<!--[if mso]>
|
732
|
+
<td valign="top" width="600" style="width:600px;">
|
733
|
+
<![endif]-->
|
734
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
735
|
+
<tbody><tr>
|
736
|
+
|
737
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
738
|
+
|
739
|
+
Art is an expression of the soul. Art Biz is here to document and advocate for those artists that seek cultural revolution by bettering our streets with their design. Check out some of the up-and-coming artists, as well as a showcase of the latest pieces to spring up around the city.
|
740
|
+
</td>
|
741
|
+
</tr>
|
742
|
+
</tbody></table>
|
743
|
+
<!--[if mso]>
|
744
|
+
</td>
|
745
|
+
<![endif]-->
|
746
|
+
|
747
|
+
<!--[if mso]>
|
748
|
+
</tr>
|
749
|
+
</table>
|
750
|
+
<![endif]-->
|
751
|
+
</td>
|
752
|
+
</tr>
|
753
|
+
</tbody>
|
754
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnDividerBlock" style="min-width:100%;">
|
755
|
+
<tbody class="mcnDividerBlockOuter">
|
756
|
+
<tr>
|
757
|
+
<td class="mcnDividerBlockInner" style="min-width: 100%; padding: 54px 18px 45px;">
|
758
|
+
<table class="mcnDividerContent" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width: 100%;border-top: 2px solid #DE5B49;">
|
759
|
+
<tbody><tr>
|
760
|
+
<td>
|
761
|
+
<span></span>
|
762
|
+
</td>
|
763
|
+
</tr>
|
764
|
+
</tbody></table>
|
765
|
+
<!--
|
766
|
+
<td class="mcnDividerBlockInner" style="padding: 18px;">
|
767
|
+
<hr class="mcnDividerContent" style="border-bottom-color:none; border-left-color:none; border-right-color:none; border-bottom-width:0; border-left-width:0; border-right-width:0; margin-top:0; margin-right:0; margin-bottom:0; margin-left:0;" />
|
768
|
+
-->
|
769
|
+
</td>
|
770
|
+
</tr>
|
771
|
+
</tbody>
|
772
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
773
|
+
<tbody class="mcnTextBlockOuter">
|
774
|
+
<tr>
|
775
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
776
|
+
<!--[if mso]>
|
777
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
778
|
+
<tr>
|
779
|
+
<![endif]-->
|
780
|
+
|
781
|
+
<!--[if mso]>
|
782
|
+
<td valign="top" width="600" style="width:600px;">
|
783
|
+
<![endif]-->
|
784
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
785
|
+
<tbody><tr>
|
786
|
+
|
787
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
788
|
+
|
789
|
+
<h2>Meet a Street Artist</h2>
|
790
|
+
</td>
|
791
|
+
</tr>
|
792
|
+
</tbody></table>
|
793
|
+
<!--[if mso]>
|
794
|
+
</td>
|
795
|
+
<![endif]-->
|
796
|
+
|
797
|
+
<!--[if mso]>
|
798
|
+
</tr>
|
799
|
+
</table>
|
800
|
+
<![endif]-->
|
801
|
+
</td>
|
802
|
+
</tr>
|
803
|
+
</tbody>
|
804
|
+
</table></td>
|
805
|
+
</tr>
|
806
|
+
</table>
|
807
|
+
<!--[if (gte mso 9)|(IE)]>
|
808
|
+
</td>
|
809
|
+
</tr>
|
810
|
+
</table>
|
811
|
+
<![endif]-->
|
812
|
+
</td>
|
813
|
+
</tr>
|
814
|
+
<tr>
|
815
|
+
<td align="center" valign="top" id="templateUpperColumns" data-template-container>
|
816
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
|
817
|
+
<tr>
|
818
|
+
<td valign="top">
|
819
|
+
<!--[if (gte mso 9)|(IE)]>
|
820
|
+
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
|
821
|
+
<tr>
|
822
|
+
<td align="center" valign="top" width="200" style="width:200px;">
|
823
|
+
<![endif]-->
|
824
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="200" class="columnWrapper">
|
825
|
+
<tr>
|
826
|
+
<td valign="top" class="columnContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnCaptionBlock">
|
827
|
+
<tbody class="mcnCaptionBlockOuter">
|
828
|
+
<tr>
|
829
|
+
<td class="mcnCaptionBlockInner" valign="top" style="padding:9px;">
|
830
|
+
|
831
|
+
|
832
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" class="mcnCaptionBottomContent">
|
833
|
+
<tbody><tr>
|
834
|
+
<td class="mcnCaptionBottomImageContent" align="center" valign="top" style="padding:0 9px 9px 9px;">
|
835
|
+
|
836
|
+
|
837
|
+
|
838
|
+
<img alt="Darla Grey" src="https://cdn-images.mailchimp.com/template_images/gallery/artist_darla.jpg" width="164" style="max-width:448px;" class="mcnImage">
|
839
|
+
|
840
|
+
|
841
|
+
</td>
|
842
|
+
</tr>
|
843
|
+
<tr>
|
844
|
+
<td class="mcnTextContent" valign="top" style="padding:0 9px 0 9px;" width="164">
|
845
|
+
<h4>Darla Grey</h4>
|
846
|
+
</td>
|
847
|
+
</tr>
|
848
|
+
</tbody></table>
|
849
|
+
|
850
|
+
|
851
|
+
|
852
|
+
|
853
|
+
|
854
|
+
</td>
|
855
|
+
</tr>
|
856
|
+
</tbody>
|
857
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
858
|
+
<tbody class="mcnTextBlockOuter">
|
859
|
+
<tr>
|
860
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
861
|
+
<!--[if mso]>
|
862
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
863
|
+
<tr>
|
864
|
+
<![endif]-->
|
865
|
+
|
866
|
+
<!--[if mso]>
|
867
|
+
<td valign="top" width="200" style="width:200px;">
|
868
|
+
<![endif]-->
|
869
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
870
|
+
<tbody><tr>
|
871
|
+
|
872
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
873
|
+
|
874
|
+
Darla has been practicing graffiti since she was 6. Her personality shows in her affinity for colorful pieces. Her latest work can be seen in the Dandy Street Tunnel.
|
875
|
+
</td>
|
876
|
+
</tr>
|
877
|
+
</tbody></table>
|
878
|
+
<!--[if mso]>
|
879
|
+
</td>
|
880
|
+
<![endif]-->
|
881
|
+
|
882
|
+
<!--[if mso]>
|
883
|
+
</tr>
|
884
|
+
</table>
|
885
|
+
<![endif]-->
|
886
|
+
</td>
|
887
|
+
</tr>
|
888
|
+
</tbody>
|
889
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
890
|
+
<tbody class="mcnTextBlockOuter">
|
891
|
+
<tr>
|
892
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
893
|
+
<!--[if mso]>
|
894
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
895
|
+
<tr>
|
896
|
+
<![endif]-->
|
897
|
+
|
898
|
+
<!--[if mso]>
|
899
|
+
<td valign="top" width="200" style="width:200px;">
|
900
|
+
<![endif]-->
|
901
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
902
|
+
<tbody><tr>
|
903
|
+
|
904
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
905
|
+
|
906
|
+
<a href="http://www.mailchimp.com" target="_blank">read more >></a>
|
907
|
+
</td>
|
908
|
+
</tr>
|
909
|
+
</tbody></table>
|
910
|
+
<!--[if mso]>
|
911
|
+
</td>
|
912
|
+
<![endif]-->
|
913
|
+
|
914
|
+
<!--[if mso]>
|
915
|
+
</tr>
|
916
|
+
</table>
|
917
|
+
<![endif]-->
|
918
|
+
</td>
|
919
|
+
</tr>
|
920
|
+
</tbody>
|
921
|
+
</table></td>
|
922
|
+
</tr>
|
923
|
+
</table>
|
924
|
+
<!--[if (gte mso 9)|(IE)]>
|
925
|
+
</td>
|
926
|
+
<td align="center" valign="top" width="200" style="width:200px;">
|
927
|
+
<![endif]-->
|
928
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="200" class="columnWrapper">
|
929
|
+
<tr>
|
930
|
+
<td valign="top" class="columnContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnCaptionBlock">
|
931
|
+
<tbody class="mcnCaptionBlockOuter">
|
932
|
+
<tr>
|
933
|
+
<td class="mcnCaptionBlockInner" valign="top" style="padding:9px;">
|
934
|
+
|
935
|
+
|
936
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" class="mcnCaptionBottomContent">
|
937
|
+
<tbody><tr>
|
938
|
+
<td class="mcnCaptionBottomImageContent" align="center" valign="top" style="padding:0 9px 9px 9px;">
|
939
|
+
|
940
|
+
|
941
|
+
|
942
|
+
<img alt="Justin Greene" src="https://cdn-images.mailchimp.com/template_images/gallery/artist_justin.jpg" width="164" style="max-width:448px;" class="mcnImage">
|
943
|
+
|
944
|
+
|
945
|
+
</td>
|
946
|
+
</tr>
|
947
|
+
<tr>
|
948
|
+
<td class="mcnTextContent" valign="top" style="padding:0 9px 0 9px;" width="164">
|
949
|
+
<h4>Justin Greene</h4>
|
950
|
+
</td>
|
951
|
+
</tr>
|
952
|
+
</tbody></table>
|
953
|
+
|
954
|
+
|
955
|
+
|
956
|
+
|
957
|
+
|
958
|
+
</td>
|
959
|
+
</tr>
|
960
|
+
</tbody>
|
961
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
962
|
+
<tbody class="mcnTextBlockOuter">
|
963
|
+
<tr>
|
964
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
965
|
+
<!--[if mso]>
|
966
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
967
|
+
<tr>
|
968
|
+
<![endif]-->
|
969
|
+
|
970
|
+
<!--[if mso]>
|
971
|
+
<td valign="top" width="200" style="width:200px;">
|
972
|
+
<![endif]-->
|
973
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
974
|
+
<tbody><tr>
|
975
|
+
|
976
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
977
|
+
|
978
|
+
After finding inspiration while backpacking in Nepal, Justin started his paint mixing business, JG Paints. You can find his most recent piece behind La Bar on 5th.
|
979
|
+
</td>
|
980
|
+
</tr>
|
981
|
+
</tbody></table>
|
982
|
+
<!--[if mso]>
|
983
|
+
</td>
|
984
|
+
<![endif]-->
|
985
|
+
|
986
|
+
<!--[if mso]>
|
987
|
+
</tr>
|
988
|
+
</table>
|
989
|
+
<![endif]-->
|
990
|
+
</td>
|
991
|
+
</tr>
|
992
|
+
</tbody>
|
993
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
994
|
+
<tbody class="mcnTextBlockOuter">
|
995
|
+
<tr>
|
996
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
997
|
+
<!--[if mso]>
|
998
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
999
|
+
<tr>
|
1000
|
+
<![endif]-->
|
1001
|
+
|
1002
|
+
<!--[if mso]>
|
1003
|
+
<td valign="top" width="200" style="width:200px;">
|
1004
|
+
<![endif]-->
|
1005
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
1006
|
+
<tbody><tr>
|
1007
|
+
|
1008
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
1009
|
+
|
1010
|
+
<a href="http://www.mailchimp.com" target="_blank">read more >></a>
|
1011
|
+
</td>
|
1012
|
+
</tr>
|
1013
|
+
</tbody></table>
|
1014
|
+
<!--[if mso]>
|
1015
|
+
</td>
|
1016
|
+
<![endif]-->
|
1017
|
+
|
1018
|
+
<!--[if mso]>
|
1019
|
+
</tr>
|
1020
|
+
</table>
|
1021
|
+
<![endif]-->
|
1022
|
+
</td>
|
1023
|
+
</tr>
|
1024
|
+
</tbody>
|
1025
|
+
</table></td>
|
1026
|
+
</tr>
|
1027
|
+
</table>
|
1028
|
+
<!--[if (gte mso 9)|(IE)]>
|
1029
|
+
</td>
|
1030
|
+
<td align="center" valign="top" width="200" style="width:200px;">
|
1031
|
+
<![endif]-->
|
1032
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="200" class="columnWrapper">
|
1033
|
+
<tr>
|
1034
|
+
<td valign="top" class="columnContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnCaptionBlock">
|
1035
|
+
<tbody class="mcnCaptionBlockOuter">
|
1036
|
+
<tr>
|
1037
|
+
<td class="mcnCaptionBlockInner" valign="top" style="padding:9px;">
|
1038
|
+
|
1039
|
+
|
1040
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" class="mcnCaptionBottomContent">
|
1041
|
+
<tbody><tr>
|
1042
|
+
<td class="mcnCaptionBottomImageContent" align="center" valign="top" style="padding:0 9px 9px 9px;">
|
1043
|
+
|
1044
|
+
|
1045
|
+
|
1046
|
+
<img alt="Dee Smith" src="https://cdn-images.mailchimp.com/template_images/gallery/artist_dee.jpg" width="164" style="max-width:448px;" class="mcnImage">
|
1047
|
+
|
1048
|
+
|
1049
|
+
</td>
|
1050
|
+
</tr>
|
1051
|
+
<tr>
|
1052
|
+
<td class="mcnTextContent" valign="top" style="padding:0 9px 0 9px;" width="164">
|
1053
|
+
<h4>Dee Smith</h4>
|
1054
|
+
</td>
|
1055
|
+
</tr>
|
1056
|
+
</tbody></table>
|
1057
|
+
|
1058
|
+
|
1059
|
+
|
1060
|
+
|
1061
|
+
|
1062
|
+
</td>
|
1063
|
+
</tr>
|
1064
|
+
</tbody>
|
1065
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
1066
|
+
<tbody class="mcnTextBlockOuter">
|
1067
|
+
<tr>
|
1068
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
1069
|
+
<!--[if mso]>
|
1070
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
1071
|
+
<tr>
|
1072
|
+
<![endif]-->
|
1073
|
+
|
1074
|
+
<!--[if mso]>
|
1075
|
+
<td valign="top" width="200" style="width:200px;">
|
1076
|
+
<![endif]-->
|
1077
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
1078
|
+
<tbody><tr>
|
1079
|
+
|
1080
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
1081
|
+
|
1082
|
+
Even if you've never met Dee, you've met her work. She's released over 950 pieces in the past 2 years all over the city! In Bloom flower shop sports her latest piece.
|
1083
|
+
</td>
|
1084
|
+
</tr>
|
1085
|
+
</tbody></table>
|
1086
|
+
<!--[if mso]>
|
1087
|
+
</td>
|
1088
|
+
<![endif]-->
|
1089
|
+
|
1090
|
+
<!--[if mso]>
|
1091
|
+
</tr>
|
1092
|
+
</table>
|
1093
|
+
<![endif]-->
|
1094
|
+
</td>
|
1095
|
+
</tr>
|
1096
|
+
</tbody>
|
1097
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
1098
|
+
<tbody class="mcnTextBlockOuter">
|
1099
|
+
<tr>
|
1100
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
1101
|
+
<!--[if mso]>
|
1102
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
1103
|
+
<tr>
|
1104
|
+
<![endif]-->
|
1105
|
+
|
1106
|
+
<!--[if mso]>
|
1107
|
+
<td valign="top" width="200" style="width:200px;">
|
1108
|
+
<![endif]-->
|
1109
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
1110
|
+
<tbody><tr>
|
1111
|
+
|
1112
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
1113
|
+
|
1114
|
+
<a href="http://www.mailchimp.com" target="_blank">read more >></a>
|
1115
|
+
</td>
|
1116
|
+
</tr>
|
1117
|
+
</tbody></table>
|
1118
|
+
<!--[if mso]>
|
1119
|
+
</td>
|
1120
|
+
<![endif]-->
|
1121
|
+
|
1122
|
+
<!--[if mso]>
|
1123
|
+
</tr>
|
1124
|
+
</table>
|
1125
|
+
<![endif]-->
|
1126
|
+
</td>
|
1127
|
+
</tr>
|
1128
|
+
</tbody>
|
1129
|
+
</table></td>
|
1130
|
+
</tr>
|
1131
|
+
</table>
|
1132
|
+
<!--[if (gte mso 9)|(IE)]>
|
1133
|
+
</td>
|
1134
|
+
</tr>
|
1135
|
+
</table>
|
1136
|
+
<![endif]-->
|
1137
|
+
</td>
|
1138
|
+
</tr>
|
1139
|
+
</table>
|
1140
|
+
</td>
|
1141
|
+
</tr>
|
1142
|
+
<tr>
|
1143
|
+
<td align="center" valign="top" id="templateLowerColumns" data-template-container>
|
1144
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
|
1145
|
+
<tr>
|
1146
|
+
<td valign="top" class="lowerColumnHeaderContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
1147
|
+
<tbody class="mcnTextBlockOuter">
|
1148
|
+
<tr>
|
1149
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
1150
|
+
<!--[if mso]>
|
1151
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
1152
|
+
<tr>
|
1153
|
+
<![endif]-->
|
1154
|
+
|
1155
|
+
<!--[if mso]>
|
1156
|
+
<td valign="top" width="600" style="width:600px;">
|
1157
|
+
<![endif]-->
|
1158
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
1159
|
+
<tbody><tr>
|
1160
|
+
|
1161
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
1162
|
+
|
1163
|
+
<h2>Fresh Works</h2>
|
1164
|
+
</td>
|
1165
|
+
</tr>
|
1166
|
+
</tbody></table>
|
1167
|
+
<!--[if mso]>
|
1168
|
+
</td>
|
1169
|
+
<![endif]-->
|
1170
|
+
|
1171
|
+
<!--[if mso]>
|
1172
|
+
</tr>
|
1173
|
+
</table>
|
1174
|
+
<![endif]-->
|
1175
|
+
</td>
|
1176
|
+
</tr>
|
1177
|
+
</tbody>
|
1178
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnDividerBlock" style="min-width:100%;">
|
1179
|
+
<tbody class="mcnDividerBlockOuter">
|
1180
|
+
<tr>
|
1181
|
+
<td class="mcnDividerBlockInner" style="min-width: 100%; padding: 54px 18px 45px;">
|
1182
|
+
<table class="mcnDividerContent" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width: 100%;border-top: 2px solid #DE5B49;">
|
1183
|
+
<tbody><tr>
|
1184
|
+
<td>
|
1185
|
+
<span></span>
|
1186
|
+
</td>
|
1187
|
+
</tr>
|
1188
|
+
</tbody></table>
|
1189
|
+
<!--
|
1190
|
+
<td class="mcnDividerBlockInner" style="padding: 18px;">
|
1191
|
+
<hr class="mcnDividerContent" style="border-bottom-color:none; border-left-color:none; border-right-color:none; border-bottom-width:0; border-left-width:0; border-right-width:0; margin-top:0; margin-right:0; margin-bottom:0; margin-left:0;" />
|
1192
|
+
-->
|
1193
|
+
</td>
|
1194
|
+
</tr>
|
1195
|
+
</tbody>
|
1196
|
+
</table></td>
|
1197
|
+
</tr>
|
1198
|
+
<tr>
|
1199
|
+
<td valign="top">
|
1200
|
+
<!--[if (gte mso 9)|(IE)]>
|
1201
|
+
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
|
1202
|
+
<tr>
|
1203
|
+
<td align="center" valign="top" width="300" style="width:300px;">
|
1204
|
+
<![endif]-->
|
1205
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="300" class="columnWrapper">
|
1206
|
+
<tr>
|
1207
|
+
<td valign="top" class="columnContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
1208
|
+
<tbody class="mcnTextBlockOuter">
|
1209
|
+
<tr>
|
1210
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
1211
|
+
<!--[if mso]>
|
1212
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
1213
|
+
<tr>
|
1214
|
+
<![endif]-->
|
1215
|
+
|
1216
|
+
<!--[if mso]>
|
1217
|
+
<td valign="top" width="300" style="width:300px;">
|
1218
|
+
<![endif]-->
|
1219
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
1220
|
+
<tbody><tr>
|
1221
|
+
|
1222
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
1223
|
+
|
1224
|
+
<h3>East Side</h3>
|
1225
|
+
</td>
|
1226
|
+
</tr>
|
1227
|
+
</tbody></table>
|
1228
|
+
<!--[if mso]>
|
1229
|
+
</td>
|
1230
|
+
<![endif]-->
|
1231
|
+
|
1232
|
+
<!--[if mso]>
|
1233
|
+
</tr>
|
1234
|
+
</table>
|
1235
|
+
<![endif]-->
|
1236
|
+
</td>
|
1237
|
+
</tr>
|
1238
|
+
</tbody>
|
1239
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnImageBlock" style="min-width:100%;">
|
1240
|
+
<tbody class="mcnImageBlockOuter">
|
1241
|
+
<tr>
|
1242
|
+
<td valign="top" style="padding:9px" class="mcnImageBlockInner">
|
1243
|
+
<table align="left" width="100%" border="0" cellpadding="0" cellspacing="0" class="mcnImageContentContainer" style="min-width:100%;">
|
1244
|
+
<tbody><tr>
|
1245
|
+
<td class="mcnImageContent" valign="top" style="padding-right: 9px; padding-left: 9px; padding-top: 0; padding-bottom: 0; text-align:center;">
|
1246
|
+
|
1247
|
+
|
1248
|
+
<img align="center" alt="Broken Woman Mural" src="https://cdn-images.mailchimp.com/template_images/gallery/east_side_1.jpg" width="264" style="max-width:400px; padding-bottom: 0; display: inline !important; vertical-align: bottom;" class="mcnImage">
|
1249
|
+
|
1250
|
+
|
1251
|
+
</td>
|
1252
|
+
</tr>
|
1253
|
+
</tbody></table>
|
1254
|
+
</td>
|
1255
|
+
</tr>
|
1256
|
+
</tbody>
|
1257
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnImageBlock" style="min-width:100%;">
|
1258
|
+
<tbody class="mcnImageBlockOuter">
|
1259
|
+
<tr>
|
1260
|
+
<td valign="top" style="padding:9px" class="mcnImageBlockInner">
|
1261
|
+
<table align="left" width="100%" border="0" cellpadding="0" cellspacing="0" class="mcnImageContentContainer" style="min-width:100%;">
|
1262
|
+
<tbody><tr>
|
1263
|
+
<td class="mcnImageContent" valign="top" style="padding-right: 9px; padding-left: 9px; padding-top: 0; padding-bottom: 0; text-align:center;">
|
1264
|
+
|
1265
|
+
|
1266
|
+
<img align="center" alt="Wise Primate Mural" src="https://cdn-images.mailchimp.com/template_images/gallery/east_side_2.jpg" width="264" style="max-width:400px; padding-bottom: 0; display: inline !important; vertical-align: bottom;" class="mcnImage">
|
1267
|
+
|
1268
|
+
|
1269
|
+
</td>
|
1270
|
+
</tr>
|
1271
|
+
</tbody></table>
|
1272
|
+
</td>
|
1273
|
+
</tr>
|
1274
|
+
</tbody>
|
1275
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnImageBlock" style="min-width:100%;">
|
1276
|
+
<tbody class="mcnImageBlockOuter">
|
1277
|
+
<tr>
|
1278
|
+
<td valign="top" style="padding:9px" class="mcnImageBlockInner">
|
1279
|
+
<table align="left" width="100%" border="0" cellpadding="0" cellspacing="0" class="mcnImageContentContainer" style="min-width:100%;">
|
1280
|
+
<tbody><tr>
|
1281
|
+
<td class="mcnImageContent" valign="top" style="padding-right: 9px; padding-left: 9px; padding-top: 0; padding-bottom: 0; text-align:center;">
|
1282
|
+
|
1283
|
+
|
1284
|
+
<img align="center" alt="Abstract Shapes Mural" src="https://cdn-images.mailchimp.com/template_images/gallery/east_side_3.jpg" width="264" style="max-width:400px; padding-bottom: 0; display: inline !important; vertical-align: bottom;" class="mcnImage">
|
1285
|
+
|
1286
|
+
|
1287
|
+
</td>
|
1288
|
+
</tr>
|
1289
|
+
</tbody></table>
|
1290
|
+
</td>
|
1291
|
+
</tr>
|
1292
|
+
</tbody>
|
1293
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnDividerBlock" style="min-width:100%;">
|
1294
|
+
<tbody class="mcnDividerBlockOuter">
|
1295
|
+
<tr>
|
1296
|
+
<td class="mcnDividerBlockInner" style="min-width: 100%; padding: 63px 18px 18px;">
|
1297
|
+
<table class="mcnDividerContent" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width:100%;">
|
1298
|
+
<tbody><tr>
|
1299
|
+
<td>
|
1300
|
+
<span></span>
|
1301
|
+
</td>
|
1302
|
+
</tr>
|
1303
|
+
</tbody></table>
|
1304
|
+
<!--
|
1305
|
+
<td class="mcnDividerBlockInner" style="padding: 18px;">
|
1306
|
+
<hr class="mcnDividerContent" style="border-bottom-color:none; border-left-color:none; border-right-color:none; border-bottom-width:0; border-left-width:0; border-right-width:0; margin-top:0; margin-right:0; margin-bottom:0; margin-left:0;" />
|
1307
|
+
-->
|
1308
|
+
</td>
|
1309
|
+
</tr>
|
1310
|
+
</tbody>
|
1311
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnButtonBlock" style="min-width:100%;">
|
1312
|
+
<tbody class="mcnButtonBlockOuter">
|
1313
|
+
<tr>
|
1314
|
+
<td style="padding-top:0; padding-right:18px; padding-bottom:18px; padding-left:18px;" valign="top" align="center" class="mcnButtonBlockInner">
|
1315
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnButtonContentContainer" style="border-collapse: separate !important;border-radius: 3px;background-color: #DE5B49;">
|
1316
|
+
<tbody>
|
1317
|
+
<tr>
|
1318
|
+
<td align="center" valign="middle" class="mcnButtonContent" style="font-family: "Noticia Text", Georgia, "Times New Roman", serif; font-size: 20px; padding: 9px;">
|
1319
|
+
<a class="mcnButton " title="visit our blog" href="http://www.mailchimp.com" target="_self" style="font-weight: bold;letter-spacing: normal;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF;">visit our blog</a>
|
1320
|
+
</td>
|
1321
|
+
</tr>
|
1322
|
+
</tbody>
|
1323
|
+
</table>
|
1324
|
+
</td>
|
1325
|
+
</tr>
|
1326
|
+
</tbody>
|
1327
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnDividerBlock" style="min-width:100%;">
|
1328
|
+
<tbody class="mcnDividerBlockOuter">
|
1329
|
+
<tr>
|
1330
|
+
<td class="mcnDividerBlockInner" style="min-width: 100%; padding: 36px 18px 18px;">
|
1331
|
+
<table class="mcnDividerContent" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width:100%;">
|
1332
|
+
<tbody><tr>
|
1333
|
+
<td>
|
1334
|
+
<span></span>
|
1335
|
+
</td>
|
1336
|
+
</tr>
|
1337
|
+
</tbody></table>
|
1338
|
+
<!--
|
1339
|
+
<td class="mcnDividerBlockInner" style="padding: 18px;">
|
1340
|
+
<hr class="mcnDividerContent" style="border-bottom-color:none; border-left-color:none; border-right-color:none; border-bottom-width:0; border-left-width:0; border-right-width:0; margin-top:0; margin-right:0; margin-bottom:0; margin-left:0;" />
|
1341
|
+
-->
|
1342
|
+
</td>
|
1343
|
+
</tr>
|
1344
|
+
</tbody>
|
1345
|
+
</table></td>
|
1346
|
+
</tr>
|
1347
|
+
</table>
|
1348
|
+
<!--[if (gte mso 9)|(IE)]>
|
1349
|
+
</td>
|
1350
|
+
<td align="center" valign="top" width="300" style="width:300px;">
|
1351
|
+
<![endif]-->
|
1352
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="300" class="columnWrapper">
|
1353
|
+
<tr>
|
1354
|
+
<td valign="top" class="columnContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
1355
|
+
<tbody class="mcnTextBlockOuter">
|
1356
|
+
<tr>
|
1357
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
1358
|
+
<!--[if mso]>
|
1359
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
1360
|
+
<tr>
|
1361
|
+
<![endif]-->
|
1362
|
+
|
1363
|
+
<!--[if mso]>
|
1364
|
+
<td valign="top" width="300" style="width:300px;">
|
1365
|
+
<![endif]-->
|
1366
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
1367
|
+
<tbody><tr>
|
1368
|
+
|
1369
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
1370
|
+
|
1371
|
+
<h3>West End</h3>
|
1372
|
+
</td>
|
1373
|
+
</tr>
|
1374
|
+
</tbody></table>
|
1375
|
+
<!--[if mso]>
|
1376
|
+
</td>
|
1377
|
+
<![endif]-->
|
1378
|
+
|
1379
|
+
<!--[if mso]>
|
1380
|
+
</tr>
|
1381
|
+
</table>
|
1382
|
+
<![endif]-->
|
1383
|
+
</td>
|
1384
|
+
</tr>
|
1385
|
+
</tbody>
|
1386
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnImageBlock" style="min-width:100%;">
|
1387
|
+
<tbody class="mcnImageBlockOuter">
|
1388
|
+
<tr>
|
1389
|
+
<td valign="top" style="padding:9px" class="mcnImageBlockInner">
|
1390
|
+
<table align="left" width="100%" border="0" cellpadding="0" cellspacing="0" class="mcnImageContentContainer" style="min-width:100%;">
|
1391
|
+
<tbody><tr>
|
1392
|
+
<td class="mcnImageContent" valign="top" style="padding-right: 9px; padding-left: 9px; padding-top: 0; padding-bottom: 0; text-align:center;">
|
1393
|
+
|
1394
|
+
|
1395
|
+
<img align="center" alt="Ghost of Me Mural" src="https://cdn-images.mailchimp.com/template_images/gallery/west_end_1.jpg" width="264" style="max-width:400px; padding-bottom: 0; display: inline !important; vertical-align: bottom;" class="mcnImage">
|
1396
|
+
|
1397
|
+
|
1398
|
+
</td>
|
1399
|
+
</tr>
|
1400
|
+
</tbody></table>
|
1401
|
+
</td>
|
1402
|
+
</tr>
|
1403
|
+
</tbody>
|
1404
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnImageBlock" style="min-width:100%;">
|
1405
|
+
<tbody class="mcnImageBlockOuter">
|
1406
|
+
<tr>
|
1407
|
+
<td valign="top" style="padding:9px" class="mcnImageBlockInner">
|
1408
|
+
<table align="left" width="100%" border="0" cellpadding="0" cellspacing="0" class="mcnImageContentContainer" style="min-width:100%;">
|
1409
|
+
<tbody><tr>
|
1410
|
+
<td class="mcnImageContent" valign="top" style="padding-right: 9px; padding-left: 9px; padding-top: 0; padding-bottom: 0; text-align:center;">
|
1411
|
+
|
1412
|
+
|
1413
|
+
<img align="center" alt="Graffiti Beauty Mural" src="https://cdn-images.mailchimp.com/template_images/gallery/west_end_2.jpg" width="264" style="max-width:400px; padding-bottom: 0; display: inline !important; vertical-align: bottom;" class="mcnImage">
|
1414
|
+
|
1415
|
+
|
1416
|
+
</td>
|
1417
|
+
</tr>
|
1418
|
+
</tbody></table>
|
1419
|
+
</td>
|
1420
|
+
</tr>
|
1421
|
+
</tbody>
|
1422
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnImageBlock" style="min-width:100%;">
|
1423
|
+
<tbody class="mcnImageBlockOuter">
|
1424
|
+
<tr>
|
1425
|
+
<td valign="top" style="padding:9px" class="mcnImageBlockInner">
|
1426
|
+
<table align="left" width="100%" border="0" cellpadding="0" cellspacing="0" class="mcnImageContentContainer" style="min-width:100%;">
|
1427
|
+
<tbody><tr>
|
1428
|
+
<td class="mcnImageContent" valign="top" style="padding-right: 9px; padding-left: 9px; padding-top: 0; padding-bottom: 0; text-align:center;">
|
1429
|
+
|
1430
|
+
|
1431
|
+
<img align="center" alt="Xray Saint Mural" src="https://cdn-images.mailchimp.com/template_images/gallery/west_end_3.jpg" width="264" style="max-width:400px; padding-bottom: 0; display: inline !important; vertical-align: bottom;" class="mcnImage">
|
1432
|
+
|
1433
|
+
|
1434
|
+
</td>
|
1435
|
+
</tr>
|
1436
|
+
</tbody></table>
|
1437
|
+
</td>
|
1438
|
+
</tr>
|
1439
|
+
</tbody>
|
1440
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnDividerBlock" style="min-width:100%;">
|
1441
|
+
<tbody class="mcnDividerBlockOuter">
|
1442
|
+
<tr>
|
1443
|
+
<td class="mcnDividerBlockInner" style="min-width: 100%; padding: 63px 18px 18px;">
|
1444
|
+
<table class="mcnDividerContent" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width:100%;">
|
1445
|
+
<tbody><tr>
|
1446
|
+
<td>
|
1447
|
+
<span></span>
|
1448
|
+
</td>
|
1449
|
+
</tr>
|
1450
|
+
</tbody></table>
|
1451
|
+
<!--
|
1452
|
+
<td class="mcnDividerBlockInner" style="padding: 18px;">
|
1453
|
+
<hr class="mcnDividerContent" style="border-bottom-color:none; border-left-color:none; border-right-color:none; border-bottom-width:0; border-left-width:0; border-right-width:0; margin-top:0; margin-right:0; margin-bottom:0; margin-left:0;" />
|
1454
|
+
-->
|
1455
|
+
</td>
|
1456
|
+
</tr>
|
1457
|
+
</tbody>
|
1458
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnButtonBlock" style="min-width:100%;">
|
1459
|
+
<tbody class="mcnButtonBlockOuter">
|
1460
|
+
<tr>
|
1461
|
+
<td style="padding-top:0; padding-right:18px; padding-bottom:18px; padding-left:18px;" valign="top" align="center" class="mcnButtonBlockInner">
|
1462
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnButtonContentContainer" style="border-collapse: separate !important;border-radius: 3px;background-color: #DE5B49;">
|
1463
|
+
<tbody>
|
1464
|
+
<tr>
|
1465
|
+
<td align="center" valign="middle" class="mcnButtonContent" style="font-family: "Noticia Text", Georgia, "Times New Roman", serif; font-size: 20px; padding: 9px;">
|
1466
|
+
<a class="mcnButton " title="make a donation" href="http://www.mailchimp.com" target="_self" style="font-weight: bold;letter-spacing: normal;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF;">make a donation</a>
|
1467
|
+
</td>
|
1468
|
+
</tr>
|
1469
|
+
</tbody>
|
1470
|
+
</table>
|
1471
|
+
</td>
|
1472
|
+
</tr>
|
1473
|
+
</tbody>
|
1474
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnDividerBlock" style="min-width:100%;">
|
1475
|
+
<tbody class="mcnDividerBlockOuter">
|
1476
|
+
<tr>
|
1477
|
+
<td class="mcnDividerBlockInner" style="min-width: 100%; padding: 36px 18px 18px;">
|
1478
|
+
<table class="mcnDividerContent" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width:100%;">
|
1479
|
+
<tbody><tr>
|
1480
|
+
<td>
|
1481
|
+
<span></span>
|
1482
|
+
</td>
|
1483
|
+
</tr>
|
1484
|
+
</tbody></table>
|
1485
|
+
<!--
|
1486
|
+
<td class="mcnDividerBlockInner" style="padding: 18px;">
|
1487
|
+
<hr class="mcnDividerContent" style="border-bottom-color:none; border-left-color:none; border-right-color:none; border-bottom-width:0; border-left-width:0; border-right-width:0; margin-top:0; margin-right:0; margin-bottom:0; margin-left:0;" />
|
1488
|
+
-->
|
1489
|
+
</td>
|
1490
|
+
</tr>
|
1491
|
+
</tbody>
|
1492
|
+
</table></td>
|
1493
|
+
</tr>
|
1494
|
+
</table>
|
1495
|
+
<!--[if (gte mso 9)|(IE)]>
|
1496
|
+
</td>
|
1497
|
+
</tr>
|
1498
|
+
</table>
|
1499
|
+
<![endif]-->
|
1500
|
+
</td>
|
1501
|
+
</tr>
|
1502
|
+
</table>
|
1503
|
+
</td>
|
1504
|
+
</tr>
|
1505
|
+
<tr>
|
1506
|
+
<td align="center" valign="top" id="templateFooter" data-template-container>
|
1507
|
+
<!--[if (gte mso 9)|(IE)]>
|
1508
|
+
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
|
1509
|
+
<tr>
|
1510
|
+
<td align="center" valign="top" width="600" style="width:600px;">
|
1511
|
+
<![endif]-->
|
1512
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
|
1513
|
+
<tr>
|
1514
|
+
<td valign="top" class="footerContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
1515
|
+
<tbody class="mcnTextBlockOuter">
|
1516
|
+
<tr>
|
1517
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
1518
|
+
<!--[if mso]>
|
1519
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
1520
|
+
<tr>
|
1521
|
+
<![endif]-->
|
1522
|
+
|
1523
|
+
<!--[if mso]>
|
1524
|
+
<td valign="top" width="600" style="width:600px;">
|
1525
|
+
<![endif]-->
|
1526
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
1527
|
+
<tbody><tr>
|
1528
|
+
|
1529
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
1530
|
+
|
1531
|
+
<a href="*|ARCHIVE|*" target="blank">view this email in your browser</a><br>
|
1532
|
+
</td>
|
1533
|
+
</tr>
|
1534
|
+
</tbody></table>
|
1535
|
+
<!--[if mso]>
|
1536
|
+
</td>
|
1537
|
+
<![endif]-->
|
1538
|
+
|
1539
|
+
<!--[if mso]>
|
1540
|
+
</tr>
|
1541
|
+
</table>
|
1542
|
+
<![endif]-->
|
1543
|
+
</td>
|
1544
|
+
</tr>
|
1545
|
+
</tbody>
|
1546
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
1547
|
+
<tbody class="mcnTextBlockOuter">
|
1548
|
+
<tr>
|
1549
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
1550
|
+
<!--[if mso]>
|
1551
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
1552
|
+
<tr>
|
1553
|
+
<![endif]-->
|
1554
|
+
|
1555
|
+
<!--[if mso]>
|
1556
|
+
<td valign="top" width="600" style="width:600px;">
|
1557
|
+
<![endif]-->
|
1558
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
1559
|
+
<tbody><tr>
|
1560
|
+
|
1561
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
1562
|
+
|
1563
|
+
<em>Copyright © *|CURRENT_YEAR|* *|LIST:COMPANY|*, All rights reserved.</em>
|
1564
|
+
<br>
|
1565
|
+
*|IFNOT:ARCHIVE_PAGE|*
|
1566
|
+
*|LIST:DESCRIPTION|*
|
1567
|
+
<br>
|
1568
|
+
<br>
|
1569
|
+
<strong>Our mailing address is:</strong>
|
1570
|
+
<br>
|
1571
|
+
*|HTML:LIST_ADDRESS_HTML|* *|END:IF|*
|
1572
|
+
<br>
|
1573
|
+
<br>
|
1574
|
+
Want to change how you receive these emails?<br>
|
1575
|
+
You can <a href="*|UPDATE_PROFILE|*">update your preferences</a> or <a href="*|UNSUB|*">unsubscribe from this list</a>.
|
1576
|
+
<br>
|
1577
|
+
<br>
|
1578
|
+
*|IF:REWARDS|* *|HTML:REWARDS|*
|
1579
|
+
*|END:IF|*
|
1580
|
+
|
1581
|
+
</td>
|
1582
|
+
</tr>
|
1583
|
+
</tbody></table>
|
1584
|
+
<!--[if mso]>
|
1585
|
+
</td>
|
1586
|
+
<![endif]-->
|
1587
|
+
|
1588
|
+
<!--[if mso]>
|
1589
|
+
</tr>
|
1590
|
+
</table>
|
1591
|
+
<![endif]-->
|
1592
|
+
</td>
|
1593
|
+
</tr>
|
1594
|
+
</tbody>
|
1595
|
+
</table></td>
|
1596
|
+
</tr>
|
1597
|
+
</table>
|
1598
|
+
<!--[if (gte mso 9)|(IE)]>
|
1599
|
+
</td>
|
1600
|
+
</tr>
|
1601
|
+
</table>
|
1602
|
+
<![endif]-->
|
1603
|
+
</td>
|
1604
|
+
</tr>
|
1605
|
+
</table>
|
1606
|
+
<!-- // END TEMPLATE -->
|
1607
|
+
</td>
|
1608
|
+
</tr>
|
1609
|
+
</table>
|
1610
|
+
</center>
|
1611
|
+
<script type="text/javascript" src="/WAbyZUhtL/C/-fIkNMFw/1rOppNmp/RSlzKA/VFRPR3UV/LCoB"></script></body>
|
1612
|
+
</html>
|