-
Notifications
You must be signed in to change notification settings - Fork 0
/
sports.html
2405 lines (2242 loc) · 224 KB
/
sports.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>
<!-- Created By CodingNepal -->
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Live Sports - CineBuzZ</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<nav>
<div class="logo" position="center">
CineBuzZ - Sports
</div>
<input type="checkbox" id="click">
</nav>
</body> </html>
<head>
<link rel="me" href="https://mahamudunnabisiam.netlify.app" />
<!--Can't find substitution for tag [blog.ieCssRetrofitLinks]-->
<meta content='https://sportbuzz.netlify.app/' property='og:url'/>
<meta content='SportBuzz' property='og:title'/>
<meta content='' property='og:description'/>
<title>SportBuzZ</title>
<link href='//github.com' rel='dns-prefetch'/>
<meta content='#fec606' name='theme-color'/><meta content='#fec606' name='msapplication-navbutton-color'/><meta content='#fec606' name='apple-mobile-web-app-status-bar-style'/><meta content='yes' name='apple-mobile-web-app-capable'/>
<style id='page-skin-1' type='text/css'>
/*
-----------------------------------------------
Template Name : Custom
Version : 1.0
Author : MS Design
Author URL : https://www.msdesignbd.com
Publisher : Template Market
Publisher URL : https://www.templatemark.com
----------------------------------------------- */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
body{line-height:1;display:block}
body{background:#fff;color:#656e7f;font-family: 'Google Sans', sans-serif;font-size:18px;font-weight:300;line-height:27px;margin:0;-webkit-user-select: none; -ms-user-select: none; user-select: none;}
body#layout #mainbwrap{width:100%;float:left}
body#layout .content-area {width:65%;}
body#layout #sidebar-wrapper{width:33%;left:0;padding:0;float:right}
body#layout .sidebar-area{width:100%;margin:0;padding:0}
body#layout #bwrapcontent,body#layout #sidebar-wrapper{padding:0}
body#layout #menu-wrapper {height:initial;}
body#layout .top-header {padding:0}
body#layout .top-navigation-wrapper {display:none;}
body#layout #footer-widgetfix .footer-widget {margin-left:0}
/* Google Fonts */
@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;font-display:swap;src:local('Google Sans Regular'),local(GoogleSans-Regular),url(//fonts.gstatic.com/s/googlesans/v5/4UaGrENHsxJlGDuGo1OIlL3Kwp5MKg.woff2) format("woff2");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;font-display:swap;src:local('Google Sans Regular'),local(GoogleSans-Regular),url(//fonts.gstatic.com/s/googlesans/v5/4UaGrENHsxJlGDuGo1OIlL3Nwp5MKg.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;font-display:swap;src:local('Google Sans Regular'),local(GoogleSans-Regular),url(//fonts.gstatic.com/s/googlesans/v5/4UaGrENHsxJlGDuGo1OIlL3Awp5MKg.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;font-display:swap;src:local('Google Sans Regular'),local(GoogleSans-Regular),url(//fonts.gstatic.com/s/googlesans/v5/4UaGrENHsxJlGDuGo1OIlL3Owp4.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;font-display:swap;src:local('Google Sans Medium'),local(GoogleSans-Medium),url(//fonts.gstatic.com/s/googlesans/v5/4UabrENHsxJlGDuGo1OIlLU94Yt3CwZ-Pw.woff2) format("woff2");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;font-display:swap;src:local('Google Sans Medium'),local(GoogleSans-Medium),url(//fonts.gstatic.com/s/googlesans/v5/4UabrENHsxJlGDuGo1OIlLU94YtwCwZ-Pw.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;font-display:swap;src:local('Google Sans Medium'),local(GoogleSans-Medium),url(//fonts.gstatic.com/s/googlesans/v5/4UabrENHsxJlGDuGo1OIlLU94Yt9CwZ-Pw.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;font-display:swap;src:local('Google Sans Medium'),local(GoogleSans-Medium),url(//fonts.gstatic.com/s/googlesans/v5/4UabrENHsxJlGDuGo1OIlLU94YtzCwY.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
/* vietnamese */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B43Lj11HzhKg.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B43Lj1lHzhKg.woff2) format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B43Lj2FHz.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* vietnamese */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rxz3nWuZEC.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rxz3jWuZEC.woff2) format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rxz3bWuQ.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* vietnamese */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B6x7T2kn3.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B6x_T2kn3.woff2) format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B6xHT2g.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* vietnamese */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lwz3nWuZEC.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lwz3jWuZEC.woff2) format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lwz3bWuQ.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* vietnamese */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873z3nWuZEC.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873z3jWuZEC.woff2) format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873z3bWuQ.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* vietnamese */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2z3nWuZEC.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2z3jWuZEC.woff2) format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2z3bWuQ.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
*{margin:0;padding:0}html{display:block}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{background:0 0}table{border-collapse:collapse;border-spacing:0}.feed-links,.navbar,.post-feeds{display:none}.section,.widget{margin:0;padding:0}b,strong{font-weight:700}b:hover,strong{left:-.1em;content:'[';-webkit-transform:translateX(-100%);transform:translateX(-100%)}cite,em,i{font-style:italic}a:link{text-decoration:none;outline:0;transition:all .25s}a:visited{text-decoration:none}a:link:hover{text-decoration:none;color:#f0c30e}a:visited:hover{color:#2d3e52;text-decoration:none}a img{border:none;border-width:0;outline:0}img{max-width:100%;vertical-align:middle;border:0}abbr,acronym{cursor:help;text-decoration:none}sub,sup{vertical-align:baseline;position:relative;top:-.4em;font-size:86%}sub{top:.4em}small{font-size:86%}mark{background-color:#ffce00;color:#182025}blockquote,dl,figure,hr,ol,p,pre,table,ul{margin:0}hr{height:1px;border:none;background-color:#444}#layout ul{display:none}.top-wrapper{overflow:hidden;position:relative}h1,h2,h3,h4,h5,h6{text-align:left;font-family:'Google Sans',sans-serif;text-transform:capitalize}.post-body h1,h2,h3,h4,h5,h6{margin-bottom:10px;margin-top:20px;font-weight:500}h1{font-size:200%}h2{font-size:150%}h3{font-size:130%}h4{font-size:140%}h5{font-size:120%}h6{font-size:100%}button,input,select,textarea{font-size:100%;line-height:normal;vertical-align:baseline}textarea{display:block;box-sizing:border-box}code,pre{font-family:Signika,sans-serif;color:#444}pre{white-space:pre;word-wrap:normal;overflow:auto}blockquote{font-style:italic;position:relative;font-size:14px;padding:0;padding-left:60px;margin:40px 0;border:0;font-weight:400}code,pre{font-family:Signika,sans-serif;color:#444}pre{white-space:pre;word-wrap:normal;overflow:auto}blockquote{background-color:#f9f9f9;border-left:8px solid #bfcada;padding:10px;margin:10px}:focus{outline:0!important}dl,ul{margin:0}ol{list-style:decimal outside}ul{list-style:disc outside}li{margin:0}div.clear{clear:both}.clear{clear:both}dt{font-weight:700}dd{margin:0 0 .5em 2em}.post ul li span{position:relative;display:block;padding:0;margin:.5em 0 .5em 2em;text-decoration:none}ol{counter-reset:li;list-style:none;padding:0;margin:0}ol ol{margin:0 0 0 2em}
.post ol li{position:relative;display:block;padding:0;margin:.5em 0 .5em 2em;background:#fff;text-decoration:none}.post ol li:before{content:counter(li);counter-increment:li;position:absolute;left:-2.5em;height:2em;width:2em;text-align:center}.post-body ul, .pane-content ul{position:relative;padding:0;text-decoration:none}.pane-content ul li {list-style: none;margin: 0 auto;}.post-body ul li{padding:0;text-decoration:none;transition:all .3s ease-out;margin:.5em 0 .5em 1.4em}.widget .post-body ul{padding:0}.post-body table caption,.post-body table td,.post-body table th{border:1px solid #eee;padding:10px;text-align:left;vertical-align:top}.post-body table.tr-caption-container{border:1px solid #eee}.post-body th{font-weight:700}.post-body table caption{border:none;font-style:italic}.post-body td,.post-body th{vertical-align:top;text-align:left;font-size:13px;padding:3px 5px;border:1px solid #eee}.post-body th{background:#fafafa}.post-body table.tr-caption-container td{border:none;padding:8px}.post-body img,.post-body table.tr-caption-container,.post-body table.tr-caption-container img{max-width:100%;height:auto}.post-body td.tr-caption{color:#666;font-size:80%;padding:0 8px 8px!important}img{max-width:100%;height:auto;border:none}table{max-width:100%;width:100%;margin:1.5em auto}table.section-columns td.first.columns-cell{border-left:none}table.section-columns{border:none;table-layout:fixed;width:100%;position:relative}table.columns-2 td.columns-cell{width:50%}table.columns-3 td.columns-cell{width:33.33%}table.columns-4 td.columns-cell{width:25%}table.section-columns td.columns-cell{vertical-align:top}table.tr-caption-container{padding:4px;margin-bottom:.5em}td.tr-caption{font-size:80%}.widget ul{padding:0}.quickedit{display:none;visibility:hidden}hr{background-color:#242d36;height:1px;margin-bottom:26px;padding:0}.viewall{text-align:center;margin-top:15px;display:grid}.viewall a i{font-size:10px}.viewall a{overflow: hidden; text-transform: uppercase; letter-spacing: .6px; text-align: center; background: #fbca01; padding:20px 10px; font-size: 16px; font-weight: 700; border-radius:7px;color: #000; }blockquote{color:#9ba2af;font-family:"PT Serif",Georgia,Times,serif;border-left:5px solid rgba(155,162,175,.25);margin-left:0;margin-right:0;margin-bottom:27px;padding-left:27px}blockquote blockquote{font-size:inherit}img{height:auto;max-width:100%}a{color:#9d003a;text-decoration:none;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}a:active,a:focus,a:hover{color:#f0c30e;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.PopularPosts ul li .item-title a:hover,.PopularPosts ul li a:hover{color:#f0c30e}.site-header{background:#242d36;border-bottom:5px solid #1e252d;margin:0;position:relative;width:100%;z-index:100}.site-header img{display:block;margin:0 auto;max-height:200px}.bwrapsite-content{margin:0 auto;overflow:hidden}.content-area{float:left;margin:0 -25% 0 0;width:100%}.sidebar-area{float:right;overflow:hidden;width:21%}#sidebar .widget h2{font-weight:700;transition:all .5s ease-out;text-transform:uppercase;font-size:14px;line-height:28px;padding:12px;text-align:center;margin:0;border:1px solid #eee;color:#333;background:#fbfbfb}#sidebar .widget{background:#fff;margin-bottom:15px}#sidebar .widget-content{padding:10.75px;border:1px solid #eee;border-top:0}.site-footer{background:#242d36;clear:both;color:#f0f1f3;font-size:14px;font-weight:600;line-height:1.8em;padding:10px;text-align:center}.site-footer a{color:#f0f1f3;text-decoration:none}.smoothscroll-top{position:fixed;opacity:0;visibility:hidden;overflow:hidden;text-align:center;z-index:99;background:#f0c30e;color:#fff;width:47px;height:44px;line-height:44px;right:25px;bottom:-25px;padding-top:2px;transition:all .5s ease-in-out;transition-delay:.2s;border-radius:3px;border:1px solid #f0c30e}.smoothscroll-top:hover{background-color:#fff;color:#f0c30e;transition:all .2s ease-in-out;transition-delay:0s;border:1px solid #ddd}.smoothscroll-top.show{visibility:visible;cursor:pointer;opacity:1;bottom:25px}.smoothscroll-top i.fa{line-height:inherit}.youtube-player{position:relative;padding-bottom:56.23%;height:0;overflow:hidden;max-width:100%;background:#000;margin-bottom:5px}.youtube-player iframe{position:absolute;top:0;left:0;width:100%;height:100%;z-index:100;background:0 0}.youtube-player img{bottom:0;display:block;left:0;margin:auto;max-width:100%;width:100%;position:absolute;right:0;top:0;border:none;height:auto;cursor:pointer;-webkit-transition:.4s all;-moz-transition:.4s all;transition:.4s all}.youtube-player img:hover{-webkit-filter:brightness(75%)}.youtube-player .play{height:72px;width:72px;left:50%;top:50%;margin-left:-36px;margin-top:-36px;position:absolute;background:url(//i.imgur.com/TxzC70f.png) no-repeat;cursor:pointer}.FollowByEmail .follow-by-email-inner .follow-by-email-address{height:40px!important;border:none;padding:5px;width:96%;margin-bottom:8px;background:#eee;text-align:center;font-size:15px;font-weight:600;border-radius:0}.FollowByEmail .follow-by-email-inner .follow-by-email-submit{height:50px!important;width:100%;margin-left:0;background:#f0c30e;font-size:16px;font-weight:700;text-transform:uppercase;padding:10px;border-radius:0}.follow-by-email-inner p{font-size:13px;font-weight:500;text-align:center;margin:0;margin-bottom:10px}.followbytext{font-size:15px;color:#fff;text-align:center;font-family:Merriweather,serif;font-weight:700}h2.date-header{margin:10px 0;display:none}img.author-photo{height:22px;width:22px;border-radius:100%;margin:0 3px 0 0}.authorboxwrap{background:#fff;padding:20px;overflow:hidden;border:1px solid #eee;border-top:0}.avatar-container{float:left;margin-right:20px}.avatar-container img{width:150px;height:auto;max-width:100%!important;border-radius:100%}.author_description_container h4{font-weight:700;font-size:17px;display:block;margin:0;margin-bottom:8px}.author_description_container h4 a{color:#333}.author_description_container p{margin:0;color:#333;font-size:13px;margin-bottom:8px;line-height:25px;font-weight:400}.social-links li{list-style:none!important;float:left}.social-links a{border-bottom:none}.social-links a:after,.social-links a:before{content:none!important}.social-links i{background:#f0f0f0;color:#787878;font-size:17px;text-align:center;display:inline-block;padding:7px 25px;margin:0 3px;border-radius:3px}.social-links i:hover{background:#f0c30e;color:#fff;transition:all ease .3s}.author-box .avatar{margin-left:2.4rem;float:right!important;border:2px solid #f0f0f0;padding:2px}#header-wrapper{overflow:hidden;position:relative;max-width:1000px;margin:0 auto}#header{float:left;width:100%;color:#222;margin:0}#header h1,#header h2,#header p{display:inline-block;font-size:30px;font-weight:900;color:#333;line-height:1;text-transform:uppercase}#header a:hover{color:#ff675c}#header .description{font-size:13px;font-weight:600;text-transform:none;line-height:normal;margin:0}.header img{display:block}.header-right{float:right;padding:0;overflow:hidden;margin:0;width:100%;max-width:728px}.header-right img{display:block;float:right}#comments{padding:15px;margin-bottom:20px;background:#fff;display:none}#comments h4{color:#333;background:#fbfbfb;font-size:16px;font-weight:700;margin-bottom:10px;text-align:left;text-transform:uppercase;margin:0;padding:18px;border-bottom:1px solid #eee}.deleted-comment{font-style:italic;color:gray}#outer-wrapper{width:100%;margin:0 auto;padding:0;position: relative; display:block;}#banner,.homead{height:320px!important;width:100%;margin-bottom: 10px; margin-top: 10px;position: relative; display: inline-block;}.homead2{background:#fff;margin-bottom:15px;margin-top:15px}#banner2{background:#fff;text-align:center;padding:10px;margin-top:10px}#disqusshow{position:relative;overflow:hidden;display:block;font-weight:500;font-size:14px;cursor:pointer;letter-spacing:0;margin:10px auto;padding:15px;background:#3a66d8;color:#fff;transition:all .3s;border-radius:5px;text-align:center;border-bottom:2px solid #0000002e;transition:all .3s ease-out}#disqusshow:active,#disqusshow:hover{color:#fff;background:#179cdd}.cloud-label-widget-content .label-size{display:inline-block;float:left;font-size:10px;line-height:normal;margin:0 5px 5px 0;opacity:1}.cloud-label-widget-content .label-size a{background:#fff;color:#000;float:left;font-weight:500;line-height:100%;margin:0;padding:10px 8px;transition:all .6s;font-size:11px;border:1px solid #eee}.cloud-label-widget-content .label-size a:hover{background:#fff;color:#f0c30e}.cloud-label-widget-content .label-size .label-count{background:#fbfbfb;color:#000;white-space:nowrap;display:inline-block;padding:8px;margin-left:-3px;line-height:normal;font-size:12px;font-weight:400;width:20px;text-align:center;border:1px solid #eee}.Label li{position:relative;list-style:disc;display:block;font-size:12px;font-weight:600;margin:0;border:1px solid #eee;border-bottom:0;padding:8px}.Label li:nth-child(even){background:#fbfbfb}.Label ul{margin:0}.Label li a{color:#666}.Label li:last-child{border-bottom:1px solid #eee}.Label li span{padding:11px;display:block;line-height:20px;position:absolute;right:0;bottom:0;font-size:11px;color:#000;width:30px;text-align:center;border-left:1px solid #eee}.Label li:hover span{background:#f0c30e;color:#fff;transition:all .6s;border:1px solid #f0c30e}.sidebar ul li a{color:rgba(29,28,28,.8);font-weight:400;font-size:15px;transition:all .3s;font-family:'}.post-body .separator a,.post-body a.img{margin-left:0!important;margin-right:0!important}#blog-pager a{color:#f0c30e}.pagenav{clear:both;margin:-5px 0 10px;padding:15px;text-align:center;font-size:13px;font-weight:700;background:#fff;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;border:1px solid #e6e6e6}.pagenav a,.pagenav span{padding:6px 12px;display:inline-block;color:#2d2d2d;margin-left:4px;margin-right:4px;transition:all .3s ease-out;font-size:14px}.pagenav .pages{color:#2d2d2d;font-weight:700;font-size:13px;float:left}.pagenav a:hover{background-color:#f0c30e;color:#fff}.pagenav .current{background-color:#f0c30e;color:#fff;border-radius:3px}#error404,.followby,.modalDialog{background:#f0c30e}#error-text a{color:#f0c30e}.home-link{background:#f0c30e;padding:12px 20px 12px 17px;position:absolute;color:#fff!important}#menu-wrapper{background:#0e455a;height:50px;width:100%;position:relative}#menu{background:#fff;color:#333;max-width:1000px;margin:auto}#menu li,#menu ul{margin:0;padding:0;list-style:none}#menu ul{height:50px;background:#f0c30e}#menu li{float:left;display:inline;position:relative;font-size:13px;font-weight:400}#menu li a{color:#000}#menu li a:hover{color:#fff;background:rgba(0,0,0,.42)}#menu a{display:block;line-height:50px;font-weight:500;padding:0 20px;text-decoration:none;color:#fff}#menu li:hover{background:rgba(0,0,0,.42);color:#fff}#menu input{display:none;margin:0;padding:0;width:80px;height:50px;opacity:0;cursor:pointer}#menu label{font-family:'font-size:30px;font-weight:400;display:none;width:35px;height:51px;line-height:51px;text-align:center}#menu label span{font-size:13px;position:absolute;left:35px}#menu ul.menus{height:auto;overflow:hidden;width:200px;background:#fff;position:absolute;z-index:99;display:none;color:#b4babe;text-transform:none;transition:all .25s ease-out}#menu ul.menus a{background:#3e454c;color:#fff}#menu ul.menus a:hover{color:#fff;background:#f0c30e}#menu ul.menus li{display:block;width:100%;font-family:'font-size:12px;font-weight:400;text-transform:none;transition:all .5s ease 0}#menu ul.menus li:hover{width:100%}#menu li:hover ul.menus{display:block}#menu .homers a,#menu .homers a:hover{color:#fff;background:#00000040}#related-post{margin:0 auto;padding:0;text-align:center;border:1px solid #eee;border-top:0}#related-post span{position:relative;overflow:hidden;font-size:14px;font-weight:600;text-align:left;padding:8px 15px;display:block;margin:0;border-bottom:1px solid #eee;color:#333;background:#fbfbfb;text-transform:uppercase;letter-spacing:.6px}#related-post h5 span{position:relative;display:inline-block;padding:5px 10px}.relhead{background:#fff;font-size:100%;font-weight:400;line-height:150%;overflow:hidden}#related-summary .news-text{visibility:hidden;opacity:0;position:absolute;top:-20px;left:0;text-align:left;background:rgba(0,0,0,.54);color:#fff;margin:10px;padding:10px;overflow:hidden;font-size:80%;max-height:110px;text-rendering:optimizeSpeed;text-overflow:ellipsis}#related-summary li:hover ul#related-summary{text-align:center;display:grid;grid-template-columns:repeat(7,1fr);grid-gap:15px;padding:15px;border-bottom-right-radius:7px;border-bottom-left-radius:7px;margin:0}ul#related-summary li{background-color:#fbca01;padding:5px 5px 0 5px;border-radius:5px;display:inline-block;margin:0}ul#related-summary li a{display:block}ul#related-summary li img{border-radius:2px 2px 0 0}ul#related-summary li a.relinkjdulx{width:auto;height:auto;font-size:12px;color:#000;font-weight:600;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}.rlt-title{padding:3px;font-size:12px;color:#000;font-weight:600;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}.top-header{background:#0e455a;position:relative;z-index:999}.fixed_widget{background:0 0!important;position:fixed!important;top:25px;z-index:99;-webkit-transform:translateZ(0)}h1.post-title a:hover,h2.post-title a:hover{color:#f0c30e;text-decoration:none}.readmore2:hover{background:#555}.readmore2{color:#fff!important;font-size:12px;font-weight:500;display:inline-block;padding:15px 30px;background:#f0c30e;text-transform:uppercase;letter-spacing:1.3px}.top-navigation-wrapper{background-color:#fbfbfb;border-bottom:1px solid #eee}.top-navigation-wrapper{color:#545454}.top-navigation-wrapper a,.top-navigation-wrapper a:hover{color:#545454}.container{max-width:1000px;margin:auto}top-navigation-wrapper{position:relative;z-index:98;border-bottom-width:1px;border-bottom-style:solid}.top-navigation-left{text-align:center}.top-navigation-left-text{font-size:9px;font-weight:500;padding:12px 0;line-height:18px;text-transform:uppercase;float:left}.top-navigation-right{margin-top:15px}.top-social-wrapper .social-icon{float:left;margin-left:5px;background:#fff;border-radius:3px;width:36px;height:35px;line-height:36px;display:block;text-align:center}.top-social-wrapper .social-icon:first-child{margin-left:0}.top-social-wrapper .social-icon a{color:#353535}.top-social-wrapper .social-icon a:hover{opacity:.5}#search-bar{display:block;position:relative;width:100%}input#sq{background:#fff;color:#717171;font-size:18px;margin:0;padding:0 20px;width:86%;height:65px;outline:0;border:1px solid #ddd;box-shadow:initial;line-height:normal;transition:all .1s}input#sq:focus{color:#333;border-radius:4px}#search-form{position:relative;margin:auto;text-align:center}#searchsubmit{background-color:#fff;border:0;color:#fff;display:inline-block;position:absolute;right:0;top:0;transition:all .2s;display:none}#searchsubmit:active,#searchsubmit:focus,#searchsubmit:hover{background-color:#fff;color:#fff;cursor:pointer;outline:0}.search-form-icon{color:#717171;top:21px;right:30px;position:absolute}input#sq:-ms-input-placeholder,input#sq::-webkit-input-placeholder{color:#777}input#sq:-moz-placeholder,input#sq::-moz-placeholder{color:#777;opacity:1}.post-info2 a{display:inline;color:#f0c30e;padding:5px;padding-left:0;transition:all .3s ease-out}#footer-wrapper{text-align:left;overflow:hidden}.footer{padding-bottom:.2em}.footer-bottom{min-height:40px}#footx1,#footx2,#footx3{margin:0 .2%}#footer-widgetfix .footer-widget{width:30%;float:left;padding:0 15px}#footer-widgetfix{max-width:1100px;overflow:hidden;margin:0 auto}#footer-wrapper .widget-content{text-align:left}#footer-wrapper .widget-content li{margin-left:-14px}#footer-wrapper .widget li{float:left!important;padding:5px;margin-left:3px;text-align:left;width:44%}#footer-wrapper .widget li:before{content:"\f111";font-family:fontAwesome;color:#ccc;font-size:8px;padding:0;text-decoration:none;margin-right:10px}#footer-widgetfix .footer-widget .PopularPosts .item-title{display:none}#footer-widgetfix .footer-widget .PopularPosts .widget-content ul li{background:none repeat scroll 0 0 transparent;float:left;list-style:none;margin:5px 0;padding:0;border:0;overflow:hidden;width:initial}#footer-widgetfix .footer-widget .popular-posts .item-thumbnail{position:relative;overflow:hidden;margin:0}#footer-widgetfix .footer-widget .popular-posts .item-thumbnail img{padding:0;height:90px;width:100px}#layout #footer-wrapper .add_widget{background-color:#f56954;border:none}#layout #footer-wrapper .add_widget a{color:#fff}#layout #footer-wrapper .footer-column{width:33.33%;float:left}#layout #footer-wrapper #column1,#layout #footer-wrapper #column2{margin:0}.site-footer{background:#242d36;clear:both;color:#f0f1f3;font-size:14px;font-weight:600;line-height:1.8em;padding:10px;text-align:center}.site-footer a{color:#f0f1f3;text-decoration:none}#footer-wrapper .cloud-label-widget-content .label-size a{background:#4e4e4e;color:#fff;display:block;font-size:11px;padding:10px 15px;font-weight:500;border:0}
*/
--></style>
<style id='template-skin-1' type='text/css'><!--
body#layout #mainblogsec {margin: 4px; background-color: #fff; margin-bottom: 10px; width: -webkit-fill-available; width: -moz-available; float: left; overflow: hidden; display: block;}
body#layout #underway {background: #fff; margin: 10px; float: left; padding: 10px !important; border: 3px solid #ff5722; margin-bottom: 10px; width: 45%; border-radius: 7px; overflow: hidden; position: initial;}
body#layout #upcoming {background: #fff; margin: 10px; padding: 10px !important; border: 3px solid #00838f; margin-bottom: 10px; width: 45%; border-radius: 7px; overflow: hidden; position: initial;display:block}
</style>
<style>
.button-area {}
.button-area p {font-size: 14px; font-weight: 500; padding: 0 5px; border-top: 1px solid #ddd; font-family: 'Barlow Condensed', sans-serif; color: #0277bd;}
.css-button {font-family:-apple-system,BlinkMacSystemFont,'Segoe UI','Oxygen','Roboto','Ubuntu','Cantarell','Fira Sans','Droid Sans','Helvetica Neue',Arial,sans-serif;font-weight: bold; color: #242d36; font-size: 15px; border: 1px #dcdfe4 solid; background: #bcc9dc; cursor: pointer; display: inline-flex; align-items: center; width: 100%;
}
.css-button:hover {
background: linear-gradient(180deg, #f6f6f6 5%, #ffffff 100%);
}
.css-button-icon {
padding: 10px 12px;
color: #fb2011;
border-right: 1px solid rgba(255, 255, 255, 0.16);
box-shadow: rgba(0, 0, 0, 0.14) -1px 0px 0px inset;
}
.css-button-icon svg {
vertical-align: middle;
position: relative;
font-size: 26px;
}
.css-button-text {
padding: 10px;
}
.comments-horizontal{list-style:none;display:inline-block;width:100%;padding:0!important;-webkit-box-shadow:0 4px 7px rgba(0,0,0,.09);box-shadow:0 4px 7px rgba(0,0,0,.09)}
.comments-horizontal li{display:inline-block;width:50%}
.comments-horizontal li a{padding: 15px 0; width: 100%; display: block; text-align: center; color: #656e83; font-size:16px; font-weight:800;font-family: 'Barlow Condensed', sans-serif;}
.comments-horizontal li.active a{color:#38a4f8}
.comments-tabs{background-color:#fff;border:0;border-color:#e5e6e9 #dfe0e4 #d0d1d5}
#facebook-comments{margin-top:25px;padding:20px}
.comments-horizontal li{float:left}
.active{border-bottom:3px solid #38a4f8}
#frame2 {height:230px;display:none;}
.top-header, #menu-wrapper, .breadcrumbs, .label-info {display:none!important;}
.row.aggregator>.aggregator-item:nth-of-type(1n){clear:none}.row.aggregator>.row.aggregator>.aggregator-item:last-child{float:left}.aggregator-view .item-list .pager li{padding:0;line-height:27px;margin-left:0}.aggregator-view .item-list .pager li a{padding:7px 15px;width:auto;height:auto}.view-all-media-pane{display:inline-block}.pane-content{margin-bottom:15px}.pane-content h1{margin:0;font-size:20px;font-weight:700;margin-bottom:5px;text-align:center;color:#008198}.pane-content h2, .pane-content h3 {display:none;margin:0;font-size:large;margin-bottom:8px}.group p{margin:0;font-weight:400;font-size:15px;line-height:1.5}.pane-content .group h2{margin: 0; font-size: large; text-transform: uppercase; font-weight: 600;}.group{pointer-events:none;cursor:default;text-decoration:none;border-bottom:1px solid #ddd;margin-bottom:20px;padding-bottom:5px;font-weight:600;font-size:18px;color:#444;letter-spacing:.5px}.group > a{color:#ccc}.aggregator{text-align:center;display:grid;grid-template-columns:repeat(7,1fr);grid-gap:15px}.aggregator > a{color:#000}.aggregator > a:hover{color:#000}.card.card-special{background-color:#fbca01;padding:5px 5px 0;border-radius:5px}.card.card-special .card-section{font-size:12px;color:#000;font-weight:600;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}.card.card-special img{border-radius:2px 2px 0 0}.pager-show-more li a{background-color:#ccc!important;width:10em;height:2.7em}.pager-show-more li a:hover{background-color:#2C303A!important;color:#fff!important}.aggregator-search-title{color:#787875;border:1px solid #ccc;text-align:center;font-size:15px;padding:7px 28px 4px}.aggregator-search{border:1px solid #ccc;text-align:center;background-color:#FFFCE3;padding:0 10px 0 0;min-width:150px}.aggregator-search > select{color:#787875;background-color:#FFFCE3!important;border:0!important;font-size:15px;line-height:1.5;margin-bottom:0;margin-top:6px;padding:7px 40px 0;min-width:152px;height:auto;background-position:right -24px center}.aggregator-flag{border:1px solid #ccc;padding:0 5px;border-left:0;background-color:#FFFCE3}.aggregator-flag img{max-width:33px}@media (max-width:1350px){.card.card-special .card-section{font-size:10px}}@media (max-width:1199px){.group{text-align:center}}@media (max-width:768px){.group{text-align:center}.aggregator-search-title{font-size:10px}.aggregator-search > select{font-size:10px}}
.card.card-special .card-section{line-height:28px}.widget .post-body li{padding-top:0;padding-bottom:0;display:-webkit-inline-box;margin:0}b,strong{font-weight:500}
.card-image{width:100%;margin:0;z-index:1;padding:0;overflow:hidden;transition:all 1s ease-out;background:#f6f7f8 linear-gradient(to right,#eee 8%,#ddd 18%,#eee 33%);animation:templatemarkPlaceholder 1.5s linear infinite;-moz-animation:templatemarkPlaceholder 1.5s linear infinite;-webkit-animation:templatemarkPlaceholder 1.5s linear infinite;-o-animation:templatemarkPlaceholder 1.5s linear infinite}.card-image img{width:112.56px;height:71.63px}@keyframes templatemarkPlaceholder{0%{background-position:-468px 0}100%{background-position:468px 0}}@-webkit-keyframes templatemarkPlaceholder{0%{background-position:-468px 0}100%{background-position:468px 0}}@-moz-keyframes templatemarkPlaceholder{0%{background-position:-468px 0}100%{background-position:468px 0}}#FeaturedPost1 h3{margin:0;text-align:center;font-size:18px;padding:10px}#FeaturedPost1 h3 a{color:#333}
.mbtTOC{border:1px solid #eee; background-color: #fefdfd; color: #000; line-height: 01; margin: 10px 0; padding: 20px; display: block;border-radius: 5px;}
.mbtTOC button{background: none; font-family: Google Sans; position: relative; outline: none; cursor: pointer; border: none; margin-bottom: 5px;}
.mbtTOC li {padding-top: 0; padding-bottom: 0; display: inline-flex!important; margin:3px!important;position: initial!important;}
.mbtTOC li a {margin-right:0!important;}
.submitsite li {position: relative; display: block;margin-top: 10px;}
.submitsite li a {border: 1px solid #ddd; padding: 0 8px; display: inline-block; border-radius: 5px;}
.sticky-ads{ position: fixed; bottom: 0; left: 0; width: 100%; min-height:60px!important; max-height:50px; box-shadow: 0 -6px 18px 0 rgba(9,32,76,.1); -webkit-transition: all .1s ease-in; transition: all .1s ease-in; display: flex; align-items: center; justify-content: center; background-color: #fefefe; z-index: 20; }
.preloader{overflow:hidden;left:0;right:0;top:0;bottom:0;position:absolute;}.status{width:50px;height:30px;left:0;right:0;top:17px;bottom:0;position:absolute;margin:auto}.spinnerno{margin:0 auto;width:50px;height:20px;text-align:center;font-size:0}.spinnerno > div{background:rgba(155,170,175,0.22);height:100%;width:4px;border-radius:8px;display:inline-block;animation:stretchdelay 1.2s infinite ease-in-out}.spinnerno .rect2{-webkit-animation-delay:-1.1s;animation-delay:-1.1s}.spinnerno .rect3{-webkit-animation-delay:-1.0s;animation-delay:-1.0s}.spinnerno .rect4{-webkit-animation-delay:-0.9s;animation-delay:-0.9s}.spinnerno .rect5{-webkit-animation-delay:-0.8s;animation-delay:-0.8s}.Night .spinnerno > div{background:rgba(255,255,255,0.25)}
@keyframes stretchdelay{0%,40%,100%{transform:scaleY(0.4);-webkit-transform:scaleY(0.4)}20%{transform:scaleY(1.0);-webkit-transform:scaleY(1.0)}}
@-webkit-keyframes blink-2{0%{opacity:1}50%{opacity:.2}100%{opacity:1}}@keyframes blink-2{0%{opacity:1}50%{opacity:.2}100%{opacity:1}}
.modalDialog{position:fixed;top:0;right:0;bottom:0;left:0;background:rgba(0,0,0,0.6);z-index:99999;opacity:0;-webkit-transition:opacity 200ms ease-in;-moz-transition:opacity 200ms ease-in;transition:opacity 200ms ease-in;pointer-events:none}
a.close {background: #fff;border: 1px solid #ddd; padding: 10px; line-height: 5px; margin:10px; border-radius: 100%; position: relative; width:6px; display: block; font-size: 9px; font-weight: 700; box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 1px 3px rgb(0 0 0 / 13%);top: 80%;}
#modalDialog2{position:initial;top:0;right:0;bottom:0;left:0;background:rgba(255, 255, 255, 0.81);
transition: all .3s ease-in-out;
-webkit-backdrop-filter: blur(15px);
backdrop-filter: blur(15px);z-index:99999;opacity:0;-webkit-transition:opacity 200ms ease-in;-moz-transition:opacity 200ms ease-in;}
.modalDialog:target{opacity:1;pointer-events:auto}
.modalDialog:target > div{margin:8% auto}
#modalDialog2:target{opacity:1;pointer-events:auto}
#modalDialog2:target > div{margin:0 auto;}
.newsletter-sm2 {padding:15px;}
.newsletter-sm2 h3 {color:#1abc9c;font-size: 40px; font-weight:800; text-align:center; margin-bottom: 10px;-webkit-animation: anim 2s ease-in infinite; animation: anim 2s ease-in infinite;}
.newsletter-sm2 p {font-size: 16px;font-weight:600; color:#555; line-height: 20px;margin:0}
.newsletter-sm2 p span {background: #16a085; color: #fff; padding: 4px 8px; border-radius: 3px;}
.modalDialog > div{-webkit-transition:all 100ms ease-in;-moz-transition:all 100ms ease-in;transition:all 100ms ease-in;width:500px;position:relative;margin:5% auto;background:#fff;min-height:200px}
#modalDialog2 > div{width:95%;position:relative;margin:0 auto;height:100%;animation: zoominoutsinglefeatured 3s forwards;top:20%;}
.sticky-ads-close {
width: 30px; height: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 12px 0 0;
position: absolute; right: 0; top: -30px;
background-color: #fefefe;
box-shadow: 0 -6px 18px 0 rgba(9,32,76,.08); }
.sticky-ads .sticky-ads-close svg { width: 22px; height: 22px; fill: #000; } .sticky-ads .sticky-ads-content { overflow: hidden; display: block; position: relative; height:60px!important; width: 100%; margin-right: 10px; margin-left: 10px; }
#preloader{position:fixed;z-index:999;background:#fff;top:0;left:0;right:0;bottom:0}
#Blog1, .data-info {display:none!important;}
.mbtTOC li a { margin-right: 0!important; font-size: 13px; border: 1px solid #9d003a; padding: 5px; border-radius: 5px; font-weight: 500;}
.mbtTOC button {font-size:16px;font-weight: 500;}
.match-event{border:1px solid #ddd;text-align:center;background:#eceef2;position:relative;border-radius:5px;padding:10px;padding-bottom: 0;}
.match-name,.match-event.ch-end #match-hour,.match-event.ch-live #match-hour,.match-event.ch-soon #result-now,.match-event.notstart #result-now,.match-event.h,.match-event.ch-end #match-live,.match-event.d #match-live{display:none!important}
.match-event:last-child{}
.matchflex{display:flex;flex-direction:column;margin:12px 12px}
.match-event.ch-live{order:1}
.match-event.ch-soon{order:2}
.match-event.l{order:0;}
.match-event.l1{order:-2;}
.match-event.l2{order:-1;}
.match-event.ch-end{order:5}
.match-event a{color:#222;}
.match-event h4{margin:30px 0}
.first-team{float:left}
.left-team {float:right}
.team-logo{}
.left-team .team-logo{text-align: center;margin: 0 auto;}
.team-logo img{display:inline-block;}
.team-name{display:inline-block;font-weight:700;font-size:18px;font-family: 'Barlow Condensed', sans-serif;color:#0277bd;}
.match-timing{margin: 0; position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%); line-height: 1; overflow: hidden;}
#result-now{font-size:21px;letter-spacing:5px;margin-right:-5px;color:#eceef2;}
.match-event.ch-end #result-now,.match-event.ch-live #result-now{color:#000;}
#result-noww{font-size:21px;margin-right:-5px;direction:ltr}
.watchlive{color: #fff; background: #ff1d47;border-radius: 100px; font-size: 13px; font-weight: 700; width: 100px; display: table; margin: auto; position: relative; letter-spacing: 0.5px; padding:8px;}
.labeltag {overflow: hidden; font-size: 12px;position: absolute;top:9.2px;left: 50%; -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%);background: #464b55; color: #fff;line-height: 1.2; padding:3px 7px; border-radius: 0 0 5px 5px; font-weight:500; text-transform: uppercase;}
.underway {display:none;-webkit-animation:blink-2 1s infinite both;animation:blink-2 1s infinite both}
.underway2 {display:none;-webkit-animation:blink-2 1s infinite both;animation:blink-2 1s infinite both}
.underway3 {display:none;-webkit-animation:blink-2 1s infinite both;animation:blink-2 1s infinite both}
.underway4 {display:none;-webkit-animation:blink-2 1s infinite both;animation:blink-2 1s infinite both}
.underway5 {display:none;-webkit-animation:blink-2 1s infinite both;animation:blink-2 1s infinite both}
.underway6 {display:none;-webkit-animation:blink-2 1s infinite both;animation:blink-2 1s infinite both}
.underway7 {display:none;-webkit-animation:blink-2 1s infinite both;animation:blink-2 1s infinite both}
.underway8 {display:none;-webkit-animation:blink-2 1s infinite both;animation:blink-2 1s infinite both}
.underway9 {display:none;-webkit-animation:blink-2 1s infinite both;animation:blink-2 1s infinite both}
.underway10 {display:none;-webkit-animation:blink-2 1s infinite both;animation:blink-2 1s infinite both}
.underway11 {display:none;-webkit-animation:blink-2 1s infinite both;animation:blink-2 1s infinite both}
.timeleft {font-size: 12px; font-family: 'Barlow Condensed', sans-serif; font-weight: 400; margin-bottom: 5px; overflow: hidden; line-height: 1; color: #464b5599;}
.contdwtiming {display: -webkit-inline-box;font-style: italic; color: #da8106; width: 38px; font-weight: 500;}
.date-time2 {font-size: 15px; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; margin-bottom: 5px;display: -webkit-inline-box; overflow: hidden; line-height: 1;text-transform: uppercase;}
.date-time2 span {font-weight: 700; font-size:20px; color: #09a63f;display: -webkit-inline-box;border-left: 1px solid #9c9c9c; margin-left: 2px; padding-left:5px;}
.date-time span p {display: inline-block;}
.match-date2 {font-size:70%; font-weight: 600; color: #09a63f;}
.match-info{border-top:1px solid #ddd;display:table;overflow:hidden;width:100%}
.match-info li{font-size:12px;color:#656e7fb8;font-weight:600;font-family: 'Barlow Condensed', sans-serif;display: -webkit-inline-box;}
.match-info li:first-child:before{content:"🏆";margin-right: 2px;}
.match-info li:first-child {float:right;}
.match-info li:last-child:before{content:"🕠";margin-right: 2px;}
.match-info li:last-child {float:left;}
.date-time span #end {-webkit-animation:blink-2 1s infinite both;animation:blink-2 1s infinite both}
#upcoming .match-timing a {pointer-events: none!important;}
#upcoming .watchlive {background: #6a6f7f!important;}
#upcoming .timeleft {display:none;}
#underway .date-time span {width: 70px; position: relative; overflow: hidden; display: -webkit-inline-box;}
#overlay-match{position:absolute;top:0;bottom:0;left:0;right:0;height:100%;width:100%;opacity:0;cursor:pointer;background:rgb(0 0 0 / 60%);z-index:9}
.match-event:hover #overlay-match{opacity:1}
#watch-match{position:absolute;bottom:0;right:0;height:45px;margin:auto;left:0;top:0;width:45px;background:no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' %3E%3Cpath fill='%23fff' d='M256,0C114.617,0,0,114.615,0,256s114.617,256,256,256s256-114.615,256-256S397.383,0,256,0z M344.48,269.57l-128,80 c-2.59,1.617-5.535,2.43-8.48,2.43c-2.668,0-5.34-0.664-7.758-2.008C195.156,347.172,192,341.82,192,336V176 c0-5.82,3.156-11.172,8.242-13.992c5.086-2.836,11.305-2.664,16.238,0.422l128,80c4.676,2.93,7.52,8.055,7.52,13.57 S349.156,266.641,344.48,269.57z' class=''%3E%3C/path%3E%3C/svg%3E")}
.post-box ul{padding:12px 12px 0;padding-bottom:0;overflow:hidden}
.post-box .rnav-title{position:absolute;right:0;bottom:0;left:0;padding:10px;background:linear-gradient(to bottom,transparent,rgba(0,0,0,0.7) 40%,#000000);text-shadow:0 1px 1px #000000;color:#fff;font-size:16px;line-height:25px}
.post-box li{position:relative;overflow:hidden;float:right;margin-left:12px;margin-bottom:12px;width:calc((100% - 12px)/ 3);height:auto;position:relative;overflow:hidden;border-radius:8px}
.post-box li:first-child{width:calc(100% - ((100% + 24px)/ 3))}
.post-box li:first-child .rnav-title{font-size:20px;line-height:40px}
.post-box li:last-child,.post-box li:nth-child(2),.post-box li:nth-child(3){margin-left:0}
.post-box li:nth-child(5){width:calc((100% - 48px)/ 3)}
.post-box img{max-width:100%;height:200px}
.post-box li:first-child img{height:423px}
.sidebar-area{display:none!important}.breadcrumbs{background:#fff;font-size:100%;overflow:hidden;padding:20px 10px;border:1px solid #eee;border-bottom:0}.breadcrumbs a,.breadcrumbs span{font-size:10px;display:inline-block;text-decoration:none;transition:all .3s ease-in-out;color:#222}.breadcrumbs a:hover{color:#11589D}.breadcrumbs svg{width:16px;height:16px;vertical-align:-4px}.breadcrumbs svg path{fill:#222}.fa-angle-right{font-size:12px}#adpost2{margin-bottom:10px;overflow:hidden}#footer-wrapper{text-align:left;overflow:hidden;background-color:#353535}#footer-widgetfix{max-width:1100px;overflow:hidden;margin:0 auto}#footer-wrapper h2{color:#fff;font-size:14px;font-weight:500;margin-bottom:10px;padding:10px;text-align:left;text-transform:capitalize;border:1px solid rgba(238,238,238,0.14);text-align:center;border-style:dashed}#footer-wrapper .widget-content{text-align:left;color:#fff;font-size:13px;font-weight:400}#footer-wrapper .widget li{margin:5px 0 0;padding:5px 2px 0 0}.footer li a{padding-top:0;padding-right:0;font-size:13px;font-weight:700;color:#f9f9f9;margin:0}#footerfix{overflow:hidden;background-color:#2d2d2d}.copyleft{text-align:center;font-weight:500;color:#fff;font-size:12px;width:980px;margin:0 auto}#copyright{float:right;color:#999;font-size:13px;margin-right:30px}.copyleft a,#copyright a{color:#fff}.copyleft a:hover,#copyright a:hover{color:#a94334;text-decoration:none}.postinad{background:#fff;border-top:1px solid #eee;padding:20px;text-align:center}#ArchiveList a.post-count-link,#ArchiveList a.post-count-link:link,#ArchiveList a.post-count-link:visited{text-decoration:none;font-size:13px;font-weight:700}span.post-count{font-size:11px;font-weight:700}.BlogArchive #ArchiveList ul.posts li{font-size:12px}#ArchiveList select{width:100%;padding:15px;margin-bottom:5px;margin-top:10px;border:1px solid rgba(201,201,201,0.52);font-size:13px}.btn{text-align:center;background:#2ecc71;padding:10px;font-size:18px;font-weight:700;border-radius:4px;}.btn a{color:#fff}.PopularPosts ul,.PopularPosts li,.PopularPosts li img,.PopularPosts li a,.PopularPosts li a img{margin:0;padding:0;list-style:none;border:none;background:none;outline:none}.PopularPosts ul{margin:0;list-style:none;color:#333}.PopularPosts ul li img{margin-right:10px;width:80px;height:80px;transition:all .3s ease-out;float:left;border-radius:5px;border:1px solid #ddd}.PopularPosts ul li img:hover{background:#fff;opacity:.9}.PopularPosts ul li{background-color:#fff;margin:0;padding:0;position:relative;transition:all .3s ease-out;border-bottom:1px solid #efefef;padding-bottom:10px;margin-bottom:10px}.PopularPosts ul li:first-child{border-top:none;,margin:0;padding-top:0}.PopularPosts ul li:last-child{border-bottom:none;padding-bottom:0;margin-bottom:0}.PopularPosts ul li a:hover{color:#f56954!important}.PopularPosts ul li .item-title a,.PopularPosts ul li a{color:#333;text-decoration:none;font-size:12px;font-weight:400;transition:all .3s ease-out;line-height:.1}.PopularPosts ul li:before{display:none;list-style:none}.PopularPosts .item-thumbnail{margin:0;float:left}.PopularPosts .item-snippet{font-size:12px;color:#555;font-weight:400;line-height:1.5}.profile-img{display:inline;opacity:1;margin:0 6px 3px 0}.PopularPosts .item-title{line-height:1.1}.copyleft p{margin:0;color:#ffd45b}.post{background:#fff;width: 100%;padding:20px;display:inline-block;border:1px solid #eee;border-bottom:0}.post-body{overflow: hidden;color:#2D2D2D;font-size:15px;font-weight:400;text-overflow:ellipsis;width:auto;font-family:Google Sans}h2.post-title,h1.post-title{border:0 none;color:#3079ed;font-size:28px;letter-spacing:normal;line-height:1.3em;margin-bottom:10px;padding:0;text-transform:capitalize}h2.post-title a,h1.post-title a,h2.post-title,h1.post-title{color:#2D2D2D;z-index:0;margin-top:-10px;line-height:1.3;margin-bottom:5px;font-size:22px;font-weight:500}.post-info{text-transform:capitalize;line-height:250%;overflow:hidden;color:#999;font-size:11px;font-weight:500;margin:0 0 5px}.post-info2{line-height:250%;overflow:hidden;color:#999;font-size:11px;font-weight:500;margin-bottom:10px}.post-info a{display:inline;background:transparent;color:#666;padding:5px;padding-left:0;transition:all .3s ease-out}.post-info .fa,.post-info2 .fa{color:#333}.author-info,.comment-info,.time-info,.report{display:inline;margin-right:5px}li.menu-item{display:-webkit-inline-box;font-size:10px;font-weight:500;border:1px solid #ddd;padding:0 10px}.top-social{float:right}.post-image{margin:0;z-index:1;padding:0;float:left;margin-right:20px;overflow:hidden;background:#2f3238}.post-image img{width:300px;height:200px;transition:.9s;-webkit-transition:opacity 1s,-webkit-transform 1s;transition:opacity 1s,transform 1s;-webkit-backface-visibility:hidden;backface-visibility:hidden}.post-image:hover img{opacity:.4;-webkit-transform:scale3d(1.1,1.1,1);transform:scale3d(1.1,1.1,1)}ul#related-summary{text-align:center;display:grid;grid-template-columns:repeat(7,1fr);grid-gap:15px;padding:15px;margin:0}
@media screen and (max-width:1066px) {.wrapper {width:100%}}
@media screen and (max-width:960px) {#outer-wrapper{padding:0;width:100%;margin-bottom:100px;}.header img,.copyleft{width:100%;margin:0 auto}#header{float:initial;width:100%;max-width:initial;color:#222;margin:0}#header h1,#header h2,#header p{font-size:28px;line-height:1.2;text-align:center}#recent1{overflow-x:scroll;overflow-y:hidden;width:100%;margin-bottom:10px}#label_with_thumbs{margin:0;padding:0;position:relative;width:1090px}#label_with_thumbs li{margin-bottom:0}.group p{margin:0;font-weight:400;font-size:14px;line-height:1.5;text-align:left}#menu{position:relative;background:#1abc9c;color:#fff}#menu ul{background:#fff;position:absolute;top:100%;right:0;left:0;z-index:3;height:auto;display:none;border-radius:0}#menu ul.menus{width:100%;position:static;border:none}#menu li{display:block;width:100%;text-align:left}#menu li a{color:#b4babe}#menu li a:hover{background:#bac0c4;color:#fff}#menu li:hover{background:#bac0c4;color:#fff}#menu li:hover > a.ai,#menu a.ai:hover{background:#ecf0f1;color:#b4babe}#menu ul.menus a{background:#ecf0f1}#menu ul.menus a:hover{background:#bac0c4;color:#fff}#menu input,#menu label{display:inline-block;position:absolute;right:0;top:0}#menu input:after,#menu label:after{content:"\f039";width:30px;height:30px;display:inline-block;position:absolute;right:15px;top:3px;font-family:Fontawesome;color:#fff}#menu input{z-index:4}#menu input:checked + label{color:#fff;font-weight:700}#menu input:checked ~ ul{display:block}#menu a,#menu ul.menus,#menu ul.menus a{border-radius:0}h2.post-title a,h1.post-title a,h2.post-title,h1.post-title{margin-top:0;line-height:1.3;font-size:18px}.bwrapsite-content{width:100%}.content-area{float:none;width:initial;width:100%!important}.sidebar-area{width:initial!important;float:none}#header-ad{height:auto}ul#relpost_img_sum li{width:100%!important}.top-social{display:none}#logo{margin-left:20px}.post{width:100%}
#blog-pager {overflow:hidden!important;margin-top: 10px!important; margin-bottom: 10px!important;}
.pager-left {width: 44%!important;}
#footer-widgetfix {width:100%;overflow:hidden;}
#footer-widgetfix .footer-widget {width:46%;float:left;margin-left:20px;}
.header-right {margin-top: 5px; max-width: 100%;}
}
@media only screen and (max-width:768px){
.post-info2{margin-bottom:0}.post-info a{display:inline-block}.post-body{width:auto!important}.related-post-item-title{font-size:12px!important}.related-post-style-2 li{width:100%}#footer-col1,#footer-col2,#footer-col3{width:100%;max-width:100%;padding-left:0}.top-navigation-left-text{float:initial}.top-navigation-right{margin:15px 0}.copyleft a,#copyright a{padding:10px}.copyrighttext{padding:10px;padding-top:0}
.comment-info {display:none;}
#footer-widgetfix .footer-widget { width: 96%; float: left; margin-left: 0; } .post { width: initial; }}
@media only screen and (max-width:640px){
.post-body{width:auto!important;line-height:1.7;font-size:15px}.related-postbwrap{width:100%}.post{width:100%;display:block}.pager-left{width:44.2%!important}
.ad160, .comment-info {display:none;}
.pager-left,.pager-right{width:43.7%!important}#footer-widgetfix{width:100%;overflow:hidden}#footer-widgetfix .footer-widget{width:92%;margin-left:0;padding:0 10px}.author-info,.comment-info,.time-info{margin-right:10px}ul#related-summary li a.relinkjdulx{top:20px}ul#related-summary li{margin-right:8px}.post-image img{width:200px;height:150px}}
@media only screen and (max-width:480px){
#ContactForm1_contact-form-name,#ContactForm1_contact-form-email,#ContactForm1_contact-form-email-message{width:90%!important}.post{width:initial!important}.post-image{float:none;margin-right:0;margin-bottom:8px;background:#fff}.post-image img{width:325px!important;height:210px}.post-info{margin:0;font-size:10px;margin-bottom:0}.home-link{display:none}.showpage a,.showpageNum a,.showpagePoint,.showpageOf{padding:8px 10px}.pager-left,.pager-right{width:100%!important}.pager-left{border-bottom:1px solid #eee}.related-post-style-2 li{width:100%!important}.top-navigation-left,.avatar-container,.share-box{display:none}#header-wrapper{text-align:center}.aggregator,ul#related-summary{grid-template-columns:repeat(3,1fr)}#header{max-width:initial}#footer-widgetfix .footer-widget .popular-posts .item-thumbnail img{height:100px;width:129.33px}.comments .comments-content .datetime a{display:none}.post-info2{margin-top:0;margin-bottom:0}
}
@media screen and (max-width:375px){
.post-image img { width: 290px!important; height: 210px; }}
@media screen and (max-width:320px){
.post-image img {width:100%!important;height:170px;}.top-navigation-right {margin: 10px 0;}}
</style>
<style>
.label-info {display:inline;margin-top:25px}
.label-info a:nth-child(n+3){display:none;}
#blog-pager-newer-link{float:left;padding:5px;}
#blog-pager-older-link{float:right;padding:5px;}
#blog-pager a{font-size:12px;font-weight:600}
#blog-pager{text-align:center;}
.home-link { background: #0B5394;padding: 13px;position: absolute; color: white!important;display:none;}
#blog-pager-newer-link {float: left;background: #fff;padding:10px 30px;transition:all .5s ease 0}
#blog-pager-older-link {float: right;background: #fff;padding:10px 30px;transition:all .5s ease 0}
#blog-pager {text-align: center;margin:0;margin-top:20px;}
#blog-pager-older-link:hover, #blog-pager-newer-link:hover {border:2px solid #fff;background:#555;transition:all .5s ease 0}
</style>
<script type='text/javascript'>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-81285058-1', 'auto', 'blogger');
ga('blogger.send', 'pageview');
</script>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js'></script>
<script>
//<![CDATA[
!function($,window,undefined){"use strict";$.fn.tabslet=function(options){var defaults={mouseevent:"click",activeclass:"active",attribute:"href",animation:!1,autorotate:!1,deeplinking:!1,pauseonhover:!0,delay:2e3,active:1,container:!1,controls:{prev:".prev",next:".next"}},options=$.extend(defaults,options);return this.each(function(){function deep_link(){var t=[];elements.find("a").each(function(){t.push($(this).attr($this.opts.attribute))});var e=$.inArray(location.hash,t);return e>-1?e+1:$this.data("active")||options.active}var $this=$(this),_cache_li=[],_cache_div=[],_container=options.container?$(options.container):$this,_tabs=_container.find("> div");_tabs.each(function(){_cache_div.push($(this).css("display"))});var elements=$this.find("> ul > li"),i=options.active-1;if(!$this.data("tabslet-init")){$this.data("tabslet-init",!0),$this.opts=[],$.map(["mouseevent","activeclass","attribute","animation","autorotate","deeplinking","pauseonhover","delay","container"],function(t){$this.opts[t]=$this.data(t)||options[t]}),$this.opts.active=$this.opts.deeplinking?deep_link():$this.data("active")||options.active,_tabs.hide(),$this.opts.active&&(_tabs.eq($this.opts.active-1).show(),elements.eq($this.opts.active-1).addClass(options.activeclass));var fn=eval(function(t,e){var s=e?elements.find("a["+$this.opts.attribute+'="'+e+'"]').parent():$(this);s.trigger("_before"),elements.removeClass(options.activeclass),s.addClass(options.activeclass),_tabs.hide(),i=elements.index(s);var o=e||s.find("a").attr($this.opts.attribute);return $this.opts.deeplinking&&(location.hash=o),$this.opts.animation?_container.find(o).animate({opacity:"show"},"slow",function(){s.trigger("_after")}):(_container.find(o).show(),s.trigger("_after")),!1}),init=eval("elements."+$this.opts.mouseevent+"(fn)"),t,forward=function(){i=++i%elements.length,"hover"==$this.opts.mouseevent?elements.eq(i).trigger("mouseover"):elements.eq(i).click(),$this.opts.autorotate&&(clearTimeout(t),t=setTimeout(forward,$this.opts.delay),$this.mouseover(function(){$this.opts.pauseonhover&&clearTimeout(t)}))};$this.opts.autorotate&&(t=setTimeout(forward,$this.opts.delay),$this.hover(function(){$this.opts.pauseonhover&&clearTimeout(t)},function(){t=setTimeout(forward,$this.opts.delay)}),$this.opts.pauseonhover&&$this.on("mouseleave",function(){clearTimeout(t),t=setTimeout(forward,$this.opts.delay)}));var move=function(t){"forward"==t&&(i=++i%elements.length),"backward"==t&&(i=--i%elements.length),elements.eq(i).click()};$this.find(options.controls.next).click(function(){move("forward")}),$this.find(options.controls.prev).click(function(){move("backward")}),$this.on("show",function(t,e){fn(t,e)}),$this.on("next",function(){move("forward")}),$this.on("prev",function(){move("backward")}),$this.on("destroy",function(){$(this).removeData().find("> ul li").each(function(){$(this).removeClass(options.activeclass)}),_tabs.each(function(t){$(this).removeAttr("style").css("display",_cache_div[t])})})}})},$(document).ready(function(){$('[data-toggle="tabslet"]').tabslet()})}(jQuery);
/*! CountdownTimer for jQuery @version2.0.1 (https://harshen.github.io/jQuery-countdownTimer/).
* Written by Harshen Pandey (https://remote.com/harshen) January 2014.
* @license MIT (https://github.com/harshen/jQuery-countdownTimer/blob/master/LICENSE.md)
* and GPLv3 (https://github.com/harshen/jQuery-countdownTimer/blob/master/LICENSE-GPL.md).
* @release - @date
* Copyright (c) 2017 - 2020 Harshen Pandey
* Please attribute the author if you use it.
*/
/* jQuery.countdownTimer.js*/
(function($) {
"use strict";
var methods = {
init: function(options) {
return this.each(function() {
countdown($(this), options);
});
},
destroy: function() {
this.data('countdowntimer', $.extend(true, {}, $.fn.countdowntimer.defaults, {
destroy: true
}));
},
pause: function(options) {
this.data('countdowntimer', $.extend(true, {}, $.fn.countdowntimer.defaults, {
pause: options
}));
pauseTimer($(this), $(this).data('typefunc').type, $(this).data('opts').opts, $(this).data('typefunc').func);
},
stop: function(options) {
this.data('countdowntimer', $.extend(true, {}, $.fn.countdowntimer.defaults, {
stop: options
}));
stopTimer($(this), $(this).data('typefunc').type, $(this).data('opts').opts, $(this).data('typefunc').func);
}
};
$.fn.countdowntimer = function(methodOrOptions) {
if (methods[methodOrOptions]) {
return methods[methodOrOptions].apply(this, Array.prototype.slice.call(arguments, 1));
} else if (typeof methodOrOptions === 'object' || !methodOrOptions) {
this.data('countdowntimer', $.extend(true, {}, $.fn.countdowntimer.defaults, methodOrOptions));
return methods.init.apply(this, arguments);
} else {
$.error('Method ' + methodOrOptions + ' does not exist on jQuery.countdownTimer');
}
};
//Definition of private function countdown.
function countdown($this, options) {
var opts = $.extend({}, $.fn.countdowntimer.defaults, options);
$.extend(true, opts, $.fn.countdowntimer.regionalOptions, options);
$this.data('opts', {
opts: opts
});
$this.addClass("style");
var size = opts.size;
var borderColor = opts.borderColor;
var fontColor = opts.fontColor;
var backgroundColor = opts.backgroundColor;
if (options.regexpMatchFormat !== undefined && options.regexpReplaceWith !== undefined && options.timeSeparator === undefined && options.labelsFormat === undefined) {
window['regexpMatchFormat_' + $this.attr('id')] = options.regexpMatchFormat;
window['regexpReplaceWith_' + $this.attr('id')] = options.regexpReplaceWith;
}
if (options.displayFormat !== undefined) {
var format = [];
format[0] = (opts.displayFormat.match('Y') ? '!' : '#');
format[1] = (opts.displayFormat.match('O') ? '!' : '#');
format[2] = (opts.displayFormat.match('D') ? '!' : '#');
format[3] = (opts.displayFormat.match('H') ? '!' : '#');
format[4] = (opts.displayFormat.match('M') ? '!' : '#');
format[5] = (opts.displayFormat.match('S') ? '!' : '#');
opts.displayFormat = format.join('');
} else {
opts.displayFormat = "###!!!";
}
if (options.borderColor !== undefined || options.fontColor !== undefined || options.backgroundColor !== undefined) {
var customStyle = {
"background": backgroundColor,
"color": fontColor,
"border-color": borderColor
};
$this.css(customStyle);
} else {
$this.addClass("colorDefinition");
}
if (opts.labelsFormat === false) {
if (options.size !== undefined) {
switch (size) {
case "xl":
$this.addClass("size_xl");
break;
case "lg":
$this.addClass("size_lg");
break;
case "md":
$this.addClass("size_md");
break;
case "sm":
$this.addClass("size_sm");
break;
case "xs":
$this.addClass("size_xs");
break;
}
} else if (size === "sm") {
$this.addClass("size_sm");
}
}
if (opts.isRTL === true) {
$this.addClass("lang-rtl");
}
if (options.startDate === undefined && options.dateAndTime === undefined && options.currentTime === undefined && (options.hours !== undefined || options.minutes !== undefined || options.seconds !== undefined)) {
if (options.hours !== undefined && options.minutes === undefined && options.seconds === undefined) {
setTimerInterval($this, "H", opts, onlyHours, options);
} else if (options.hours === undefined && options.minutes !== undefined && options.seconds === undefined) {
setTimerInterval($this, "M", opts, onlyMinutes, options);
} else if (options.hours === undefined && options.minutes === undefined && options.seconds !== undefined) {
setTimerInterval($this, "S", opts, onlySeconds, options);
} else if (options.hours !== undefined && options.minutes !== undefined && options.seconds === undefined) {
setTimerInterval($this, "HM", opts, hoursMinutes, options);
} else if (options.hours === undefined && options.minutes !== undefined && options.seconds !== undefined) {
setTimerInterval($this, "MS", opts, minutesSeconds, options);
} else if (options.hours !== undefined && options.minutes === undefined && options.seconds !== undefined) {
setTimerInterval($this, "HS", opts, hoursSeconds, options);
} else if (options.hours !== undefined && options.minutes !== undefined && options.seconds !== undefined) {
setTimerInterval($this, "HMS", opts, hoursMinutesSeconds, options);
}
} else if (options.startDate !== undefined && options.dateAndTime !== undefined && options.currentTime === undefined) {
window['startDate' + $this.attr('id')] = new Date(opts.startDate);
window['endDate' + $this.attr('id')] = (opts.timeZone !== null ? setTimezone(new Date(opts.dateAndTime), opts.timeZone) : new Date(opts.dateAndTime));
var typeStart = "withStart";
if (options.beforeExpiryTime !== undefined) {
window['beforeExpiry_' + typeStart + $this.attr('id')] = opts.beforeExpiryTime;
}
givenDate($this, opts, typeStart);
window['timer_startDate' + $this.attr('id')] = setInterval(function() {
givenDate($this, opts, typeStart);
}, opts.tickInterval * 1000);
} else if (options.startDate === undefined && options.dateAndTime !== undefined && options.currentTime === undefined) {
var hour = opts.startDate.getHours();
var minutes = opts.startDate.getMinutes();
var seconds = opts.startDate.getSeconds();
var month = (opts.startDate.getMonth() + 1);
var date = opts.startDate.getDate();
var year = opts.startDate.getFullYear();
var timeStart = new Date(year + '/' + month + '/' + date + ' ' + hour + ':' + minutes + ':' + seconds);
window['startTime' + $this.attr('id')] = timeStart;
window['dateTime' + $this.attr('id')] = (opts.timeZone !== null ? setTimezone(new Date(opts.dateAndTime), opts.timeZone) : new Date(opts.dateAndTime));
var typeNostart = "withnoStart";
if (options.beforeExpiryTime !== undefined) {
window['beforeExpiry_' + typeNostart + $this.attr('id')] = opts.beforeExpiryTime;
}
givenDate($this, opts, typeNostart);
window['timer_givenDate' + $this.attr('id')] = setInterval(function() {
givenDate($this, opts, typeNostart);
}, opts.tickInterval * 1000);
} else if (options.currentTime !== undefined && opts.currentTime === true) {
currentDate($this, opts);
window['timer_currentDate' + $this.attr('id')] = setInterval(function() {
currentDate($this, opts);
}, opts.tickInterval * 1000);
} else {
window['countSeconds' + $this.attr('id')] = opts.seconds;
secondsTimer($this, opts);
window['timer_secondsTimer' + $this.attr('id')] = setInterval(function() {
secondsTimer($this, opts);
}, 1000);
}
}
function setTimerInterval($this, timerType, opts, funcName, options) {
$this.data('typefunc', {
type: timerType,
func: funcName
});
window['hours_' + timerType + $this.attr('id')] = opts.hours;
window['minutes_' + timerType + $this.attr('id')] = opts.minutes;
window['seconds_' + timerType + $this.attr('id')] = opts.seconds;
if (options.beforeExpiryTime !== undefined) {
window['beforeExpiry_' + timerType + $this.attr('id')] = opts.beforeExpiryTime;
}
if (options.pauseButton !== undefined) {
pauseTimer($this, timerType, opts, funcName);
}
if (options.stopButton !== undefined) {
stopTimer($this, timerType, opts, funcName);
}
funcName($this, opts);
window['timer_' + timerType + $this.attr('id')] = setInterval(function() {
funcName($this, opts);
}, opts.tickInterval * 1000);
}
function setTimezone(datetime, offset) {
var newTime = (new Date((datetime.getTime() + (datetime.getTimezoneOffset() * 60000)) + (60000 * (Math.abs(offset) < 30 ? offset * 60 : offset))));
return newTime;
}
//Function for only hours are set when invoking plugin.
function onlyHours($this, opts) {
var id = $this.attr('id');
var time = "";
if (window['minutes_H' + id] === opts.minutes && window['seconds_H' + id] === opts.seconds && window['hours_H' + id] === opts.hours) {
time = prepareTime($this, opts, 0, 0, 0, window['hours_H' + id], 0, 0);
html($this, time, opts);
if (typeof window['beforeExpiry_H' + id] !== 'undefined') {
beforeExpiryTime($this, opts, time, 'H');
}
window['seconds_H' + id] = 60 - opts.tickInterval;
window['minutes_H' + id] = 59;
if (window['hours_H' + id] !== 0) {
window['hours_H' + id]--;
} else {
clearTimerInterval($this, "H", opts);
}
if ($this.data('countdowntimer').destroy === true) clearTimerInterval($this, "H", opts);
} else {
time = prepareTime($this, opts, 0, 0, 0, window['hours_H' + id], window['minutes_H' + id], window['seconds_H' + id]);
html($this, time, opts);
if (typeof window['beforeExpiry_H' + id] !== 'undefined') {
beforeExpiryTime($this, opts, time, 'H');
}
window['seconds_H' + id] -= opts.tickInterval;
if (window['minutes_H' + id] !== 0 && window['seconds_H' + id] < 0) {
window['minutes_H' + id]--;
window['seconds_H' + id] = 60 - opts.tickInterval;
}
if (window['minutes_H' + id] === 0 && window['seconds_H' + id] < 0 && window['hours_H' + id] !== 0) {
window['hours_H' + id]--;
window['minutes_H' + id] = 59;
window['seconds_H' + id] = 60 - opts.tickInterval;
}
if ((window['minutes_H' + id] === 0 && window['seconds_H' + id] < 0 && window['hours_H' + id] === 0) || $this.data('countdowntimer').destroy === true) {
clearTimerInterval($this, "H", opts);
}
}
id = null;
}
//Function for only minutes are set when invoking plugin.
function onlyMinutes($this, opts) {
var id = $this.attr('id');
var time = "";
if (window['minutes_M' + id] === opts.minutes && window['seconds_M' + id] === opts.seconds) {
time = prepareTime($this, opts, 0, 0, 0, 0, window['minutes_M' + id], 0);
html($this, time, opts);
if (typeof window['beforeExpiry_M' + id] !== 'undefined') {
beforeExpiryTime($this, opts, time, 'M');
}
window['seconds_M' + id] = 60 - opts.tickInterval;
if (window['minutes_M' + id] !== 0) {
window['minutes_M' + id]--;
} else {
clearTimerInterval($this, "M", opts);
}
if ($this.data('countdowntimer').destroy === true) clearTimerInterval($this, "M", opts);
} else {
time = prepareTime($this, opts, 0, 0, 0, 0, window['minutes_M' + id], window['seconds_M' + id]);
html($this, time, opts);
if (typeof window['beforeExpiry_M' + id] !== 'undefined') {
beforeExpiryTime($this, opts, time, 'M');
}
window['seconds_M' + id] -= opts.tickInterval;
if (window['minutes_M' + id] !== 0 && window['seconds_M' + id] < 0) {
window['minutes_M' + id]--;
window['seconds_M' + id] = 60 - opts.tickInterval;
}
if ((window['minutes_M' + id] === 0 && window['seconds_M' + id] < 0) || $this.data('countdowntimer').destroy === true) {
clearTimerInterval($this, "M", opts);
}
}
id = null;
}
//Function for only seconds are set when invoking plugin.
function onlySeconds($this, opts) {
var id = $this.attr('id');
var time = "";
time = prepareTime($this, opts, 0, 0, 0, 0, 0, window['seconds_S' + id]);
html($this, time, opts);
if (typeof window['beforeExpiry_S' + id] !== 'undefined') {
beforeExpiryTime($this, opts, time, 'S');
}
window['seconds_S' + id] -= opts.tickInterval;
if ((window['seconds_S' + id] < 0) || ($this.data('countdowntimer').destroy === true)) {
clearTimerInterval($this, "S", opts);
}
id = null;
}
//Function for hours and minutes are set when invoking plugin.
function hoursMinutes($this, opts) {
var id = $this.attr('id');
var time = "";
if (window['minutes_HM' + id] === opts.minutes && window['hours_HM' + id] === opts.hours) {
time = prepareTime($this, opts, 0, 0, 0, window['hours_HM' + id], window['minutes_HM' + id], 0);
html($this, time, opts);
if (typeof window['beforeExpiry_HM' + id] !== 'undefined') {
beforeExpiryTime($this, opts, time, 'HM');
}
if (window['hours_HM' + id] !== 0 && window['minutes_HM' + id] === 0) {
window['hours_HM' + id]--;
window['minutes_HM' + id] = 59;
window['seconds_HM' + id] = 60 - opts.tickInterval;
} else if (window['hours_HM' + id] === 0 && window['minutes_HM' + id] !== 0) {
window['seconds_HM' + id] = 60 - opts.tickInterval;
window['minutes_HM' + id]--;
} else {
window['seconds_HM' + id] = 60 - opts.tickInterval;
window['minutes_HM' + id]--;
}
if (window['hours_HM' + id] === 0 && window['minutes_HM' + id] === 0 && window['seconds_HM' + id] == 60) {
clearTimerInterval($this, "HM", opts);
}
if ($this.data('countdowntimer').destroy === true) clearTimerInterval($this, "HM", opts);
} else {
time = prepareTime($this, opts, 0, 0, 0, window['hours_HM' + id], window['minutes_HM' + id], window['seconds_HM' + id]);
html($this, time, opts);
if (typeof window['beforeExpiry_HM' + id] !== 'undefined') {
beforeExpiryTime($this, opts, time, 'HM');
}
window['seconds_HM' + id] -= opts.tickInterval;
if (window['minutes_HM' + id] !== 0 && window['seconds_HM' + id] < 0) {
window['minutes_HM' + id]--;
window['seconds_HM' + id] = 60 - opts.tickInterval;
}
if (window['minutes_HM' + id] === 0 && window['seconds_HM' + id] < 0 && window['hours_HM' + id] !== 0) {
window['hours_HM' + id]--;
window['minutes_HM' + id] = 59;
window['seconds_HM' + id] = 60 - opts.tickInterval;
}
if ((window['minutes_HM' + id] === 0 && window['seconds_HM' + id] < 0 && window['hours_HM' + id] === 0) || $this.data('countdowntimer').destroy === true) {
clearTimerInterval($this, "HM", opts);
}
}
id = null;
}
//Function for minutes and seconds are set when invoking plugin.
function minutesSeconds($this, opts) {
var id = $this.attr('id');
var time = "";
if (window['minutes_MS' + id] === opts.minutes && window['seconds_MS' + id] === opts.seconds) {
time = prepareTime($this, opts, 0, 0, 0, 0, window['minutes_MS' + id], window['seconds_MS' + id]);
html($this, time, opts);
if (typeof window['beforeExpiry_MS' + id] !== 'undefined') {
beforeExpiryTime($this, opts, time, 'MS');
}
if (window['minutes_MS' + id] !== 0 && window['seconds_MS' + id] === 0) {
window['minutes_MS' + id]--;
window['seconds_MS' + id] = 60 - opts.tickInterval;
} else if (window['minutes_MS' + id] === 0 && window['seconds_MS' + id] === 0) {
clearTimerInterval($this, "MS", opts);
} else {
window['seconds_MS' + id] -= opts.tickInterval;
}
if ($this.data('countdowntimer').destroy === true) clearTimerInterval($this, "MS", opts);
} else {
time = prepareTime($this, opts, 0, 0, 0, 0, window['minutes_MS' + id], window['seconds_MS' + id]);
html($this, time, opts);
if (typeof window['beforeExpiry_MS' + id] !== 'undefined') {
beforeExpiryTime($this, opts, time, 'MS');
}
window['seconds_MS' + id] -= opts.tickInterval;
if (window['minutes_MS' + id] !== 0 && window['seconds_MS' + id] < 0) {
window['minutes_MS' + id]--;
window['seconds_MS' + id] = 60 - opts.tickInterval;
}
if ((window['minutes_MS' + id] === 0 && window['seconds_MS' + id] < 0) || $this.data('countdowntimer').destroy === true) {
clearTimerInterval($this, "MS", opts);
}
}
id = null;
}
//Function for hours and seconds are set when invoking plugin.
function hoursSeconds($this, opts) {
var id = $this.attr('id');
var time = "";
if (window['seconds_HS' + id] === opts.seconds && window['hours_HS' + id] === opts.hours) {
time = prepareTime($this, opts, 0, 0, 0, window['hours_HS' + id], 0, window['seconds_HS' + id]);
html($this, time, opts);
if (typeof window['beforeExpiry_HS' + id] !== 'undefined') {
beforeExpiryTime($this, opts, time, 'HS');
}
if (window['hours_HS' + id] === 0 && window['seconds_HS' + id] === 0) {
clearTimerInterval($this, "HS", opts);
} else if (window['hours_HS' + id] !== 0 && window['seconds_HS' + id] === 0) {
window['hours_HS' + id]--;
window['minutes_HS' + id] = 59;
window['seconds_HS' + id] = 60 - opts.tickInterval;
} else {
window['seconds_HS' + id] -= opts.tickInterval;
}
if ($this.data('countdowntimer').destroy === true) clearTimerInterval($this, "HS", opts);
} else {
time = prepareTime($this, opts, 0, 0, 0, window['hours_HS' + id], window['minutes_HS' + id], window['seconds_HS' + id]);
html($this, time, opts);
if (typeof window['beforeExpiry_HS' + id] !== 'undefined') {
beforeExpiryTime($this, opts, time, 'HS');
}
window['seconds_HS' + id] -= opts.tickInterval;
if (window['minutes_HS' + id] !== 0 && window['seconds_HS' + id] < 0) {
window['minutes_HS' + id]--;
window['seconds_HS' + id] = 60 - opts.tickInterval;
}
if (window['minutes_HS' + id] === 0 && window['seconds_HS' + id] < 0 && window['hours_HS' + id] !== 0) {
window['hours_HS' + id]--;
window['minutes_HS' + id] = 59;
window['seconds_HS' + id] = 60 - opts.tickInterval;
}
if ((window['minutes_HS' + id] === 0 && window['seconds_HS' + id] < 0 && window['hours_HS' + id] === 0) || $this.data('countdowntimer').destroy === true) {
clearTimerInterval($this, "HS", opts);
}
}
id = null;
}
//Function for hours, minutes and seconds are set when invoking plugin.
function hoursMinutesSeconds($this, opts) {
var id = $this.attr('id');
var time = "";
if (window['minutes_HMS' + id] === opts.minutes && window['seconds_HMS' + id] === opts.seconds && window['hours_HMS' + id] === opts.hours) {
time = prepareTime($this, opts, 0, 0, 0, window['hours_HMS' + id], window['minutes_HMS' + id], window['seconds_HMS' + id]);
html($this, time, opts);
if (typeof window['beforeExpiry_HMS' + id] !== 'undefined') {
beforeExpiryTime($this, opts, time, 'HMS');
}
if (window['hours_HMS' + id] === 0 && window['minutes_HMS' + id] === 0 && window['seconds_HMS' + id] === 0) {
clearTimerInterval($this, "HMS", opts);
} else if (window['hours_HMS' + id] !== 0 && window['minutes_HMS' + id] === 0 && window['seconds_HMS' + id] === 0) {
window['hours_HMS' + id]--;
window['minutes_HMS' + id] = 59;
window['seconds_HMS' + id] = 60 - opts.tickInterval;
} else if (window['hours_HMS' + id] === 0 && window['minutes_HMS' + id] !== 0 && window['seconds_HMS' + id] === 0) {
window['minutes_HMS' + id]--;
window['seconds_HMS' + id] = 60 - opts.tickInterval;
} else if (window['hours_HMS' + id] !== 0 && window['minutes_HMS' + id] !== 0 && window['seconds_HMS' + id] === 0) {
window['minutes_HMS' + id]--;
window['seconds_HMS' + id] = 60 - opts.tickInterval;
} else {
window['seconds_HMS' + id] -= opts.tickInterval;
}
if ($this.data('countdowntimer').destroy === true) clearTimerInterval($this, "HMS", opts);
} else {
time = prepareTime($this, opts, 0, 0, 0, window['hours_HMS' + id], window['minutes_HMS' + id], window['seconds_HMS' + id]);
html($this, time, opts);
if (typeof window['beforeExpiry_HMS' + id] !== 'undefined') {
beforeExpiryTime($this, opts, time, 'HMS');
}
window['seconds_HMS' + id] -= opts.tickInterval;
if (window['minutes_HMS' + id] !== 0 && window['seconds_HMS' + id] < 0) {
window['minutes_HMS' + id]--;
window['seconds_HMS' + id] = 60 - opts.tickInterval;
}
if (window['minutes_HMS' + id] === 0 && window['seconds_HMS' + id] < 0 && window['hours_HMS' + id] !== 0) {
window['hours_HMS' + id]--;
window['minutes_HMS' + id] = 59;
window['seconds_HMS' + id] = 60 - opts.tickInterval;
}
if ((window['minutes_HMS' + id] === 0 && window['seconds_HMS' + id] < 0 && window['hours_HMS' + id] === 0) || $this.data('countdowntimer').destroy === true) {
clearTimerInterval($this, "HMS", opts);
}
}
id = null;
}
//Function for reverse timer to given date.
function givenDate($this, opts, type) {
var id = $this.attr('id');
var endDate = (type === "withnoStart") ? window['dateTime' + id] : window['endDate' + id];
var startDate = (type === "withnoStart") ? window['startTime' + id] : window['startDate' + id];
var totalSeconds = ((endDate - startDate) / 1000);
var time = "";
if ((endDate - startDate) > 0) {
if (type === "withStart" && (startDate > (new Date()))) {
time = prepareTime($this, opts, 0, 0, 0, 0, 0, 0);
html($this, time, opts);
} else {
time = prepareTime($this, opts, 0, 0, 0, 0, 0, totalSeconds);
html($this, time, opts);
if (typeof window['beforeExpiry_' + type + id] !== 'undefined') {
beforeExpiryTime($this, opts, time, type);
}
var setSecondsInterval = ((type == "withnoStart") ? (window['startTime' + id].setSeconds(window['startTime' + id].getSeconds() + opts.tickInterval)) : (window['startDate' + id].setSeconds(window['startDate' + id].getSeconds() + opts.tickInterval)));
}
if ($this.data('countdowntimer').destroy === true) clearTimerInterval($this, type, opts);
} else {
time = prepareTime($this, opts, 0, 0, 0, 0, 0, 0);
html($this, time, opts);
clearTimerInterval($this, type, opts);
}
id = null;
}
//Function for displaying current time.
function currentDate($this, opts) {
var time = "";
var today = (opts.timeZone !== null ? setTimezone(new Date(), opts.timeZone) : new Date());
var hours = today.getHours();
var minutes = today.getMinutes();
var seconds = today.getSeconds();
time = prepareTime($this, opts, 0, 0, 0, hours, minutes, seconds);
html($this, time, opts);
}
//Default function called when no options are set.
function secondsTimer($this, opts) {
var id = $this.attr('id');
if (window['countSeconds' + id].toString().length < 2) {
window['countSeconds' + id] = "0" + window['countSeconds' + id];
}
$this.html(window['countSeconds' + id] + " " + "sec");
window['countSeconds' + id]--;
if (window['countSeconds' + id] == -1) {
delete window['countSeconds' + id];
clearInterval(window['timer_secondsTimer' + id]);
}
id = null;
}
//Function for calling the given function name when time is expired.
function timeUp($this, opts) {
if (opts.timeUp !== null) {
if ($.isFunction(opts.timeUp) === true) {
opts.timeUp.apply($this, []);
}
}
if (opts.expiryUrl !== null) {
window.location = opts.expiryUrl;
}
}
//Function for calling the given function name before expiry time.
function beforeExpiryTime($this, opts, time, type) {
var id = $this.attr('id');
var bforeExpTime = window['beforeExpiry_' + type + id];
bforeExpTime = bforeExpTime.split(":");
time = time.split(opts.timeSeparator);
if (time[0] === "0" && time[1] === "0") {
for (var m = 0; m < (time.length - 2); m++) {
time[m] = (time[m + 2] < 10 ? "0" + time[m + 2] : time[m + 2]);
}
time.splice(4, 2);
if (bforeExpTime[0] === time[0] && bforeExpTime[1] === time[1] && bforeExpTime[2] === time[2] && bforeExpTime[3] === time[3]) {
if (opts.beforeExpiryTimeFunction !== null) {
if ($.isFunction(opts.beforeExpiryTimeFunction) === true) {
opts.beforeExpiryTimeFunction.apply($this, []);
}
}
}
}
}
function prepareTime($this, opts, years, months, days, hours, minutes, seconds) {
if (typeof(years) === 'undefined') years = 0;
if (typeof(months) === 'undefined') months = 0;
if (typeof(days) === 'undefined') days = 0;
if (typeof(hours) === 'undefined') hours = 0;
if (typeof(minutes) === 'undefined') minutes = 0;
if (typeof(seconds) === 'undefined') seconds = 0;
var s = (Math.round(years * 31536000 * 100) / 100) + (Math.round(months * 2628000 * 100) / 100) + (Math.round(days * 86400 * 100) / 100) + (Math.round(hours * 3600 * 100) / 100) + (Math.round(minutes * 60 * 100) / 100) + (Math.round(seconds * 100) / 100);
var format = opts.displayFormat.split('');
var yearsFormat = (format[0] === "!" ? (Math.floor(s / 31536000)) : 0);
var monthsFormat = (format[1] === "!" ? (Math.round(Math.floor((s / 2628000) - ((yearsFormat * 31536000) / 2628000)))) : 0);
var daysFormat = (format[2] === "!" ? (Math.round(Math.floor((s / 86400) - ((monthsFormat * 2628000) / 86400) - ((yearsFormat * 31536000) / 86400)))) : 0);
var hoursFormat = (format[3] === "!" ? (Math.round(Math.floor((s / 3600) - ((monthsFormat * 2628000) / 3600) - ((yearsFormat * 31536000) / 3600) - ((daysFormat * 86400) / 3600)))) : 0);
var minutesFormat = (format[4] === "!" ? (Math.round(Math.floor((s / 60) - ((hoursFormat * 3600) / 60) - ((daysFormat * 86400) / 60) - ((monthsFormat * 2628000) / 60) - ((yearsFormat * 31536000) / 60)))) : 0);
var secondsFormat = (format[5] === "!" ? (Math.round(Math.floor(s - (minutesFormat * 60) - (hoursFormat * 3600) - (daysFormat * 86400) - (monthsFormat * 2628000) - (yearsFormat * 31536000)))) : 0);
var time = yearsFormat + opts.timeSeparator + monthsFormat + opts.timeSeparator + daysFormat + opts.timeSeparator + hoursFormat + opts.timeSeparator + minutesFormat + opts.timeSeparator + secondsFormat;
return time;
}
//Function for displaying the timer.
function html($this, time, opts) {
var format = opts.displayFormat.split('');
time = time.split(opts.timeSeparator);
time = $.grep([time[0], time[1], time[2], time[3], time[4], time[5]], function(arr, i) {
return (arr >= 0 && format[i] === "!");
}).join(opts.timeSeparator);
time = time.split(opts.timeSeparator);
for (var i = 0; i < time.length; i++) {
if (time[i].toString().length < 2 && opts.padZeroes === true) {
time[i] = "0" + time[i];
}
}
time = time.join(opts.timeSeparator).toString();
for (var k = 0; k < 10; k++) {
var replace = k.toString();
var re = new RegExp(replace, "g");
time = time.replace(re, opts.digits[k]);
}
if (opts.labelsFormat === true && typeof window['regexpMatchFormat_' + $this.attr('id')] === 'undefined' &&
typeof window['regexpReplaceWith_' + $this.attr('id')] === 'undefined') {
$this.addClass("labelformat");
time = time.split(opts.timeSeparator);
var labelTime = "<span class='timerDisplay label" + time.length + "'>";
var labelarr = [];
for (var j = 0; j < 6; j++) {
if (format[j] === "!")
labelarr.push(opts.labels[j]);
}
for (var a = time.length; a > 0; a--) {
var itr = time.length - a;
labelTime += "<span class='displaySection'><span class='numberDisplay'>" + time[itr] + "</span><span class='periodDisplay'>" + labelarr[itr] + "</span></span>";
}
time = labelTime += "</span>";
} else if (opts.labelsFormat === false && typeof window['regexpMatchFormat_' + $this.attr('id')] !== 'undefined' &&
typeof window['regexpReplaceWith_' + $this.attr('id')] !== 'undefined') {
var regexp = new RegExp(window['regexpMatchFormat_' + $this.attr('id')]);
time = time.replace(regexp,
window['regexpReplaceWith_' + $this.attr('id')]);
}
$this.html(time);
}
//Function to Pause/Resume Timer.
function pauseTimer($this, timerType, opts, func) {
if ($this.data('countdowntimer').pause === 'pause') {
clearInterval(window['timer_' + timerType + $this.attr('id')]);
} else if ($this.data('countdowntimer').pause === 'resume') {
window['timer_' + timerType + $this.attr('id')] = setInterval(function() {
func($this, opts);
}, opts.tickInterval * 1000);
}
$("#" + opts.pauseButton).click(function() {
if ($(this).val() != "resume") {
$("#" + opts.pauseButton).val("resume").text("Resume");
clearInterval(window['timer_' + timerType + $this.attr('id')]);
} else if ($(this).val() == "resume") {
$("#" + opts.pauseButton).val("pause").text("Pause");
window['timer_' + timerType + $this.attr('id')] = setInterval(function() {
func($this, opts);
}, opts.tickInterval * 1000);
}
});
}
//Function to Start/Stop Timer.
function stopTimer($this, timerType, opts, func) {
if ($this.data('countdowntimer').stop === 'stop') {
clearInterval(window['timer_' + timerType + $this.attr('id')]);
window['hours_' + timerType + $this.attr('id')] = opts.hours;
window['minutes_' + timerType + $this.attr('id')] = opts.minutes;
window['seconds_' + timerType + $this.attr('id')] = opts.seconds;
func($this, opts);
} else if ($this.data('countdowntimer').stop === 'start') {
window['timer_' + timerType + $this.attr('id')] = setInterval(function() {
func($this, opts);
}, opts.tickInterval * 1000);
}
$("#" + opts.stopButton).click(function() {
if ($(this).val() != "start") {
$("#" + opts.stopButton).val("start").text("Start");
clearInterval(window['timer_' + timerType + $this.attr('id')]);
window['hours_' + timerType + $this.attr('id')] = opts.hours;
window['minutes_' + timerType + $this.attr('id')] = opts.minutes;
window['seconds_' + timerType + $this.attr('id')] = opts.seconds;
func($this, opts);
} else if ($(this).val() == "start") {
$("#" + opts.stopButton).val("stop").text("Stop");
window['timer_' + timerType + $this.attr('id')] = setInterval(function() {
func($this, opts);
}, opts.tickInterval * 1000);
}
});
}
function clearTimerInterval($this, timerType, opts) {
var id = $this.attr('id');
if (timerType === "withnoStart") {
delete window['dateTime' + id];
delete window['startTime' + id];
clearInterval(window['timer_givenDate' + id]);
} else if (timerType === "withStart") {
delete window['startDate' + id];
delete window['endDate' + id];
clearInterval(window['timer_startDate' + id]);
} else {
delete window['hours_' + timerType + id];
delete window['minutes_' + timerType + id];
delete window['seconds_' + timerType + id];
clearInterval(window['timer_' + timerType + id]);
}
if ($this.data('countdowntimer').destroy === true) {
$this.empty().removeClass();
} else {
timeUp($this, opts);
}
}
//Giving default value for options.
$.fn.countdowntimer.defaults = {
hours: 0,
minutes: 0,
seconds: 60,
startDate: new Date(),
dateAndTime: new Date("1970/01/01 00:00:00"),
currentTime: false,
size: "sm",
borderColor: "#F0068E",
fontColor: "#FFFFFF",
backgroundColor: "#000000",
timeSeparator: ":",
tickInterval: 1,
timeUp: null,
expiryUrl: null,
regexpMatchFormat: null,
regexpReplaceWith: null,
pauseButton: null,
stopButton: null,
beforeExpiryTime: null,
beforeExpiryTimeFunction: null,
padZeroes: true,
displayFormat: "HMS",
labelsFormat: false,
timeZone: null
};
$.fn.countdowntimer.regionalOptions = {