counter.txt 119 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
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
</head>
<body>
<style>
    @font-face {
        font-family: 'PFDinDisplayProMedium';
        src: url('fonts/pfdindisplaypro-medium-webfont.eot');
        src: url('fonts/pfdindisplaypro-medium-webfont.eot?#iefix') format('embedded-opentype'),
        url('fonts/pfdindisplaypro-medium-webfont.woff') format('woff'),
        url('fonts/pfdindisplaypro-medium-webfont.ttf') format('truetype'),
        url('fonts/pfdindisplaypro-medium-webfont.svg#PFDinDisplayProMedium') format('svg');
        font-weight: normal;
        font-style: normal;
    }
</style>
<tr>
    <table cellspacing="0" cellpadding="0" width="100%" border="0" style="background:#fff;border-spacing: 0; font-size: 13px;margin-top: -8px; font-family:PFDinDisplayProMedium; font-family: Arial;">
        <tr style="border-spacing: 0;">
            <td align="center" valign="top" style="border-spacing: 0; height: 50px;">
                <p>Интересные игрушки для веселых игр</br>
                Не открываются картинки? <a href = 'http://boobasik.ru/email/vesna_2015.html?utm_source=inform_email&utm_medium=email&utm_term=1&utm_campaign=vesna_2015' style="color: #049ac9;">Нажмите сюда</a></p>
            </td>
        </tr>
    </table>
