list_mail_story_seedling.html
103 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<table cellspacing="0" cellpadding="0" width="100%" border="0" style="border-spacing: 0; margin-top: -8px">
<!------green-line------->
<tr>
<td>
<table cellspacing="0" cellpadding="0" border="0" width="100%" style="background: #67b73e;">
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="660">
<tr>
<td width="330" height="30" style="text-align: left"><a target="_blank" href="http://semena.in.ua/news-actions" style="font-size: 13px; color: #fff; font-family: calibri; font-style: italic;">Заманчивые предложения</a></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<!------end-green-line------->
<!------contacts-line------->
<tr>
<td>
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td>
<table cellspacing="0" class="" cellpadding="0" border="0" width="100%" height="30" style="background: #fff;"></table>
</td>
</tr>
<tr>
<td>
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+30,f0f0f0+99 */
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top, #ffffff 30%, #f0f0f0 99%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(30%,#ffffff), color-stop(99%,#f0f0f0)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ffffff 30%,#f0f0f0 99%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ffffff 30%,#f0f0f0 99%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #ffffff 30%,#f0f0f0 99%); /* IE10+ */
background: linear-gradient(to bottom, #ffffff 30%,#f0f0f0 99%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f0f0f0',GradientType=0 ); /* IE6-9 */
">
<tr>
<td align="center">
<table cellspacing="0" cellpadding="0" border="0" width="660" height="87" style="margin: 0 20px;">
<tr>
<td valign="top" >
<table cellpadding="0" cellspacing="0" border="0" width="174"height="42">
<tr>
<td align="center" valign="top"><a target="_blank" href="http://semena.in.ua/ru"><img src="images/list_mail_story_seedling/logo.png" border="0" width="174" height="42" alt=""/></a></td>
</tr>
</table>
</td>
<td valign="top" align="center">
<table cellspacing="0" cellpadding="0" border="0" width="336">
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="310">
<tr>
<td width="168"><img style="vertical-align: middle; " src="images/list_mail_story_seedling/ico-1.png" /><span style="margin-left: 5px; font-size: 18px; font-family: calibri; color: #4a4a4a;">(044) <span style="font-size: 20px; font-weight: bold;">581-67-15</span></span></td>
<td width="168"><img style="vertical-align: middle; " src="images/list_mail_story_seedling/ico-1.png" /><span style="margin-left: 5px; font-size: 18px; font-family: calibri; color: #4a4a4a;">(044) <span style="font-size: 20px; font-weight: bold;">451-48-59</span></span></td>
</tr>
<tr>
<td width="168"><img style="vertical-align: middle; " src="images/list_mail_story_seedling/ico-2.png" /><span style="margin-left: 5px; font-size: 18px; font-family: calibri; color: #4a4a4a;">(050) <span style="font-size: 20px; font-weight: bold;">464-48-59</span></span></td>
<td width="168"><img style="vertical-align: middle; " src="images/list_mail_story_seedling/ico-3.png" /><span style="margin-left: 5px; font-size: 18px; font-family: calibri; color: #4a4a4a;">(067) <span style="font-size: 20px; font-weight: bold;">464-48-59</span></span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td width="168"><img style="vertical-align: middle; " src="images/list_mail_story_seedling/ico-4.png" /><span style="margin-left: 5px; font-size: 18px; font-family: calibri; color: #4a4a4a;">(093) <span style="font-size: 20px; font-weight: bold;">026-86-64</span></span></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td valign="top">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td height="24"><img style="vertical-align: middle; " src="images/list_mail_story_seedling/ico-5.png" /> <a target="_blank" href="{{email_cabinet}}" style="margin-left: 5px; font-size: 13px; font-family: calibri; font-style: italic; color: #4a4a4a;">Личный кабинет</a>
</td>
</tr>
<tr>
<td height="24"><img style="vertical-align: middle; " src="images/list_mail_story_seedling/ico-6.png" /><a target="_blank" href="http://semena.in.ua/callback/ru" style="margin-left: 5px; font-size: 13px; font-family: calibri; font-style: italic; color: #4a4a4a;">Обратная связь</a></td>
</tr>
<tr>
<td height="24"><img style="vertical-align: middle; " src="images/list_mail_story_seedling/ico-7.png" /><a target="_blank" href="http://semena.in.ua/video/ru" style="margin-left: 5px; font-size: 13px; font-family: calibri; font-style: italic; color: #4a4a4a;">Видеообзоры</a></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<!------end-contacts-line------->
<tr>
<td>
<table cellspacing="0" cellpadding="0" border="0" width="100%" style="background: #f0f0f0;">
<!------menu------>
<tr>
<td valign="top" align="center">
<table cellpadding="0" cellspacing="0" border="0" width="660">
<tr>
<td align="center">
<table cellspacing="0" cellpadding="0" border="0" width="654" height="36" style="background: #67b73e; border-radius: 5px;">
<tr>
<td align="center" style="border-right: 1px solid #4fa32c;"><a target="_blank" href="http://semena.in.ua/o-kompanii-1/ru" style="height: 36px; color: #fff; font-weight: bold; font-size: 14px; font-family: calibri;text-decoration: none; ">О КОМПАНИИ</a></td>
<td align="center" style="border-left: 1px solid #86d060;"><a target="_blank" href="http://semena.in.ua/dostavka-i-oplata-2/ru" style="height: 36px; color: #fff; font-weight: bold; font-size: 14px; font-family: calibri;text-decoration: none;">ДОСТАВКА И ОПЛАТА</a></td>
<td align="center" style="padding: 0 7px; background: #4e9f20;"><a target="_blank" href="http://semena.in.ua/news-actions/ru" style="height: 36px; color: #fff; font-weight: bold; font-size: 14px; font-family: calibri;text-decoration: none;">АКЦИИ</a></td>
<td align="center"><a target="_blank" href="http://semena.in.ua/prof_tips/ru" style="height: 36px; color: #fff; font-weight: bold; font-size: 14px; font-family: calibri;text-decoration: none;">СОВЕТЫ ПРОФЕССИОНАЛОВ</a></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<!----- end menu-------->
<tr>
<td height="20"></td>
</tr>
<!----kvadratki---->
<tr>
<td align="center">
<table cellspacing="0" cellpadding="0" border="0" width="660">
<tr>
<td>
<table cellpadding="0" cellspacing="0" border="0" width="96" height="155">
<tr width="96" height="96">
<td valign="top"><a target="_blank" href="http://semena.in.ua/semena_ovoshchey_1c_20/ru"><img src="images/list_mail_story_seedling/f-1.jpg" border="0" width="96" height="96" /></a></td>
</tr>
<tr>
<td align="center" valign="top" width="96" height="45">
<a target="_blank" href="http://semena.in.ua/semena_ovoshchey_1c_20/ru" style="text-transform: uppercase; color: #54a727; font-weight: bold; font-size: 13px; text-decoration: none; font-family: calibri;">СЕМЕНА<br>ОВОЩЕЙ</a>
</td>
</tr>
</table>
</td>
<td>
<table cellpadding="0" cellspacing="0" border="0" width="96" height="155">
<tr width="96" height="96">
<td valign="top"><a target="_blank" href="http://semena.in.ua/semena_tsvetov_1c_20/ru"><img src="images/list_mail_story_seedling/f-2.jpg" border="0" width="96" height="96" /></a></td>
</tr>
<tr>
<td align="center" valign="top" width="96" height="45">
<a target="_blank" href="http://semena.in.ua/semena_tsvetov_1c_20/ru" style="text-transform: uppercase; color: #b12a2c; font-weight: bold; font-size: 13px; text-decoration: none; font-family: calibri;">СЕМЕНА<br>ЦВЕТОВ</a>
</td>
</tr>
</table>
</td>
<td>
<table cellpadding="0" cellspacing="0" border="0" width="96" height="155">
<tr width="96" height="96">
<td valign="top"><a target="_blank" href="http://semena.in.ua/udobrenija_i_sredstva_zashchity_1c_20/ru"><img src="images/list_mail_story_seedling/f-3.jpg" border="0" width="96" height="96" /></a></td>
</tr>
<tr>
<td align="center" valign="top" width="96" height="45">
<a target="_blank" href="http://semena.in.ua/udobrenija_i_sredstva_zashchity_1c_20/ru" style="text-transform: uppercase; color: #f36d01; font-weight: bold; font-size: 13px; text-decoration: none; font-family: calibri;">Удобрения и<br>средства<br>защиты</a>
</td>
</tr>
</table>
</td>
<td>
<table cellpadding="0" cellspacing="0" border="0" width="96" height="155">
<tr width="96" height="96">
<td valign="top"><a target="_blank" href="http://semena.in.ua/gazonnye_travy_1c_20/ru"><img src="images/list_mail_story_seedling/f-4.jpg" border="0" width="96" height="96" /></a></td>
</tr>
<tr>
<td align="center" valign="top" width="96" height="45">
<a target="_blank" href="http://semena.in.ua/gazonnye_travy_1c_20/ru" style="text-transform: uppercase; color: #1a7781; font-weight: bold; font-size: 13px; text-decoration: none; font-family: calibri;">Газонные<br>травы</a>
</td>
</tr>
</table>
</td>
<td>
<table cellpadding="0" cellspacing="0" border="0" width="96" height="155">
<tr width="96" height="96">
<td valign="top"><a target="_blank" href="http://semena.in.ua/biopreparaty_1c_20/ru"><img src="images/list_mail_story_seedling/f-5.jpg" border="0" width="96" height="96" /></a></td>
</tr>
<tr>
<td align="center" valign="top" width="96" height="45">
<a target="_blank" href="http://semena.in.ua/biopreparaty_1c_20/ru" style="text-transform: uppercase; color: #0aa2dd; font-weight: bold; font-size: 13px; text-decoration: none; font-family: calibri;">Биопрепараты</a>
</td>
</tr>
</table>
</td>
<td width="96">
<table cellpadding="0" cellspacing="0" border="0" width="96" height="155">
<tr width="96" height="96">
<td valign="top"><a target="_blank" href="http://semena.in.ua/tovary_dlja_sada_i_ogoroda_1c_20/ru"><img src="images/list_mail_story_seedling/f-6.jpg" border="0" width="96" height="96" /></a></td>
</tr>
<tr>
<td align="center" valign="top" width="96" height="45">
<a target="_blank" href="http://semena.in.ua/tovary_dlja_sada_i_ogoroda_1c_20/ru" style="text-transform: uppercase; color: #b1873f; font-weight: bold; font-size: 13px; text-decoration: none; font-family: calibri;">Товары<br>для сада<br>и огорода</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<!-------content------->
<td>
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td align="center">
<table cellspacing="0" cellpadding="0" border="0" width="681" height="21" background="images/list_mail_story_seedling/bg-otpiska.png"></table>
</td>
</tr>
<tr>
<td align="center">
<table cellspacing="0" cellpadding="0" border="0" width="681" background="images/list_mail_story_seedling/bg-otpiska2.png">
<tr>
<td align="center">
<table class="0" cellpadding="0" border="0" width="620">
<tr>
<td style="color: #333333; font-size: 24px; font-family: calibri; font-weight: bold">
Советы агронома: как правильно выращивать рассаду
</td>
</tr>
<tr>
<td height="5"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
Выращивание рассады – дело непростое. Овощеводы знают, сколько подводных камней может встретиться на пути. В первую очередь – это выбор семян, затем – возраст рассады, температура, полив, освещение и состав почвы. Обо всем я расскажу Вам по порядку.
</td>
</tr>
<tr>
<td height="15"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table cellspacing="0" cellpadding="0" border="0" width="660" height="330" background="images/list_mail_story_seedling/seedling-bg-1.jpg">
<tr>
<td></td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="620">
<tr>
<td style="font-size: 20px; color: #333333; font-family: calibri; font-weight: bold;">
Высеивайте своевременно
</td>
</tr>
<tr>
<td style="font-size: 16px; color: #333333; font-family: calibri;">
Весной я вижу, как дачники везут на свои участки недоразвитую рассаду в фазе 4-5 листиков, надеясь на то, что за лето она вырастет. Конечно, она вырастет, но даст ли достойный урожай? Или же другая крайность – сажают переросшую рассаду, на которой уже начали завязываться плоды. От такой рассады тоже не придется ждать изобилия плодов. Я предлагаю Вам оптимальные сроки посева овощных культур на рассаду в таблице.
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="620">
<tr>
<td align="center" width="124" height="120" style="border-right: 1px solid #fff; background: #53a726; font-size: 16px; color: #fff; font-family: calibri;">КУЛЬТУРА</td>
<td align="center" width="109" height="120" style="border-right: 1px solid #fff; background: #53a726; font-size: 16px; color: #fff; font-family: calibri;">Примерный<br />срок<br />посева семян<br />на рассаду</td>
<td align="center" width="113" height="120" style="border-right: 1px solid #fff; background: #53a726; font-size: 16px; color: #fff; font-family: calibri;">Появление<br />всходов</td>
<td align="center" width="168" height="120" style="border-right: 1px solid #fff; background: #53a726; font-size: 16px; color: #fff; font-family: calibri;">
<table cellpadding="0" cellspacing="0" border="0" width="168">
<tr>
<td height="54" style="border-bottom: 1px solid #fff" align="center" colspan="2">Высадка рассады</td>
</tr>
<tr>
<td width="83" height="65" align="center" style="border-right: 1px solid #fff; font-size: 13px;">в<br />защищенный<br />грунт</td>
<td width="84" height="65" align="center" style="font-size: 13px">в<br />открытый<br />грунт</td>
</tr>
</table>
</td>
<td align="center" width="103" height="120" style=" background: #53a726; font-size: 16px; color: #fff; font-family: calibri;">Возраст<br />рассады<br />к моменту<br />высадки на<br />постоянное<br />место</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="620">
<tr>
<td align="center" width="122" style="padding: 10px 0;border-bottom: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8;border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">
<img src="images/list_mail_story_seedling/seedling-tab-1.jpg" alt=""/><br /><span style="font-weight: bold; text-transform: uppercase">ТОМАТ</span><br />Ранние<br />сорта<br />и гибриды
</td>
<td align="center" width="109" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">3-я декада марта</td>
<td align="center" width="113" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">через 6-8 дней после посева семян</td>
<td align="center" width="83" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">середина мая</td>
<td align="center" width="84" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">1-я декада июня</td>
<td align="center" width="100" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">45-50 дней</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="620">
<tr>
<td align="center" width="122" style="padding: 10px 0;border-bottom: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8;border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">
Средние
и поздние
сорта
и гибриды
</td>
<td align="center" width="109" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">2-я декада марта</td>
<td align="center" width="113" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">через 6-8 дней после посева семян</td>
<td align="center" width="83" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">середина мая</td>
<td align="center" width="84" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">1-я декада июня</td>
<td align="center" width="100" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">55-60 дней</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="620">
<tr>
<td align="center" width="122" style="padding: 10px 0;border-bottom: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8;border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">
<img src="images/list_mail_story_seedling/seedling-tab-2.jpg" alt=""/><br /><span style="font-weight: bold; text-transform: uppercase">БАКЛАЖАН</span>
</td>
<td align="center" width="109" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">3-я декада марта</td>
<td align="center" width="113" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">через 10-12 дней после посева семян</td>
<td align="center" width="83" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;"></td>
<td align="center" width="84" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">1-я декада июня</td>
<td align="center" width="100" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">60 дней</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="620">
<tr>
<td align="center" width="122" style="padding: 10px 0;border-bottom: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8;border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">
<img src="images/list_mail_story_seedling/seedling-tab-3.jpg" alt=""/><br /><span style="font-weight: bold; text-transform: uppercase">ПЕРЕЦ</span>
</td>
<td align="center" width="109" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">2-я декада марта</td>
<td align="center" width="113" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">через 10-14 дней после посева семян</td>
<td align="center" width="83" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;"></td>
<td align="center" width="84" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">1-я декада июня</td>
<td align="center" width="100" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">65-75 дней</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="620">
<tr>
<td align="center" width="124">
<table cellpadding="0" cellspacing="0" border="0" width="124">
<tr>
<td align="center" width="122" style="padding:10px 0;border-bottom: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8;border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">
<img src="images/list_mail_story_seedling/seedling-tab-4.jpg" alt=""/><br /><span style="font-weight: bold; text-transform: uppercase">КАПУСТА БЕЛОКАЧАННАЯ</span>
</td>
</tr>
<tr>
<td align="center" width="122" style="padding:10px 0;border-bottom: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8;border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">
<img src="images/list_mail_story_seedling/seedling-tab-5.jpg" alt=""/><br /><span style="font-weight: bold; text-transform: uppercase">ЦВЕТНАЯ КАПУСТА</span>
</td>
</tr>
</table>
</td>
<td align="center" width="109" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">последние числа марта либо 1-я декада апреля</td>
<td align="center" width="113" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">через 4-6 дней после посева семян</td>
<td align="center" width="83" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;"></td>
<td align="center" width="84" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">последняя декада мая</td>
<td align="center" width="100" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">45-50 дней</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="620">
<tr>
<td align="center" width="122" style="padding: 10px 0;border-bottom: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8;border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">
<img src="images/list_mail_story_seedling/seedling-tab-6.jpg" alt=""/><br /><span style="font-weight: bold; text-transform: uppercase">ОГУРЕЦ</span>
</td>
<td align="center" width="109" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">последняя декада апреля либо первая декада мая</td>
<td align="center" width="113" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">через 2-4 дня после посева семян</td>
<td align="center" width="83" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">последняя декада мая</td>
<td align="center" width="84" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">1-я декада июня</td>
<td align="center" width="100" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">25-30 дней</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="620">
<tr>
<td align="center" width="124">
<table cellpadding="0" cellspacing="0" border="0" width="124">
<tr>
<td align="center" width="122" style="padding:10px 0;border-bottom: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8;border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">
<img src="images/list_mail_story_seedling/seedling-tab-7.jpg" alt=""/><br /><span style="font-weight: bold; text-transform: uppercase">КАБАЧОК</span>
</td>
</tr>
<tr>
<td align="center" width="122" style="padding:10px 0;border-bottom: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8;border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">
<img src="images/list_mail_story_seedling/seedling-tab-8.jpg" alt=""/><br /><span style="font-weight: bold; text-transform: uppercase">ПАТИССОН</span>
</td>
</tr>
<tr>
<td align="center" width="122" style="padding:10px 0;border-bottom: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8;border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">
<img src="images/list_mail_story_seedling/seedling-tab-9.jpg" alt=""/><br /><span style="font-weight: bold; text-transform: uppercase">ТЫКВА</span>
</td>
</tr>
</table>
</td>
<td align="center" width="109" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">2-я либо 3-я декада апреля</td>
<td align="center" width="113" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">через 3-5 дней после посева семян</td>
<td align="center" width="83" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;"></td>
<td align="center" width="84" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">последняя декада мая</td>
<td align="center" width="100" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">25-30 дней</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="620">
<tr>
<td align="center" width="122" style="padding: 10px 0;border-bottom: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8;border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">
<img src="images/list_mail_story_seedling/seedling-tab-10.jpg" alt=""/><br /><span style="font-weight: bold; text-transform: uppercase">СЕЛЬДЕРЕЙ</span>
</td>
<td align="center" width="109" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">2- декада февраля</td>
<td align="center" width="113" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">через 13-17 дней после посева семян </td>
<td align="center" width="83" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;"></td>
<td align="center" width="84" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">последняя декада мая</td>
<td align="center" width="100" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">75-85 дней</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="620">
<tr>
<td align="center" width="122" style="padding: 10px 0;border-bottom: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8;border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">
<img src="images/list_mail_story_seedling/seedling-tab-11.jpg" alt=""/><br /><span style="font-weight: bold; text-transform: uppercase">КОЧАННЫЙ САЛАТ</span>
</td>
<td align="center" width="109" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">последняя декада апреля либо первые числа мая</td>
<td align="center" width="113" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">через 3-5 дней после посева семян</td>
<td align="center" width="83" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;"></td>
<td align="center" width="84" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">2-я декада июня</td>
<td align="center" width="100" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">35-45 дней</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="620">
<tr>
<td align="center" width="124">
<table cellpadding="0" cellspacing="0" border="0" width="124">
<tr>
<td align="center" width="122" height="86" style="padding:10px 0;border-bottom: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8;border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">
<img src="images/list_mail_story_seedling/seedling-tab-12.jpg" alt=""/><br /><span style="font-weight: bold; text-transform: uppercase">ЛУК-ПОРЕЙ</span>
</td>
</tr>
<tr>
<td align="center" width="122" style="padding:10px 0;border-bottom: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8;border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">
<img src="images/list_mail_story_seedling/seedling-tab-13.jpg" alt=""/><br /><span style="font-weight: bold; text-transform: uppercase">ЛУК-ЧЕРНУШКА НА РЕПКУ</span>
</td>
</tr>
</table>
</td>
<td align="center" width="109" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">1-я либо 2-я декада марта</td>
<td align="center" width="113" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">через 10-15 дней после посева семян</td>
<td align="center" width="83" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;"></td>
<td align="center" width="84" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">2-я декада мая</td>
<td align="center" width="100" style="border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; color: #333; font-family: calibri;">45-55 дней</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="620">
<tr>
<td style="font-size: 16px; color: #333333; font-family: calibri;">
Замечу, что перерастить рассаду сельдерея и перца неопасно, а вот капусте, салату и луку перерост может быть опасен. Но особо осторожны будьте с томатами – они должны высаживаться строго по графику.
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="620">
<tr>
<td style="font-size: 20px; color: #333333; font-family: calibri; font-weight: bold;">
«Живая» земля для рассады
</td>
</tr>
<tr>
<td style="font-size: 16px; color: #333333; font-family: calibri;">
Плохая или неправильная почвосмесь может замедлить рост рассады и даже убить растения. Нельзя просто пойти на огород, набрать земли и посеять в нее семена — это необдуманно и неправильно. Потому что, например, капуста не будет расти в земле, где выращивались крестоцветные: в ней наверняка есть инфекции для капустных культур. Поэтому отнеситесь к вопросу состава почвы осторожно.
</td>
</tr>
<tr><td height="15"></td></tr>
<tr>
<td style="font-size: 16px; color: #333333; font-family: calibri;">
Я приведу наиболее распространенные варианты органических компонентов для почвосмеси. В первую очередь это дерновая земля: она заготавливается осенью, и если ее нет, можно взять землю с огорода. Листовая земля – перепревшие листья любых деревьев, только не дуба и ивы – в них много дубильных веществ. Кроме того, используйте перегной, торф, древесную золу, от себя добавлю, что отличными добавками будет шелуха зерен, лузга подсолнуха и высушенная толченая яичная скорлупа. Кстати, в яичную скорлупу Вы можете посадить и рассаду.
</td>
</tr>
<tr><td height="15"></td></tr>
<tr>
<td style="font-size: 16px; color: #333333; font-family: calibri;">
Из неорганических используется промытый речной песок, керамзит. Для сокращения поливов можно использовать гидрогель, а для снижения кислотности почвы – известь-пушонку.
</td>
</tr>
<tr><td height="15"></td></tr>
</table>
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
<tr>
<td align="center">
<table cellspacing="0" cellpadding="0" border="0" width="660" height="260" background="images/list_mail_story_seedling/seedling-bg-2.jpg">
<tr>
<td></td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
<tr>
<td align="center">
<table class="0" cellpadding="0" border="0" width="620">
<tr>
<td style="color: #333333; font-size: 20px; font-family: calibri; font-weight: bold">
Составы почвенных смесей
</td>
</tr>
<tr>
<td height="5"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
<span style="font-style: italic">Для перца, томатов, баклажанов, капусты</span> оптимален следующий состав:
земля (дерновая или листовая), торф, песок в соотношении 1:1:1.
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
<span style="font-style: italic">Для перца, томатов, капусты, сельдерея, лука и баклажанов</span> можно использовать такой состав: перегной, дерновая земля и песок – 1:2:1. На ведро смеси добавить 2 стакана древесной золы.
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
<span style="font-style: italic">Для выращивания рассады тыквы и огурца</span> смешивают перегной и дерновую землю (1:1) и на ведро смеси добавляют стакан древесной золы.
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
<span style="font-style: italic">Для выращивания рассады перца, томатов, баклажанов</span> я рекомендую использовать единый состав: земля с огорода, покупной грунт для рассады (универсальный) и песок – 1:1:1.
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
Помните, что грунт для рассады не должен быть слишком питательным: то, что хорошо для взрослого растения, маленькое может погубить.
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table class="0" cellpadding="0" border="0" width="620">
<tr>
<td style="color: #333333; font-size: 20px; font-family: calibri; font-weight: bold">
Во что сажать: торф, ПВХ или яичная скорлупа?
</td>
</tr>
<tr>
<td height="5"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
Можно выращивать рассаду с пикировкой или без нее. Если вы будете делать пикировку, то высевайте семена в небольшие емкости (ящички, коробочки). После всходов пересаживайте в большие ящики или отдельные горшочки. Для культур, которые не любят пересадки, лучше воспользоваться вторым способом: высевать семена по отдельности в кассеты, небольшие стаканчики или торфяные таблетки.
</tr>
<tr>
<td height="20"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
Горшки для рассады дают возможность обходиться без пикировки сеянцев — при пересадке вы просто переваливаете их в землю. Вероятность поражения молодых корней растений гнилью нулевая, что, согласитесь, немаловажно.
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table cellspacing="0" cellpadding="0" border="0" width="660" height="260" background="images/list_mail_story_seedling/seedling-bg-3.jpg">
<tr>
<td></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table class="0" cellpadding="0" border="0" width="620">
<tr>
<td height="20"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
Самый простой вариант емкости для выращивания рассады — обыкновенный деревянный ящик. Сколотить его легко из обыкновенных досок. Не забудьте сделать под него подставку из фанеры и выстелить изнутри полиэтиленовой пленкой, иначе он будет пропускать воду. Для рассады используется масса емкостей, я рассажу о них подробнее.
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
<span style="font-weight: bold;">Торфяные горшки.</span> Выращивать в них рассаду легко: просто заполняете землей и ждете всходов. При высадке в грунт растения не травмируются, горшки разлагаются в земле и обеспечивают дополнительное удобрение. Однако будьте осторожны с поливом: горшочек не должен пересыхать, а при чрезмерном поливе он может покрыться плесенью.
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table class="0" cellpadding="0" border="0" width="620">
<tr>
<td height="20"></td>
</tr>
<tr>
<td width="310" align="center"><a target="_blank" href="http://semena.in.ua/tovary_dlja_sada_i_ogoroda_1c_20/dlja_rassady_1c_21/torfjanye_gorshki_dlja_vyrashchivanija_rassadyx_1c2-2556/ru"><img src="images/list_mail_story_seedling/seedling-pic-1.jpg" alt=""/></a></td>
<td width="310" align="center"><a target="_blank" href="http://semena.in.ua/tovary_dlja_sada_i_ogoroda_1c_20/dlja_rassady_1c_21/torfjanye_gorshki_dlja_vyrashchivanija_rassady_1c2-2388/ru"><img src="images/list_mail_story_seedling/seedling-pic-2.jpg" alt=""/></a></td>
</tr>
<tr>
<td height="5"></td>
</tr>
<tr>
<td width="310" align="center"><a target="_blank" href="http://semena.in.ua/tovary_dlja_sada_i_ogoroda_1c_20/dlja_rassady_1c_21/torfjanye_gorshki_dlja_vyrashchivanija_rassadyx_1c2-2556/ru" style="text-decoration:none;color:#00aeef;font-size: 16px; font-family: calibri;">Торфяные горшки<br />для рассады</a></td>
<td width="310" align="center"><a target="_blank" href="http://semena.in.ua/tovary_dlja_sada_i_ogoroda_1c_20/dlja_rassady_1c_21/torfjanye_gorshki_dlja_vyrashchivanija_rassady_1c2-2388/ru" style="text-decoration:none;color:#00aeef;font-size: 16px; font-family: calibri;">Торфяные горшки<br />для выращивания рассады</a></td>
</tr>
<tr>
<td height="20"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="620">
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
<span style="font-weight: bold;">Торфяные таблетки</span> – спрессованный в таблетку мелкофракционный торф с добавлением питательных микроэлементов, снаружи обернутый тоненькой прочной сеткой. Таблетки разбухают в воде, увеличиваясь в высоту примерно в 5-7 раз. В углубления сверху сажают семена. Благодаря удобной форме таблеток и уникальным качествам торфа — его водо- и воздухопроницаемости, корневая система растений беспрепятственно и быстро развивается.
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table class="0" cellpadding="0" border="0" width="620">
<tr>
<td height="20"></td>
</tr>
<tr>
<td width="310" align="center"><a target="_blank" href="http://semena.in.ua/tovary_dlja_sada_i_ogoroda_1c_20/dlja_rassady_1c_21/torfjanye_tabletkixx_1c2-2568/ru"><img src="images/list_mail_story_seedling/seedling-pic-3.jpg" alt=""/></a></td>
<td width="310" align="center"><a target="_blank" href="http://semena.in.ua/tovari_dlja_sadu_ta_gorodu_1c0/dlja_rozsadi_1c1/torfjani_tabletkix_1c-2442"><img src="images/list_mail_story_seedling/seedling-pic-4.jpg" alt=""/></a></td>
</tr>
<tr>
<td height="5"></td>
</tr>
<tr>
<td width="310" align="center"><a target="_blank" href="http://semena.in.ua/tovary_dlja_sada_i_ogoroda_1c_20/dlja_rassady_1c_21/torfjanye_tabletkixx_1c2-2568/ru" style="text-decoration:none;color:#00aeef;font-size: 16px; font-family: calibri;">Торфяные таблетки</a></td>
<td width="310" align="center"><a target="_blank" href="http://semena.in.ua/tovari_dlja_sadu_ta_gorodu_1c0/dlja_rozsadi_1c1/torfjani_tabletkix_1c-2442" style="text-decoration:none;color:#00aeef;font-size: 16px; font-family: calibri;">Торфяные таблетки</a></td>
</tr>
<tr>
<td height="20"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table class="0" cellpadding="0" border="0" width="620">
<tr>
<td height="20"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
<span style="font-weight: bold;">Торфяные кассеты</span> делают из 70% торфа и 30% картона, поэтому вынимать из них рассаду во время высадки растений в грунт тоже необходимости нет. Будьте также осторожны с поливом.
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
<span style="font-weight: bold;">ПВХ кассеты и кассеты из полистирола</span> — это портативные и легкие рассадники. Они удобные, компактные, пользоваться ими можно более десяти лет. Количество ячеек в кассетах бывает различным: 18, 30, 50 и так далее. В кассетах рассаду легко транспортировать, легко доставать для высадки.
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table class="0" cellpadding="0" border="0" width="620">
<tr>
<td width="206" align="center"><a target="_blank" href="http://semena.in.ua/tovary_dlja_sada_i_ogoroda_1c_20/dlja_rassady_1c_21/parnichek_dlja_rossadyx_1c2-2440/ru"><img src="images/list_mail_story_seedling/seedling-pic-5.jpg" alt=""/></a></td>
<td width="208" align="center"><a target="_blank" href="http://semena.in.ua/tovary_dlja_sada_i_ogoroda_1c_20/dlja_rassady_1c_21/kasseta_s_poddonom_dlja_rassady_1c2-2437/ru"><img src="images/list_mail_story_seedling/seedling-pic-6.jpg" alt=""/></a></td>
<td width="206" align="center"><a target="_blank" href="http://semena.in.ua/tovary_dlja_sada_i_ogoroda_1c_20/dlja_rassady_1c_21/poddon_plastikovyy_1c2-2444/ru"><img src="images/list_mail_story_seedling/seedling-pic-7.jpg" alt=""/></a></td>
</tr>
<tr>
<td width="206" align="center" valign="top"><a target="_blank" href="http://semena.in.ua/tovary_dlja_sada_i_ogoroda_1c_20/dlja_rassady_1c_21/parnichek_dlja_rossadyx_1c2-2440/ru" style="text-decoration:none;color:#00aeef;font-size: 16px; font-family: calibri;">Паричок для рассады</a></td>
<td width="208" align="center" valign="top"><a target="_blank" href="http://semena.in.ua/tovary_dlja_sada_i_ogoroda_1c_20/dlja_rassady_1c_21/kasseta_s_poddonom_dlja_rassady_1c2-2437/ru" style="text-decoration:none;color:#00aeef;font-size: 16px; font-family: calibri;">Кассета с поддоном<br />36 секций</a></td>
<td width="206" align="center" valign="top"><a target="_blank" href="http://semena.in.ua/tovary_dlja_sada_i_ogoroda_1c_20/dlja_rassady_1c_21/poddon_plastikovyy_1c2-2444/ru" style="text-decoration:none;color:#00aeef;font-size: 16px; font-family: calibri;">Пластиковый поддон</a></td>
</tr>
<tr>
<td height="20"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="298" height="40">
<tr>
<td style=" border-bottom: 3px solid #55a727; text-align: center ;border-radius: 4px; background: #67b73e; box-sizing: border-box; padding-top: 3px">
<a target="_blank" href="http://semena.in.ua/tovary_dlja_sada_i_ogoroda_1c_20/dlja_rassady_1c_21/ru" style=" color: #fff; text-transform: uppercase; font-family: calibri; font-size: 14px; font-weight: bold; text-decoration: none;">Посмотреть все товары для рассады</a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table class="0" cellpadding="0" border="0" width="620">
<tr>
<td height="20"></td>
</tr>
<tr>
<td height="5"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
<span style="font-weight: bold;">Самодельные емкости.</span> Можно сделать емкости из подручных материалов. Для этого подойдут пакеты, бумажные стаканчики и стаканчики от молочных продуктов и соков, бутылки из-под газированных напитков.
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table cellspacing="0" cellpadding="0" border="0" width="660" height="260" background="images/list_mail_story_seedling/seedling-bg-4.jpg">
<tr>
<td></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table class="0" cellpadding="0" border="0" width="620">
<tr>
<td height="20"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
<span style="font-weight: bold;">Яичная скорлупа.</span> Подходит для выращивания цветов и мелких растений. Острым шилом сделайте отверстие в скорлупе, наполните земляной смесью и положите семечко. Перед посадкой в грунт, сожмите яйцо в руке, чтобы треснуло, не сбрасывайте скорлупу – она сама растворится и превратится в отличное удобрение.
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table class="0" cellpadding="0" border="0" width="620">
<tr>
<td height="20"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 20px; font-family: calibri; font-weight: bold">
Полив, освещение и температурный режим растений
</td>
</tr>
<tr>
<td height="5"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
Почву полейте перед посевом семян, а не после, потому что иначе семена затянет вглубь и им сложно будет «пробиться» наружу. Поливайте почву только комнатной водой, ни в коем случае не холодной. Емкости с только что высеянными семенами можно накрыть пленкой, чтобы влага не испарялась, но как только появятся первые всходы – снимите пленку.
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
Следите и за освещением растений, лучше всего рассада себя чувствует на южной стороне. Для нормального роста растений нужен 12-14-часовой световой день, поэтому рекомендую использовать лампы дневного света для досвечивания. Рекомендую установить светоотражающий фольгированный экран. Сделать его можно из плотного картона, обтянутого обыкновенной пищевой фольгой.
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
Идеальной температурой для семян считается +18...+25°С, а для теплолюбивых растений — +25...+З0°С. После появления всходов, будет достаточно +20°С.
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table class="0" cellpadding="0" border="0" width="620">
<tr>
<td height="20"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 20px; font-family: calibri; font-weight: bold">
Высадка семян
</td>
</tr>
<tr>
<td height="5"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
Увлажните почву и насыпьте в горшочки или секции. Разровняйте землю и сделайте бороздки в 1 см и 5 см между грядками. Опустите семена в 2 см друг от друга, присыпьте землей и увлажните распылителем. Теперь остается только следить за температурой (не ниже +22°С) и освещением. Рекомендую высеять на 15—20% больше рассады, чем рассчитано, потому что часть рассады после высадки нужно будет обновлять.
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
Смотрите на видео как я высаживаю рассаду томатов и перца.
</td>
</tr>
<tr>
<td height="20"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table class="0" cellpadding="0" border="0" width="620">
<tr>
<td width="322"><a target="_blank" href="https://www.youtube.com/watch?v=lJKO1TEUuwY&list=PLhthGIt1GYSoiLg1yV1BbZVl3RLva9Qyd&index=28"><img src="images/list_mail_story_seedling/seedling-pic-8.jpg" alt=""/></a></td>
<td width="18"></td>
<td width="182"><a target="_blank" href="https://www.youtube.com/watch?v=do06teB0Z6U"><img src="images/list_mail_story_seedling/seedling-pic-9.jpg" alt=""/></a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table class="0" cellpadding="0" border="0" width="620">
<tr>
<td height="10"></td>
</tr>
<tr>
<td style="color: #333333; font-size: 16px; font-family: calibri;">
Хороших Вам всходов и урожаев! Вступайте в нашу группу в <a href="https://www.facebook.com/Professionalseeds" target="_blank" style="text-decoration:none;color:#00aeef;">Facebook</a> и принимайте участие в акциях.
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="30"></td>
</tr>
<tr>
<td align="center">
<table cellspacing="0" cellpadding="0" border="0" width="660" height="413" background="images/list_mail_story_seedling/bg-5.jpg">
<tbody><tr>
<td align="center" valign="bottom" style="color: #fff; font-family: calibri; font-style: 16px; font-weight: bold;">
Юрий Подлужный<br>
<span style="font-weight: normal; font-size: 14px;">Ведущий агроном компании «Професійне насіння»</span>
</td>
</tr>
<tr>
<td height="30"></td>
</tr>
</tbody></table>
</td>
</tr>
</table>
</td>
</tr>
<!-------content------->
</table>
</td>
</tr>
<tr>
<td height="30" style="background: #f0f0f0;"></td>
</tr>
<!--------footer------->
<tr>
<td>
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="236" background="images/list_mail_story_seedling/bg-2.jpg">
<tr>
<td align="center">
<table cellspacing="0" border="0" cellpadding="0" width="660">
<tr>
<td>
<table cellpadding="0" cellspacing="0" border="0" height="236">
<tr>
<td height="90"><a target="_blank" href="http://semena.in.ua/ru"><img src="images/list_mail_story_seedling/logo2.png" border="0" alt="semena.in.ua" /></a></td>
</tr>
<tr>
<td valign="top" height="60" style="color: #4a4a4a; font-size: 15px; font-family: calibri; font-weight: normal;">Адрес центрального офиса:<br>
<span style="font-weight: bold;">Киев, ул. Садовая, 95</span></td>
</tr>
</table>
</td>
<td align="center">
<table cellspacing="0" cellpadding="0" border="0">
<tr><td width="168"><img style="vertical-align: middle; " src="images/list_mail_story_seedling/ico-1.png"><span style="margin-left: 5px; font-size: 18px; font-family: calibri; color: #4a4a4a;">(044) <span style="font-size: 20px; font-weight: bold;">581-67-15</span></span></td></tr>
<tr><td width="168"><img style="vertical-align: middle; " src="images/list_mail_story_seedling/ico-1.png"><span style="margin-left: 5px; font-size: 18px; font-family: calibri; color: #4a4a4a;">(044) <span style="font-size: 20px; font-weight: bold;">451-48-59</span></span></td></tr>
<tr><td width="168"><img style="vertical-align: middle; " src="images/list_mail_story_seedling/ico-2.png"><span style="margin-left: 5px; font-size: 18px; font-family: calibri; color: #4a4a4a;">(050) <span style="font-size: 20px; font-weight: bold;">464-48-59</span></span></td></tr>
<tr><td width="168"><img style="vertical-align: middle; " src="images/list_mail_story_seedling/ico-3.png"><span style="margin-left: 5px; font-size: 18px; font-family: calibri; color: #4a4a4a;">(067) <span style="font-size: 20px; font-weight: bold;">464-48-59</span></span></td></tr>
<tr><td width="168"><img style="vertical-align: middle; " src="images/list_mail_story_seedling/ico-4.png"><span style="margin-left: 5px; font-size: 18px; font-family: calibri; color: #4a4a4a;">(093) <span style="font-size: 20px; font-weight: bold;">026-86-64</span></span></td></tr>
</table>
</td>
<td align="right">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<table cellspacing="0" cellpadding="0" border="0" width="168" style="text-align: right">
<tr>
<td><a target="_blank" href="https://www.facebook.com/Professionalseeds"><img src="images/list_mail_story_seedling/fb.png" border="0" alt=""/></a></td>
<td><a target="_blank" href="https://www.youtube.com/channel/UCMnG-NxtoprcTxKcPouwWdQ"><img src="images/list_mail_story_seedling/youtube.png" border="0" alt=""/></a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr>
<td align="right">
<table cellpadding="0" cellspacing="0" border="0" width="148" height="26">
</table>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr>
<td align="right">
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<!------end--footer------->
<tr>
<td>
<table cellspacing="0" cellpadding="0" border="0" width="100%" height="30" style="background: #fff;">
<tr>
<td align="center" style="color: #333333; font-size: 13px; font-family: calibri; font-style: italic; line-height: 30px">Вы получили это письмо, потому что зарегистрированы на сайте
<a href="http://semena.in.ua/" target="_blank" style="color: #3c3b3b;">semena.in.ua</a></td>
</tr>
</table>
</td>
</tr>
</td>
</tr>
</table>
</body>
</html>