File size: 30,798 Bytes
a01128b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
<!DOCTYPE html>
<html lang="en">
<head>
<style>
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
q {
quotes: "\201C""\201D""\2018""\2019";
}
q:before {
content: open-quote;
}
q:after {
content: close-quote;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
body {
background: url(../images/white_texture.jpg) repeat top left;
color:#8d6d6b;
font-family: Verdana, "Lucida Sans", Helvetica, Arial, sans-serif;
font-size:16px;
line-height:150%;
width:100%;
-moz-text-size-adjust:none;
-webkit-text-size-adjust:none;
-ms-text-size-adjust:none;
text-size-adjust:none;
}
h1,
h2,
h3 {
font-family: "Tangerine", cursive, script, sans-serif;
font-weight: 700;
}
header a img {
transition: all .5s;
}
header a:hover img {
-webkit-filter: drop-shadow(2px 2px 4px rgba(0,0,0,.5));
-moz-filter: drop-shadow(2px 2px 4px rgba(0,0,0,.5));
-ms-filter: drop-shadow(2px 2px 4px rgba(0,0,0,.5));
-o-filter: drop-shadow(2px 2px 4px rgba(0,0,0,.5));
filter: drop-shadow(2px 2px 4px rgba(0,0,0,.5));
}
p,
ul,
ol,
dl,
h1,
h2,
h3,
h4,
address,
time {
margin:20px;
}
header {
/* background: url(../images/header-new.jpg) no-repeat center; */
background: url(/images/header-1440.jpg) no-repeat center;
background-size: cover;
margin:0 auto;
min-height: 320px;
padding:20px 0 0 0;
width:100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
@media only screen and ( -webkit-min-device-pixel-ratio: 1.3 ),
only screen and ( min--moz-device-pixel-ratio: 1.3 ),
only screen and ( -o-min-device-pixel-ratio: 2.6/2 ), /* returns 1.3, see Dev.Opera */
only screen and ( min-device-pixel-ratio: 1.3 ),
only screen and ( min-resolution: 124.8dpi ),
only screen and ( min-resolution: 1.3dppx ) {
header {
background: url(/images/header-1748.jpg) no-repeat center;
background-size: cover;
}
}
#headertop {
background:#fff;
background:rgba(255,255,255,0.8);
border-radius: 6px;
box-shadow: 1px 1px 12px #666;
color:#ddd;
height:64px;
position:relative;
margin:0 auto;
max-width:1048px;
}
#headertop h1 {
color:#493D26;
float:left;
font-size:56px;
line-height:64px;
margin:0;
padding: 0 0 0 100px;
}
#headertop nav {
float:right;
margin:0;
padding:0;
}
.clear {clear:both;}
nav ul {
margin:0;
list-style-type:none;
}
nav li {
display:inline;
line-height:60px;
}
nav a {
color:#333;
font-size:14px;
padding:25px 12px 22px 12px;
text-decoration:none;
text-shadow: -1px -1px 0 rgba(255,255,255,0.5);
text-transform: uppercase;
}
nav a:hover {
background:#fff;
}
nav form {
display:inline;
padding:25px 12px 22px 12px;
}
form input {
font-size:18px;
padding:4px 6px;
}
nav form input[type=text],
nav form input[type=search],
input[type=email] {
border-radius:4px;
max-width:9em;
-webkit-appearance:none;
appearance:none;
box-shadow:inset 2px 2px 8px rgb(0,0,0,.25);
border:0;
transition:border .5s, width .5s;
border:2px solid transparent;
}
input[type=email] {width:100%;}
.mc_embed_signup {overflow:auto;background:#f9f9f9;text-align:center}
nav form input[type=text]:focus,
nav form input[type=search]:focus,
input[type=email]:focus {border-radius:4px;outline:0;border:2px solid #e27e7f;}
input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: none;
height: 1em;
width: 1em;
background: url(/svg/icon-ux/close2-lexi-opt.svg) no-repeat 0 0;
background-position-x: 100%;
background-position-y: center;
background-size: 1em 1em;
}
/*styling for searchbar*/
.menu {
}
.menu a {
color: #fff;
font-size: 23px;
font-weight: normal;
padding:16px 12px 20px 12px;
text-shadow: 2px 2px 1px rgba(0,0,0,0.5);
}
.menu a img {
vertical-align:-6px;
}
.search-mobile {
display:none;}
.search-mobile a {
border-radius:0 6px 6px 0;
font-family: Symbola, 'Segoe UI Symbol', 'Segoe UI Emoji', sans-serif;
font-size: 20px;
padding:17px 12px 20px 12px;
}
#cse-search-box{
display:inline;
position:relative;
top:-2px;
}
#cse-search-box, #cse-search-results{
text-align:center;
}
.lines {
fill:#f5abad;
stroke:1px 1px 0 rgba(0,0,0,0.5);
}
svg {
height:24px;
width:24px;
vertical-align:-4px;
}
#logo {
height:101px;
position:absolute;
top:-16px;
left:0;
width:100px;
}
#container {
width:100%;
max-width: 1048px;
margin: -48px auto 0 auto;
}
article {
max-width: 728px;
width: 69.4%;
/*background-color: #FFFFFF;*/
float: left;
border-radius: 6px;
box-shadow: 1px 1px 12px #666;
box-shadow: 1px 1px 2em rgba(0,0,0,.25);
background:rgba(255,255,255,0.8);
}
article h1 {
background: #fff;
border-radius: 6px;
box-shadow: inset 1px 1px 20px #f5abad;
font-size: 46px;
line-height: 100%;
margin: 20px -10px;
padding: 10px 20px;
text-shadow: -1px -1px 0 rgba(255,255,255,0.5);
}
article h1 a {
border-radius:6px;
color: #8d6d6b;
display:block;
transition:color 1s, background 1s, box-shadow 1s, border 1s;
}
article h1 a:hover {
background: #fff;
box-shadow: 1px 1px 12px #999;
}
h2 a,
h3 a {
color: #e27e7f;
}
h1,
h2,
h3 {
line-height:100%;
}
h2 {
font-size: 38px;
}
h3 {
font-size: 30px;
}
.rel {font-size: 30px}
article ol, article ul {
list-style-position:inside;
margin: 20px 20px 20px 40px;
text-indent: -16px;
}
.linkbox ol, .linkbox ul {
margin:20px;
list-style-position:none;
text-indent: 0;
}
article ol {list-style-type:decimal;}
article ul {list-style-type:disc;}
.bullets li {display:list-item}
.bullets, .numbers
{margin-left:1.4em;-moz-padding-start:1.4em;-webkit-padding-start:1.4em;padding-start:1.4em;overflow:hidden;zoom:1}
ol {margin-left:2em;-moz-padding-start:2.5em;-webkit-padding-start:2.5em;padding-start:2.5em}
.bullets li, ol li {padding:.3em 0;line-height:1.4}
.numbers {text-indent:-21px}
a {
color:#f5abad;
text-decoration:none;
-webkit-transition: color 0.5s, background .5s;
-moz-transition: color 0.5s, background .5s;
-ms-transition:color 0.5s, background .5s;
-o-transition: color 0.5s, background .5s;
transition: color 0.5s, background .5s;
}
a:hover {
color: #cfaac7;
}
dt {clear:both;}
dd {
margin-bottom:20px;
min-height:100px;
}
dd p {margin:0;}
dt a {width:100%;}
dt img {
float:left;
margin:5px 10px 5px 0;
border-radius:10px;
}
/*peach colored text*/
.peach {color: #e27e7f;
font-family:Georgia, Times New Roman, Times, serif}
/*peach box for video description*/
#peach-box {
background-color: #f5abad;
clear:both;
color:#FFF;
margin:20px 0;
padding: 10px 0;
text-indent:20px;
}
.divider {
width: 100%;
color:#999;
margin-left:0;
border-bottom-width: 1px;
border-bottom-style: solid;
}
.center div {margin:auto;text-align: center;}
p.center {
margin-left:auto;
margin-right:auto;
text-align: center;
}
.lefty {float:left;}
.righty {float:right;}
.abs, a[] {
line-height:24px;
padding: 4px 0px 4px 30px;
background:url(/svg/icon-social/albinoblacksheep-opt.svg) center left no-repeat;
background-size:24px 24px;
}
footer .center a {padding:4px 6px;}
.archives {text-align: center;margin:30px 20px;}
/*italics for quotes*/
em, q {font-style: italic;}
/*blockquote style*/
blockquote {
background: #f9f9f9;
border-radius:6px;
border-left:0px solid #e27e7f;
quotes: "\201C""\201D""\2018""\2019";
margin:20px;
padding:20px 30px;
position:relative;
box-shadow:inset 1px 1px 3px rgba(0,0,0,0.5);
}
blockquote:before,
blockquote:after {
/* color: #e27e7f; */
font-family:"Tangerine", Times New Roman, Times, serif;
font-size: 122px;
font-weight:bold;
position:absolute;
}
blockquote:before {
content: open-quote;
left:10px;
}
/*blockquote:after {
content: close-quote;
}*/
blockquote:after {
content: close-quote;
bottom:0;
right:20px;
}
#center {
display: inline;
margin: 2px auto 0;
padding-top: 20px;
text-align: center;
}
aside {
max-width: 300px;
width:28.6%;
background-color: #FFF;
float: right;
border-radius: 6px;
box-shadow: 1px 1px 12px #666;
box-shadow: 1px 1px 2em rgba(0,0,0,.25);
}
/* top, right, bottom left */
aside p { margin-left: 10px; margin-right: 10px;}
/*social media icons using sprite map*/
/*
.social-media {padding: 10px;padding-top: 20px;text-align: center;}
.facebook, .twitter, .youtube, .instagram, .pinterest {background: url(../images/sprite-mobile5.jpg) no-repeat;
display: inline-block; text-indent: -5000px; background-size:32px auto; padding-right:10px;}
.facebook {background-position:0 0;width:32px;height:32px;}
.twitter {background-position:0 -32px;width:32px;height:32px;}
.youtube {background-position:0 -64px;width:32px;height:32px;}
.instagram {background-position: 0 -96px;width:32px;height:32px;}
.pinterest {background-position: 0 -128px;width:32px;height:32px;}
.social-media img {margin-top: 20px; margin-right: 10px; width: 32px; height: 32px;}
*/
/*google ad on side bar*/
#google-ad {margin: auto;padding-top: 12px;text-align: center;width: 300px;}
#mobile-ad {margin: auto; text-align: center;}
#map_canvas {width: 500px; height: 500px; margin: auto; border: 1px solid black;}
footer {
background-color: transparent;
box-shadow: 0px -12px 12px -12px #000;
box-shadow:0px 0em 2em 1em rgb(0 0 0 / 25%);
clear: both;
margin:0 auto;
padding:40px 0 60px 0;
text-align: center;
width:100%;
}
footer a {text-align:center; color:#e27e7f;}
footer a:hover {color: #f5abad;}
.clear {clear: both;}
img {max-width: 100%; height: auto;}
.linkbox-audio,
.linkbox li {
list-style-type: none;
}
.linkbox-audio {margin:20px; padding: 10px 10px 4px; background: #f9f9f9; width: auto; height: 60px; border-radius: 5px; -moz-border-radius: 5px;-webkit-border-radius: 5px; box-shadow:inset 2px 2px 6px rgba(0,0,0,.5);
}
/* top, right, bottom left */
#audioplayer1 {padding-top:6px;margin:0 auto;width:100%;height:44px}
.linkbox li {
border-radius: 5px;
clear:both;
display: block;
width: 100%;
}
/*video link box */
.linkbox a {
border-radius: 5px;
box-shadow:inset 1px 1px 3px rgba(0,0,0,0.5);
display: block;
height: 80px;
width: 100%;
}
/*linkbox changes color when you hover */
.linkbox a:hover {background: #f3e0e0;}
.linkbox img {
float: left;
margin: 6px 10px 6px 6px;
background-size: 90px 68px;}
.outside {margin-left:47px;list-style-position:outside;text-indent:0}
.rel, h2, h3, h4 {clear:both}
strong, b {font-weight:bold}
em, cite, i {font-weight:italic}
.embed-container {position:relative;padding-bottom:56.25%;height:0;overflow:hidden;max-width:100%}
.embed-container iframe, .embed-container object, .embed-container embed {position:absolute;top:0;left:0;width:100%;height:100%}
input.gsc-search-button-v2 {margin-top:7px !important}
table.gsc-search-box td {vertical-align: top}
.gsc-control-cse {
font-family: Arial, sans-serif;
border-color: transparent !important;
background-color: transparent !important;}
@keyframes myfirst
{from {height:0;}
to {height:522px;}}
@-moz-keyframes myfirst
{from {height:0;}
to {height:522px;}}
@-webkit-keyframes myfirst
{from {height:0;margin:4px auto 0 auto;}
to {height:522px;margin:4px auto 52px auto;}}
#openmenu {background:#666;background:rgba(0,0,0,0.6);color:#fff;
max-width:460px;
margin:4px auto 52px auto;
text-align:center;
border-radius:6px;
border:1px solid #333;
box-shadow: 1px 1px 12px #000;
overflow:hidden;
clear:both;
transition: all 2s;
animation: myfirst 2s ease-in-out;
-moz-animation: myfirst 2s ease-in-out;
-webkit-animation: myfirst 2s ease-in-out;
-o-animation: myfirst 2s ease-in-out;
-ms-animation: myfirst 2s ease-in-out;
}
#openmenu li {
display:block;
line-height:27px;
padding:0;
border:0;
border-bottom:1px solid #202020;
border-bottom-color:rgba(0,0,0,.5);
border-top:1px solid #535353;
border-top-color:rgba(102,102,102,.5);
}
#openmenu a {display:block;}
#openmenu a:hover {background:#222;background:rgba(255,255,255,0.1);}
#openmenu ul {margin:auto;}
/* Wide iPad */
@media screen and (max-width: 1048px) {
header, footer {
max-width:1048px;
}
article h1 {
margin: 20px 0;
}
}
/* smartphone (narrow screen) layout */
@media screen and (max-width: 978px) {
article h1 {
margin: 10px 0;
}
p,
ul,
ol,
dl,
h1,
h2,
h3,
blockquote,
.linkbox ol,
.linkbox ul,
address,
time {
margin:10px;
}
header {
width: 100%;
margin: 0;
min-height: 200px;
}
footer {
width: 100%;
}
#headertop {
width: auto;
margin: 0;
}
article h1 {
padding: 10px 10px;
}
article ol, article ul {
list-style-position:inside;
margin: 10px 10px 10px 25px;
text-indent: -16px;
}
.music, .videos, .poses, .search-mobile {display:none;}
table.center {display:none;}
h1 {
word-wrap: break-word;
}
#container {
width:100%;
}
article, aside {
width:100%;
margin:0;
max-width:100%;
}
#peach-box {
text-indent:10px;
}
.linkbox-audio {margin:10px;}
audio {padding-top:6px;margin:0 auto;width:100%;height:44px}
.linkbox a {height:56px;}
.linkbox img {height:44px;width:auto;}
dt img {
width:320px;
height:auto;
margin:0 auto 8px auto;
text-align:center;
display:block;
float:none;
padding: 0;
}
dt, dd {max-width:320px;margin:auto;}
/* comment this out for thinner listings */
dt img {width:480px}
dt, dd {max-width:480px}
dt {font-size:150%;line-height: 1.25;}
dd {padding: 5px 0 40px 0;text-align:left;}
dl, dt, dt a {margin:auto;text-indent:0;text-align:center;}
.menu {display:inline;}
.search-mobile a {font-size: 20px;}
.menu img {vertical-align: -6px;}
#map_canvas {width: 300px; height: 300px;}
}
@media screen and (max-width: 720px) {
.menu, .search-mobile {display:inline;}
.search {display:none;}
}
@media all and (min-width:0px) and (max-width:480px) {
/*
header {background-image: url(../images/header-mobile1.jpg);} */
#headertop {height:54px;}
#headertop h1 {
font-size: 42px;
line-height:54px;
padding:0 0 0 80px;
}
header a:hover img {
-webkit-filter: none;
-moz-filter:none;
-ms-filter:none;
-o-filter:none;
filter:none;
}
#logo {
width:80px;
height:auto;
}
article h1 {font-size:34px;}
h2 {text-align: left; margin: 10px;}
p, ul, ol, dl {margin:10px;}
.linkbox p {font-size:14px;}
nav li {line-height:50px;}
nav a {padding:12px 12px;}
.menu a {padding:10px 12px 15px 12px;}
.search-mobile a {font-size: 20px;
padding:12px 12px 15px 12px;}
#openmenu ul {margin:auto}
}
li {padding-top:4px;
padding-bottom:4px;}
/* Social 2021 */
.social-icons {
padding: 10px;
padding-top: 20px;
text-align: center;
overflow:auto;
box-sizing:border-box;
max-width:300px;
margin:0 auto;
}
.social-icons li {display:inline-block;margin:0 2%;vertical-align:top;float:left;width:16%;box-sizing:border-box;}
.social-icons a {
width:100%;
display:block;
color:#fff;
background:#f5abad;
width:100%;height:100%;
padding:5px;
border-radius:4px;
box-sizing:border-box;
}
.social-icons a:hover {background:#e27e7f;}
.social-icons svg {width:100%;height:100%;display:block;box-sizing:border-box;}
</style>
<meta charset="utf-8">
<title>
Namati Yoga Mat Bag | LexiYoga
</title>
<!--[if IE]><![endif]-->
<meta content="Namati Yoga Bag Giveaway. Win a lovely handmade knit yoga mat bag, accessory bag and a re-grip mat wash. This bag is quite a fashion statement, and is 100% cotton, so it's soft to touch and is machine washable. " name="description">
<meta content="Namati Yoga Bag, handmade, knit, handcrafted yoga mat bag, accessory mat, re-grip mat wash, Canadian made, 100% cotton, soft to touch, standard yoga mat " name="keywords">
<meta content="summary" name="twitter:card">
<meta content="@lexiyoga" name="twitter:site">
<meta content="Namati Yoga Mat Bag" name="twitter:title">
<meta content="Namati Yoga Mat Bag" property="og:title">
<meta content="Namati Yoga Bag Giveaway. Win a lovely handmade knit yoga mat bag, accessory bag and a re-grip mat wash. This bag is quite a fashion statement, and is 100% cotton, so it's soft to touch and is machine washable. " name="twitter:description">
<meta content="Namati Yoga Bag Giveaway. Win a lovely handmade knit yoga mat bag, accessory bag and a re-grip mat wash. This bag is quite a fashion statement, and is 100% cotton, so it's soft to touch and is machine washable. " name="og:description">
<meta content="" name="twitter:image">
<meta content="" property="og:image">
<meta content="" name="twitter:url">
<meta content="" name="og:url">
<meta content="43.76889, -79.41263" name="ICBM">
<meta content="LexiYoga" name="DC.title">
<meta content="telephone=no" name="format-detection">
<meta content="5a39bec583b0e7ad7c3dec00b5a17923" name="p:domain_verify">
<!--[if lt IE 9]>
<![endif]-->
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<!-- -->
<meta content="66_PP8IDQsHYMQ-E590DKz5Ehc48pfQqzW9sajfXApw" name="google-site-verification">
<meta content="As0hBNJ8h++fNYlkq8cTye2qDLyom8NddByiVytXGGD0YVE+2CEuTCpqXMDxdhOMILKoaiaYifwEvCRlJ/9GcQ8AAAB8eyJvcmlnaW4iOiJodHRwczovL2RvdWJsZWNsaWNrLm5ldDo0NDMiLCJmZWF0dXJlIjoiV2ViVmlld1hSZXF1ZXN0ZWRXaXRoRGVwcmVjYXRpb24iLCJleHBpcnkiOjE3MTk1MzI3OTksImlzU3ViZG9tYWluIjp0cnVlfQ==" http-equiv="origin-trial">
<meta content="AgRYsXo24ypxC89CJanC+JgEmraCCBebKl8ZmG7Tj5oJNx0cmH0NtNRZs3NB5ubhpbX/bIt7l2zJOSyO64NGmwMAAACCeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXN5bmRpY2F0aW9uLmNvbTo0NDMiLCJmZWF0dXJlIjoiV2ViVmlld1hSZXF1ZXN0ZWRXaXRoRGVwcmVjYXRpb24iLCJleHBpcnkiOjE3MTk1MzI3OTksImlzU3ViZG9tYWluIjp0cnVlfQ==" http-equiv="origin-trial">
<meta content="As0hBNJ8h++fNYlkq8cTye2qDLyom8NddByiVytXGGD0YVE+2CEuTCpqXMDxdhOMILKoaiaYifwEvCRlJ/9GcQ8AAAB8eyJvcmlnaW4iOiJodHRwczovL2RvdWJsZWNsaWNrLm5ldDo0NDMiLCJmZWF0dXJlIjoiV2ViVmlld1hSZXF1ZXN0ZWRXaXRoRGVwcmVjYXRpb24iLCJleHBpcnkiOjE3MTk1MzI3OTksImlzU3ViZG9tYWluIjp0cnVlfQ==" http-equiv="origin-trial">
<meta content="AgRYsXo24ypxC89CJanC+JgEmraCCBebKl8ZmG7Tj5oJNx0cmH0NtNRZs3NB5ubhpbX/bIt7l2zJOSyO64NGmwMAAACCeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXN5bmRpY2F0aW9uLmNvbTo0NDMiLCJmZWF0dXJlIjoiV2ViVmlld1hSZXF1ZXN0ZWRXaXRoRGVwcmVjYXRpb24iLCJleHBpcnkiOjE3MTk1MzI3OTksImlzU3ViZG9tYWluIjp0cnVlfQ==" http-equiv="origin-trial">
</head>
<body>
<header>
<div id="headertop">
<a>
<img alt="LexiYoga" height="202" id="logo" src="rick.jpg" width="200">
<h1>
LexiYoga
</h1>
</a>
<nav>
<ul>
<li class="menu">
<a onclick="showhide(document.getElementById('openmenu')); return false;">
☰
</a>
</li>
<li class="videos">
<a>
Yoga Videos
</a>
</li>
<li class="poses">
<a>
Yoga Poses
</a>
</li>
<li class="music">
<a>
Yoga Reviews
</a>
</li>
</ul>
</nav>
</div>
<div id="openmenu" style="display:none;">
<ul>
<li>
<a>
Yoga Music
</a>
</li>
<li>
<a>
Yoga Videos
</a>
</li>
<li>
<a>
Yoga Poses
</a>
</li>
<li>
<a>
Yoga Styles
</a>
</li>
</ul>
</div>
</header>
<div id="container" style="height: auto !important;">
<article style="height: auto !important;">
<h1>
Namati Yoga Bag Giveaway
</h1>
<div style="margin-top: 20px;">
<!-- Responsive Ad -->
<ins class="adsbygoogle" data-ad-client="ca-pub-6405183578653972" data-ad-format="auto" data-ad-slot="[PHONE REDACTED]" data-adsbygoogle-status="done" style="display: block; height: 280px;">
<div aria-label="Advertisement" id="aswift_0_host" style="border: none; height: 280px; width: 727px; margin: 0px; padding: 0px; position: relative; visibility: visible; background-color: transparent; display: inline-block; overflow: visible;" tabindex="0" title="Advertisement">
</div>
</ins>
</div>
<p>
I'd like to thank Namati for sending me a lovely handmade knit yoga mat bag, accessory bag and a re-grip mat wash. I think it's such a unique and creative idea to knit yoga bags, as you can choose the pattern and color of your choice.
</p>
<p>
Namati has a whole page on their website about how colors affects us. I chose the color purple, since it's my favorite.
</p>
<blockquote cite="">
<p>
Choosing a purple mat or wearing purple active wear stimulates imagination, promotes creativity, and is uplifting. Purple can help you to re-balance your life and remove obstacles.
</p>
</blockquote>
<p class="center">
<div class="" style="width: 400px; height: 208px;">
<img alt="Namati Yoga Bag" class="reflected" height="160" src="rick.jpg" style="vertical-align: bottom;" title="Namati Yoga Bag" width="400">
<canvas height="48" style="height: 48px; width: 400px;" width="400">
</canvas>
</div>
</p>
<p>
The lacey pattern of the mat bag provides proper ventilation, especially if you're taking a hot yoga class, and your mat gets soaked.
<a>
Manduka Yoga Mat
</a>
inside mine. This bag is quite a fashion statement, and is 100% cotton, so it's soft to touch and is machine washable.
</p>
<p>
The accessory bag is quite useful, as you can keep you keys, wallet, water bottle, or any other items you need to take to your yoga class. It's really a nice sized bag that's perfect for all your yoga class needs.
</p>
<div class="google-auto-placed ap_container" style="width: 100%; height: auto; clear: both; text-align: center;">
<ins class="adsbygoogle adsbygoogle-noablate" data-ad-client="ca-pub-6405183578653972" data-ad-format="auto" data-adsbygoogle-status="done" style="display: block; margin: auto; background-color: transparent; height: 280px;">
<div aria-label="Advertisement" id="aswift_3_host" style="border: none; height: 280px; width: 727px; margin: 0px; padding: 0px; position: relative; visibility: visible; background-color: transparent; display: inline-block; overflow: visible;" tabindex="0" title="Advertisement">
</div>
</ins>
</div>
<p>
Here's the Namati story, and how they started out as a yoga mat bag company:
</p>
<blockquote>
<p>
We are a Canadian family company located in Kitchener, Ontario.
</p>
<p>
A couple of years ago my sister and I were planning to attend a retreat in Toronto held by the Chopra Center. As part of the retreat they were holding introductory yoga classes.
</p>
<p>
We created an attractive yoga mat bag out of 100% cotton that was travel friendly. We attended the retreat, fell in love with yoga, and had people asking about our bags.
</p>
<p>
Namati was born.
</p>
</blockquote>
<h2>
Win a free Namati Yoga Mat Bag
</h2>
<p>
Namati would like to send a free handmade yoga mat bag, accessory bag and re-grip mat spray to one lucky winner. You get to choose the color of the bags and the scent of the spray.
</p>
<p>
In order to win a Namati yoga mat bag, accessory bag and re-grip mat wash, these are the following steps you have to take:
</p>
<ol class="outside">
<li>
Add LexiYoga on
<a>
Twitter
</a>
.
</li>
<li>
Add LexiYoga on
<a>
Pintrest
</a>
.
</li>
<li>
Become a fan on
<a>
Facebook
</a>
.
</li>
<li>
Subscribe on
<a>
YouTube
</a>
.
</li>
</ol>
<p>
The winner will be announced on
<strong>
Sunday August 12th
</strong>
.
</p>
<p>
Good luck to everyone! This is my sixth giveaway on my website.
</p>
<div style="margin-top: 20px;">
<!-- Responsive Ad -->
<ins class="adsbygoogle" data-ad-client="ca-pub-6405183578653972" data-ad-format="auto" data-ad-slot="[PHONE REDACTED]" data-adsbygoogle-status="done" style="display: block; height: 0px;">
<div aria-label="Advertisement" id="aswift_1_host" style="border: none; height: 0px; width: 727px; margin: 0px; padding: 0px; position: relative; visibility: visible; background-color: transparent; display: inline-block; overflow: hidden; opacity: 0;" tabindex="0" title="Advertisement">
</div>
</ins>
</div>
<h2 class="rel">
Related Links
</h2>
<ul>
<li>
See more
<a>
Reviews
</a>
.
</li>
<li>
<a>
Champion USA Shape Wear Review
</a>
</li>
<li>
<a>
The Search for the Perfect Yoga Mat
</a>
</li>
<li>
<a>
The Original Yoga Sheep Skin Mat
</a>
</li>
</ul>
</article>
<aside style="height: auto !important;">
<ul class="social-icons">
<li>
<a rel="me" title="Facebook">
</a>
</li>
<li>
<a rel="me" title="Twitter">
</a>
</li>
<li>
<a title="YouTube">
</a>
</li>
<li>
<a title="Instagram">
</a>
</li>
</ul>
<p class="peach">
<q>
You cannot always control what goes on outside. But you can always control what goes on inside.
</q>
Mr. Yoga
</p>
<!--
<div class="side">
<p class="center" style="margin: auto;"><a ><img src="rick.jpg" width="125" height="125" alt="Online casino & Slots Betway" />
</a></p>
</div>
-->
<div class="side">
<p>
<strong>
NEW
</strong>
-
<a>
Advertise Your Business
</a>
</p>
<p>
<strong>
Daily
</strong>
<a>
Horoscope
</a>
</p>
<p>
<strong>
Add
</strong>
<a>
horoscopes to your site
</a>
</p>
<p>
<strong>
Add
</strong>
<a>
Live Earth & Moon
</a>
</p>
</div>
<!-- Begin Mailchimp Signup Form -->
<div class="mc_embed_signup" id="mc_embed_signup">
<form action="" class="validate" id="mc-embedded-subscribe-form" method="post" name="mc-embedded-subscribe-form" target="_blank">
<div id="mc_embed_signup_scroll">
<h2>
Mailing List
</h2>
<!--
<div class="indicates-required"><span class="asterisk">*</span> indicates required</div>-->
<div class="mc-field-group">
<p>
<label for="mce-EMAIL">
Email:
<!--<span class="asterisk">*</span>-->
</label>
<input class="required email" id="mce-EMAIL" name="EMAIL" required type="email" value>
</p>
</div>
<div class="clear" id="mce-responses">
<div class="response" id="mce-error-response" style="display:none">
</div>
<div class="response" id="mce-success-response" style="display:none">
</div>
</div>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div aria-hidden="true" style="position: absolute; left: -5000px;">
<input name="b_5e770388d321ea3973803380c_0d4f4b5c78" tabindex="-1" type="text" value>
</div>
<div class="clear">
<p>
<input class="button" id="mc-embedded-subscribe" name="subscribe" type="submit" value="Subscribe">
</p>
</div>
</div>
</form>
<div class="google-auto-placed" style="width: 100%; height: auto; clear: both; text-align: center;">
<ins class="adsbygoogle adsbygoogle-noablate" data-ad-client="ca-pub-6405183578653972" data-ad-format="auto" data-adsbygoogle-status="done" style="display: block; margin: 10px auto; background-color: transparent; height: 240px;">
<div aria-label="Advertisement" id="aswift_5_host" style="border: none; height: 240px; width: 300px; margin: 0px; padding: 0px; position: relative; visibility: visible; background-color: transparent; display: inline-block; overflow: visible;" tabindex="0" title="Advertisement">
</div>
</ins>
</div>
</div>
<div class="google-auto-placed" style="width: 100%; height: auto; clear: both; text-align: center;">
<ins class="adsbygoogle adsbygoogle-noablate" data-ad-client="ca-pub-6405183578653972" data-ad-format="auto" data-adsbygoogle-status="done" style="display: block; margin: 10px auto; background-color: transparent; height: 240px;">
<div aria-label="Advertisement" id="aswift_4_host" style="border: none; height: 240px; width: 300px; margin: 0px; padding: 0px; position: relative; visibility: visible; background-color: transparent; display: inline-block; overflow: visible;" tabindex="0" title="Advertisement">
</div>
</ins>
</div>
<!--End mc_embed_signup-->
</aside>
<div class="clear">
</div>
</div>
<div class="google-auto-placed" style="width: 100%; height: auto; clear: both; text-align: center;">
<ins class="adsbygoogle adsbygoogle-noablate" data-ad-client="ca-pub-6405183578653972" data-ad-format="auto" data-adsbygoogle-status="done" style="display: block; margin: 10px auto; background-color: transparent; height: 60px;">
<div id="aswift_6_host" style="border: none; height: 60px; width: 1200px; margin: 0px; padding: 0px; position: relative; visibility: visible; background-color: transparent; display: inline-block;">
</div>
</ins>
</div>
<footer id="footer">
<p>
© 2009–2023 Lexii Networking Ltd.
</p>
<p>
Design by
<a class="abs" rel="contact">
Albino Blacksheep
</a>
with LexiYoga.
</p>
<p class="center">
<a>
HTML5
</a>
<a>
About
</a>
<a>
SiteMap
</a>
<a>
Contact
</a>
</p>
</footer>
<!--
-->
<!-- Please call pinit.js only once per page -->
<!-- -->
<!--[if !IE]>-->
<!--<![endif]-->
<ins class="adsbygoogle adsbygoogle-noablate" data-adsbygoogle-status="done" style="display: none !important;">
<div aria-label="Advertisement" id="aswift_2_host" style="border: none; height: 0px; width: 0px; margin: 0px; padding: 0px; position: relative; visibility: visible; background-color: transparent; display: inline-block;" tabindex="0" title="Advertisement">
</div>
</ins>
</body>
</html>
|