</tr>
<tr>
    <table cellspacing="0" cellpadding="0" width="100%" border="0" background="images/bg.jpg" style="border-spacing: 0;font-family:PFDinDisplayProMedium; font-size: 13px;">
        <tr>
            <td align="center">
                <table cellspacing="0" cellpadding="0" border="0" style="background: #fff; margin: 30px 20px 30px 20px;border: 1px solid #D7D7D7; border-radius: 10px;">
                    <tr>
                        <td align="center" valign="top">
                            <table border="0" cellpadding="0" cellspacing="0" width="660" style=" padding: 30px 20px; color: #363636;">
                                <tr>
                                    <td>
                                        <table cellspacing="0" cellpadding="0" border="0">
                                            <td height="65"><a href = 'http://boobasik.ru/?utm_source=inform_email&utm_medium=email&utm_term=2&utm_campaign=vesna_2015'><img src="images/logo.jpg" height="65" width="300" alt="boobasik.ru" style="margin-left: 60px;"></a></td>
                                            <td height="65"><font style="font-size: 21px; margin-left: 15px;color: #363636;">Любимые игрушки</font></td>
                                        </table>
                                    </td>
                                </tr>
                                <tr>
                                    <td>
                                        <table cellspacing="0" cellpadding="0" border="0">
                                            <td height="30" valign="bottom"><img src="images/border_1.jpg" height="3" width="620"></td>
                                        </table>
                                    </td>
                                </tr>
                                <tr>
                                    <td align="center">
                                        <table border="0" cellpadding="0" cellspacing="0" style="font-size: 14px; text-align: justify; color: red; padding: 0 5px;">
                                            <tr height="50">
                                                <td><a href = 'http://boobasik.ru/catalog/devochkam/?utm_source=inform_email&utm_medium=email&utm_term=3&utm_campaign=vesna_2015'  style="color: #363636; text-decoration: none;margin-right: 8px;">Девочкам</a></td>
                                                <td><a href = 'http://boobasik.ru/catalog/malchikam/?utm_source=inform_email&utm_medium=email&utm_term=4&utm_campaign=vesna_2015'  style="color: #363636; text-decoration: none;margin-right: 8px;">Мальчикам</a></td>
                                                <td><a href = 'http://boobasik.ru/catalog/malysham/?utm_source=inform_email&utm_medium=email&utm_term=5&utm_campaign=vesna_2015'  style="color: #363636; text-decoration: none;margin-right: 8px;">Малышам</a></td>
                                                <td><a href = 'http://boobasik.ru/catalog/igry-i-igrushki/?utm_source=inform_email&utm_medium=email&utm_term=6&utm_campaign=vesna_2015'  style="color: #363636; text-decoration: none;margin-right: 8px;">Игры</a></td>
                                                <td><a href = 'http://boobasik.ru/catalog/sport-i-aktivnyy-otdykh/?utm_source=inform_email&utm_medium=email&utm_term=7&utm_campaign=vesna_2015'  style="color: #363636; text-decoration: none;margin-right: 8px;">Спорт</a></td>
                                                <td><a href = 'http://boobasik.ru/catalog/tvorchestvo-i-khobbi/?utm_source=inform_email&utm_medium=email&utm_term=8&utm_campaign=vesna_2015'  style="color: #363636; text-decoration: none;margin-right: 8px;">Творчество</a></td>
                                                <td><a href = 'http://boobasik.ru/catalog/detskiy-transport/?utm_source=inform_email&utm_medium=email&utm_term=9&utm_campaign=vesna_2015'  style="color: #363636; text-decoration: none;margin-right: 8px;">Детский транспорт </a></td>
                                                <td><a href = 'http://boobasik.ru/catalog/tovary-dlya-prazdnikov/?utm_source=inform_email&utm_medium=email&utm_term=10&utm_campaign=vesna_2015'  style="color: #363636; text-decoration: none;">Праздники</a></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                                <tr>
                                    <td>
                                        <table cellspacing="0" cellpadding="0" border="0" width="620" height="280" background="images/bg_boy.jpg">
                                            <tr>
                                                <td height="180"></td>
                                            </tr>
                                            <tr>
                                                <td>
                                                    <table cellpadding="0" cellspacing="0" border="0">
                                                        <tr>
                                                            <td width="423" style="padding-left: 25px;"><p style="color: #363636; font-size: 18px;">Пришла весна. Пришло время сесть за руль!</p></td>
                                                            <td><a href = 'http://boobasik.ru/catalog/detskiy-transport/?utm_source=inform_email&utm_medium=email&utm_term=9&utm_campaign=vesna_2015' style="text-decoration: none; color:#fff">Детский транспорт</a></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                                <tr>
                                    <td>
                                        <table cellspacing="0" cellpadding="0" border="0">
                                            <tr>
                                                <td valign="bottom" height="50" align="center"><font style="text-transform:uppercase; font-size: 22px; color: #ff5194">Горячие акционные предложения!</font></td>
                                            </tr>
                                            <tr>
                                                <td valign="bottom" align="center" height="50"><font style="font-size: 13px">Впереди самые теплые весенние месяцы и жаркое лето, так почему бы не порадовать малыша и не подарить ему велосипед? А если велосипед уже есть, то разнообразить детский досуг могут ролики, самокаты и электромобили. Ведь ваш малыш давно о таком мечтал, не правда ли?</font></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                                <tr>
                                    <td height="30"></td>
                                </tr>
                                <tr>
                                    <td>
                                        <table cellspacing="0" cellpadding="0" border="0" width="620">
                                            <tr>
                                                <td width="215">
                                                    <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="123" width="150" valign="middle" align="center"><a href = 'http://boobasik.ru/catalog/skutery-i-mototsikly-detskie/mototsikl-chernyy-so-svetom-mp3-akkumulyator-6v45ah-12w-86095-plamennyy-motor/?utm_source=inform_email&utm_medium=email&utm_term=12&utm_campaign=vesna_2015'><img src="images/foto_1.jpg" alt="Черный мотоцикл на аккумуляторе «Пламенный мотор»"/></a></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Черный мотоцикл на аккумуляторе «Пламенный мотор»</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">6 390 руб.</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                <a href = 'http://boobasik.ru/catalog/skutery-i-mototsikly-detskie/mototsikl-chernyy-so-svetom-mp3-akkumulyator-6v45ah-12w-86095-plamennyy-motor/?utm_source=inform_email&utm_medium=email&utm_term=12&utm_campaign=vesna_2015'>
                                                                    <table align="center" height="35" width="124" background="images/button.jpg" style="background-repeat: no-repeat;">
                                                                        <tr>
                                                                            <td><font style=" color: #fff;text-transform: uppercase; font-size: 11px; padding-left: 10px">посмотреть</font></td>
                                                                        </tr>
                                                                    </table>
                                                                </a>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                                <td width="215">
                                                    <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="123" width="150" valign="middle" align="center">
                                                                <a href = 'http://boobasik.ru/catalog/trekhkolesnye-velosipedy/velosiped-trekhkolesnyy-mobi-kids-biryuzovyy-s-muzykoy-t2002-moby-kids/?utm_source=inform_email&utm_medium=email&utm_term=14&utm_campaign=vesna_2015'><img src="images/foto_2.jpg" alt="T200-2 Moby Kids"/></a></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Велосипед трехколесный</br> «с музыкой T200-2 Moby Kids»</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">2290 руб.</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                <a href = 'http://boobasik.ru/catalog/trekhkolesnye-velosipedy/velosiped-trekhkolesnyy-mobi-kids-biryuzovyy-s-muzykoy-t2002-moby-kids/?utm_source=inform_email&utm_medium=email&utm_term=14&utm_campaign=vesna_2015'>
                                                                <table align="center" height="35" width="124" background="images/button.jpg" style="background-repeat: no-repeat;">
                                                                    <tr>
                                                                        <td><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px; padding-left: 10px">посмотреть</font></td>
                                                                    </tr>
                                                                </table>
                                                                </a>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                                <td>
                                                    <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="123" width="150" valign="middle" align="center">
                                                                <a href = 'http://boobasik.ru/catalog/kvadrotsikly-detskie/kvadrotsikl-krasnyy-35w-6v7ah-86077-plamennyy-motor/?utm_source=inform_email&utm_medium=email&utm_term=16&utm_campaign=vesna_2015'><img src="images/cc2eff6c1c8402b46d8ab89e02f20536.jpg" alt="86077 Пламенный мотор"/></a></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Квадроцикл красный «Пламенный мотор»</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">7 490 руб.</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                <a href = 'http://boobasik.ru/catalog/kvadrotsikly-detskie/kvadrotsikl-krasnyy-35w-6v7ah-86077-plamennyy-motor/?utm_source=inform_email&utm_medium=email&utm_term=16&utm_campaign=vesna_2015'>
                                                                    <table align="center" height="35" width="124" background="images/button.jpg" style="background-repeat: no-repeat;">
                                                                        <tr>
                                                                            <td><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px; padding-left: 10px">посмотреть</font></td>
                                                                        </tr>
                                                                    </table>
                                                                </a>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                                <tr>
                                    <td height="40"></td>
                                </tr>
                                <tr>
                                    <td>
                                        <table cellspacing="0" cellpadding="0" border="0" width="620">
                                            <tr>
                                                <td width="160">
                                                    <table border="0" cellpadding="0" cellspacing="0" width="140">
                                                        <tr>
                                                            <td>
                                                                <table cellspacing="0" cellpadding="0" border="0" width="68" height="72" background="images/price_kids.png" style="position: absolute; margin-left: 72px;">
                                                                    <tr>
                                                                        <td height="8"></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="middle"><font style="color:#fff; font-size: 15px;">от 1390 руб.</font></td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td>
                                                                <table cellpadding="0" cellspacing="0" border="0" width="70" height="163">
                                                                    <tr>
                                                                        <td align="center" valign="middle"><a href = 'http://boobasik.ru/catalog/dvukhkolesnye-samokaty/?utm_source=inform_email&utm_medium=email&utm_term=18&utm_campaign=vesna_2015'"><img src="images/kids_1.jpg" alt="самокаты"/></a></td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="20"><a href = 'http://boobasik.ru/catalog/dvukhkolesnye-samokaty/?utm_source=inform_email&utm_medium=email&utm_term=18&utm_campaign=vesna_2015' style="font-size: 13px; color: #049ac9;">Детские самокаты</a></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                                <td>
                                                    <table border="0" cellpadding="0" cellspacing="0" width="140">
                                                        <tr>
                                                            <td>
                                                                <table cellspacing="0" cellpadding="0" border="0" width="68" height="72" background="images/price_kids.png" style="position: absolute; margin-left: 72px;">
                                                                    <tr>
                                                                        <td height="8"></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="middle"><font style="color:#fff; font-size: 15px;">от 1190 руб.</font></td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td>
                                                                <table cellpadding="0" cellspacing="0" border="0" width="70" height="163">
                                                                    <tr>
                                                                        <td align="center" valign="middle"><a href = 'http://boobasik.ru/catalog/rolikovye-konki-detskie/?utm_source=inform_email&utm_medium=email&utm_term=20&utm_campaign=vesna_2015'><img src="images/kids_2.jpg" alt="Роликовые коньки"/></a></td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="20"><a href = 'http://boobasik.ru/catalog/rolikovye-konki-detskie/?utm_source=inform_email&utm_medium=email&utm_term=20&utm_campaign=vesna_2015' style="font-size: 13px; color: #049ac9;">Роликовые коньки</a></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                                <td>
                                                    <table border="0" cellpadding="0" cellspacing="0" width="140">
                                                        <tr>
                                                            <td>
                                                                <table cellspacing="0" cellpadding="0" border="0" width="68" height="72" background="images/price_kids.png" style="position: absolute; margin-left: 72px;">
                                                                    <tr>
                                                                        <td height="8"></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="middle"><font style="color:#fff; font-size: 15px;">от 1190 руб.</font></td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td>
                                                                <table cellpadding="0" cellspacing="0" border="0" width="70" height="163">
                                                                    <tr>
                                                                        <td align="center" valign="middle"><a href = 'http://boobasik.ru/catalog/skeytbordy2/?utm_source=inform_email&utm_medium=email&utm_term=22&utm_campaign=vesna_2015'><img src="images/kids_3.jpg" alt="Скейтборды"/></a></td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="20"><a href = 'http://boobasik.ru/catalog/skeytbordy2/?utm_source=inform_email&utm_medium=email&utm_term=22&utm_campaign=vesna_2015' style="font-size: 13px; color: #049ac9;">Скейтборды</a></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                                <td>
                                                    <table border="0" cellpadding="0" cellspacing="0" width="140">
                                                        <tr>
                                                            <td>
                                                                <table cellspacing="0" cellpadding="0" border="0" width="68" height="72" background="images/price_kids.png" style="position: absolute; margin-left: 72px;">
                                                                    <tr>
                                                                        <td height="8"></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="middle"><font style="color:#fff; font-size: 15px;">от 5090 руб.</font></td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td>
                                                                <table cellpadding="0" cellspacing="0" border="0" width="70" height="163">
                                                                    <tr>
                                                                        <td align="center" valign="bottom"><a href = 'http://boobasik.ru/catalog/elektromobili-detskie/?utm_source=inform_email&utm_medium=email&utm_term=24&utm_campaign=vesna_2015'><img src="images/kids_4.jpg" alt="Электромашины"/></a></td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="20"><a href = 'http://boobasik.ru/catalog/elektromobili-detskie/?utm_source=inform_email&utm_medium=email&utm_term=24&utm_campaign=vesna_2015' style="font-size: 13px; color: #049ac9;">Электромашины</a></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                                <tr>
                                    <td height="30"></td>
                                </tr>
                            </table>
                        </td>
                    </tr>
                    <tr>
                        <td align="center">
                            <table cellpadding="0" cellspacing="0" border="0" width="660">
                                <tr>
                                    <td>
                                        <table border="0" cellspacing="0" cellpadding="0" width="660" height="226" background="images/bg_4500.jpg" style="padding: 0 20px;">
                                            <tr>
                                                <td height="145" valign="bottom">
                                                    <table cellspacing="0" cellpadding="0" border="0" width="620">

                                                        <td width="160">
                                                            <table cellpadding="0" cellspacing="0" border="0">
                                                                <tr>
                                                                    <td align="center"width="140"><a href = 'http://boobasik.ru/catalog/tovary-dlya-prazdnikov/?utm_source=inform_email&utm_medium=email&utm_term=10&utm_campaign=vesna_2015'><img src="images/catalog_1.png" alt="ДЛЯ ПРАЗДНИКОВ"/></a></td>
                                                                </tr>
                                                                <tr>
                                                                    <td align="center" valign="bottom" height="20"><a href = 'http://boobasik.ru/catalog/tovary-dlya-prazdnikov/?utm_source=inform_email&utm_medium=email&utm_term=10&utm_campaign=vesna_2015' style="font-size: 10px; color: #fff; text-decoration: none;">ДЛЯ ПРАЗДНИКОВ</a></td>
                                                                </tr>
                                                            </table>
                                                        </td>
                                                        <td width="160">
                                                            <table cellpadding="0" cellspacing="0" border="0">
                                                                <tr>
                                                                    <td align="center"width="140"><a href = 'http://boobasik.ru/catalog/sport-i-aktivnyy-otdykh/?utm_source=inform_email&utm_medium=email&utm_term=7&utm_campaign=vesna_2015'><img src="images/catalog_2.png" alt="ДЛЯ ОТДЫХА"/></a></td>
                                                                </tr>
                                                                <tr>
                                                                    <td align="center" valign="bottom" height="20"><a href = 'http://boobasik.ru/catalog/sport-i-aktivnyy-otdykh/?utm_source=inform_email&utm_medium=email&utm_term=7&utm_campaign=vesna_2015' style="font-size: 10px; color: #fff; text-decoration: none;">ДЛЯ ОТДЫХА</a></td>
                                                                </tr>
                                                            </table>
                                                        </td>
                                                        <td width="160">
                                                            <table cellpadding="0" cellspacing="0" border="0">
                                                                <tr>
                                                                    <td align="center" width="140"><a href = 'http://boobasik.ru/catalog/dlya-plavaniya/?utm_source=inform_email&utm_medium=email&utm_term=30&utm_campaign=vesna_2015'><img src="images/catalog_3.png" alt="ДЛЯ ПЛАВАНИЯ"/></a></td>
                                                                </tr>
                                                                <tr>
                                                                    <td align="center" valign="bottom" height="20"><a href = 'http://boobasik.ru/catalog/dlya-plavaniya/?utm_source=inform_email&utm_medium=email&utm_term=30&utm_campaign=vesna_2015' style="font-size: 10px; color: #fff; text-decoration: none;">ДЛЯ ПЛАВАНИЯ</a></td>
                                                                </tr>
                                                            </table>
                                                        </td>
                                                        <td width="140">
                                                            <table cellpadding="0" cellspacing="0" border="0">
                                                                <tr>
                                                                    <td align="center"width="140"><a href = 'http://boobasik.ru/catalog/dlya-dachi-i-ulitsy/?utm_source=inform_email&utm_medium=email&utm_term=32&utm_campaign=vesna_2015'><img src="images/catalog_4.png" alt="ДЛЯ УЛИЦЫ"/></a></td>
                                                                </tr>
                                                                <tr>
                                                                    <td align="center" valign="bottom" height="20"><a href = 'http://boobasik.ru/catalog/dlya-dachi-i-ulitsy/?utm_source=inform_email&utm_medium=email&utm_term=32&utm_campaign=vesna_2015' style="font-size: 10px; color: #fff; text-decoration: none;">ДЛЯ УЛИЦЫ</a></td>
                                                                </tr>
                                                            </table>
                                                        </td>
                                                    </table>
                                                </td>
                                            </tr>
                                            <tr>
                                                <td>
                                                    <table cellpadding="0" cellspacing="0" border="0" width="620">
                                                        <td align="center" width="620">
                                                            <a href = 'http://boobasik.ru/?utm_source=inform_email&utm_medium=email&utm_term=2&utm_campaign=vesna_2015' style="color: #fff; font-size: 26px; text-decoration: none">Еще 4500 товаров в каталоге</a><a href = 'http://boobasik.ru/?utm_source=inform_email&utm_medium=email&utm_term=2&utm_campaign=vesna_2015' style="margin-left: 15px;"><img src="images/next_button.png"/></a>
                                                        </td>
                                                    </table>
                                                </td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                                <tr>
                                    <td height="40"></td>
                                </tr>
                                <tr>
                                    <td>
                                        <table cellspacing="0" cellpadding="0" border="0" width="660">
                                            <tr>
                                                <td height="50" align="center" valign="top">
                                                    <table cellspacing="0" cellpadding="0" border="0">
                                                        <tr>
                                                            <td align="center"><font style="font-size: 22px; text-transform: uppercase;">Мальчикам</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td><a href = 'http://boobasik.ru/catalog/malchikam/?utm_source=inform_email&utm_medium=email&utm_term=4&utm_campaign=vesna_2015' style="color: #049ac9; font-size: 14px;">посмотреть все предложения</a></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 width="215">
                                                                <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                                    <tr>
                                                                        <td height="18"></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="123" width="150" valign="middle" align="center">
                                                                            <a href = 'http://boobasik.ru/catalog/avtotreki/avtotrek-plamennyy-motor-ruchnoy-generator-85-m-87404-plamennyy-motor/?utm_source=inform_email&utm_medium=email&utm_term=37&utm_campaign=vesna_2015'><img src="images/419b5bbfa40c41de685ecdccae28182c.jpg" alt="87404 Пламенный мотор"/></a></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="18"></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Автотрек «Пламенный мотор»</font></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">2 590 руб.</font></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                            <a href = 'http://boobasik.ru/catalog/avtotreki/avtotrek-plamennyy-motor-ruchnoy-generator-85-m-87404-plamennyy-motor/?utm_source=inform_email&utm_medium=email&utm_term=37&utm_campaign=vesna_2015'>
                                                                            <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                                <tr>
                                                                                    <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                                </tr>
                                                                            </table>
                                                                            </a>
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="18"></td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                            <td width="215">
                                                                <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                                    <tr>
                                                                        <td height="18"></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="123" width="150" valign="middle" align="center">
                                                                            <a href = 'http://boobasik.ru/catalog/zheleznye-dorogi/zheleznaya-doroga-marklin-quotmousequot-startovyy-nabor-ik-pult-3-skorosti-dvizheniya-29206-marklin/?utm_source=inform_email&utm_medium=email&utm_term=39&utm_campaign=vesna_2015'><img src="images/a21f898619ec6df15da8e41663767cca.jpg" alt="Железная дорога Marklin "Mouse""/></a></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="18"></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Железная дорога Marklin "Mouse"</font></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">2290 руб.</font></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                            <a href = 'http://boobasik.ru/catalog/zheleznye-dorogi/zheleznaya-doroga-marklin-quotmousequot-startovyy-nabor-ik-pult-3-skorosti-dvizheniya-29206-marklin/?utm_source=inform_email&utm_medium=email&utm_term=39&utm_campaign=vesna_2015'>
                                                                            <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                                <tr>
                                                                                    <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                                </tr>
                                                                            </table>
                                                                            </a>
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="18"></td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                            <td>
                                                                <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                                    <tr>
                                                                        <td height="144" width="188" valign="middle" align="center">
                                                                            <a href = 'http://boobasik.ru/catalog/konstruktory-elektrotekhnicheskie/konstruktor-999-skhem-999sxem-shkola-znatok/?utm_source=inform_email&utm_medium=email&utm_term=41&utm_campaign=vesna_2015'><img src="images/57eea0f8e74fb92b52b6e119149d5f65.png" alt="Конструктор 999 схем «ЗНАТОК»"/></a></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="18"></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Конструктор 999 схем «ЗНАТОК»</font></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">2 890 руб.</font></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                            <a href = 'http://boobasik.ru/catalog/konstruktory-elektrotekhnicheskie/konstruktor-999-skhem-999sxem-shkola-znatok/?utm_source=inform_email&utm_medium=email&utm_term=41&utm_campaign=vesna_2015'>
                                                                                <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                                    <tr>
                                                                                        <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                                    </tr>
                                                                                </table>
                                                                            </a>
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="18"></td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td height="20"></td>
                                                        <tr>
                                                            <td width="215">
                                                                <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                                    <tr>
                                                                        <td height="18"></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="123" width="150" valign="middle" align="center">
                                                                            <a href = 'http://boobasik.ru/catalog/nabory-dlya-boksa-karate/nabor-dlya-boksa-121-sm-87702-xmatch/?utm_source=inform_email&utm_medium=email&utm_term=43&utm_campaign=vesna_2015'><img src="images/26b2b9a154b2f5e62813b2d259a153da.jpg" alt="Набор для Бокса «121 см 87702 X-Match»"/></a></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="18"></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Набор для Бокса «121 см 87702 X-Match»</font></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">2 290 руб.</font></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                            <a href = 'http://boobasik.ru/catalog/nabory-dlya-boksa-karate/nabor-dlya-boksa-121-sm-87702-xmatch/?utm_source=inform_email&utm_medium=email&utm_term=43&utm_campaign=vesna_2015'>
                                                                                <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                                    <tr>
                                                                                        <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                                    </tr>
                                                                                </table>
                                                                            </a>
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="18"></td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                            <td width="215">
                                                                <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                                    <tr>
                                                                        <td height="18"></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="123" width="150" valign="middle" align="center">
                                                                            <a href = 'http://boobasik.ru/catalog/doski-dlya-risovaniya/molbert-dlya-detey-dvustoronniy-s-plastmasovoy-azbukoy-v-assort-m1-nika/?utm_source=inform_email&utm_medium=email&utm_term=45&utm_campaign=vesna_2015'><img src="images/45d1fc4c0c50f4e249227bdbceb16e8c.jpg" alt="Мольберт двусторонний с пластмасовой азбукой"/></a></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="18"></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Мольберт двусторонний с пластмасовой азбукой </br> «М1 Ника»</font></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">1 590 руб.</font></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                            <a href = 'http://boobasik.ru/catalog/doski-dlya-risovaniya/molbert-dlya-detey-dvustoronniy-s-plastmasovoy-azbukoy-v-assort-m1-nika/?utm_source=inform_email&utm_medium=email&utm_term=45&utm_campaign=vesna_2015'>
                                                                                <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                                    <tr>
                                                                                        <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                                    </tr>
                                                                                </table>
                                                                            </a>
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="18"></td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                            <td>
                                                                <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                                    <tr>
                                                                        <td height="18"></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="123" width="150" valign="middle" align="center">
                                                                            <a href = 'http://boobasik.ru/catalog/igrovye-kompleksy/batut-dlya-detey-dvukhtsvetnyy-208kh72-48267-intex/?utm_source=inform_email&utm_medium=email&utm_term=47&utm_campaign=vesna_2015'><img src="images/2603f94afe1e66cf98f2ef33c9f69bc0.jpg" alt="Батут для детей двухцветный 208х72 48267 «Intex»"/></a></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="18"></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Батут для детей двухцветный 208х72 48267 «Intex»</font></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">3 690 руб.</font></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                            <a href = 'http://boobasik.ru/catalog/igrovye-kompleksy/batut-dlya-detey-dvukhtsvetnyy-208kh72-48267-intex/?utm_source=inform_email&utm_medium=email&utm_term=47&utm_campaign=vesna_2015'>
                                                                                <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                                    <tr>
                                                                                        <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                                    </tr>
                                                                                </table>
                                                                            </a>
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="18"></td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                                <tr>
                                    <td height="20"></td>
                                </tr>
                                <tr>
                                    <td>
                                        <table cellspacing="0" cellpadding="0" border="0" width="660" height="82" background="images/bg_2.png">
                                            <tr>
                                                <td align="center" valign="middle">
                                                    <table cellspacing="0" border="0" cellpadding="0">
                                                        <tr>
                                                            <td align="center"><font style="font-size: 22px; text-transform: uppercase;">Девочкам</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td><a href = 'http://boobasik.ru/catalog/devochkam/?utm_source=inform_email&utm_medium=email&utm_term=3&utm_campaign=vesna_2015' style="color: #049ac9; font-size: 14px;">посмотреть все предложения</a></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                                <tr>
                                    <td align="center">
                                        <table cellpadding="0" cellspacing="0" border="0" width="620">
                                            <tr>
                                                <td width="215">
                                                    <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="123" width="150" valign="middle" align="center">
                                                                <a href = 'http://boobasik.ru/catalog/kukolnye-teatry/shirma-dlya-kukolnogo-teatra-napolnaya-derevo-68341-zhirafiki/?utm_source=inform_email&utm_medium=email&utm_term=50&utm_campaign=vesna_2015'><img src="images/f71d78e68789a22265549a76b396a45d.jpg" alt="Ширма для кукольного театра «Жирафики»"/></a></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Ширма для кукольного театра «Жирафики»</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">1 990 руб.</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                <a href = 'http://boobasik.ru/catalog/kukolnye-teatry/shirma-dlya-kukolnogo-teatra-napolnaya-derevo-68341-zhirafiki/?utm_source=inform_email&utm_medium=email&utm_term=50&utm_campaign=vesna_2015'>
                                                                <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                    <tr>
                                                                        <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                    </tr>
                                                                </table>
                                                                </a>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                                <td width="215">
                                                    <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="123" width="150" valign="middle" align="center">
                                                                <a href = 'http://boobasik.ru/catalog/detskie-kompyutery/kompyuter-detskiy-37-funktsiy-9-melodiy-11-igr-angliyskiy-yazyk-7076-shantou-gepai/?utm_source=inform_email&utm_medium=email&utm_term=52&utm_campaign=vesna_2015'><img src="images/a145a340ec880ff0feedf30483433741.jpg" alt="Компьютер детский, английский язык «Shantou Gepai»"/></a></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Компьютер детский, английский язык </br>«Shantou Gepai»</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">2190 руб.</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                <a href = 'http://boobasik.ru/catalog/detskie-kompyutery/kompyuter-detskiy-37-funktsiy-9-melodiy-11-igr-angliyskiy-yazyk-7076-shantou-gepai/?utm_source=inform_email&utm_medium=email&utm_term=52&utm_campaign=vesna_2015'>
                                                                <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                    <tr>
                                                                        <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                    </tr>
                                                                </table>
                                                                </a>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                                <td>
                                                    <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="123" width="150" valign="middle" align="center">
                                                                <a href = 'http://boobasik.ru/catalog/interaktivnye-kukly/kukla-interaktivnaya-tanyusha-ponimaet-razgovarivaet-povtoryaet-my041-shantou-gepai/?utm_source=inform_email&utm_medium=email&utm_term=54&utm_campaign=vesna_2015'><img src="images/a2fd320533d6eeda2455488db98968e2.jpg" alt="MY041 Shantou Gepai"/></a></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Кукла интерактивная Танюша понимает, разговаривает </font></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">3 790 руб.</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                <a href = 'http://boobasik.ru/catalog/interaktivnye-kukly/kukla-interaktivnaya-tanyusha-ponimaet-razgovarivaet-povtoryaet-my041-shantou-gepai/?utm_source=inform_email&utm_medium=email&utm_term=54&utm_campaign=vesna_2015'>
                                                                <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                    <tr>
                                                                        <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                    </tr>
                                                                </table>
                                                                </a>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                            <tr>
                                                <td height="20"></td>
                                            <tr>
                                                <td width="215">
                                                    <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="123" width="150" valign="middle" align="center">
                                                                <a href = 'http://boobasik.ru/catalog/doma-dlya-kukol/igrushka-skazochnaya-bashnya-filli-7520-simba/?utm_source=inform_email&utm_medium=email&utm_term=56&utm_campaign=vesna_2015'><img src="images/74e4dd767d28a10b1d72771786cb0ba4.jpg" alt="Сказочная башня Филли «SIMBA»"/></a></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Сказочная башня Филли «SIMBA»</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">4190 руб.</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                <a href = 'http://boobasik.ru/catalog/doma-dlya-kukol/igrushka-skazochnaya-bashnya-filli-7520-simba/?utm_source=inform_email&utm_medium=email&utm_term=56&utm_campaign=vesna_2015'>
                                                                <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                    <tr>
                                                                        <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                    </tr>
                                                                </table>
                                                                </a>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                                <td width="215">
                                                    <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="123" width="150" valign="middle" align="center">
                                                                <a href = 'http://boobasik.ru/catalog/doma-dlya-kukol/dom-dlya-kukol-3125-shantou-gepai/?utm_source=inform_email&utm_medium=email&utm_term=58&utm_campaign=vesna_2015'><img src="images/18922d824cb841314214d883813b64a7.jpg" alt="Дом для кукол «Shantou Gepai»"/></a></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Дом для кукол «Shantou Gepai»</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">3 990 руб.</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                <a href = 'http://boobasik.ru/catalog/doma-dlya-kukol/dom-dlya-kukol-3125-shantou-gepai/?utm_source=inform_email&utm_medium=email&utm_term=58&utm_campaign=vesna_2015'>
                                                                <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                    <tr>
                                                                        <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                    </tr>
                                                                </table>
                                                                </a>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                                <td>
                                                    <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                        <tr>
                                                            <td height="144" width="188" valign="middle">
                                                                <a href = 'http://boobasik.ru/catalog/kukhni-dlya-devochek/nabor-kukhnya-khozyayka-0148-polese/?utm_source=inform_email&utm_medium=email&utm_term=60&utm_campaign=vesna_2015'><img src="images/b1cc8a81d370ad0b5e01d3b8912d25a5.png" alt="Набор Кухня Хозяйка 0148 «Полесье»"/></a></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Набор Кухня Хозяйка 0148 «Полесье»</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">2 890 руб.</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                <a href = 'http://boobasik.ru/catalog/kukhni-dlya-devochek/nabor-kukhnya-khozyayka-0148-polese/?utm_source=inform_email&utm_medium=email&utm_term=60&utm_campaign=vesna_2015'>
                                                                <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                    <tr>
                                                                        <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                    </tr>
                                                                </table>
                                                                </a>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                                <tr>
                                    <td height="20"></td>
                                </tr>
                                <tr>
                                    <td>
                                        <table cellspacing="0" cellpadding="0" border="0" width="660" height="82" background="images/bg_2.png">
                                            <tr>
                                                <td align="center" valign="middle">
                                                    <table cellspacing="0" border="0" cellpadding="0">
                                                        <tr>
                                                            <td align="center"><font style="font-size: 22px; text-transform: uppercase;">Малышам</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td><a href = 'http://boobasik.ru/catalog/malysham/?utm_source=inform_email&utm_medium=email&utm_term=5&utm_campaign=vesna_2015' style="color: #049ac9; font-size: 14px;">посмотреть все предложения</a></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                                <tr>
                                    <td align="center">
                                        <table cellpadding="0" cellspacing="0" border="0" width="620">
                                            <tr>
                                                <td width="215">
                                                    <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="123" width="150" valign="middle" align="center">
                                                                <a href = 'http://boobasik.ru/catalog/loshadkikachalki-i-poprygunchiki/loshadkakachalka-78-sm-melodiya-zvuk-galop-otkryvaet-rot-mashet-khvostom-61054-shantou-gepai/?utm_source=inform_email&utm_medium=email&utm_term=63&utm_campaign=vesna_2015'><img src="images/e2dcaecc062496dc5fe80a9b2e77bdd6.jpg" alt="Лошадка-качалка 78 см «Shantou Gepai»"/></a></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Лошадка-качалка 78 см «Shantou Gepai»</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">2 790 руб.</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                <a href = 'http://boobasik.ru/catalog/loshadkikachalki-i-poprygunchiki/loshadkakachalka-78-sm-melodiya-zvuk-galop-otkryvaet-rot-mashet-khvostom-61054-shantou-gepai/?utm_source=inform_email&utm_medium=email&utm_term=63&utm_campaign=vesna_2015'>
                                                                <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                    <tr>
                                                                        <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                    </tr>
                                                                </table>
                                                                </a>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                                <td width="215">
                                                    <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="123" width="150" valign="middle" align="center">
                                                                <a href = 'http://boobasik.ru/catalog/mashinykatalki/mashina-katalka-sp2108m-muzykalnaya-2108m-shantou-gepai/?utm_source=inform_email&utm_medium=email&utm_term=65&utm_campaign=vesna_2015'><img src="images/532dd132318f6d7b680f71cc4027d45e.jpg" alt="Машина каталка, музыкальная 2108-M «Shantou Gepai»"/></a></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Машина каталка, музыкальная 2108-M «Shantou Gepai»</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">2 790 руб.</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                <a href = 'http://boobasik.ru/catalog/mashinykatalki/mashina-katalka-sp2108m-muzykalnaya-2108m-shantou-gepai/?utm_source=inform_email&utm_medium=email&utm_term=65&utm_campaign=vesna_2015'>
                                                                <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                    <tr>
                                                                        <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                    </tr>
                                                                </table>
                                                                </a>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                                <td>
                                                    <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="123" width="150" valign="middle" align="center">
                                                                <a href = 'http://boobasik.ru/catalog/kreslakachalki/kreslokachalka-veselyy-dinozavrik-93693-zhirafiki/?utm_source=inform_email&utm_medium=email&utm_term=67&utm_campaign=vesna_2015'><img src="images/51981d44d60ec224b95277887902af46.jpg" alt="Кресло-качалка Веселый динозаврик «Жирафики»"/></a></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Кресло-качалка Веселый динозаврик «Жирафики»</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">1 690 руб.</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                <a href = 'http://boobasik.ru/catalog/kreslakachalki/kreslokachalka-veselyy-dinozavrik-93693-zhirafiki/?utm_source=inform_email&utm_medium=email&utm_term=67&utm_campaign=vesna_2015'>
                                                                    <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                        <tr>
                                                                            <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                        </tr>
                                                                    </table>
                                                                </a>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                            <tr>
                                                <td height="20"></td>
                                            <tr>
                                                <td width="215">
                                                    <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="123" width="150" valign="middle" align="center">
                                                                <a href = 'http://boobasik.ru/catalog/obychnye-myagkie-igrushki/begemot-zhorik-75-ma198375-oranzh/?utm_source=inform_email&utm_medium=email&utm_term=69&utm_campaign=vesna_2015'><img src="images/31b47784ffd39d2adcd10c1fd23faee3.jpg" alt="Бегемот Жорик «ОРАНЖ»"/></a></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Бегемот Жорик «ОРАНЖ»</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">2490 руб.</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                <a href = 'http://boobasik.ru/catalog/obychnye-myagkie-igrushki/begemot-zhorik-75-ma198375-oranzh/?utm_source=inform_email&utm_medium=email&utm_term=69&utm_campaign=vesna_2015'>
                                                                <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                    <tr>
                                                                        <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                    </tr>
                                                                </table>
                                                                  </a>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                                <td width="215">
                                                    <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="123" width="150" valign="middle" align="center">
                                                                <a href = 'http://boobasik.ru/catalog/basseyny-detskie/basseyn-detskiy-akvarium-152kh56-58480-intex/?utm_source=inform_email&utm_medium=email&utm_term=71&utm_campaign=vesna_2015'><img src="images/e06a09460422ecafa559d33fdf4eccaf.jpg" alt="Бассейн Детский Аквариум 152Х56 «Intex»"/></a></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Бассейн Детский Аквариум 152Х56 «Intex»</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">1690 руб.</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                <a href = 'http://boobasik.ru/catalog/basseyny-detskie/basseyn-detskiy-akvarium-152kh56-58480-intex/?utm_source=inform_email&utm_medium=email&utm_term=71&utm_campaign=vesna_2015'>
                                                                    <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                        <tr>
                                                                            <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                        </tr>
                                                                    </table>
                                                                </a>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                                <td>
                                                    <table cellspacing="0" cellpadding="0" border="0" width="190" style="border: 1px solid #dcdcdc; border-radius: 10px;">
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="123" width="150" valign="middle" align="center">
                                                                <a href = 'http://boobasik.ru/catalog/nabory-mebeli/nabor-mebeli-3-limpopokomfort-siniy-k3ls-demi/?utm_source=inform_email&utm_medium=email&utm_term=73&utm_campaign=vesna_2015'><img src="images/01aaf20a125bffed1808acfd60cba49d.jpg" alt="Набор мебели №3 Лимпопо-комфорт синий «К3Л-С ДЭМИ»"/></a></td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="top" height="45" style="padding: 0 10px;"><font style="font-size: 13px; font-weight: bold;">Набор мебели №3 Лимпопо-комфорт синий «К3Л-С ДЭМИ»</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center" valign="bottom" height="30"><font style="font-size: 14px; color: #0299ca;">2 190 руб.</font></td>
                                                        </tr>
                                                        <tr>
                                                            <td  valign="bottom" height="43" style="padding-top: -10px;">
                                                                <a href = 'http://boobasik.ru/catalog/nabory-mebeli/nabor-mebeli-3-limpopokomfort-siniy-k3ls-demi/?utm_source=inform_email&utm_medium=email&utm_term=73&utm_campaign=vesna_2015'>
                                                                <table align="center" height="35" width="124" background="images/button_buy.jpg" style="background-repeat: no-repeat;">
                                                                    <tr>
                                                                        <td align="center"><font style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px;">купить</font></td>
                                                                    </tr>
                                                                </table>
                                                                </a>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td height="18"></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                                <tr>
                                    <td height="30"></td>
                                </tr>
                                <tr>
                                    <td align="center" height="75" valign="top">
                                        <table cellpadding="0" cellspacing="0" border="0" align="center" height="35" width="235" background="images/bg_all.jpg" style="background-repeat: no-repeat;">
                                            <tr>
                                                <td><a href = 'http://boobasik.ru/?utm_source=inform_email&utm_medium=email&utm_term=2&utm_campaign=vesna_2015' style="text-decoration: none; color: #fff;text-transform: uppercase; font-size: 11px; margin-left: 10px;">ПОСМОТРЕТЬ ВСЕ ПРЕДЛОЖЕНИЯ </a></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                                <tr>
                                    <td>
                                        <table cellspacing="0" cellpadding="0" border="0" width="660" background="images/bg_2.png" style="background-repeat: no-repeat;">
                                            <tr>
                                                <td height="40"></td>
                                            </tr>
                                            <tr>
                                                <td align="center"><font style="font-size: 20px; text-transform: uppercase;">Присоединяйтесь к нам в социальных сетях! </font></td>
                                            </tr>
                                            <tr>
                                                <td align="center" valign="bottom" height="40">
                                                    <font style="font-size: 13px;">В группах собраны лучшие советы родителям, а также: мультфильмы, развивающие игры </br>и много интересного.</font>
                                                </td>
                                            </tr>
                                            <tr>
                                                <td align="center" height="71" valign="bottom">
                                                    <table cellpadding="0" border="0" cellspacing="0">
                                                        <tr>
                                                            <td width="55"><a href = 'https://www.facebook.com/boobasik?utm_source=inform_email&utm_medium=email&utm_term=76&utm_campaign=vesna_2015'><img src="images/fb.jpg" alt="fb.com"/></a></td>
                                                            <td width="55"><a href = 'https://vk.com/boobasik?utm_source=inform_email&utm_medium=email&utm_term=77&utm_campaign=vesna_2015'><img src="images/vk.jpg" alt="vk.com"/></a></td>
                                                            <td><a href = 'http://www.odnoklassniki.ru/group/boobasik?utm_source=inform_email&utm_medium=email&utm_term=78&utm_campaign=vesna_2015'><img src="images/odn.jpg" alt="ok.ru/"/></a></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                            <tr>
                                                <td height="15"></td>
                                            </tr>
                                            <tr>
                                                <td align="center">
                                                    <table cellspacing="0" cellpadding="0" border="0" width="620">
                                                        <tr>
                                                            <td height="3"><img src="images/border_1.jpg" alt=""/></td>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                            <tr>
                                                <td height="30"></td>
                                            </tr>
                                            <tr>
                                                <td align="center">
                                                    <table cellspacing="0" cellpadding="0" border="0" width="620">
                                                        <tr>
                                                            <td>
                                                                <table cellpadding="0" cellspacing="0" border="0">
                                                                    <tr>
                                                                        <td><a href = 'http://boobasik.ru/?utm_source=inform_email&utm_medium=email&utm_term=2&utm_campaign=vesna_2015'><img src="images/logo_min.jpg" alt=""/></a></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="55" valign="bottom">
                                                                            <font style="font-size: 12px;">©2011- 2015 Boobasik.ru</br>
                                                                                Интернет-магазин детских игрушек</br>
                                                                                <a href = 'mailto:hello@boobasik.ru?utm_source=inform_email&utm_medium=email&utm_term=80&utm_campaign=vesna_2015' style="color: #049ac9;">hello@boobasik.ru</a></font></td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                            <td valign="top">
                                                                <table cellspacing="0" cellpadding="0" border="0">
                                                                    <tr>
                                                                        <td height="25" valign="top" align="center"><a href = 'http://boobasik.ru/about/?utm_source=inform_email&utm_medium=email&utm_term=81&utm_campaign=vesna_2015' style="font-size: 14px; color: #363636; text-decoration: none;">О нас</a></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td height="25" valign="top"><a href = 'http://boobasik.ru/payment/?utm_source=inform_email&utm_medium=email&utm_term=82&utm_campaign=vesna_2015' style="font-size: 14px; color: #363636; text-decoration: none;">Доставка</a></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td valign="bottom"><a href = 'http://boobasik.ru/contacts/?utm_source=inform_email&utm_medium=email&utm_term=83&utm_campaign=vesna_2015' style="font-size: 14px; color: #363636; text-decoration: none;">Контакты</a></td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                            <td align="right" valign="top">
                                                                <table cellpadding="0" cellspacing="0" border="0">
                                                                    <tr>
                                                                        <td><img src="images/phone.jpg" alt="8 (800) 100 97 52"/></td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td><font style="font-size: 12px;">Звонок по России бесплатный</font></td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                            <tr>
                                                <td height="20" style="border-bottom: 1px solid #d7d7d7;"></td>
                                            </tr>
                                            <tr>
                                                <td height="20"></td>
                                            </tr>
                                            <tr>
                                                <td align="center" style="padding: 0 20px;"><font style="font-size: 12px; color:#898989;">Вы получили это письмо, так как подписывались на получение уникальных предложений на сайте boobasik.ru. Если в будущем вы не хотите получать информацию обо всех выгодных предложениях,
                                                    то просто перейдите по <a href = '{{UnsubscribeUrl}}' style="color: #898989;">ссылке.</a></font></td>
                                            </tr>
                                            <tr>
                                                <td height="30"></td>
                                            </tr>

                                        </table>
                                    </td>
                                </tr>
                            </table>
                        </td>
                    </tr>
                </table>
            </td>
        </tr>
    </table>
</tr>
</body>
</html>