-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmembership.html
1164 lines (1153 loc) · 130 KB
/
membership.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Membership Agreement | Book Your Shelf</title>
<!-- Favicon -->
<link rel="icon" href="images/logo/book_your_shelf_tab.png">
<style>
[data-custom-class='body'], [data-custom-class='body'] * {
background: transparent !important;
}
[data-custom-class='title'], [data-custom-class='title'] * {
font-family: Arial !important;
font-size: 26px !important;
color: #000000 !important;
}
[data-custom-class='subtitle'], [data-custom-class='subtitle'] * {
font-family: Arial !important;
color: #595959 !important;
font-size: 14px !important;
}
[data-custom-class='heading_1'], [data-custom-class='heading_1'] * {
font-family: Arial !important;
font-size: 19px !important;
color: #000000 !important;
}
[data-custom-class='heading_2'], [data-custom-class='heading_2'] * {
font-family: Arial !important;
font-size: 17px !important;
color: #000000 !important;
}
[data-custom-class='body_text'], [data-custom-class='body_text'] * {
color: #595959 !important;
font-size: 14px !important;
font-family: Arial !important;
}
[data-custom-class='link'], [data-custom-class='link'] * {
color: #3030F1 !important;
font-size: 14px !important;
font-family: Arial !important;
word-break: break-word !important;
}
ul {
list-style-type: square;
}
ul > li > ul {
list-style-type: circle;
}
ul > li > ul > li > ul {
list-style-type: square;
}
ol li {
font-family: Arial;
}
</style>
</head>
<body>
<div data-custom-class="body">
<div align="center" style="text-align: left;">
<div align="center" class="MsoNormal" data-custom-class="title" style="text-align: left; line-height: 1.5;">
<strong><span style="line-height: 22.5px; font-size: 26px;">TERMS OF USE</span></strong></div>
<div align="center" class="MsoNormal" style="text-align: center; line-height: 22.5px;"><a
name="_7m5b3xg56u7y"></a></div>
<div align="center" class="MsoNormal" data-custom-class="subtitle" style="text-align: left; line-height: 150%;">
<br></div>
<div align="center" class="MsoNormal" data-custom-class="subtitle" style="text-align: left; line-height: 1.5;">
<span style="color: rgb(89, 89, 89); font-size: 14.6667px; text-align: justify;"><strong>Last updated <bdt
class="block-container question question-in-editor"
data-id="6d5ec16f-716c-32d6-1aa6-f4c1bd8cce1f"
data-type="question">February 24, 2020</bdt></strong></span><br><a name="_gm5sejt4p02f"></a>
</div>
<div align="center" class="MsoNormal" style="line-height: 115%; text-align: center;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;"> </span></div>
<div align="center" class="MsoNormal" style="line-height: 115%; text-align: center;"><br></div>
<div class="MsoNormal" style="text-align:justify;line-height:115%;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;"> </span></div>
<div class="MsoNormal" data-custom-class="heading_1" style="line-height: 1.5;"><a
name="_6aa3gkhykvst"></a><strong><span style="line-height: 115%; font-family: Arial; font-size: 19px;">AGREEMENT TO TERMS</span></strong>
</div>
<div class="MsoNormal" style="line-height: 1;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"> </span>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;">These Terms of Use constitute a legally binding agreement made between you, whether personally or on behalf of an entity (“you”) and <bdt
class="block-container question question-in-editor" data-id="9d459c4e-c548-e5cb-7729-a118548965d2"
data-type="question">Oak Book Store Marketing Inc.</bdt><bdt class="block-component"></bdt> ("<bdt
class="block-component"></bdt><strong>Company</strong><bdt class="statement-end-if-in-editor"></bdt>", “<strong>we</strong>”, “<strong>us</strong>”, or “<strong>our</strong>”), concerning your access to and use of the <bdt
class="block-container question question-in-editor" data-id="fdf30452-99b8-c68b-5cdf-34af764cd1fd"
data-type="question"><a href="http://www.book-your-shelf.com" target="_blank" data-custom-class="link">http://www.book-your-shelf.com</a></bdt> website as well as any other media form, media channel, mobile website or mobile application related, linked, or otherwise connected thereto (collectively, the “Site”). You agree that by accessing the Site, you have read, understood, and agreed to be bound by all of these Terms of Use. IF YOU DO NOT AGREE WITH ALL OF THESE TERMS OF USE, THEN YOU ARE EXPRESSLY PROHIBITED FROM USING THE SITE AND YOU MUST DISCONTINUE USE IMMEDIATELY.</span>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"> </span>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;">Supplemental terms and conditions or documents that may be posted on the Site from time to time are hereby expressly incorporated herein by reference. We reserve the right, in our sole discretion, to make changes or modifications to these Terms of Use at any time and for any reason. We will alert you about any changes by updating the “Last updated” date of these Terms of Use, and you waive any right to receive specific notice of each such change. It is your responsibility to periodically review these Terms of Use to stay informed of updates. You will be subject to, and will be deemed to have been made aware of and to have accepted, the changes in any revised Terms of Use by your continued use of the Site after the date such revised Terms of Use are posted.</span>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"> </span>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;">The information provided on the Site is not intended for distribution to or use by any person or entity in any jurisdiction or country where such distribution or use would be contrary to law or regulation or which would subject us to any registration requirement within such jurisdiction or country. Accordingly, those persons who choose to access the Site from other locations do so on their own initiative and are solely responsible for compliance with local laws, if and to the extent local laws are applicable.</span>
</div>
<div class="MsoNormal" style="line-height: 115%;">
<bdt class="block-component"></bdt>
</bdt></span></span></div>
</div>
<div align="center" data-custom-class="body_text" style="text-align: left; line-height: 1;"><br></div>
<div align="center" style="text-align: left;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;">
<bdt class="block-container if" data-type="if" id="a2595956-7028-dbe5-123e-d3d3a93ed076">
<bdt data-type="conditional-block">
<bdt data-type="body"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"><bdt
class="block-component"></bdt></span></bdt>
</bdt>
</bdt>
</div>
</div>
<div align="center" style="text-align: left; line-height: 1.5;"><br></div>
<div align="center" style="text-align: left; line-height: 1.5;"><br></div>
<div align="center" style="text-align: left;">
<div class="MsoNormal" data-custom-class="heading_1" style="line-height: 1.5;"><a
name="_b6y29mp52qvx"></a><strong><span style="line-height: 115%; font-family: Arial; font-size: 19px;">INTELLECTUAL PROPERTY RIGHTS</span></strong>
</div>
<div class="MsoNormal" style="line-height: 1;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"> </span>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;">Unless otherwise
indicated, the Site is our proprietary property and all source code, databases,
functionality, software, website designs, audio, video, text, photographs, and
graphics on the Site (collectively, the “Content”) and the trademarks, service
marks, and logos contained therein (the “Marks”) are owned or controlled by us or
licensed to us, and are protected by copyright and trademark laws and various
other intellectual property rights and unfair competition laws of the United
States, international copyright laws, and international conventions. The Content and the Marks are provided on the
Site “AS IS” for your information and personal use only. Except as expressly provided in these Terms
of Use, no part of the Site and no Content or Marks may be copied, reproduced,
aggregated, republished, uploaded, posted, publicly displayed, encoded,
translated, transmitted, distributed, sold, licensed, or otherwise exploited
for any commercial purpose whatsoever, without our express prior written
permission.</span></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"> </span>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;">Provided that you
are eligible to use the Site, you are granted a limited license to access and
use the Site and to download or print a copy of any portion of the Content to
which you have properly gained access solely for your personal, non-commercial
use. We reserve all rights not expressly granted to you in and to the Site, the Content and the Marks.</span></div>
</div>
<div align="center" style="text-align: left; line-height: 1.5;"><br></div>
<div align="center" style="text-align: left; line-height: 1.5;"><br></div>
<div align="center" style="text-align: left;">
<div class="MsoNormal" data-custom-class="heading_1" style="line-height: 1.5;"><a
name="_5hg7kgyv9l8z"></a><strong><span style="line-height: 115%; font-family: Arial; font-size: 19px;">USER REPRESENTATIONS</span></strong>
</div>
<div class="MsoNormal" style="line-height: 1;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"> </span>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;">By using the Site, you represent and warrant that:</span>
<bdt class="block-container if" data-type="if" id="d2d82ca8-275f-3f86-8149-8a5ef8054af6">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="user_account_option"
data-type="statement"></bdt>
<bdt data-type="body"><span style="color: rgb(89, 89, 89); font-size: 11pt;">(</span><span
style="color: rgb(89, 89, 89); font-size: 14.6667px;">1</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) all registration information you submit
will be true, accurate, current, and complete; (</span><span
style="color: rgb(89, 89, 89); font-size: 14.6667px;">2</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) you will maintain the accuracy of such information and promptly update such registration information as necessary;</span>
</bdt>
</bdt>
<bdt class="statement-end-if-in-editor" data-type="close"></bdt>
</bdt>
<span style="color: rgb(89, 89, 89); font-size: 11pt;">(</span><span
style="color: rgb(89, 89, 89); font-size: 14.6667px;">3</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) you have the legal capacity and you agree to comply with these Terms of Use;</span>
<bdt class="block-container if" data-type="if" id="8d4c883b-bc2c-f0b4-da3e-6d0ee51aca13">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="user_u13_option" data-type="statement"></bdt>
</bdt>
<span style="color: rgb(89, 89, 89); font-size: 11pt;">(</span><span
style="color: rgb(89, 89, 89); font-size: 14.6667px;">4</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) you are not a
minor in the jurisdiction in which you reside<bdt class="block-container if" data-type="if"
id="76948fab-ec9e-266a-bb91-948929c050c9"><bdt
data-type="conditional-block"><bdt class="block-component"
data-record-question-key="user_o18_option"
data-type="statement"></bdt><bdt data-type="body">, or if a minor, you have
received parental permission to use the Site</bdt></bdt><bdt class="statement-end-if-in-editor"
data-type="close"></bdt></bdt>; (</span><span
style="color: rgb(89, 89, 89); font-size: 14.6667px;">5</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) you will not access the Site
through automated or non-human means, whether through a bot, script or
otherwise; (</span><span style="color: rgb(89, 89, 89); font-size: 14.6667px;">6</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) you will not use the Site for any illegal or unauthorized
purpose; and (</span><span style="color: rgb(89, 89, 89); font-size: 14.6667px;">7</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) your use of the Site
will not violate any applicable law or regulation.</span><span
style="color: rgb(89, 89, 89); font-size: 14.6667px;"></span>
</bdt>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"> </span>
</div>
<div class="MsoNormal" style="text-align: justify; line-height: 115%;">
<div class="MsoNormal" style="line-height: 17.25px;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">If you provide any information that is untrue, inaccurate, not current, or incomplete, we have the right to suspend or terminate your account and refuse any and all current or future use of the Site (or any portion thereof).</span>
</div>
<div class="MsoNormal" style="line-height: 1.1; text-align: left;">
<bdt class="block-component"></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5; text-align: left;"><br></div>
<div class="MsoNormal" style="line-height: 1.5; text-align: left;"><br></div>
</div>
<div class="MsoNormal" style="line-height: 1;">
<bdt data-type="conditional-block">
<bdt data-type="body">
<div class="MsoNormal" data-custom-class="heading_1"
style="line-height: 1.5; text-align: left;"><strong><span
style="line-height: 24.5333px; font-size: 19px;">USER REGISTRATION</span></strong></div>
<div class="MsoNormal" data-custom-class="body_text"
style="text-align: left; line-height: 1.5;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">You may be required to register with the Site. You agree to keep your password confidential and will be responsible for all use of your account and password. We reserve the right to remove, reclaim, or change a username you select if we determine, in our sole discretion, that such username is inappropriate, obscene, or otherwise objectionable.<bdt
class="statement-end-if-in-editor" data-type="close"></bdt></span></div>
</bdt>
</bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
</div>
<div class="MsoNormal" data-custom-class="heading_1" style="line-height: 1.5;"><a
name="_nds4qylockxx"></a><strong><span style="line-height: 115%; font-family: Arial; font-size: 19px;">PRODUCTS</span></strong>
</div>
<div class="MsoNormal" style="line-height: 1;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"> </span>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"><bdt
class="block-container if" data-type="if"
id="b9812c02-490b-3a1e-9b3a-9a03c73ee63c"><bdt
data-type="conditional-block"><bdt class="block-component" data-record-question-key="product_option"
data-type="statement"></bdt><bdt data-type="body">We make every effort to display as accurately as possible the colors, features, specifications, and details of the products available on the Site. However, we do not guarantee that the colors, features, specifications, and details of the products will be accurate, complete, reliable, current, or free of other errors, and your electronic display may not accurately reflect the actual colors and details of the products. </bdt></bdt><bdt
class="statement-end-if-in-editor" data-type="close"></bdt></bdt>All products are subject to availability<bdt
class="block-container if" data-type="if" id="35c07bc8-4217-594b-b7e7-1b4f0e8c56e4"><bdt
data-type="conditional-block"><bdt class="block-component" data-record-question-key="product_option"
data-type="statement"></bdt><bdt data-type="body">,
and we cannot guarantee that items will be in stock</bdt></bdt><bdt class="statement-end-if-in-editor"
data-type="close"></bdt></bdt>. We reserve the right to
discontinue any products at any time for any reason. Prices for all products
are subject to change.</span></div>
</div>
<div align="center" style="text-align: left; line-height: 1.5;"><br></div>
<div align="center" style="text-align: left; line-height: 1.5;"><br></div>
<div align="center" style="text-align: left;">
<div class="MsoNormal" data-custom-class="heading_1" style="line-height: 1.5;"><a
name="_ynub0jdx8pob"></a><strong><span style="line-height: 115%; font-family: Arial; font-size: 19px;">PURCHASES AND PAYMENT</span></strong>
</div>
<div class="MsoNormal" style="line-height: 1;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"> </span>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;">We accept the following forms of payment:</span>
</div>
<div class="MsoNormal" style="text-align:justify;line-height:115%;">
<div class="MsoNormal" style="text-align: left; line-height: 1;"><br></div>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; margin-left: 20px;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"><bdt
class="forloop-component"></bdt>- <bdt
class="question">Visa</bdt></span></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; margin-left: 20px;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"><bdt
class="forloop-component"></bdt>- <bdt
class="question">Mastercard</bdt></span></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; margin-left: 20px;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"><bdt
class="forloop-component"></bdt>- <bdt
class="question">American Express</bdt></span></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; margin-left: 20px;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"><bdt
class="forloop-component"></bdt>- <bdt
class="question">Discover</bdt></span></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; margin-left: 20px;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"><bdt
class="forloop-component"></bdt>- <bdt
class="question">PayPal</bdt></span></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; margin-left: 20px;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"><bdt
class="forloop-component"></bdt></span></div>
<div class="MsoNormal" style="line-height: 1;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"><br></span>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;">You agree to provide current, complete, and accurate purchase and account information for all purchases made via the Site. You further agree to promptly update account and payment information, including email address, payment method, and payment card expiration date, so that we can complete your transactions and contact you as needed. Sales tax will be added to the price of purchases as deemed required by us. We may change prices at any time. All payments shall be </span><span
style="font-size: 15px; line-height: 115%; font-family: Arial; color: rgb(89, 89, 89);">in <bdt
class="question">TRY</bdt>.</span></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"> </span>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;">You agree to pay all charges at the prices then in effect for your purchases and any applicable shipping fees, and you authorize us to charge your chosen payment provider for any such amounts upon placing your order. <bdt
class="block-container if" data-type="if" id="9c0216a1-d094-fd73-a062-9615dc795ffc"><bdt
data-type="conditional-block"><bdt class="block-component"
data-record-question-key="recurring_charge_option"
data-type="statement"></bdt></bdt>We reserve the right to correct
any errors or mistakes in pricing, even if we have already requested or
received payment.</bdt></span></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;"> </span>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size:11.0pt;line-height:115%;font-family:Arial;color:#595959;mso-themecolor:text1;mso-themetint:166;">We reserve the
right to refuse any order placed through the Site. We may, in our sole discretion, limit or
cancel quantities purchased per person, per household, or per order. These restrictions may include orders placed
by or under the same customer account, the same payment method, and/or orders
that use the same billing or shipping address. We reserve the right to limit or prohibit orders that, in our sole
judgment, appear to be placed by dealers, resellers, or distributors.</span></div>
<div class="MsoNormal" style="text-align: justify; line-height: 115%;"><span
style="line-height: 115%; font-family: Arial; color: rgb(89, 89, 89);"><bdt
data-type="conditional-block" style="color: rgb(10, 54, 90); text-align: left;"><bdt
class="block-component" data-record-question-key="return_option" data-type="statement"
style="font-size: 15px;"></bdt></bdt></span></div>
<div class="MsoNormal" style="text-align: justify; line-height: 1.5;"><br></div>
<div class="MsoNormal" style="text-align: justify; line-height: 1.5;"><br></div>
<div class="MsoNormal" style="text-align: justify; line-height: 1;"><span
style="line-height: 115%; font-family: Arial; color: rgb(89, 89, 89);"><bdt
data-type="conditional-block" style="color: rgb(10, 54, 90); text-align: left;"><bdt data-type="body"><div
class="MsoNormal" data-custom-class="heading_1" style="line-height: 1.5;"><strong><span
style="line-height: 24.5333px;"><bdt class="block-container if" data-type="if"
id="09a19ea5-53d7-8b08-be6e-279bf01450e1"><bdt
data-type="conditional-block"><span style="font-size: 19px;"><bdt data-type="body"><bdt
class="block-component"></bdt><bdt data-type="body">RETURN/REFUNDS</bdt></bdt><bdt
class="statement-end-if-in-editor" data-type="close"></bdt></span></bdt><span style="font-size: 19px;"> POLICY</span>
</bdt></span></strong></div></bdt></bdt></span>
</div>
<div class="MsoNormal" style="text-align: justify; line-height: 1;"><span
style="line-height: 115%; font-family: Arial; color: rgb(89, 89, 89);"><bdt
data-type="conditional-block" style="color: rgb(10, 54, 90); text-align: left;"><bdt data-type="body"><div
class="MsoNormal" style="line-height: 1;"><br></div><div class="MsoNormal" data-custom-class="body_text"
style="font-size: 15px; line-height: 1.5;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">Please review our Return Policy posted on the Site prior to making any purchases.</span></div></bdt></bdt><bdt
data-type="conditional-block" style="color: rgb(10, 54, 90); text-align: left;"><bdt
class="block-component" data-record-question-key="return_option" data-type="statement"
style="font-size: 15px;"></bdt></bdt></span></span></div>
</bdt></bdt></span></div>
<div class="MsoNormal" style="text-align: justify; line-height: 1;"><span
style="line-height: 115%; font-family: Arial; color: rgb(89, 89, 89);"><bdt data-type="conditional-block"
style="color: rgb(10, 54, 90); text-align: left;"><bdt
data-type="body"><div class="MsoNormal"
style="font-size: 15px; line-height: 1.5;"><br></div></bdt></bdt><br></span> <a
name="_h284p8mrs3r7"></a>
<div class="MsoNormal" data-custom-class="heading_1" style="text-align: left; line-height: 1.5;"><strong><span
style="line-height: 24.5333px; font-size: 19px;">PROHIBITED ACTIVITIES</span></strong></div>
<div class="MsoNormal" style="line-height: 1; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"> </span></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">You may not access or use the Site for any purpose other than that for which we make the Site available. The Site may not be used in connection with any commercial endeavors except those that are specifically endorsed or approved by us.</span>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"> </span></div>
<div class="MsoNormal" style="line-height: 17.25px;">
<div class="MsoNormal" style="line-height: 1.1;">
<div class="MsoNormal" style="line-height: 17.25px;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">As a user of the Site, you agree not to:</span>
</div>
<div class="MsoNormal" style="line-height: 17.25px;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><div
class="MsoNormal" style="color: rgb(10, 54, 90); font-size: 15px; line-height: 17.25px;"><div
class="MsoListParagraphCxSpMiddle"
style="margin-left: 50.4pt; text-indent: -22.05pt; line-height: 1; text-align: left;"><br></div></div></span>
</div>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">1</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Systematically retrieve data or other content from the Site to create or compile, directly or indirectly, a collection, compilation, database, or directory without written permission from us.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">2</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Make any unauthorized use of the Site, including collecting usernames and/or email addresses of users by electronic or other means for the purpose of sending unsolicited email, or creating user accounts by automated means or under false pretenses.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">3</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Use a buying agent or purchasing agent to make purchases on the Site.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">4</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Use the Site to advertise or offer to sell goods and services.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">5</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Circumvent, disable, or otherwise interfere with security-related features of the Site, including features that prevent or restrict the use or copying of any Content or enforce limitations on the use of the Site and/or the Content contained therein.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">6</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Engage in unauthorized framing of or linking to the Site.</bdt></span></div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">7</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Trick, defraud, or mislead us and other users, especially in any attempt to learn sensitive account information such as user passwords.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">8</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Make improper use of our support services or submit false reports of abuse or misconduct.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">9</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Engage in any automated use of the system, such as using scripts to send comments or messages, or using any data mining, robots, or similar data gathering and extraction tools.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">10</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Interfere with, disrupt, or create an undue burden on the Site or the networks or services connected to the Site.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">11</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Attempt to impersonate another user or person or use the username of another user.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">12</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Sell or otherwise transfer your profile.</bdt></span></div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">13</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Use any information obtained from the Site in order to harass, abuse, or harm another person.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">14</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Use the Site as part of any effort to compete with us or otherwise use the Site and/or the Content for any revenue-generating endeavor or commercial enterprise.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">15</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Decipher, decompile, disassemble, or reverse engineer any of the software comprising or in any way making up a part of the Site.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">16</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Attempt to bypass any measures of the Site designed to prevent or restrict access to the Site, or any portion of the Site.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">17</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Harass, annoy, intimidate, or threaten any of our employees or agents engaged in providing any portion of the Site to you.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">18</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Delete the copyright or other proprietary rights notice from any Content.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">19</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Copy or adapt the Site’s software, including but not limited to Flash, PHP, HTML, JavaScript, or other code.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">20</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Upload or transmit (or attempt to upload or to transmit) viruses, Trojan horses, or other material, including excessive use of capital letters and spamming (continuous posting of repetitive text), that interferes with any party’s uninterrupted use and enjoyment of the Site or modifies, impairs, disrupts, alters, or interferes with the use, features, functions, operation, or maintenance of the Site.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">21</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Upload or transmit (or attempt to upload or to transmit) any material that acts as a passive or active information collection or transmission mechanism, including without limitation, clear graphics interchange formats (“gifs”), 1×1 pixels, web bugs, cookies, or other similar devices (sometimes referred to as “spyware” or “passive collection mechanisms” or “pcms”).</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">22</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Except as may be the result of standard search engine or Internet browser usage, use, launch, develop, or distribute any automated system, including without limitation, any spider, robot, cheat utility, scraper, or offline reader that accesses the Site, or using or launching any unauthorized script or other software.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">23</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Disparage, tarnish, or otherwise harm, in our opinion, us and/or the Site.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt><bdt class="block-container forloop" data-type="forloop"
id="19beb913-5a5e-2b51-51f9-8600a8eb26c3"
style="display: inline;"><bdt data-type="conditional-block"
style="display: inline;"><bdt
data-type="body" style="display: inline;"><span
style="font-size: 14.6667px;font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -22.05pt; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">24</span></bdt></bdt></bdt><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89); font-size: 14.6667px;">. </span> <bdt
class="question">Use the Site in a manner inconsistent with any applicable laws or regulations.</bdt></span>
</div>
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; margin-left: 20px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="forloop-component"></bdt></span></div>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" style="line-height: 1.5;">
<bdt class="block-container if" data-type="if" style="text-align: left;">
<bdt data-type="conditional-block">
<bdt data-type="body"> </bdt>
</bdt>
</bdt>
</div>
<div class="MsoNormal" style="line-height: 1;">
<bdt class="block-container if" data-type="if" style="text-align: left;">
<bdt data-type="conditional-block">
<bdt data-type="body">
<div class="MsoNormal" data-custom-class="heading_1" style="line-height: 1.5;"><strong><span
style="line-height: 24.5333px; font-size: 19px;">USER GENERATED CONTRIBUTIONS</span></strong>
</div>
<span style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"> </span>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="block-container if" data-type="if" id="24327c5d-a34f-f7e7-88f1-65a2f788484f"
style="text-align: left;"><bdt data-type="conditional-block"><bdt
class="block-component" data-record-question-key="user_post_content_option"
data-type="statement"></bdt><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">The Site does not offer users to submit or post content. We may provide you with the opportunity to create, submit, post, display, transmit, perform, publish, distribute, or broadcast content and materials to us or on the Site, including but not limited to text, writings, video, audio, photographs, graphics, comments, suggestions, or personal information or other material (collectively, "Contributions"). Contributions may be viewable by other users of the Site and through third-party websites. As such, any Contributions you transmit may be treated in accordance with the Site Privacy Policy. When you create or make available any Contributions, you thereby represent and warrant that:<span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="statement-end-if-in-editor"></bdt></span></span></bdt></bdt></span></div>
</bdt>
</bdt>
</bdt>
</div>
</div>
</div>
<div class="MsoNormal" style="line-height: 1.5; margin-left: 20px;"><span style="color: rgb(89, 89, 89);"><span
style="font-size: 14px;"><span data-custom-class="body_text">1. The creation, distribution, transmission, public display, or performance, and the accessing, downloading, or copying of your Contributions do not and will not infringe the proprietary rights, including but not limited to the copyright, patent, trademark, trade secret, or moral rights of any third party.<br>2. You are the creator and owner of or have the necessary licenses, rights, consents, releases, and permissions to use and to authorize us, the Site, and other users of the Site to use your Contributions in any manner contemplated by the Site and these Terms of Use.<br>3. You have the written consent, release, and/or permission of each and every identifiable individual person in your Contributions to use the name or likeness of each and every such identifiable individual person to enable inclusion and use of your Contributions in any manner contemplated by the Site and these Terms of Use.<br>4. Your Contributions are not false, inaccurate, or misleading.<br>5. Your Contributions are not unsolicited or unauthorized advertising, promotional materials, pyramid schemes, chain letters, spam, mass mailings, or other forms of solicitation.<br>6. Your Contributions are not obscene, lewd, lascivious, filthy, violent, harassing, libelous, slanderous, or otherwise objectionable (as determined by us).<br>7. Your Contributions do not ridicule, mock, disparage, intimidate, or abuse anyone.<br>8. Your Contributions do not advocate the violent overthrow of any government or incite, encourage, or threaten physical harm against another.<br>9. Your Contributions do not violate any applicable law, regulation, or rule.<br>10. Your Contributions do not violate the privacy or publicity rights of any third party.<br>11. Your Contributions do not contain any material that solicits personal information from anyone under the age of 18 or exploits people under the age of 18 in a sexual or violent manner.<br>12. Your Contributions do not violate any applicable law concerning child pornography, or otherwise intended to protect the health or well-being of minors;<br>13. Your Contributions do not include any offensive comments that are connected to race, national origin, gender, sexual preference, or physical handicap.<br>14. Your Contributions do not otherwise violate, or link to material that violates, any provision of these Terms of Use, or any applicable law or regulation.</span></span></span>
</div>
<div class="MsoNormal" style="line-height: 1; margin-left: 20px;"><span style="color: rgb(89, 89, 89);"><br></span>
</div>
<div class="MsoNormal" style="text-align: justify; line-height: 1.5;">
<bdt class="block-container if" data-type="if" style="text-align: left;">
<bdt data-type="conditional-block">
<bdt data-type="body">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">Any use of the Site or the Marketplace Offerings in violation of the foregoing violates these Terms of Use and may result in, among other things, termination or suspension of your rights to use the Site and the Marketplace Offerings.</span>
</div>
</bdt>
</bdt>
</bdt>
</div>
<div class="MsoNormal" style="text-align: justify; line-height: 1.5;"><br></div>
<div class="MsoNormal" style="text-align: justify; line-height: 1;">
<bdt class="block-container if" data-type="if" style="text-align: left;">
<bdt data-type="conditional-block">
<bdt data-type="body">
<div class="MsoNormal" data-custom-class="heading_1" style="line-height: 1.5;"><strong><span
style="line-height: 24.5333px; font-size: 19px;">CONTRIBUTION LICENSE</span></strong></div>
</bdt>
</bdt>
</bdt>
</div>
<div class="MsoNormal" style="text-align: justify; line-height: 1;">
<bdt class="block-container if" data-type="if" id="a088ddfb-d8c1-9e58-6f21-958c3f4f0709"
style="text-align: left;">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="user_post_content_option"
data-type="statement"></bdt>
</span></bdt>
</bdt>
</bdt></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">You and Site agree that we may access, store, process, and use any information and personal data that you provide following the terms of the Privacy Policy and your choices (including settings).</span></span>
</div>
<div class="MsoNormal" style="text-align: justify; line-height: 1;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">By submitting suggestions or other feedback regarding the Site, you agree that we can use and share such feedback for any purpose without compensation to you.</span>
</div>
<div class="MsoNormal" style="text-align: justify; line-height: 1;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">We do not assert any ownership over your Contributions. You retain full ownership of all of your Contributions and any intellectual property rights or other proprietary rights associated with your Contributions. We are not liable for any statements or representations in your Contributions provided by you in any area on the Site. You are solely responsible for your Contributions to the Site and you expressly agree to exonerate us from any and all responsibility and to refrain from any legal action against us regarding your Contributions.</span></span>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" style="text-align: justify; line-height: 1.5;"><br></div>
<div class="MsoNormal" style="text-align: justify; line-height: 115%;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt class="block-container if"
data-type="if"
style="text-align: left;"><bdt
class="statement-end-if-in-editor" data-type="close"></bdt></bdt></span></span></span></div>
<div class="MsoNormal" style="text-align: justify; line-height: 115%;">
<bdt class="block-container if" data-type="if" id="a378120a-96b1-6fa3-279f-63d5b96341d3"
style="text-align: left;">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="review_option" data-type="statement"></bdt>
</bdt>
</bdt>
</div>
<div class="MsoNormal" style="text-align: justify; line-height: 1;">
<bdt class="block-container if" data-type="if" style="text-align: left;">
<bdt data-type="conditional-block">
<bdt data-type="body">
<div class="MsoNormal" data-custom-class="heading_1" style="line-height: 1.5;"><strong><span
style="line-height: 24.5333px; font-size: 19px;">GUIDELINES FOR REVIEWS</span></strong>
</div>
<span style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"> </span>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">We may provide you areas on the Site to leave reviews or ratings. When posting a review, you must comply with the following criteria: (1) you should have firsthand experience with the person/entity being reviewed; (2) your reviews should not contain offensive profanity, or abusive, racist, offensive, or hate language; (3) your reviews should not contain discriminatory references based on religion, race, gender, national origin, age, marital status, sexual orientation, or disability; (4) your reviews should not contain references to illegal activity; (5) you should not be affiliated with competitors if posting negative reviews; (6) you should not make any conclusions as to the legality of conduct; (7) you may not post any false or misleading statements; and (8) you may not organize a campaign encouraging others to post reviews, whether positive or negative.</span>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">We may accept, reject, or remove reviews in our sole discretion. We have absolutely no obligation to screen reviews or to delete reviews, even if anyone considers reviews objectionable or inaccurate. Reviews are not endorsed by us, and do not necessarily represent our opinions or the views of any of our affiliates or partners. We do not assume liability for any review or for any claims, liabilities, or losses resulting from any review. By posting a review, you</span><span
style="font-size: 11pt; line-height: 16.8667px;"> </span><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">hereby grant to us a perpetual, non-exclusive, worldwide, royalty-free, fully-paid, assignable, and sublicensable right and license to reproduce, modify, translate, transmit by any means, display, perform, and/or distribute all content relating to reviews.</span>
</div>
</bdt>
</bdt>
</bdt>
</div>
<div class="MsoNormal" style="text-align: justify; line-height: 1.5;">
<bdt class="block-container if" data-type="if" style="text-align: left;">
<bdt data-type="conditional-block">
<bdt data-type="body">
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
</bdt>
</bdt>
</bdt>
</div>
<div class="MsoNormal" style="text-align: justify; line-height: 115%;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt class="block-container if"
data-type="if"
style="text-align: left;"><bdt
class="statement-end-if-in-editor" data-type="close"></bdt></bdt></span></span></span></div>
<div class="MsoNormal" style="text-align: justify; line-height: 1;">
<bdt class="block-container if" data-type="if" id="c954892f-02b9-c743-d1e8-faf0d59a4b70"
style="text-align: left;">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="mobile_app_option" data-type="statement"></bdt>
</bdt>
</span></span></span>
</bdt>
</div>
<div class="MsoNormal" style="text-align: justify; line-height: 1;">
<bdt class="block-container if" data-type="if" style="text-align: left;">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="socialnetwork_link_option"
data-type="statement"></bdt>
</bdt>
</span></span></span></bdt>
</div>
<div class="MsoNormal" style="text-align: justify; line-height: 115%;">
<div class="MsoNormal" data-custom-class="heading_1" style="line-height: 1.5; text-align: left;"><a
name="_wfq2hvrw11j4"></a><strong><span
style="line-height: 24.5333px; font-size: 19px;">SUBMISSIONS</span></strong></div>
<div class="MsoNormal" style="line-height: 1; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"> </span></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">You acknowledge and agree that any questions, comments, suggestions, ideas, feedback, or other information regarding the Site or the Marketplace Offerings ("Submissions") provided by you to us are non-confidential and shall become our sole property. We shall own exclusive rights, including all intellectual property rights, and shall be entitled to the unrestricted use and dissemination of these Submissions for any lawful purpose, commercial or otherwise, without acknowledgment or compensation to you. You hereby waive all moral rights to any such Submissions, and you hereby warrant that any such Submissions are original with you or that you have the right to submit such Submissions. You agree there shall be no recourse against us for any alleged or actual infringement or misappropriation of any proprietary right in your Submissions.</span>
</div>
<div class="MsoNormal" style="line-height: 1.5; text-align: left;"><br></div>
<div class="MsoNormal" style="line-height: 1.5;"> <a name="_np5tpdc7g5vt"></a></div>
<div class="MsoNormal" style="line-height: 1;">
<bdt class="block-container if" data-type="if" style="text-align: left;">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="3rd_party_option"
data-type="statement"></bdt>
</bdt>
</bdt>
</div>
<div class="MsoNormal" style="line-height: 1;">
<bdt class="block-container if" data-type="if" style="text-align: left;">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="advertiser_option"
data-type="statement"></bdt>
</bdt>
</bdt>
</div>
<div class="MsoNormal" data-custom-class="heading_1" style="line-height: 1.5; text-align: left;"><a
name="_wj13r09u8u3u"></a><strong><span
style="line-height: 24.5333px; font-size: 19px;">SITE MANAGEMENT</span></strong></div>
<div class="MsoNormal" style="line-height: 1; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"> </span></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">We reserve the right, but not the obligation, to: (1) monitor the Site for violations of these Terms of Use; (2) take appropriate legal action against anyone who, in our sole discretion, violates the law or these Terms of Use, including without limitation, reporting such user to law enforcement authorities; (3) in our sole discretion and without limitation, refuse, restrict access to, limit the availability of, or disable (to the extent technologically feasible) any of your Contributions or any portion thereof; (4) in our sole discretion and without limitation, notice, or liability, to remove from the Site or otherwise disable all files and content that are excessive in size or are in any way burdensome to our systems; and (5) otherwise manage the Site in a manner designed to protect our rights and property and to facilitate the proper functioning of the Site and the Marketplace Offerings.</span>
</div>
<div class="MsoNormal" style="line-height: 1.5; text-align: left;"><br></div>
<div class="MsoNormal" style="line-height: 1.5;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"> </span></div>
<div class="MsoNormal" style="line-height: 1.5;">
<bdt class="block-container if" data-type="if" id="bdd90fa9-e664-7d0b-c352-2b8e77dd3bb4"
style="text-align: left;">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="privacy_policy_option"
data-type="statement"></bdt>
</bdt>
<bdt class="block-container if" data-type="if">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="privacy_policy_followup"
data-type="statement" style="font-size: 14.6667px;"></bdt>
</bdt>
</bdt>
</bdt>
</div>
<div class="MsoNormal" style="line-height: 1; text-align: left;">
<bdt class="block-container if" data-type="if" style="text-align: left;">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="copyright_agent_option"
data-type="statement">
<bdt class="block-component"></bdt>
</bdt>
</bdt>
</bdt>
</div>
<div class="MsoNormal" style="line-height: 1; text-align: left;">
<bdt class="block-container if" data-type="if" style="text-align: left;">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="no_agent_clause_option"
data-type="statement">
<bdt class="block-component"></bdt>
</bdt>
</bdt>
</bdt>
</div>
<div class="MsoNormal" data-custom-class="heading_1" style="line-height: 1.5; text-align: left;"><a
name="_k3mndam4w6w1"></a><strong><span style="line-height: 24.5333px; font-size: 19px;">TERM AND TERMINATION</span></strong>
</div>
<div class="MsoNormal" style="line-height: 1; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"> </span></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">These Terms of Use shall remain in full force and effect while you use the Site. WITHOUT LIMITING ANY OTHER PROVISION OF THESE TERMS OF USE, WE RESERVE THE RIGHT TO, IN OUR SOLE DISCRETION AND WITHOUT NOTICE OR LIABILITY, DENY ACCESS TO AND USE OF THE SITE AND THE MARKETPLACE OFFERINGS (INCLUDING BLOCKING CERTAIN IP ADDRESSES), TO ANY PERSON FOR ANY REASON OR FOR NO REASON, INCLUDING WITHOUT LIMITATION FOR BREACH OF ANY REPRESENTATION, WARRANTY, OR COVENANT CONTAINED IN THESE TERMS OF USE OR OF ANY APPLICABLE LAW OR REGULATION. WE MAY TERMINATE YOUR USE OR PARTICIPATION IN THE SITE AND THE MARKETPLACE OFFERINGS OR DELETE <bdt
class="block-container if" data-type="if" id="a6e121c2-36b4-5066-bf9f-a0a33512e768"><bdt
data-type="conditional-block"><bdt class="block-component"
data-record-question-key="user_account_option"
data-type="statement"></bdt><bdt
data-type="body">YOUR ACCOUNT AND </bdt></bdt><bdt class="statement-end-if-in-editor"
data-type="close"></bdt></bdt>ANY CONTENT OR INFORMATION THAT YOU POSTED AT ANY TIME, WITHOUT WARNING, IN OUR SOLE DISCRETION.</span>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"> </span></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">If we terminate or suspend your account for any reason, you are prohibited from registering and creating a new account under your name, a fake or borrowed name, or the name of any third party, even if you may be acting on behalf of the third party. In addition to terminating or suspending your account, we reserve the right to take appropriate legal action, including without limitation pursuing civil, criminal, and injunctive redress.</span>
</div>
<div class="MsoNormal" style="line-height: 1.5; text-align: left;"><br></div>
<div class="MsoNormal" style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"> </span></div>
<div class="MsoNormal" data-custom-class="heading_1" style="text-align: left; line-height: 1.5;"><a
name="_e2dep1hfgltt"></a><strong><span style="line-height: 24.5333px; font-size: 19px;">MODIFICATIONS AND INTERRUPTIONS</span></strong>
</div>
<div class="MsoNormal" style="line-height: 1; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"> </span></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">We reserve the right to change, modify, or remove the contents of the Site at any time or for any reason at our sole discretion without notice. However, we have no obligation to update any information on our Site. We also reserve the right to modify or discontinue all or part of the Marketplace Offerings without notice at any time. We will not be liable to you or any third party for any modification, price change, suspension, or discontinuance of the Site or the Marketplace Offerings.</span>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"> </span></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">We cannot guarantee the Site and the Marketplace Offerings will be available at all times. We may experience hardware, software, or other problems or need to perform maintenance related to the Site, resulting in interruptions, delays, or errors. We reserve the right to change, revise, update, suspend, discontinue, or otherwise modify the Site or the Marketplace Offerings at any time or for any reason without notice to you. You agree that we have no liability whatsoever for any loss, damage, or inconvenience caused by your inability to access or use the Site or the Marketplace Offerings during any downtime or discontinuance of the Site or the Marketplace Offerings. Nothing in these Terms of Use will be construed to obligate us to maintain and support the Site or the Marketplace Offerings or to supply any corrections, updates, or releases in connection therewith.</span>
</div>
<div class="MsoNormal" style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"> </span></div>
<div class="MsoNormal" style="line-height: 1.5; text-align: left;"><br></div>
<div class="MsoNormal" data-custom-class="heading_1" style="text-align: left; line-height: 1.5;"><a
name="_p6vbf8atcwhs"></a><strong><span
style="line-height: 24.5333px; font-size: 19px;">GOVERNING LAW</span></strong></div>
<div class="MsoNormal" style="line-height: 1; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"> </span></div>
<div class="MsoNormal" style="line-height: 17.25px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="block-component"></bdt></span></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">These terms shall be governed by and defined following the laws of <bdt
class="block-component"></bdt><bdt class="question">Turkey</bdt><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="statement-end-if-in-editor"></bdt></span>. <bdt
class="question">Oak Book Store Marketing Inc.</bdt> and yourself irrevocably consent that the courts of <span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="block-component"></bdt><bdt class="question">Turkey</bdt><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><bdt
class="statement-end-if-in-editor"></bdt></span></span> shall have exclusive jurisdiction to resolve any dispute which may arise in connection with these terms.<bdt
class="statement-end-if-in-editor"></bdt></span></div>
<div class="MsoNormal" style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"> </span></div>
<div class="MsoNormal" style="line-height: 1.5; text-align: left;"><br></div>
<div class="MsoNormal" data-custom-class="heading_1" style="text-align: left; line-height: 1.5;"><a
name="_v5i5tjw62cyw"></a><strong><span style="line-height: 24.5333px; font-size: 19px;">DISPUTE RESOLUTION</span></strong>
</div>
<div class="MsoNormal" style="line-height: 1; text-align: left;"><br></div>
<div class="MsoNormal" style="line-height: 17.25px; text-align: left;">
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;"><span
style="font-size: 15px;">You agree to irrevocably submit all disputes related to Terms or the relationship established by this Agreement to the jurisdiction of the <bdt
class="block-component"></bdt><bdt class="question">Turkey</bdt><bdt
class="statement-end-if-in-editor"></bdt> courts. <bdt
class="question">Oak Book Store Marketing Inc.</bdt> shall also maintain the right to bring proceedings as to the substance of the matter in the courts of the country where you reside or, if these Terms are entered into in the course of your trade or profession, the state of your principal place of business.</span>
<bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"></span></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.1; text-align: left;">
<bdt class="statement-end-if-in-editor">
<bdt class="else-block"></bdt>
</bdt>
</div>
<div style="line-height: 1.5; text-align: left;"><br></div>