index.html
105 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
<!DOCTYPE html>
<!--[if lt IE 7]>
<html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en-US"
prefix="og: https://ogp.me/ns#" ><![endif]-->
<!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8" lang="en-US"
prefix="og: https://ogp.me/ns#" ><![endif]-->
<!--[if IE 8]>
<html class="no-js lt-ie9" lang="en-US"
prefix="og: https://ogp.me/ns#" ><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en-US"
prefix="og: https://ogp.me/ns#" >
<!--<![endif]-->
<head>
<meta charset="UTF-8">
<meta name="google-site-verification" content="GTvP0lRrA3o8bYYjvi8LR64PZIYIPLPVyxGj9EDQm2M" />
<meta name="format-detection" content="email=no">
<meta name="format-detection" content="telephone=no">
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<![endif]-->
<meta name="viewport" content="width=device-width" />
<meta name="apple-mobile-web-app-capable" content="yes" >
<meta name="facebook-domain-verification" content="yvu0p7s5ycmx5htkiw6wn8hmyb2rbo" />
<script>
dataLayer = [{
'userId': '0'
}];
</script>
<script>
(function(w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'//www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-MWQJ2F');
</script>
<link rel="shortcut icon" type="image/x-icon" href="http://commonwell.test/favicon.ico">
<link rel="apple-touch-icon" href="http://commonwell.test/apple-touch-icon.png">
<!-- All in One SEO 4.1.5.3 -->
<title>Seedit | The Commonwell</title>
<meta name="robots" content="noindex, nofollow, noimageindex, max-snippet:-1, max-video-preview:-1" />
<link rel="canonical" href="http://commonwell.test/seedit/" />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="The Commonwell | The Commonwell Mutual Insurance Group" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Seedit | The Commonwell" />
<meta property="og:url" content="http://commonwell.test/seedit/" />
<meta property="article:published_time" content="2021-04-08T19:06:43+00:00" />
<meta property="article:modified_time" content="2022-04-07T23:04:53+00:00" />
<meta property="article:author" content="admin" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:domain" content="commonwell.test" />
<meta name="twitter:title" content="Seedit | The Commonwell" />
<!-- All in One SEO -->
<link rel='dns-prefetch' href='//cdnjs.cloudflare.com' />
<link rel='dns-prefetch' href='//maxcdn.bootstrapcdn.com' />
<link rel='dns-prefetch' href='//cdn.datatables.net' />
<link rel='dns-prefetch' href='//stackpath.bootstrapcdn.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<!-- <link rel='stylesheet' id='tzcm_style-css' href='http://commonwell.test/wp-content/plugins/tenzing-campaign-monitor/css/tzcm.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' /> -->
<link rel="stylesheet" type="text/css" href="//commonwell.test/wp-content/cache/wpfc-minified/30sig9yi/80tml.css" media="all"/>
<link rel='stylesheet' id='badgeos-font-awesome-css' href='//stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' />
<!-- <link rel='stylesheet' id='wp-block-library-css' href='http://commonwell.test/wp-includes/css/dist/block-library/style.min.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='ugb-style-css-v2-css' href='http://commonwell.test/wp-content/plugins/stackable-ultimate-gutenberg-blocks/dist/deprecated/frontend_blocks_deprecated_v2.css?ver=3.2.0' type='text/css' media='all' /> -->
<link rel="stylesheet" type="text/css" href="//commonwell.test/wp-content/cache/wpfc-minified/86a29el5/80tml.css" media="all"/>
<style id='ugb-style-css-v2-inline-css' type='text/css'>
:root {
--content-width: 900px;
}
</style>
<!-- <link rel='stylesheet' id='wp-components-css' href='http://commonwell.test/wp-includes/css/dist/components/style.min.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='wp-block-editor-css' href='http://commonwell.test/wp-includes/css/dist/block-editor/style.min.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='wp-nux-css' href='http://commonwell.test/wp-includes/css/dist/nux/style.min.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='wp-reusable-blocks-css' href='http://commonwell.test/wp-includes/css/dist/reusable-blocks/style.min.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='wp-editor-css' href='http://commonwell.test/wp-includes/css/dist/editor/style.min.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='bos_blocks-bos-style-css-css' href='http://commonwell.test/wp-content/plugins/badgeos/includes/blocks/dist/blocks.style.build.css' type='text/css' media='all' /> -->
<link rel="stylesheet" type="text/css" href="//commonwell.test/wp-content/cache/wpfc-minified/fgw39ak5/80tml.css" media="all"/>
<style id='global-styles-inline-css' type='text/css'>
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
</style>
<!-- <link rel='stylesheet' id='cf7mls-css' href='http://commonwell.test/wp-content/plugins/cf7-multi-step//assets/frontend/css/cf7mls.css?ver=2.6.7' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='cf7mls_animate-css' href='http://commonwell.test/wp-content/plugins/cf7-multi-step//assets/frontend/animate/animate.min.css?ver=2.6.7' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='contact-form-7-css' href='http://commonwell.test/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.5.6' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='cookie-law-info-css' href='http://commonwell.test/wp-content/plugins/cookie-law-info/public/css/cookie-law-info-public.css?ver=2.1.1' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='cookie-law-info-gdpr-css' href='http://commonwell.test/wp-content/plugins/cookie-law-info/public/css/cookie-law-info-gdpr.css?ver=2.1.1' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='learndash_quiz_front_css-css' href='//commonwell.test/wp-content/plugins/sfwd-lms/themes/legacy/templates/learndash_quiz_front.min.css?ver=3.6.0.2' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='jquery-dropdown-css-css' href='//commonwell.test/wp-content/plugins/sfwd-lms/assets/css/jquery.dropdown.min.css?ver=3.6.0.2' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='learndash_lesson_video-css' href='//commonwell.test/wp-content/plugins/sfwd-lms/themes/legacy/templates/learndash_lesson_video.min.css?ver=3.6.0.2' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='learndash-front-css' href='//commonwell.test/wp-content/plugins/sfwd-lms/themes/ld30/assets/css/learndash.min.css?ver=3.6.0.2' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='uncannyowl-learndash-toolkit-free-css' href='http://commonwell.test/wp-content/plugins/uncanny-learndash-toolkit/src/assets/frontend/dist/bundle.min.css?ver=3.6.2' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='ultp-frontend-css' href='http://commonwell.test/wp-content/plugins/uncanny-toolkit-pro/src/assets/dist/frontend/bundle.min.css?ver=3.7.11' type='text/css' media='all' /> -->
<link rel="stylesheet" type="text/css" href="//commonwell.test/wp-content/cache/wpfc-minified/lbn0jh6b/80tml.css" media="all"/>
<!-- <link rel='stylesheet' id='UserAccessManagerLoginForm-css' href='http://commonwell.test/wp-content/plugins/user-access-manager/assets/css/uamLoginForm.css?ver=2.2.16' type='text/css' media='screen' /> -->
<link rel="stylesheet" type="text/css" href="//commonwell.test/wp-content/cache/wpfc-minified/8yh67htz/80tml.css" media="screen"/>
<!-- <link rel='stylesheet' id='wpcf-slick-css' href='http://commonwell.test/wp-content/plugins/wp-carousel-free/public/css/slick.min.css?ver=2.4.4' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='wp-carousel-free-fontawesome-css' href='http://commonwell.test/wp-content/plugins/wp-carousel-free/public/css/font-awesome.min.css?ver=2.4.4' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='wp-carousel-free-css' href='http://commonwell.test/wp-content/plugins/wp-carousel-free/public/css/wp-carousel-free-public.min.css?ver=2.4.4' type='text/css' media='all' /> -->
<link rel="stylesheet" type="text/css" href="//commonwell.test/wp-content/cache/wpfc-minified/k0lpz24b/80tml.css" media="all"/>
<style id='wp-carousel-free-inline-css' type='text/css'>
#sp-wp-carousel-free-id-45182.sp-wpcp-45182 .wpcp-single-item {
border: 1px solid #dddddd;
}
#sp-wp-carousel-free-id-45182.nav-vertical-center {
padding: 0;
}
@media screen and (max-width: 479px) {
#sp-wp-carousel-free-id-45182.nav-vertical-center {
padding: 0;
}
}@media (min-width: 480px) { .wpcpro-row .wpcpro-col-sm-1 { flex: 0 0 100%; max-width: 100%; } .wpcpro-row .wpcpro-col-sm-2 { flex: 0 0 50%; max-width: 50%; } .wpcpro-row .wpcpro-col-sm-2-5 { flex: 0 0 75%; max-width: 75%; } .wpcpro-row .wpcpro-col-sm-3 { flex: 0 0 33.333%; max-width: 33.333%; } .wpcpro-row .wpcpro-col-sm-4 { flex: 0 0 25%; max-width: 25%; } .wpcpro-row .wpcpro-col-sm-5 { flex: 0 0 20%; max-width: 20%; } .wpcpro-row .wpcpro-col-sm-6 { flex: 0 0 16.66666666666667%; max-width: 16.66666666666667%; } .wpcpro-row .wpcpro-col-sm-7 { flex: 0 0 14.28571428%; max-width: 14.28571428%; } .wpcpro-row .wpcpro-col-sm-8 { flex: 0 0 12.5%; max-width: 12.5%; } } @media (max-width: 480px) { .wpcpro-row .wpcpro-col-xs-1 { flex: 0 0 100%; max-width: 100%; } .wpcpro-row .wpcpro-col-xs-2 { flex: 0 0 50%; max-width: 50%; } .wpcpro-row .wpcpro-col-xs-3 { flex: 0 0 33.222%; max-width: 33.222%; } .wpcpro-row .wpcpro-col-xs-4 { flex: 0 0 25%; max-width: 25%; } .wpcpro-row .wpcpro-col-xs-5 { flex: 0 0 20%; max-width: 20%; } .wpcpro-row .wpcpro-col-xs-6 { flex: 0 0 16.6667%; max-width: 16.6667%; } .wpcpro-row .wpcpro-col-xs-7 { flex: 0 0 14.28571428%; max-width: 14.28571428%; } .wpcpro-row .wpcpro-col-xs-8 { flex: 0 0 12.5%; max-width: 12.5%; } } @media (min-width: 736px) { .wpcpro-row .wpcpro-col-md-1 { flex: 0 0 100%; max-width: 100%; } .wpcpro-row .wpcpro-col-md-2 { flex: 0 0 50%; max-width: 50%; } .wpcpro-row .wpcpro-col-md-2-5 { flex: 0 0 75%; max-width: 75%; } .wpcpro-row .wpcpro-col-md-3 { flex: 0 0 33.333%; max-width: 33.333%; } .wpcpro-row .wpcpro-col-md-4 { flex: 0 0 25%; max-width: 25%; } .wpcpro-row .wpcpro-col-md-5 { flex: 0 0 20%; max-width: 20%; } .wpcpro-row .wpcpro-col-md-6 { flex: 0 0 16.66666666666667%; max-width: 16.66666666666667%; } .wpcpro-row .wpcpro-col-md-7 { flex: 0 0 14.28571428%; max-width: 14.28571428%; } .wpcpro-row .wpcpro-col-md-8 { flex: 0 0 12.5%; max-width: 12.5%; } } @media (min-width: 980px) { .wpcpro-row .wpcpro-col-lg-1 { flex: 0 0 100%; max-width: 100%; } .wpcpro-row .wpcpro-col-lg-2 { flex: 0 0 50%; max-width: 50%; } .wpcpro-row .wpcpro-col-lg-3 { flex: 0 0 33.222%; max-width: 33.222%; } .wpcpro-row .wpcpro-col-lg-4 { flex: 0 0 25%; max-width: 25%; } .wpcpro-row .wpcpro-col-lg-5 { flex: 0 0 20%; max-width: 20%; } .wpcpro-row .wpcpro-col-lg-6 { flex: 0 0 16.6667%; max-width: 16.6667%; } .wpcpro-row .wpcpro-col-lg-7 { flex: 0 0 14.28571428%; max-width: 14.28571428%; } .wpcpro-row .wpcpro-col-lg-8 { flex: 0 0 12.5%; max-width: 12.5%; } } @media (min-width: 1200px) { .wpcpro-row .wpcpro-col-xl-1 { flex: 0 0 100%; max-width: 100%; } .wpcpro-row .wpcpro-col-xl-2 { flex: 0 0 50%; max-width: 50%; } .wpcpro-row .wpcpro-col-xl-3 { flex: 0 0 33.22222222%; max-width: 33.22222222%; } .wpcpro-row .wpcpro-col-xl-4 { flex: 0 0 25%; max-width: 25%; } .wpcpro-row .wpcpro-col-xl-5 { flex: 0 0 20%; max-width: 20%; } .wpcpro-row .wpcpro-col-xl-6 { flex: 0 0 16.66667%; max-width: 16.66667%; } .wpcpro-row .wpcpro-col-xl-7 { flex: 0 0 14.28571428%; max-width: 14.28571428%; } .wpcpro-row .wpcpro-col-xl-8 { flex: 0 0 12.5%; max-width: 12.5%; } }
</style>
<!-- <link rel='stylesheet' id='wpsl-styles-css' href='http://commonwell.test/wp-content/plugins/wp-store-locator/css/styles.min.css?ver=2.2.235' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='badgeos-single-css' href='http://commonwell.test/wp-content/plugins/badgeos/css/badgeos-single.min.css?ver=3.7.0' type='text/css' media='all' /> -->
<link rel="stylesheet" type="text/css" href="//commonwell.test/wp-content/cache/wpfc-minified/jm9cati1/80tml.css" media="all"/>
<link rel='stylesheet' id='bootstrap-css' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' />
<link rel='stylesheet' id='fontawsome-css' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' />
<link rel='stylesheet' id='Material-css' href='https://fonts.googleapis.com/icon?family=Material+Icons&ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' />
<!-- <link rel='stylesheet' id='bxslider-css' href='http://commonwell.test/wp-content/themes/commonwell-corp/styles/vendor/jquery.bxslider.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='qtip-css' href='http://commonwell.test/wp-content/themes/commonwell-corp/styles/vendor/jquery.qtip.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' /> -->
<link rel="stylesheet" type="text/css" href="//commonwell.test/wp-content/cache/wpfc-minified/l0vkeg1g/80tml.css" media="all"/>
<link rel='stylesheet' id='jqdataTables-css' href='https://cdn.datatables.net/1.10.18/css/dataTables.bootstrap.min.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' />
<!-- <link rel='stylesheet' id='tooltipster-css' href='http://commonwell.test/wp-content/themes/commonwell-corp/styles/vendor/tooltipster.bundle.min.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='input_skins-css' href='http://commonwell.test/wp-content/themes/commonwell-corp/styles/input_skins/all.css?ver=0.0.61' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='global-css' href='http://commonwell.test/wp-content/themes/commonwell-corp/styles/brokers/landing-page/broker_landing.css?ver=0.0.66' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='broker_new-css' href='http://commonwell.test/wp-content/themes/commonwell-corp/styles/broker_new.css?ver=0.0.71' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='main-css' href='http://commonwell.test/wp-content/themes/commonwell-corp/styles/main.css?ver=0.0.817' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='mobile_menu-css' href='http://commonwell.test/wp-content/themes/commonwell-corp/styles/brokers/mobile/broker_moblie_menu.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='seed_it-css' href='http://commonwell.test/wp-content/themes/commonwell-corp/styles/seed_it.css?ver=0.0.63' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='cf7cf-style-css' href='http://commonwell.test/wp-content/plugins/cf7-conditional-fields/style.css?ver=2.1.2' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='jquery-ui-css-css' href='http://commonwell.test/wp-content/plugins/contact-form-7-datepicker-fix/css/jquery-ui.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='wp-ui-css' href='http://commonwell.test/wp-content/plugins/wp-ui/css/wp-ui.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='wpui-light-css' href='http://commonwell.test/wp-content/plugins/wp-ui/css/themes/wpui-light.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='wp-ui-all-css' href='http://commonwell.test/wp-content/plugins/wp-ui/css/themes/wpui-all.css?ver=eb276de0ff0635440df790c71d6d729b' type='text/css' media='all' /> -->
<link rel="stylesheet" type="text/css" href="//commonwell.test/wp-content/cache/wpfc-minified/eh6dxc5t/80tml.css" media="all"/>
<script src='//commonwell.test/wp-content/cache/wpfc-minified/2oj16k49/80tmp.js' type="text/javascript"></script>
<!-- <script type='text/javascript' src='http://commonwell.test/wp-includes/js/jquery/jquery.min.js?ver=3.6.0' id='jquery-core-js'></script> -->
<!-- <script type='text/javascript' src='http://commonwell.test/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script> -->
<script type='text/javascript' id='rsclean-request-script-js-extra'>
/* <![CDATA[ */
var theme_ajax = {"url":"http:\/\/commonwell.test\/wp-admin\/admin-ajax.php","site_url":"http:\/\/commonwell.test","theme_url":"http:\/\/commonwell.test\/wp-content\/themes\/commonwell-corp"};
/* ]]> */
</script>
<script src='//commonwell.test/wp-content/cache/wpfc-minified/fiatzguf/80tmp.js' type="text/javascript"></script>
<!-- <script type='text/javascript' src='http://commonwell.test/wp-content/themes/commonwell-corp/scripts/src/theme-ajax.js?ver=eb276de0ff0635440df790c71d6d729b' id='rsclean-request-script-js'></script> -->
<script type='text/javascript' id='ugb-block-frontend-js-v2-js-extra'>
/* <![CDATA[ */
var stackable = {"restUrl":"http:\/\/commonwell.test\/wp-json\/"};
/* ]]> */
</script>
<script src='//commonwell.test/wp-content/cache/wpfc-minified/eizl1qrb/80tmp.js' type="text/javascript"></script>
<!-- <script type='text/javascript' src='http://commonwell.test/wp-content/plugins/stackable-ultimate-gutenberg-blocks/dist/deprecated/frontend_blocks_deprecated_v2.js?ver=3.2.0' id='ugb-block-frontend-js-v2-js'></script> -->
<!-- <script type='text/javascript' src='http://commonwell.test/wp-includes/js/jquery/ui/core.min.js?ver=1.13.1' id='jquery-ui-core-js'></script> -->
<!-- <script type='text/javascript' src='http://commonwell.test/wp-includes/js/jquery/ui/controlgroup.min.js?ver=1.13.1' id='jquery-ui-controlgroup-js'></script> -->
<!-- <script type='text/javascript' src='http://commonwell.test/wp-includes/js/jquery/ui/checkboxradio.min.js?ver=1.13.1' id='jquery-ui-checkboxradio-js'></script> -->
<!-- <script type='text/javascript' src='http://commonwell.test/wp-includes/js/jquery/ui/button.min.js?ver=1.13.1' id='jquery-ui-button-js'></script> -->
<script type='text/javascript' id='cookie-law-info-js-extra'>
/* <![CDATA[ */
var Cli_Data = {"nn_cookie_ids":[],"cookielist":[],"non_necessary_cookies":[],"ccpaEnabled":"","ccpaRegionBased":"","ccpaBarEnabled":"","strictlyEnabled":["necessary","obligatoire"],"ccpaType":"gdpr","js_blocking":"","custom_integration":"","triggerDomRefresh":"","secure_cookies":""};
var cli_cookiebar_settings = {"animate_speed_hide":"500","animate_speed_show":"500","background":"#FFF","border":"#b1a6a6c2","border_on":"","button_1_button_colour":"#1f9bde","button_1_button_hover":"#197cb2","button_1_link_colour":"#000000","button_1_as_button":"1","button_1_new_win":"","button_2_button_colour":"#333","button_2_button_hover":"#292929","button_2_link_colour":"#1f9bde","button_2_as_button":"","button_2_hidebar":"","button_3_button_colour":"#000","button_3_button_hover":"#000000","button_3_link_colour":"#fff","button_3_as_button":"1","button_3_new_win":"","button_4_button_colour":"#000","button_4_button_hover":"#000000","button_4_link_colour":"#fff","button_4_as_button":"1","button_7_button_colour":"#61a229","button_7_button_hover":"#4e8221","button_7_link_colour":"#fff","button_7_as_button":"1","button_7_new_win":"","font_family":"inherit","header_fix":"","notify_animate_hide":"1","notify_animate_show":"1","notify_div_id":"#cookie-law-info-bar","notify_position_horizontal":"right","notify_position_vertical":"bottom","scroll_close":"","scroll_close_reload":"","accept_close_reload":"","reject_close_reload":"","showagain_tab":"","showagain_background":"#fff","showagain_border":"#000","showagain_div_id":"#cookie-law-info-again","showagain_x_position":"100px","text":"#000","show_once_yn":"1","show_once":"10000","logging_on":"","as_popup":"","popup_overlay":"1","bar_heading_text":"","cookie_bar_as":"banner","popup_showagain_position":"bottom-right","widget_position":"left"};
var log_object = {"ajax_url":"http:\/\/commonwell.test\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script src='//commonwell.test/wp-content/cache/wpfc-minified/ftz6ujmp/80tmp.js' type="text/javascript"></script>
<!-- <script type='text/javascript' src='http://commonwell.test/wp-content/plugins/cookie-law-info/public/js/cookie-law-info-public.js?ver=2.1.1' id='cookie-law-info-js'></script> -->
<script type='text/javascript' id='uncannyowl-learndash-toolkit-free-js-extra'>
/* <![CDATA[ */
var UncannyToolkit = {"ajax":{"url":"http:\/\/commonwell.test\/wp-admin\/admin-ajax.php","nonce":"4e5a492b59"},"integrity":{"shouldPreventConcurrentLogin":false},"i18n":{"dismiss":"Dismiss","preventConcurrentLogin":"Your account has exceeded maximum concurrent login number.","error":{"generic":"Something went wrong. Please, try again"}},"modals":[]};
/* ]]> */
</script>
<script src='//commonwell.test/wp-content/cache/wpfc-minified/7nsd130m/80tmp.js' type="text/javascript"></script>
<!-- <script type='text/javascript' src='http://commonwell.test/wp-content/plugins/uncanny-learndash-toolkit/src/assets/frontend/dist/bundle.min.js?ver=3.6.2' id='uncannyowl-learndash-toolkit-free-js'></script> -->
<script type='text/javascript' id='ultp-frontend-js-extra'>
/* <![CDATA[ */
var UncannyToolkitPro = {"restURL":"http:\/\/commonwell.test\/wp-json\/uo_toolkit\/v1\/","nonce":"12eb42903d"};
/* ]]> */
</script>
<script src='//commonwell.test/wp-content/cache/wpfc-minified/1b2zvpv4/80tmp.js' type="text/javascript"></script>
<!-- <script type='text/javascript' src='http://commonwell.test/wp-content/plugins/uncanny-toolkit-pro/src/assets/dist/frontend/bundle.min.js?ver=3.7.11' id='ultp-frontend-js'></script> -->
<script type='text/javascript' src='https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js?ver=eb276de0ff0635440df790c71d6d729b' id='cookies-js'></script>
<script src='//commonwell.test/wp-content/cache/wpfc-minified/30z0pevd/80tmp.js' type="text/javascript"></script>
<!-- <script type='text/javascript' src='http://commonwell.test/wp-content/themes/commonwell-corp/scripts/moblie_menu.js?ver=eb276de0ff0635440df790c71d6d729b' id='moblie_menu-js'></script> -->
<!-- <script type='text/javascript' src='http://commonwell.test/wp-content/themes/commonwell-corp/scripts/vendor/jquery.mobile.custom.min.js?ver=eb276de0ff0635440df790c71d6d729b' id='jQmobile-js'></script> -->
<script type='text/javascript' src='//cdnjs.cloudflare.com/ajax/libs/jquery.colorbox/1.6.4/jquery.colorbox.js?ver=eb276de0ff0635440df790c71d6d729b' id='colorbox-js'></script>
<script src='//commonwell.test/wp-content/cache/wpfc-minified/edhzoz3r/80tmp.js' type="text/javascript"></script>
<!-- <script type='text/javascript' src='http://commonwell.test/wp-content/themes/commonwell-corp/scripts/accessibility.js?ver=eb276de0ff0635440df790c71d6d729b' id='accessibility_script-js'></script> -->
<!-- <script type='text/javascript' src='http://commonwell.test/wp-includes/js/jquery/ui/mouse.min.js?ver=1.13.1' id='jquery-ui-mouse-js'></script> -->
<!-- <script type='text/javascript' src='http://commonwell.test/wp-includes/js/jquery/ui/resizable.min.js?ver=1.13.1' id='jquery-ui-resizable-js'></script> -->
<!-- <script type='text/javascript' src='http://commonwell.test/wp-includes/js/jquery/ui/draggable.min.js?ver=1.13.1' id='jquery-ui-draggable-js'></script> -->
<!-- <script type='text/javascript' src='http://commonwell.test/wp-includes/js/jquery/ui/dialog.min.js?ver=1.13.1' id='jquery-ui-dialog-js'></script> -->
<!-- <script type='text/javascript' src='http://commonwell.test/wp-content/themes/commonwell-corp/scripts/script-seedit.js?ver=0.0.101' id='seed_it-js'></script> -->
<!-- <script type='text/javascript' src='http://commonwell.test/wp-content/themes/commonwell-corp/scripts/vendor/modernizr.js?ver=0.0.1' id='modernizr-js'></script> -->
<!-- <script type='text/javascript' src='http://commonwell.test/wp-includes/js/jquery/ui/tabs.min.js?ver=1.13.1' id='jquery-ui-tabs-js'></script> -->
<!-- <script type='text/javascript' src='http://commonwell.test/wp-includes/js/jquery/ui/accordion.min.js?ver=1.13.1' id='jquery-ui-accordion-js'></script> -->
<!-- <script type='text/javascript' src='http://commonwell.test/wp-includes/js/jquery/ui/sortable.min.js?ver=1.13.1' id='jquery-ui-sortable-js'></script> -->
<!-- <script type='text/javascript' src='http://commonwell.test/?wpui-script=before&ver=eb276de0ff0635440df790c71d6d729b' id='wpui-script-before-js'></script> -->
<script type='text/javascript' id='wp-ui-min-js-extra'>
/* <![CDATA[ */
var wpUIOpts = {"wpUrl":"http:\/\/commonwell.test","pluginUrl":"http:\/\/commonwell.test\/wp-content\/plugins\/wp-ui\/","enableTabs":"on","enableAccordion":"on","enableSpoilers":"on","enableDialogs":"on","tabsEffect":"none","effectSpeed":"400","accordEffect":"none","alwaysRotate":"stop","tabsEvent":"click","collapsibleTabs":"on","accordEvent":"click","singleLineTabs":"off","accordAutoHeight":"off","accordCollapsible":"off","accordEasing":"false","mouseWheelTabs":"false","bottomNav":"on","tabPrevText":"Prev","tabNextText":"Next","spoilerShowText":"Click to show","spoilerHideText":"Click to hide","cookies":"on","hashChange":"on","docWriteFix":"on","linking_history":"on","misc_options":"hashing_timeout=1000"};
/* ]]> */
</script>
<script src='//commonwell.test/wp-content/cache/wpfc-minified/laxziloc/80tml.js' type="text/javascript"></script>
<!-- <script type='text/javascript' src='http://commonwell.test/wp-content/plugins/wp-ui/js/wp-ui.js?ver=0.8.8' id='wp-ui-min-js'></script> -->
<link rel="https://api.w.org/" href="http://commonwell.test/wp-json/" /><link rel="alternate" type="application/json" href="http://commonwell.test/wp-json/wp/v2/pages/44834" /><link rel='shortlink' href='http://commonwell.test/?p=44834' />
<link rel="alternate" type="application/json+oembed" href="http://commonwell.test/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fcommonwell.test%2Fseedit%2F" />
<link rel="alternate" type="text/xml+oembed" href="http://commonwell.test/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fcommonwell.test%2Fseedit%2F&format=xml" />
<style type="text/css">div[id^="wpcf7-f47896"] button.cf7mls_next { }div[id^="wpcf7-f47896"] button.cf7mls_back { }div[id^="wpcf7-f47841"] button.cf7mls_next { }div[id^="wpcf7-f47841"] button.cf7mls_back { }div[id^="wpcf7-f47829"] button.cf7mls_next { }div[id^="wpcf7-f47829"] button.cf7mls_back { }div[id^="wpcf7-f47761"] button.cf7mls_next { }div[id^="wpcf7-f47761"] button.cf7mls_back { }div[id^="wpcf7-f46920"] button.cf7mls_next { }div[id^="wpcf7-f46920"] button.cf7mls_back { }div[id^="wpcf7-f45288"] button.cf7mls_next { }div[id^="wpcf7-f45288"] button.cf7mls_back { }div[id^="wpcf7-f44945"] button.cf7mls_next { }div[id^="wpcf7-f44945"] button.cf7mls_back { }div[id^="wpcf7-f44913"] button.cf7mls_next { }div[id^="wpcf7-f44913"] button.cf7mls_back { }div[id^="wpcf7-f44907"] button.cf7mls_next { }div[id^="wpcf7-f44907"] button.cf7mls_back { }div[id^="wpcf7-f42417"] button.cf7mls_next { }div[id^="wpcf7-f42417"] button.cf7mls_back { }</style>
<style type="text/css">
<!--
/* Styles by My Calendar - Joseph C Dolson http://www.joedolson.com/ */
.mc-main .mc_general .event-title, .mc-main .mc_general .event-title a { background: #ffffcc; color: #000000; }
.mc-main .mc_general .event-title a:hover, .mc-main .mc_general .event-title a:focus { background: #ffffff;}
.mc-event-visible {
display: block!important;
}
-->
</style>
<script type='text/javascript'>
jQuery('html').addClass('mcjs');
jQuery(document).ready( function($) { $('html').removeClass('mcjs') } );
</script>
<link rel='canonical' href='http://commonwell.test/seedit/' />
</head>
<body class="page-template page-template-seed_it page-template-seed_it-php page page-id-44834">
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-MWQJ2F" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager -->
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade
your browser</a> to improve your experience.</p>
<![endif]-->
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()"> <img src="http://commonwell.test/wp-content/themes/commonwell-corp/images/close.png" alt="close" /> </a>
<nav class="menu-seedit-main-container"><ul id="menu-seedit-main" class="sf-menu"><li class="main-menu-item menu-item-depth-0 menu-item menu-item-type-custom menu-item-object-custom green "><a href="https://thecommonwell.ca/seedit/#donate" class="menu-link main-menu-link">SHARE YOUR HARVEST</a></li>
<li class="main-menu-item menu-item-depth-0 menu-item menu-item-type-custom menu-item-object-custom green "><a target="_blank" href="https://thecommonwell.ca/about/" class="menu-link main-menu-link">ABOUT THE COMMONWELL</a></li>
</ul></nav> </div>
<div id="content">
<div id="content-wrap">
<header id="page-header-seedit" style=''>
<div id="other-header">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<div id="new-page-logo">
<a href="http://commonwell.test/seedit" title="The Commonwell - The Commonwell Mutual Insurance Group">
<object data="http://commonwell.test/wp-content/themes/commonwell-corp/images/seedit.svg" type="image/svg+xml" class="otherpage-logo" id="otherpage-logo"></object>
</a>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-9 col-md-9">
<div class="row">
<div id='header'>
<div id="myTopnav" class="topnav">
<nav id="primary-nav" class="menu-seedit-main-container"><ul id="menu-seedit-main-1" class="sf-menu"><li class="main-menu-item menu-item-depth-0 menu-item menu-item-type-custom menu-item-object-custom green "><a href="https://thecommonwell.ca/seedit/#donate" class="menu-link main-menu-link">SHARE YOUR HARVEST</a></li>
<li class="main-menu-item menu-item-depth-0 menu-item menu-item-type-custom menu-item-object-custom green "><a target="_blank" href="https://thecommonwell.ca/about/" class="menu-link main-menu-link">ABOUT THE COMMONWELL</a></li>
</ul></nav> </div>
</div>
</div>
</div>
<div id="page-header-part">
</div>
</div>
</div>
<span id="mobile-menu-btn" class="mobile-menu-btn seedit" onclick="openNav()" title="menu-btn">Mobile menu link</span>
</header>
<div class="tag-line">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-10 col-lg-10">SEEDit is a Commonwell program to support capacity & resiliency growth in the communities we call home.</div>
</div>
</div>
</div>
<script>
function toggle_mobile_menu() {
jQuery(document).ready(
function($) {
$(".mobile_collapse").slideToggle(300);
$("#mySidenav").removeClass('mySidenavOpen');
$(".people_span").removeClass('peopleOpen');
if ($("#seacrh_mobile").css('display') == 'block') {
$("#seacrh_mobile").slideToggle();
}
}
);
}
// Using jQuery.
</script>
<div class="hero-container header-section blur-image" data-src="http://commonwell.test/wp-content/uploads/2022/04/iStock-1097842610.png" style="--med-image: url(http://commonwell.test/wp-content/uploads/2022/04/iStock-1097842610-300x134.png);">
<div id="seedit_header" class="full-image">
<span class="year">2022</span>
<svg id="seedit_header_text" height="400" width="1200">
<style>.green{fill:#74AF0D;} </style>
<text
id="text"
x="0"
y="80"
stroke-dashoffset="560"
style="font-weight:bold;font-size:100px;stroke:#fff;fill:#fff;stroke-width:2px;stroke-dasharray:560;fill-opacity:1;">
<tspan x="0" y="80">I’M GROWING</tspan>
<tspan x="0" y="190">FOOD SECURITY</tspan>
</text>
<text
id="text2"
x="0"
y="80"
stroke-dashoffset="560"
style="font-weight:bold;font-size:100px;stroke:#74AF0D;fill:#74AF0D;stroke-width:1px;stroke-dasharray:560;fill-opacity:1;">
<tspan x="0" y="310">FOR MY NEIGHBOURS!</tspan>
</text>
</svg>
</div>
</div>
<div class="wrapper" id="seedit-wrapper">
<div class="container">
<h1 class="m_heqder_text">I’M GROWING FOOD SECURITY <span class="green">FOR MY NEIGHBOURS!</span></h1>
<div class="row" style="margin-top: 0px;">
<p class="has-medium-font-size">One in ten Ontarians don’t have enough to eat and more lack access to nutritious fresh food. They are neighbours and your friends in communities down the road. So let’s do something about that. LeOne in ten Ontarians don’t have enough to eat and more lack access to nutritious fresh food. They are neighbours and your friends in communities down the road. So let’s do something about that. Let’s grow fresh food starting this spring and share a portion of your harvest with local food banks, community groups or neighbours and friends. That’s the purpose of SEEDit – a Commonwell Mutual Insurance Group initiative. Our support is designed to focus individual backyard and balcony gardens on growing to share but <a href="#grants" title="#grants">we also support community gardens</a> through our granting program.</p>
<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>
<h2 class="has-text-align-center .how-it-works">HOW IT WORKS</h2>
<hr class="wp-block-separator is-style-wide"/>
<div class="wp-block-ugb-columns ugb-columns how-it-works-container ugb-8602f24 ugb-columns--design-plain ugb-columns--columns-2 ugb-main-block">
<style>.ugb-8602f24 > .ugb-inner-block > .ugb-block-content > .ugb-columns__item{grid-template-columns:0.26fr 1.74fr !important}</style>
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-columns__item ugb-8602f24-content-wrapper">
<div class="wp-block-ugb-column ugb-column ugb-1b9a7e7 ugb-column--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-column__item ugb-1b9a7e7-column-wrapper">
<div class="ugb-column__content-wrapper">
<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" width="117" height="96" src="https://thecommonwell.ca/wp-content/uploads/2021/04/Group-25@2x.png" alt="" class="wp-image-44841" srcset="http://commonwell.test/wp-content/uploads/2021/04/Group-25@2x.png 117w, http://commonwell.test/wp-content/uploads/2021/04/Group-25@2x-50x41.png 50w" sizes="(max-width: 117px) 100vw, 117px" /></a></figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wp-block-ugb-column ugb-column ugb-ae049a0 ugb-column--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-column__item ugb-ae049a0-column-wrapper">
<div class="ugb-column__content-wrapper">
<p class="how-it-works num-1"><strong>REGISTER ON MAY 9<sup><sub>TH</sub></sup> </strong>If you haven’t started your fresh food garden yet or if you’re just seeing green shoots, start planning how you’ll share some of what you grow in your community now. Visit the <a href="https://www.facebook.com/groups/798694074394163" target="_blank" rel="noreferrer noopener">SEEDit Facebook Group</a> to join hundreds of backyard gardeners who are growing food security in their neighbourhoods.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr class="wp-block-separator is-style-wide"/>
<div class="wp-block-ugb-columns ugb-columns how-it-works-container ugb-c296d6b ugb-columns--design-plain ugb-columns--columns-2 ugb-main-block">
<style>.ugb-c296d6b > .ugb-inner-block > .ugb-block-content > .ugb-columns__item{grid-template-columns:0.26fr 1.74fr !important}</style>
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-columns__item ugb-c296d6b-content-wrapper">
<div class="wp-block-ugb-column ugb-column ugb-41484a6 ugb-column--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-column__item ugb-41484a6-column-wrapper">
<div class="ugb-column__content-wrapper">
<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" width="116" height="109" src="https://thecommonwell.ca/wp-content/uploads/2021/04/Group-30.png" alt="" class="wp-image-44933" srcset="http://commonwell.test/wp-content/uploads/2021/04/Group-30.png 116w, http://commonwell.test/wp-content/uploads/2021/04/Group-30-50x47.png 50w" sizes="(max-width: 116px) 100vw, 116px" /></a></figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wp-block-ugb-column ugb-column ugb-4c9d699 ugb-column--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-column__item ugb-4c9d699-column-wrapper">
<div class="ugb-column__content-wrapper">
<p class="how-it-works num-2"><strong>REDEEM YOUR VOUCHER</strong> at the garden centre you selected. Be sure to get your free SEEDit stickers at the centre so you can identify what you’re sharing with others.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr class="wp-block-separator is-style-wide"/>
<div class="wp-block-ugb-columns ugb-columns how-it-works-container ugb-8e21331 ugb-columns--design-plain ugb-columns--columns-2 ugb-main-block">
<style>.ugb-8e21331 > .ugb-inner-block > .ugb-block-content > .ugb-columns__item{grid-template-columns:0.26fr 1.74fr !important}</style>
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-columns__item ugb-8e21331-content-wrapper">
<div class="wp-block-ugb-column ugb-column ugb-22ee4d7 ugb-column--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-column__item ugb-22ee4d7-column-wrapper">
<div class="ugb-column__content-wrapper">
<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" width="107" height="107" src="https://thecommonwell.ca/wp-content/uploads/2021/04/Group-309.png" alt="" class="wp-image-44935" srcset="http://commonwell.test/wp-content/uploads/2021/04/Group-309.png 107w, http://commonwell.test/wp-content/uploads/2021/04/Group-309-50x50.png 50w" sizes="(max-width: 107px) 100vw, 107px" /></a></figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wp-block-ugb-column ugb-column ugb-ad79291 ugb-column--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-column__item ugb-ad79291-column-wrapper">
<div class="ugb-column__content-wrapper">
<p class="how-it-works num-3"><strong>GET GROWING</strong> in your backyard or balcony. The more you plant, the more good you’ll do. Join the <a href="https://www.facebook.com/groups/798694074394163" target="_blank" rel="noreferrer noopener">SEEDit Facebook Group</a> to share your garden photos and get growing tips and advice while you’re there.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr class="wp-block-separator is-style-wide"/>
<div class="wp-block-ugb-columns ugb-columns how-it-works-container ugb-62a39f0 ugb-columns--design-plain ugb-columns--columns-2 ugb-main-block">
<style>.ugb-62a39f0 > .ugb-inner-block > .ugb-block-content > .ugb-columns__item{grid-template-columns:0.26fr 1.74fr !important}</style>
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-columns__item ugb-62a39f0-content-wrapper">
<div class="wp-block-ugb-column ugb-column ugb-87a6e91 ugb-column--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-column__item ugb-87a6e91-column-wrapper">
<div class="ugb-column__content-wrapper">
<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" width="107" height="114" src="https://thecommonwell.ca/wp-content/uploads/2021/04/Group-27.png" alt="" class="wp-image-44936" srcset="http://commonwell.test/wp-content/uploads/2021/04/Group-27.png 107w, http://commonwell.test/wp-content/uploads/2021/04/Group-27-47x50.png 47w" sizes="(max-width: 107px) 100vw, 107px" /></a></figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wp-block-ugb-column ugb-column ugb-ca90ca4 ugb-column--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-column__item ugb-ca90ca4-column-wrapper">
<div class="ugb-column__content-wrapper">
<p class="how-it-works num-4">As your garden starts producing, <strong>SHARE A PORTION OF WHAT YOU GROW</strong> with your local food bank, community group or neighbours. Pick it, put it in a bag, put a SEEDit sticker on the bag, drop it off and grow the smiles.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr class="wp-block-separator is-style-wide"/>
<div class="wp-block-ugb-columns ugb-columns how-it-works-container ugb-17e825c ugb-columns--design-plain ugb-columns--columns-2 ugb-main-block">
<style>.ugb-17e825c > .ugb-inner-block > .ugb-block-content > .ugb-columns__item{grid-template-columns:0.26fr 1.74fr !important}</style>
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-columns__item ugb-17e825c-content-wrapper">
<div class="wp-block-ugb-column ugb-column ugb-593af7c ugb-column--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-column__item ugb-593af7c-column-wrapper">
<div class="ugb-column__content-wrapper">
<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" width="105" height="105" src="https://thecommonwell.ca/wp-content/uploads/2021/04/Group-326.png" alt="" class="wp-image-44937" srcset="http://commonwell.test/wp-content/uploads/2021/04/Group-326.png 105w, http://commonwell.test/wp-content/uploads/2021/04/Group-326-50x50.png 50w" sizes="(max-width: 105px) 100vw, 105px" /></a></figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wp-block-ugb-column ugb-column ugb-9da9425 ugb-column--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-column__item ugb-9da9425-column-wrapper">
<div class="ugb-column__content-wrapper">
<p class="how-it-works num-5"><strong>SHARE YOUR PHOTOS</strong> and inspire your personal network. Join the SEEDit Community Facebook group. Get tips from local farmers, chefs and experts. Use the<strong> #CommonwellSEEDit</strong> hashtag in your posts.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr class="wp-block-separator is-style-wide"/>
<div style="height:40px" aria-hidden="true" id="voucher" class="wp-block-spacer"></div>
<div class="wp-block-ugb-container ugb-container green-full ugb-2980941 ugb-container--v2 ugb-container--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-container__wrapper ugb-2980941-wrapper">
<div class="ugb-container__side">
<div class="ugb-container__content-wrapper ugb-2980941-content-wrapper">
<h2 class="has-text-align-center">GET YOUR VOUCHER</h2>
<p class="has-text-align-center">First, find the SEEDit garden centre nearest you and then register for your voucher. It will be emailed to you with the garden centre name included. Print it out or keep it handy on your phone. Then off you go to pick up your supplies. A big shout out to all our Garden Centre partners for bringing SEEDit to life locally. And hey – thanks to you for helping your neighbours, our communities and all those in need this year.</p>
<style>
#wpsl-stores .wpsl-store-thumb {height:45px !important; width:45px !important;}
#wpsl-stores, #wpsl-direction-details, #wpsl-gmap {height:300px !important;}
#wpsl-gmap .wpsl-info-window {max-width:300px !important;}
.wpsl-input label, #wpsl-radius label, #wpsl-category label {width:95px;}
#wpsl-search-input ,#wpsl-category .wpsl-dropdown {width:179px;}
</style>
<div id="wpsl-wrap">
<div id="wpsl-result-list">
<label id="label-search-input" for="wpsl-search-input">Search:</label> <div class="wpsl-input">
<input id="wpsl-search-input" type="text" value="" name="wpsl-search-input" placeholder="" aria-required="true" />
<input id="wpsl-search-btn" type="submit" value="Search">
</form>
<br/><br/><strong>SEARCH RESULTS</strong>
<br/>Select the garden centre most convenient to you:<br/>
</div>
<div id="wpsl-stores" >
<ul></ul>
</div>
<div id="wpsl-direction-details">
<ul></ul>
</div>
</div>
<div id="wpsl-gmap" class="wpsl-gmap-canvas"></div>
</div>
<style>
#label-search-input{
text-indent: -9999999px !important;
display: inline-block;
text-align: unset;
overflow: hidden;
}
#wpsl-wrap #wpsl-result-list li a{
color: #007DB3;
text-decoration: none;
}
.results_row_top{ background:transparent;}
.broker_radio{
disply:none !important;
}
#wpsl-gmap,
#wpsl-result-list{
width:48.5%;
height:400px !important;
display: inline-block;
margin-top: -30px;
}
.km{
width:100px;
}
.location_link{
}
.sold_out{
color:#000;
}
.sold_out,
.register_here{
margin-right: 5px !important;
}
@media (max-width: 767px){
table.wpsl-store-location tr td {
font-size: 14px !important;
}
#wpsl-gmap{
width:100%;
height:300px !important;
}
#wpsl-result-list{
width:100%;
height:400px !important;
}
.km{
width:50px;
padding-right: 10px !important;
}
.location{
display: block;
}
.storelocatorlink {
width: 70px;
}
.location_link{
text-align: left !important;
width: 100% !important;
display: block;
padding-top: 10px !important;
}
.sold_out,
.register_here{
font-size:14px !important;
}
#wpsl-stores {
margin-top: 10px;
}
}
#wpsl-search-btn {
display:none !important;
}
td, th {
vertical-align: top;
}
.results_row_top td{
padding:0px;
}
#wpsl-wrap #wpsl-result-list li{
padding-left: 0px !important;
padding-right: 1px !important;
}
#wpsl-search-input{
border: 0px solid #a4a5a8;
border-bottom: 2px solid #000;
background-color: #F1F7E6;
color:#54565A;
}
.location_distance{
color:#68696D;
}
</style>
</div>
</div>
</div>
</div>
</div>
</div>
<div style="height:40px" aria-hidden="true" class="wp-block-spacer"></div>
<h2 class="has-text-align-center">SHARE YOUR HARVEST</h2>
<p class="has-text-align-center">Sharing what we grow is an important step toward improving food security at the grassroots level. Fresh and nutritious food does more than fill plates for a hungry family – it fills the future with hope and community commitment. That’s what we’re growing with SEEDit. There are three ways to share:</p>
<div class="wp-block-ugb-columns ugb-columns ugb-39ab082 ugb-columns--design-plain ugb-columns--columns-3 ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-columns__item ugb-39ab082-content-wrapper">
<div class="wp-block-ugb-column ugb-column ugb-bcf20d9 ugb-column--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-column__item ugb-bcf20d9-column-wrapper">
<div class="ugb-column__content-wrapper">
<div class="wp-block-image min-oneseven">
<figure class="aligncenter size-large"><img loading="lazy" width="174" height="173" src="https://thecommonwell.ca/wp-content/uploads/2021/04/Path-91@2x.png" alt="" class="wp-image-44843" srcset="http://commonwell.test/wp-content/uploads/2021/04/Path-91@2x.png 174w, http://commonwell.test/wp-content/uploads/2021/04/Path-91@2x-150x150.png 150w, http://commonwell.test/wp-content/uploads/2021/04/Path-91@2x-50x50.png 50w" sizes="(max-width: 174px) 100vw, 174px" /></a></figure>
</div>
<h3 class="has-text-align-center">Food Banks</h3>
<p class="has-text-align-center">Bag a portion of what you grow, put SEEDit stickers on the bags and take it to the local food bank in your area. <a href="https://www.foodbankscanada.ca/Home.aspx" target="_blank" title="https://www.foodbankscanada.ca/Home.aspx" rel="noopener">Foodbanks Canada</a> or<br /><a href="https://feedontario.ca/" target="_blank" rel="noopener">Feed Ontario</a> for info and locations.</p>
</div>
</div>
</div>
</div>
</div>
<div class="wp-block-ugb-column ugb-column ugb-53d1a47 ugb-column--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-column__item ugb-53d1a47-column-wrapper">
<div class="ugb-column__content-wrapper">
<div class="wp-block-image min-one-seven">
<figure class="aligncenter size-large"><img loading="lazy" width="173" height="164" src="https://thecommonwell.ca/wp-content/uploads/2021/04/Group-322.png" alt="" class="wp-image-44929" srcset="http://commonwell.test/wp-content/uploads/2021/04/Group-322.png 173w, http://commonwell.test/wp-content/uploads/2021/04/Group-322-50x47.png 50w" sizes="(max-width: 173px) 100vw, 173px" /></a></figure>
</div>
<h3 class="has-text-align-center">Your Neighbours</h3>
<p class="has-text-align-center">Share some of what you grow with the folks next door. That’s what good neighbours do.</p>
</div>
</div>
</div>
</div>
</div>
<div class="wp-block-ugb-column ugb-column ugb-b39dfa2 ugb-column--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-column__item ugb-b39dfa2-column-wrapper">
<div class="ugb-column__content-wrapper">
<div class="wp-block-image min-one-seven">
<figure class="aligncenter size-large"><img loading="lazy" width="190" height="177" src="https://thecommonwell.ca/wp-content/uploads/2021/04/Group-323.png" alt="" class="wp-image-44930" srcset="http://commonwell.test/wp-content/uploads/2021/04/Group-323.png 190w, http://commonwell.test/wp-content/uploads/2021/04/Group-323-50x47.png 50w" sizes="(max-width: 190px) 100vw, 190px" /></a></figure>
</div>
<h3 class="has-text-align-center">A Community Group </h3>
<p class="has-text-align-center">Share some of your harvest with local service clubs, shelters, community outreach clubs and other similar organizations.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wp-block-ugb-container ugb-container red-full ugb-8be3d7d ugb-container--v2 ugb-container--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-container__wrapper ugb-8be3d7d-wrapper">
<div class="ugb-container__side">
<div class="ugb-container__content-wrapper ugb-8be3d7d-content-wrapper">
<h2 class="has-text-align-center">SIGN UP FOR THE SEEDIT NEWSLETTER</h2>
<p class="has-text-align-center">Looking for growing tips, cooking ideas and inspiration to share? Register to receive the SEEDit Newsletter here. We promise to keep it informative, light, and to never use it as a Commonwell promotional tool.</p>
<form id="wpcf7-f44907-o1" class="wpcf7-form init fjs-cm-email-input js-cm-form" action="https://www.createsend.com/t/subscribeerror?description=" method="post" data-id="5B5E7037DA78A748374AD499497E309E169FB9F7BC9471FC79A1095919D40E2EF37C520C23A760EF8E8D04B6602E6D2A8FE488C2E8DC2577A38F011DE29D40ED">
<div style="margin-top:20px;">
<div><label> EMAIL: </label><input class="wpcf7-form-control wpcf7-text wpcf7-email wpcf7-validates-as-required wpcf7-validates-as-email js-cm-email-input" id="fieldEmail" name="cm-bmhyuy-bmhyuy" autocomplete="Email" maxlength="200" required="" type="email" aria-label="Email"><br /><input type="submit" value="Submit" class="wpcf7-form-control wpcf7-submit"></div>
</div>
</form>
<p><script type="text/javascript" src="https://js.createsend1.com/javascript/copypastesubscribeformlogic.js"></script>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wp-block-ugb-container ugb-container orange-full ugb-f25f216 ugb-container--v2 ugb-container--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-container__wrapper ugb-f25f216-wrapper">
<div class="ugb-container__side">
<div class="ugb-container__content-wrapper ugb-f25f216-content-wrapper">
<h2 class="has-text-align-center">WHAT YOUR NEIGHBOURS ARE GROWING</h2>
<p class="has-text-align-center">Join the SEEDit Facebook Community for insights, tips and to stay up to date on what other SEEDit participants are growing. A double row of beans? Enough eggplant for ten lasagnas? Wow – this is going to be amazing!</p>
<div class="wp-block-ugb-button ugb-button-wrapper join_fb ugb-9e653ec ugb-main-block">
<style>.ugb-9e653ec .ugb-block-content{justify-content:center !important}.ugb-9e653ec .ugb-inner-block{text-align:center}</style>
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-button-container"><a class="ugb-button1 ugb-button ugb-button--size-normal" href="https://www.facebook.com/groups/798694074394163" target="_blank" rel="noopener noreferrer" title=""><span class="ugb-button--inner">JOIN THE SEEDIT FACEBOOK COMMUNITY</span></a></div>
</div>
</div>
</div>
<div class="wpcp-carousel-wrapper wpcp-wrapper-45182">
<div id="wpcp-preloader-45182" class="wpcp-carousel-preloader"><img src="http://commonwell.test/wp-content/plugins/wp-carousel-free/public/css/ajax-loader.gif" alt="Preloader Image"/></div> <div id="sp-wp-carousel-free-id-45182" class="wpcp-carousel-section sp-wpcp-45182 nav-vertical-center wpcp-image-carousel wpcp-preloader wpcp-standard" data-slick='{ "accessibility":true, "arrows":false, "autoplay":true, "autoplaySpeed":3000, "dots":false, "infinite":true, "speed":600, "pauseOnHover":true, "slidesToShow":5, "responsive":[ { "breakpoint":1200, "settings": { "slidesToShow":5 } }, { "breakpoint":980, "settings":{ "slidesToShow":5 } }, { "breakpoint":736, "settings": { "slidesToShow":4 } }, {"breakpoint":480, "settings":{ "slidesToShow":2, "arrows": false, "dots": false } } ], "rtl":false, "lazyLoad": "false", "swipe": true, "draggable": true, "swipeToSlide":true }' dir="ltr">
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/176319677_10158987081655560_8419326730264345695_n-1-768x750.jpg" alt="176319677_10158987081655560_8419326730264345695_n" width="768" height="750"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/176371910_10158987081990560_8243317094151600738_n-1-768x819.jpg" alt="176371910_10158987081990560_8243317094151600738_n" width="768" height="819"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/176375480_10158987081185560_3364264421913160636_n-1-768x757.jpg" alt="176375480_10158987081185560_3364264421913160636_n" width="768" height="757"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/176396065_10158987081330560_4279923309306276583_n-1.jpg" alt="176396065_10158987081330560_4279923309306276583_n" width="720" height="960"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/176425991_10105653245453171_240648960464446382_n-1-768x1024.jpg" alt="176425991_10105653245453171_240648960464446382_n" width="768" height="1024"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/176439935_10158987081445560_6674250061750426425_n-1-768x778.jpg" alt="176439935_10158987081445560_6674250061750426425_n" width="768" height="778"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/176481743_10158987081945560_9203989205102628075_n-1-768x770.jpg" alt="176481743_10158987081945560_9203989205102628075_n" width="768" height="770"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/176589094_10158987081285560_8291994211507364144_n-1-768x781.jpg" alt="176589094_10158987081285560_8291994211507364144_n" width="768" height="781"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/176653587_10158987081895560_701945161135303161_n-1-768x773.jpg" alt="176653587_10158987081895560_701945161135303161_n" width="768" height="773"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/176712152_10158987081630560_7625028423455437949_n-1-768x749.jpg" alt="176712152_10158987081630560_7625028423455437949_n" width="768" height="749"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/177464496_10105654057166491_6371523883088242869_n-1-768x576.jpg" alt="177464496_10105654057166491_6371523883088242869_n" width="768" height="576"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/177626698_10158987081465560_8190628710215738040_n-1.jpg" alt="177626698_10158987081465560_8190628710215738040_n" width="720" height="960"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/177745878_10158987081830560_5013990508922575838_n-1-768x786.jpg" alt="177745878_10158987081830560_5013990508922575838_n" width="768" height="786"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/174175558_10157802414835264_2432839464490276174_n-768x1024.jpg" alt="174175558_10157802414835264_2432839464490276174_n" width="768" height="1024"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/174247512_10159003013875560_1664258424491805758_n.jpg" alt="174247512_10159003013875560_1664258424491805758_n" width="720" height="960"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/176632962_10159131573392485_1951281029163225897_n-768x614.jpg" alt="176632962_10159131573392485_1951281029163225897_n" width="768" height="614"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/178474207_10157802415310264_4261452754092086031_n-768x1024.jpg" alt="178474207_10157802415310264_4261452754092086031_n" width="768" height="1024"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/178845541_10157802415135264_6058263580025065586_n-768x1024.jpg" alt="178845541_10157802415135264_6058263580025065586_n" width="768" height="1024"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/178966747_10157802415025264_107354561229797555_n-768x1024.jpg" alt="178966747_10157802415025264_107354561229797555_n" width="768" height="1024"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/179003149_10157802415275264_3190252401826763676_n-768x1024.jpg" alt="179003149_10157802415275264_3190252401826763676_n" width="768" height="1024"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/179003155_10157802415225264_4191295328021352376_n-768x1024.jpg" alt="179003155_10157802415225264_4191295328021352376_n" width="768" height="1024"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/179095104_10157802415175264_8869186460776575132_n-768x1024.jpg" alt="179095104_10157802415175264_8869186460776575132_n" width="768" height="1024"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/179181738_10159260955679704_763816297604047482_n-768x1138.jpg" alt="179181738_10159260955679704_763816297604047482_n" width="768" height="1138"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/179551850_10159260955874704_7022296108138495890_n.jpg" alt="179551850_10159260955874704_7022296108138495890_n" width="427" height="240"></div>
</div>
</div>
<div class="">
<div class="wpcp-single-item">
<div class="wpcp-slide-image">
<img class="skip-lazy" src="http://commonwell.test/wp-content/uploads/2021/04/180303369_10159003013740560_7067524595838751834_n.jpg" alt="180303369_10159003013740560_7067524595838751834_n" width="720" height="960"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wp-block-ugb-container ugb-container white-full ugb-2dacbda ugb-container--v2 ugb-container--design-plain ugb-main-block" id="grants">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-container__wrapper ugb-2dacbda-wrapper">
<div class="ugb-container__side">
<div class="ugb-container__content-wrapper ugb-2dacbda-content-wrapper">
<h2 class="has-text-align-center">WE’RE SUPPORTING COMMUNITY GARDENS WITH UP TO $10,000</h2>
<p class="has-text-align-center">The SEEDit Community Garden Grant program supports community gardens run by not-for-profits, charities, municipalities or organized community groups with a board. Gardens can apply for grants valued at $500-$1000 to support community food initiatives. Complete the application below to apply by May 27th. Recipients will be announced by June 17th.</p>
<div class="wp-container-625088012a0ca wp-block-buttons">
<div class="wp-block-button aligncenter green-button" id="apply-now"><a class="wp-block-button__link" style="border-radius:0px">APPLY NOW</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wp-container-625088012a4ad wp-block-group">
<div class="wp-block-group__inner-container"></div>
</div>
<div class="wp-block-ugb-container ugb-container ugb-a91c8ec ugb-container--v2 ugb-container--design-basic ugb-main-block" id="thankyou">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-container__wrapper ugb-a91c8ec-wrapper">
<div class="ugb-container__side">
<div class="ugb-container__content-wrapper ugb-a91c8ec-content-wrapper">
<h5 class="has-text-align-center modal-title">THANK YOU!</h5>
<p class="has-text-align-center">Thanks for joining SEEDit (where every plant makes a difference). We’ll be emailing your voucher shortly so you can get started right away. Join SEEDit on Facebook and meet all the other participants. And just as important, let your friends know about SEEDit so they can join in too.</p>
<div class="wp-block-ugb-columns ugb-columns thanks-col ugb-f4c9534 ugb-columns--design-plain ugb-columns--columns-2 ugb-main-block">
<style>.ugb-f4c9534 > .ugb-inner-block > .ugb-block-content > .ugb-columns__item{grid-template-columns:0.40fr 1.60fr !important}</style>
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-columns__item ugb-f4c9534-content-wrapper">
<div class="wp-block-ugb-column ugb-column ugb-df4fc9c ugb-column--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-column__item ugb-df4fc9c-column-wrapper">
<div class="ugb-column__content-wrapper">
<div class="wp-block-image">
<figure class="aligncenter size-large is-resized"><a href="https://www.facebook.com/sharer/sharer.php?u=thecommonwell.ca/seedit/" target="_blank" rel="noopener"><img loading="lazy" src="https://thecommonwell.ca/wp-content/uploads/2021/04/facebook.png" alt="" class="wp-image-44955" width="58" height="58" srcset="http://commonwell.test/wp-content/uploads/2021/04/facebook.png 112w, http://commonwell.test/wp-content/uploads/2021/04/facebook-50x50.png 50w" sizes="(max-width: 58px) 100vw, 58px" /></a></figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wp-block-ugb-column ugb-column ugb-2a1a772 ugb-column--design-plain ugb-main-block">
<div class="ugb-inner-block">
<div class="ugb-block-content">
<div class="ugb-column__item ugb-2a1a772-column-wrapper">
<div class="ugb-column__content-wrapper">
<strong>SHARE YOUR NEWS </strong><br />
Spread the word. Tell your friends about SEEDit so they can make a difference too.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade " id="exampleModalLong" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div role="form" class="wpcf7" id="wpcf7-f44945-o1" lang="en-US" dir="ltr">
<div class="screen-reader-response"><p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul></div>
<form action="/seedit/#wpcf7-f44945-o1" method="post" class="wpcf7-form init cf7mls-no-scroll cf7mls-no-moving-animation" novalidate="novalidate" data-status="init">
<div style="display: none;">
<input type="hidden" name="_wpcf7" value="44945" />
<input type="hidden" name="_wpcf7_version" value="5.5.6" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f44945-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="hidden" name="_wpcf7cf_hidden_group_fields" value="" />
<input type="hidden" name="_wpcf7cf_hidden_groups" value="" />
<input type="hidden" name="_wpcf7cf_visible_groups" value="" />
<input type="hidden" name="_wpcf7cf_repeaters" value="[]" />
<input type="hidden" name="_wpcf7cf_steps" value="{}" />
<input type="hidden" name="_wpcf7cf_options" value="{"form_id":44945,"conditions":[],"settings":{"animation":"yes","animation_intime":200,"animation_outtime":200,"conditions_ui":"normal","notice_dismissed":false}}" />
<input type="hidden" name="_map_author" value="1" />
</div>
<h5 class="modal-title" style="text-align:center;" id="exampleModalLongTitle">ABOUT YOU</h5>
<p style="float:right;"><em>All fields are required.</em></p>
<p><label for="name">Name</label><br />
<span class="wpcf7-form-control-wrap name"><input type="text" name="name" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" id="name" aria-required="true" aria-invalid="false" /></span> </p>
<p><label for="email">Email</label><br />
<span class="wpcf7-form-control-wrap email"><input type="email" name="email" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-email wpcf7-validates-as-required wpcf7-validates-as-email" id="email" aria-required="true" aria-invalid="false" /></span> </p>
<p><label for="address">Address</label><br />
<span class="wpcf7-form-control-wrap address"><input type="text" name="address" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" id="address" aria-required="true" aria-invalid="false" /></span> </p>
<p><label for="city">Town/City</label><br />
<span class="wpcf7-form-control-wrap city"><input type="text" name="city" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" id="city" aria-required="true" aria-invalid="false" /></span></p>
<p><label for="postal">Postal Code </label><br />
<span class="wpcf7-form-control-wrap postal"><input type="text" name="postal" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" id="postal" aria-required="true" aria-invalid="false" /></span><br />
<span class="wpcf7-form-control-wrap agree"><span class="wpcf7-form-control wpcf7-checkbox wpcf7-validates-as-required"><span class="wpcf7-list-item first last"><label><input type="checkbox" name="agree[]" value="I have read and agree to the" /><span class="wpcf7-list-item-label">I have read and agree to the</span></label></span></span></span><a class="rules" target="_blank" href="https://thecommonwell.ca/wp-content/uploads/2021/04/Seedit_Rules_and_Regulations-1.pdf" rel="noopener">rules and regulations.</a><br />
<br><br />
<input type="submit" value="Submit" class="wpcf7-form-control has-spinner wpcf7-submit" /></p>
<div class="wpcf7-response-output" aria-hidden="true"></div></form></div> </div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="applyNowModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div role="form" class="wpcf7" id="wpcf7-f44913-o2" lang="en-US" dir="ltr">
<div class="screen-reader-response"><p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul></div>
<form action="/seedit/#wpcf7-f44913-o2" method="post" class="wpcf7-form init cf7mls-no-scroll cf7mls-no-moving-animation" novalidate="novalidate" data-status="init">
<div style="display: none;">
<input type="hidden" name="_wpcf7" value="44913" />
<input type="hidden" name="_wpcf7_version" value="5.5.6" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f44913-o2" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="hidden" name="_wpcf7cf_hidden_group_fields" value="" />
<input type="hidden" name="_wpcf7cf_hidden_groups" value="" />
<input type="hidden" name="_wpcf7cf_visible_groups" value="" />
<input type="hidden" name="_wpcf7cf_repeaters" value="[]" />
<input type="hidden" name="_wpcf7cf_steps" value="{}" />
<input type="hidden" name="_wpcf7cf_options" value="{"form_id":44913,"conditions":[],"settings":{"animation":"yes","animation_intime":200,"animation_outtime":200,"conditions_ui":"normal","notice_dismissed":false}}" />
<input type="hidden" name="_map_author" value="1" />
</div>
<div class="fieldset-cf7mls-wrapper" data-transition-effects><fieldset class="fieldset-cf7mls cf7mls_current_fs"><h5 class="modal-title" style="text-align:center;" id="exampleModalLongTitle">ABOUT YOU</h5>
<p><span class="req">All fields are required.</span><br />
<label>Name of Organization:</label> <span class="wpcf7-form-control-wrap organization-name"><input type="text" name="organization-name" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" /></span><br />
<label> Submitter Name: </label> <span class="wpcf7-form-control-wrap submitter-name"><input type="text" name="submitter-name" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" /></span><br />
<label> Submitter Email: </label> <span class="wpcf7-form-control-wrap submitter-email"><input type="email" name="submitter-email" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-email wpcf7-validates-as-required wpcf7-validates-as-email" aria-required="true" aria-invalid="false" /></span><br />
<label> Submitter Phone: </label> <span class="wpcf7-form-control-wrap submitter-phone"><input type="text" name="submitter-phone" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" /></span> <div class="cf7mls-btns"><button type="button" class="cf7mls_next cf7mls_btn action-button" name="cf7mls_next" id="cf7mls-next-btn-cf7mls_step-1">NEXT<img src="http://commonwell.test/wp-content/plugins/cf7-multi-step//assets/frontend/img/loader.svg" alt="" data-lazy-src="http://commonwell.test/wp-content/plugins/cf7-multi-step//assets/frontend/img/loader.svg" /></button></div><p></p></fieldset><fieldset class="fieldset-cf7mls"><br />
<h5 class="modal-title" style="text-align:center;" id="exampleModalLongTitle">ABOUT YOUR COMMUNITY GARDEN ORGANIZATION</h5>
<p><span class="req">All fields are required.</span><br />
<label>Garden Address:</label> <span class="wpcf7-form-control-wrap garden-address"><input type="text" name="garden-address" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" /></span><br />
<label>How much money are you requesting? (value must be between $500-$1000) </label> <span class="wpcf7-form-control-wrap money-requesting"><input type="text" name="money-requesting" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" /></span><br />
<label>How will you use the funds?</label> <span class="wpcf7-form-control-wrap funds-used"><input type="text" name="funds-used" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" /></span><br />
<label>Where do you share the produce from your program? </label> <span class="wpcf7-form-control-wrap share-produce"><input type="text" name="share-produce" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" /></span><br />
<label>How does your program impact your community? </label><span class="wpcf7-form-control-wrap program-impact"><textarea name="program-impact" cols="50" rows="2" class="wpcf7-form-control wpcf7-textarea wpcf7-validates-as-required" aria-required="true" aria-invalid="false"></textarea></span><br />
<label>Provide a link to your website or social media pages.</label> <span class="wpcf7-form-control-wrap website-social"><input type="text" name="website-social" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" /></span> </p>
<p><input type="submit" value="Submit" class="wpcf7-form-control has-spinner wpcf7-submit" /><div class="cf7mls-btns"></p>
</fieldset></div><div class="wpcf7-response-output" aria-hidden="true"></div></form></div> </div>
</div>
</div>
</div>
</div>
<script>
jQuery(document).ready(function($) {
$('#exampleModalLong').find('.wpcf7').append('<img class="load" style="margin-left: 19%;margin-top: 30%;" src="../wp-content/themes/commonwell-corp/images/loading.svg"/>');
$('#applyNowModal').find('.wpcf7').append('<img class="load" style="margin-left: 19%;margin-top: 30%;" src="../wp-content/themes/commonwell-corp/images/loading.svg"/>');
$(document).on("click",".register_here",function() {
$('#exampleModalLong').find('form').append('<input type="hidden" name="center_id" value="'+$(this).data('id')+'"/>')
$('#exampleModalLong').modal('show');
});
$(document).on("click","#apply-now a",function() {
$('#applyNowModal').modal('show');
});
$(document).on("click",".wpcf7-submit",function() {
$('#exampleModalLong').find('.load').show();
$('#exampleModalLong').find('form').hide();
});
document.addEventListener( 'wpcf7submit', function( event ) {
if ( '44913' == event.detail.contactFormId ) {
if($(event.target).hasClass('invalid')) {
$('#applyNowModal').find('form').show();
$('#applyNowModal').find('.load').hide();
return;
}
event.preventDefault();
$('#applyNowModal').find('form').html('<h5 class="modal-title" style="text-align:center;" id="exampleModalLongTitle">THANK YOU!</h5><p><center>The Commonwell will be review all applications and announce grant recipients by June 17th.</center></p>');
}
}, false );
document.addEventListener( 'wpcf7submit', function( event ) {
if ( '44945' == event.detail.contactFormId ) {
if($(event.target).hasClass('invalid')) {
$('#exampleModalLong').find('form').show();
$('#exampleModalLong').find('.load').hide();
return;
}
event.preventDefault();
var postal = $("[name='postal']").val();
var regex = /^[A-Za-z]\d[A-Za-z][ -]?\d[A-Za-z]\d$/;
var pr = regex .test(postal);
if(pr == true){
//all good
jQuery.ajax({
url: '/wp-admin/admin-ajax.php',
method: "POST",
data: {
action: 'send_voucher',
name: $("[name='name']").val(),
email: $("[name='email']").val(),
address: $("[name='address']").val(),
city: $("[name='city']").val(),
postal: $("[name='postal']").val(),
center_id: $("[name='center_id']").val(),
},
beforeSend: function(xhr) {
},
success: function(response) {
console.log(response);
$('#exampleModalLong').find('form').html($('#thankyou').html());
$('#exampleModalLong').find('.load').hide();
$('#exampleModalLong').find('form').show();
if(response.data.success == false){
$('#exampleModalLong').find('form').html(response.data.message);
}
}
});
} else {
$('#exampleModalLong').find('form').show();
$('#exampleModalLong').find('.load').hide();
$("[name='postal']").css('border-color','red');
}
}
}, false );
$("#wpsl-search-input").focusout(function(){
if($('#wpsl-search-input').val() !=""){
setTimeout(function() {
$('#wpsl-search-btn').click();
}, 50);
}
});
$('#wpsl-search-input').keypress(function(event){
var keycode = (event.keyCode ? event.keyCode : event.which);
if(keycode == '13'){
$("#wpsl-search-input").blur();
}
});
setTimeout(function(){
$( "img" ).removeAttr('role');
$('.gm-style').children().removeAttr('role').removeAttr('aria-label').removeAttr('aria-roledescription');
$('#wpsl-wrap').bind('DOMSubtreeModified',function(){
$( "img" ).removeAttr('role');
});
}, 5000);
});
var a = document.querySelector('.blur-image');
document.addEventListener("DOMContentLoaded", function () {
if (!a) return !1;
var b = a.getAttribute("data-src"),
c = document.querySelector('.full-image'),
img = new Image;
img.src = b;
img.onload = function () {
c.classList.add('image-loaded'),
c.style.backgroundImage = 'url(' + b + ')';
};
});
</script>
<footer id="new-footer" class="seedit">
<div id="footer-sidebar" class="secondary clear">
<div id="footer-sidebar1">
<aside id="custom_html-3" class="widget_text widget widget_custom_html"><h3 class="widget-title">GOT QUESTIONS? Want to get involved?</h3><div class="textwidget custom-html-widget"><p>
SEEDit is a new program with several moving parts. Naturally, as with anything new, you may have questions. That’s awesome - just email us and ask and we’ll do our best to get right back to you with the information you need. Send us an email: <a href="mailto:seedit@thecommonwell.ca">seedit@thecommonwell.ca</a> </p>
<a target="_blank" href="https://thecommonwell.ca/wp-content/uploads/2021/04/Seedit_Rules_and_Regulations-1.pdf" rel="noopener">
[ SEEDit Guidelines & Participation Rules ]
</a></div></aside> </div>
<div id="footer-sidebar2">
<aside id="custom_html-4" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><p>
<strong>The Commonwell Mutual Insurance Group</strong><br>
336 Angeline Street South<br> Lindsay, ON K9V 0J8<br>
<br>
Phone: 705-324-2146<br>
Toll Free: 1-855-436-5883<br>
<br> <br>
<a id="commonwell-link" target="_blank" href="http://thecommonwell.ca/" rel="noopener">thecommonwell.ca</a>
</p></div></aside> </div>
<div id="footer-sidebar3">
<div id="new-page-logo">
<a href="http://commonwell.test/" title="The Commonwell - The Commonwell Mutual Insurance Group">
<img id="otherpage-logo" src="http://commonwell.test/wp-content/themes/commonwell-corp/images/Commonwell-logo.svg" alt="Commonwell Mutual Insurance Group logo" />
</a>
</div>
</div>
</div>
</footer>
</div><!-- end of content-wrap -->
<!--googleoff: all--><div id="cookie-law-info-bar" data-nosnippet="true"><span>We want to offer content that is truly relevant to you, by browsing this site, you accept the General Terms of Use, our Privacy Policy , and the use of Cookies.</span></div><div id="cookie-law-info-again" style="display:none" data-nosnippet="true"><span id="cookie_hdr_showagain">Privacy & Cookies Policy</span></div><div class="cli-modal" data-nosnippet="true" id="cliSettingsPopup" tabindex="-1" role="dialog" aria-labelledby="cliSettingsPopup" aria-hidden="true">
<div class="cli-modal-dialog" role="document">
<div class="cli-modal-content cli-bar-popup">
<button type="button" class="cli-modal-close" id="cliModalClose">
<svg class="" viewBox="0 0 24 24"><path d="M19 6.41l-1.41-1.41-5.59 5.59-5.59-5.59-1.41 1.41 5.59 5.59-5.59 5.59 1.41 1.41 5.59-5.59 5.59 5.59 1.41-1.41-5.59-5.59z"></path><path d="M0 0h24v24h-24z" fill="none"></path></svg>
<span class="wt-cli-sr-only">Close</span>
</button>
<div class="cli-modal-body">
<div class="cli-container-fluid cli-tab-container">
<div class="cli-row">
<div class="cli-col-12 cli-align-items-stretch cli-px-0">
<div class="cli-privacy-overview">
<h4>Privacy Overview</h4> <div class="cli-privacy-content">
<div class="cli-privacy-content-text">This website uses cookies to improve your experience while you navigate through the website. Out of these cookies, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may have an effect on your browsing experience.</div>
</div>
<a class="cli-privacy-readmore" aria-label="Show more" role="button" data-readmore-text="Show more" data-readless-text="Show less"></a> </div>
</div>
<div class="cli-col-12 cli-align-items-stretch cli-px-0 cli-tab-section-container">
<div class="cli-tab-section">
<div class="cli-tab-header">
<a role="button" tabindex="0" class="cli-nav-link cli-settings-mobile" data-target="necessary" data-toggle="cli-toggle-tab">
Necessary </a>
<div class="wt-cli-necessary-checkbox">
<input type="checkbox" class="cli-user-preference-checkbox" id="wt-cli-checkbox-necessary" data-id="checkbox-necessary" checked="checked" />
<label class="form-check-label" for="wt-cli-checkbox-necessary">Necessary</label>
</div>
<span class="cli-necessary-caption">Always Enabled</span>
</div>
<div class="cli-tab-content">
<div class="cli-tab-pane cli-fade" data-id="necessary">
<div class="wt-cli-cookie-description">
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information. </div>
</div>
</div>
</div>
<div class="cli-tab-section">
<div class="cli-tab-header">
<a role="button" tabindex="0" class="cli-nav-link cli-settings-mobile" data-target="non-necessary" data-toggle="cli-toggle-tab">
Non-necessary </a>
<div class="cli-switch">
<input type="checkbox" id="wt-cli-checkbox-non-necessary" class="cli-user-preference-checkbox" data-id="checkbox-non-necessary" checked='checked' />
<label for="wt-cli-checkbox-non-necessary" class="cli-slider" data-cli-enable="Enabled" data-cli-disable="Disabled"><span class="wt-cli-sr-only">Non-necessary</span></label>
</div>
</div>
<div class="cli-tab-content">
<div class="cli-tab-pane cli-fade" data-id="non-necessary">
<div class="wt-cli-cookie-description">
Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website. </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cli-modal-footer">
<div class="wt-cli-element cli-container-fluid cli-tab-container">
<div class="cli-row">
<div class="cli-col-12 cli-align-items-stretch cli-px-0">
<div class="cli-tab-footer wt-cli-privacy-overview-actions">
<a id="wt-cli-privacy-save-btn" role="button" tabindex="0" data-cli-action="accept" class="wt-cli-privacy-btn cli_setting_save_button wt-cli-privacy-accept-btn cli-btn">SAVE & ACCEPT</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cli-modal-backdrop cli-fade cli-settings-overlay"></div>
<div class="cli-modal-backdrop cli-fade cli-popupbar-overlay"></div>
<!--googleon: all--><script>requestAnimationFrame(() => document.body.classList.add( "stk--anim-init" ))</script><script id="wpsl-info-window-template" type="text/template">
<div data-store-id="<%= id %>" class="wpsl-info-window">
<p>
<% if ( wpslSettings.storeUrl == 1 && url ) { %>
<a href="<%= url %>" target="_blank" class="placelink"><%= store %></a>
<% } else { %>
<%= store %>
<% } %>
<span><%= address %></span>
<% if ( address2 ) { %>
<span><%= address2 %></span>
<% } %>
<span><%= city %> <%= state %> <%= zip %></span>
</p>
<% if ( phone ) { %>
<span><strong>Phone</strong>:<a href="tel:<%= formatPhoneNumber( phone ) %>"> <%= formatPhoneNumber( phone ) %></a></span>
<% } %>
<% if ( email ) { %>
<span><strong>Email</strong><a herf="mailto:<%= formatEmail( email ) %>">: <%= formatEmail( email ) %></span>
<% } %>
<br><br> <% if ( voucher_count != 0 ) { %>
<a href="#" class="register_here" data-id="<%= id %>" id="<%= id %>">Register Here</a> <% } %>
</script>
<script id="wpsl-listing-template" type="text/template">
<li data-store-id="<%= id %>">
<table class="wpsl-store-location">
<tr><th><th></tr>
<tr class="results_row_top">
<td class="km" width="100">
<div class="storelocatorlink">
<div class="location_distance"><%= distance %> km</div>
</div>
</td>
<td width="320" class="location">
<div class="address">
<span class="location_name" style="color: rgb(0, 150, 214);"><% if ( wpslSettings.storeUrl == 1 && url ) { %>
<a href="<%= url %>" target="_blank" class="placelink"><%= store %></a>
<% } else { %>
<%= store %>
<% } %></span>
</br>
<span class="slp_result_address slp_result_street"><%= address %></span>
<span class="slp_result_address slp_result_street2"><% if ( address2 ) { %><%= address2 %><% } %></span>
</br>
<span class="slp_result_address slp_result_citystatezip"><%= city %> <%= state %> <%= zip %></span>
<span class="slp_result_address slp_result_phone"><% if ( phone ) { %> <%= formatPhoneNumber( phone ) %><% } %></span>
</div> </td> <td width="120" style="text-align:right;" class="location_link"> <% if ( voucher_count != 0 ) { %>
<a href="#" class="register_here" data-id="<%= id %>" id="<%= id %>">Register Here</a> <% }else{ %>
<span class="sold_out">Sold Out</span> <% } %>
</td> </tr> </table> </li>
</script>
<style>.wp-container-625088012a0ca {display: flex;gap: 0.5em;flex-wrap: wrap;align-items: center;align-items: center;}.wp-container-625088012a0ca > * { margin: 0; }</style>
<style>.wp-container-625088012a4ad .alignleft { float: left; margin-right: 2em; }.wp-container-625088012a4ad .alignright { float: right; margin-left: 2em; }</style>
<!-- <link rel='stylesheet' id='badgeos-front-css' href='http://commonwell.test/wp-content/plugins/badgeos/css/badgeos-front.min.css?ver=3.7.0' type='text/css' media='all' /> -->
<link rel="stylesheet" type="text/css" href="//commonwell.test/wp-content/cache/wpfc-minified/lx8uugwt/80tml.css" media="all"/>
<script type='text/javascript' src='http://commonwell.test/wp-content/plugins/tenzing-campaign-monitor/js/tzcm.js?ver=eb276de0ff0635440df790c71d6d729b' id='tzcm_script-js'></script>
<script type='text/javascript' id='cf7mls-js-extra'>
/* <![CDATA[ */
var cf7mls_object = {"ajax_url":"http:\/\/commonwell.test\/wp-admin\/admin-ajax.php","is_rtl":"","disable_submit":"true","cf7mls_error_message":"","scroll_step":"true","disable_enter_key":"false","check_step_before_submit":"true"};
/* ]]> */
</script>
<script type='text/javascript' src='http://commonwell.test/wp-content/plugins/cf7-multi-step//assets/frontend/js/cf7mls.js?ver=2.6.7' id='cf7mls-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-includes/js/jquery/ui/datepicker.min.js?ver=1.13.1' id='jquery-ui-datepicker-js'></script>
<script type='text/javascript' id='jquery-ui-datepicker-js-after'>
jQuery(function(jQuery){jQuery.datepicker.setDefaults({"closeText":"Close","currentText":"Today","monthNames":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"nextText":"Next","prevText":"Previous","dayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"dayNamesShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"dayNamesMin":["S","M","T","W","T","F","S"],"dateFormat":"MM d, yy","firstDay":1,"isRTL":false});});
</script>
<script type='text/javascript' src='http://commonwell.test/wp-content/plugins/contact-form-7-datepicker-fix/js/jquery.ui.spinner.js?ver=eb276de0ff0635440df790c71d6d729b' id='jquery-spinner-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-content/plugins/contact-form-7-datepicker-fix/js/cf7-datepicker-ie-fixer.js?ver=eb276de0ff0635440df790c71d6d729b' id='custom_script-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-includes/js/dist/vendor/regenerator-runtime.min.js?ver=0.13.9' id='regenerator-runtime-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0' id='wp-polyfill-js'></script>
<script type='text/javascript' id='contact-form-7-js-extra'>
/* <![CDATA[ */
var wpcf7 = {"api":{"root":"http:\/\/commonwell.test\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":"1"};
/* ]]> */
</script>
<script type='text/javascript' src='http://commonwell.test/wp-content/plugins/contact-form-7/includes/js/index.js?ver=5.5.6' id='contact-form-7-js'></script>
<script type='text/javascript' id='learndash-front-js-extra'>
/* <![CDATA[ */
var ldVars = {"postID":"44834","videoReqMsg":"You must watch the video before accessing this content","ajaxurl":"http:\/\/commonwell.test\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script type='text/javascript' src='//commonwell.test/wp-content/plugins/sfwd-lms/themes/ld30/assets/js/learndash.js?ver=3.6.0.2' id='learndash-front-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-content/plugins/wp-carousel-free/public/js/slick.min.js?ver=2.4.4' id='wpcf-slick-js'></script>
<script type='text/javascript' id='wpcf-slick-config-js-extra'>
/* <![CDATA[ */
var sp_wp_carousel_free = {"url":"http:\/\/commonwell.test\/wp-content\/plugins\/wp-carousel-free\/","loadScript":"http:\/\/commonwell.test\/wp-content\/plugins\/wp-carousel-free\/public\/js\/wp-carousel-free-public.min.js","link":"http:\/\/commonwell.test\/wp-admin\/post-new.php?post_type=sp_wp_carousel"};
/* ]]> */
</script>
<script type='text/javascript' src='http://commonwell.test/wp-content/plugins/wp-carousel-free/public/js/wp-carousel-free-public.min.js?ver=2.4.4' id='wpcf-slick-config-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-content/themes/commonwell-corp/scripts/vendor/jquery.bxslider.js?ver=0.0.1' id='bxslider-js'></script>
<script type='text/javascript' src='https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js?ver=eb276de0ff0635440df790c71d6d729b' id='bootstrap-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-content/themes/commonwell-corp/scripts/vendor/jquery.qtip.js?ver=0.0.1' id='qtip-js'></script>
<script type='text/javascript' src='https://cdn.datatables.net/1.10.18/js/jquery.dataTables.min.js?ver=0.0.1' id='jqdataTables-js'></script>
<script type='text/javascript' src='https://cdn.datatables.net/1.10.18/js/dataTables.bootstrap.min.js?ver=0.0.1' id='bsdataTables-js'></script>
<script type='text/javascript' src='https://cdn.datatables.net/buttons/1.7.0/js/dataTables.buttons.min.js?ver=0.0.1' id='bsdataTablesbuttons-js'></script>
<script type='text/javascript' src='https://cdn.datatables.net/buttons/1.7.0/js/buttons.html5.min.js?ver=0.0.1' id='bsdataTablesbuttonshtml5-js'></script>
<script type='text/javascript' src='https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/pdfmake.min.js?ver=0.0.1' id='bsdataTablespdf-js'></script>
<script type='text/javascript' src='https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/vfs_fonts.js?ver=0.0.1' id='bsdataTablesbuttonsfonts-js'></script>
<script type='text/javascript' src='https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js?ver=0.0.1' id='bsdataTablesbuttonszip-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-content/themes/commonwell-corp/scripts/vendor/tooltipster.bundle.min.js?ver=0.0.1' id='tooltipster-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-content/themes/commonwell-corp/scripts/show-more.js?ver=0.0.3' id='show-more-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-content/themes/commonwell-corp/scripts/icheck.min.js?ver=0.0.1' id='icheck-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-content/themes/commonwell-corp/scripts/script.js?ver=0.11' id='script-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-content/themes/commonwell-corp/scripts/vendor/TweenMax.min.js?ver=eb276de0ff0635440df790c71d6d729b' id='tweenmax-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-content/themes/commonwell-corp/scripts/vendor/TimelineMax.min.js?ver=eb276de0ff0635440df790c71d6d729b' id='timelinemax-js'></script>
<script type='text/javascript' id='wpcf7cf-scripts-js-extra'>
/* <![CDATA[ */
var wpcf7cf_global_settings = {"ajaxurl":"http:\/\/commonwell.test\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script type='text/javascript' src='http://commonwell.test/wp-content/plugins/cf7-conditional-fields/js/scripts.js?ver=2.1.2' id='wpcf7cf-scripts-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-content/plugins/wp-carousel-free/public/js/preloader.min.js?ver=2.4.4' id='wpcp-preloader-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-content/plugins/my-calendar/js/mc-grid.js?ver=eb276de0ff0635440df790c71d6d729b' id='mc.grid-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-content/plugins/my-calendar/js/mc-list.js?ver=eb276de0ff0635440df790c71d6d729b' id='mc.list-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-content/plugins/my-calendar/js/mc-mini.js?ver=eb276de0ff0635440df790c71d6d729b' id='mc.mini-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-content/plugins/my-calendar/js/mc-ajax.js?ver=eb276de0ff0635440df790c71d6d729b' id='mc.ajax-js'></script>
<script type='text/javascript' src='https://maps.google.com/maps/api/js?language=en&region=ca&key=AIzaSyDTsvthOYF_ejxfpb50d_BoSbA_Be8Ti0w&libraries=places&v=quarterly' id='wpsl-gmap-js'></script>
<script type='text/javascript' id='wpsl-js-js-extra'>
/* <![CDATA[ */
var wpslLabels = {"preloader":"Searching...","noResults":"No results found","moreInfo":"More info","generalError":"Something went wrong, please try again!","queryLimit":"API usage limit reached","directions":"Directions","noDirectionsFound":"No route could be found between the origin and destination","startPoint":"Start location","back":"Back","streetView":"Street view","zoomHere":"Zoom here"};
var wpslGeolocationErrors = {"denied":"The application does not have permission to use the Geolocation API.","unavailable":"Location information is unavailable.","timeout":"The geolocation request timed out.","generalError":"An unknown error occurred."};
var wpslSettings = {"startMarker":"red@2x.png","markerClusters":"0","streetView":"0","autoComplete":"1","autoLocate":"0","autoLoad":"1","markerEffect":"bounce","markerStreetView":"0","markerZoomTo":"0","newWindow":"1","resetMap":"0","directionRedirect":"1","phoneUrl":"1","clickableDetails":"0","moreInfoLocation":"info window","mouseFocus":"0","templateId":"custom","maxResults":"100","searchRadius":"50","distanceUnit":"km","geoLocationTimeout":"7500","ajaxurl":"http:\/\/commonwell.test\/wp-admin\/admin-ajax.php","mapControls":"<div id=\"wpsl-map-controls\" ><div class=\"wpsl-icon-direction\"><span>\ue800<\/span><\/div><\/div>","noResults":"No results found within 50 km of your postal code.","geocodeComponents":{"country":"CA"},"autoCompleteOptions":{"fields":["geometry.location"],"types":["(regions)"]},"storeMarker":"blue@2x.png","mapType":"roadmap","mapTypeControl":"0","zoomLevel":"5","startLatlng":"","autoZoomLevel":"15","scrollWheel":"1","controlPosition":"left","url":"http:\/\/commonwell.test\/wp-content\/plugins\/wp-store-locator\/","markerIconProps":{"scaledSize":"24,35","origin":"0,0","anchor":"12,35","url":"http:\/\/commonwell.test\/wp-content\/themes\/commonwell-corp\/images\/"},"storeUrl":"1","maxDropdownHeight":"300","enableStyledDropdowns":"1","mapTabAnchor":"wpsl-map-tab","mapTabAnchorReturn":"","gestureHandling":"auto","directionsTravelMode":"DRIVING","runFitBounds":"1","mapStyle":"","categoryIds":"34"};
/* ]]> */
</script>
<script type='text/javascript' src='http://commonwell.test/wp-content/plugins/wp-store-locator/js/wpsl-gmap.min.js?ver=2.2.235' id='wpsl-js-js'></script>
<script type='text/javascript' src='http://commonwell.test/wp-includes/js/underscore.min.js?ver=1.13.1' id='underscore-js'></script>
</body>
</html><!-- WP Fastest Cache file was created in 5.3347518444061 seconds, on 08-04-22 15:07:49 -->