-
Notifications
You must be signed in to change notification settings - Fork 125
/
TemplatesYard - Superfast.xml
2072 lines (2017 loc) · 257 KB
/
TemplatesYard - Superfast.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html b:css='false' b:defaultwidgetversion='2' b:layoutsVersion='3' b:responsive='true' b:templateVersion='1.0.0' expr:class='data:blog.languageDirection' expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<meta content='width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1' name='viewport'/>
<title><data:view.title.escaped/></title>
<b:include data='blog' name='all-head-content'/>
<!-- Google Fonts -->
<link href='//fonts.googleapis.com/css?family=Open+Sans:400,400i,600,600i,700,700i' media='all' rel='stylesheet' type='text/css'/>
<link href='https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' rel='stylesheet'/>
<!-- Template Style CSS -->
<b:skin version='1.0.0'><![CDATA[/*
-----------------------------------------------
Blogger Template Style
Name: Superfast
Version: Free version
Author: TemplatesYard
Author Url: https://www.templatesyard.com/
----------------------------------------------- */
/*
<!-- Variable definitions -->
<Variable name="keycolor" description="Main Color" type="color" default="$(main.color)" value="#2475fc"/>
<Variable name="followByEmail" description="Follow By Email Text" type="string" default="Get all latest content delivered straight to your inbox." value="Get all latest content delivered straight to your inbox."/>
<Group description="Theme Colors" selector="body">
<Variable name="main.color" description="Theme Color" type="color" default="#2475fc" value="#2475fc"/>
<Variable name="main.dark.color" description="Dark Color" type="color" default="#171717" value="#171717"/>
<Variable name="title.color" description="Title Color" type="color" default="#171717" value="#171717"/>
<Variable name="title.hover" description="Title Color on Hover" type="color" default="$(main.color)" value="#2475fc"/>
<Variable name="footer.color" description="Footer Color" type="color" default="#f1ffff" value="#f1ffff"/>
</Group>
<Group description="Main Menu" selector=".header-menu">
<Variable name="menu.bg" description="Menu Background" type="color" default="$(main.color)" value="#2475fc"/>
<Variable name="menu.color" description="Menu Color" type="color" default="#ffffff" value="#ffffff"/>
</Group>
<Group description="Sidebar and Post Widgets" selector="#sidebar-wrapper">
<Variable name="headline.bg" description="Headline Background" type="color" default="$(main.color)" value="#2475fc"/>
<Variable name="headline.color" description="Headline Color" type="color" default="#ffffff" value="#ffffff"/>
</Group>
<Group description="Theme Body" selector="body">
<Variable name="body.background.color" description="Body Background Color" type="color" default="#f8f8f8" value="#f8f8f8"/>
<Variable name="body.background" description="Background" type="background" color="$(body.background.color)" default="$(color) url() repeat fixed top left" value="$(color) url() repeat fixed top left"/>
<Variable name="body.text.color" description="Text Color" type="color" default="#656565" value="#656565"/>
<Variable name="body.link.color" description="Link Color" type="color" default="$(main.color)" value="#2475fc"/>
</Group>
<!-- Extra Variables -->
<Variable name="body.text.font" description="Font" hideEditor="true" type="font" default="14px Open Sans, sans-serif" value="14px Open Sans, sans-serif"/>
<Variable name="posts.background.color" description="Post background color" hideEditor="true" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="tabs.font" description="Font 2" hideEditor="true" type="font" default="14px Open Sans, sans-serif" value="14px Open Sans, sans-serif"/>
<Variable name="posts.title.color" description="Post title color" hideEditor="true" type="color" default="#333333" value="#333333"/>
<Variable name="posts.text.color" description="Post text color" hideEditor="true" type="color" default="#656565" value="#656565"/>
<Variable name="posts.icons.color" description="Post icons color" hideEditor="true" type="color" default="$(main.color)" value="#2475fc"/>
<Variable name="labels.background.color" description="Label background color" hideEditor="true" type="color" default="$(main.color)" value="#2475fc"/>
*/
a,abbr,acronym,address,applet,b,big,blockquote,body,caption,center,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,font,form,h1,h2,h3,h4,h5,h6,html,i,iframe,img,ins,kbd,label,legend,li,object,p,pre,q,s,samp,small,span,strike,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,tt,u,ul,var{padding:0;border:0;outline:0;vertical-align:baseline;background:0 0;text-decoration:none }form,textarea,input,button{-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:0 }dl,ul{list-style-position:inside;font-weight:400;list-style:none }ul li{list-style:none }caption,th{text-align:center }img{border:none;position:relative }a,a:visited{text-decoration:none }.clearfix{clear:both }.section,.widget,.widget ul{margin:0;padding:0 }a{color:$(body.link.color) }a img{border:0 }abbr{text-decoration:none }.CSS_LIGHTBOX{z-index:999999!important }.separator a{clear:none!important;float:none!important;margin-left:0!important;margin-right:0!important }#navbar-iframe,.widget-item-control,a.quickedit,.home-link,.feed-links{display:none!important }.center{display:table;margin:0 auto;position:relative }.widget > h2,.widget > h3{display:none }body{background:$(body.background);background-color:$(body.background.color);font-family:'Open Sans',sans-serif;font-size:14px;font-weight:400;color:$(body.text.color);word-wrap:break-word;margin:0;padding:0 }#outer-wrapper{max-width:1020px;margin:0 auto;background-color:#fff;box-shadow:0 0 5px rgba(0,0,0,.1) }.row{width:960px }#content-wrapper{margin:30px auto 0;overflow:hidden }#content-wrapper > .container{margin:0 -15px }#main-wrapper{float:left;overflow:hidden;width:66.66666667%;box-sizing:border-box;word-wrap:break-word;padding:0 15px;margin:0 }#sidebar-wrapper{float:right;overflow:hidden;width:33.33333333%;box-sizing:border-box;word-wrap:break-word;padding:0 15px }.post-image-wrap{position:relative;display:block }.post-image-link,.about-author .avatar-container,.comments .avatar-image-container{background-color:rgba(155,155,155,0.07);color:transparent!important }.post-thumb{display:block;position:relative;width:100%;height:100%;object-fit:cover;z-index:1;transition:opacity .17s ease }.post-image-link:hover .post-thumb,.post-image-wrap:hover .post-image-link .post-thumb{opacity:.9 }.post-title a{display:block }.social a:before{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400 }.social .blogger a:before{content:"\f37d" }.social .facebook a:before{content:"\f09a" }.social .twitter a:before{content:"\f099" }.social .gplus a:before{content:"\f0d5" }.social .rss a:before{content:"\f09e" }.social .youtube a:before{content:"\f167" }.social .skype a:before{content:"\f17e" }.social .stumbleupon a:before{content:"\f1a4" }.social .tumblr a:before{content:"\f173" }.social .vk a:before{content:"\f189" }.social .stack-overflow a:before{content:"\f16c" }.social .github a:before{content:"\f09b" }.social .linkedin a:before{content:"\f0e1" }.social .dribbble a:before{content:"\f17d" }.social .soundcloud a:before{content:"\f1be" }.social .behance a:before{content:"\f1b4" }.social .digg a:before{content:"\f1a6" }.social .instagram a:before{content:"\f16d" }.social .pinterest a:before{content:"\f0d2" }.social .twitch a:before{content:"\f1e8" }.social .delicious a:before{content:"\f1a5" }.social .codepen a:before{content:"\f1cb" }.social .reddit a:before{content:"\f1a1" }.social .whatsapp a:before{content:"\f232" }.social .snapchat a:before{content:"\f2ac" }.social .email a:before{content:"\f0e0" }.social .external-link a:before{content:"\f35d" }.social-color .blogger a{background-color:#ff5722 }.social-color .facebook a{background-color:#3b5999 }.social-color .twitter a{background-color:#00acee }.social-color .gplus a{background-color:#db4a39 }.social-color .youtube a{background-color:#f50000 }.social-color .instagram a{background:linear-gradient(15deg,#ffb13d,#dd277b,#4d5ed4) }.social-color .pinterest a{background-color:#ca2127 }.social-color .dribbble a{background-color:#ea4c89 }.social-color .linkedin a{background-color:#0077b5 }.social-color .tumblr a{background-color:#365069 }.social-color .twitch a{background-color:#6441a5 }.social-color .rss a{background-color:#ffc200 }.social-color .skype a{background-color:#00aff0 }.social-color .stumbleupon a{background-color:#eb4823 }.social-color .vk a{background-color:#4a76a8 }.social-color .stack-overflow a{background-color:#f48024 }.social-color .github a{background-color:#24292e }.social-color .soundcloud a{background:linear-gradient(#ff7400,#ff3400) }.social-color .behance a{background-color:#191919 }.social-color .digg a{background-color:#1b1a19 }.social-color .delicious a{background-color:#0076e8 }.social-color .codepen a{background-color:#000 }.social-color .reddit a{background-color:#ff4500 }.social-color .whatsapp a{background-color:#3fbb50 }.social-color .snapchat a{background-color:#ffe700 }.social-color .email a{background-color:#888 }.social-color .external-link a{background-color:$(main.dark.color) }#header-wrap{position:relative;margin:0;}#header-wrap .container{margin:0 auto }.header-header{background-color:#fff;width:100%;height:auto;position:relative;overflow:hidden;padding:35px 0 }.header-logo{position:relative;float:left;width:auto;max-width:200px;max-height:60px;margin:0;padding:15px 0 }.header-logo .header-image-wrapper{display:block }.header-logo img{max-width:100%;max-height:60px;margin:0 }.header-logo h1{color:$(title.color);font-size:36px;line-height:60px;margin:0 }.header-logo p{font-size:12px;margin:5px 0 0 }.header-ads{position:relative;float:right }.header-ads .widget > .widget-title{display:none }.header-ads .widget{max-width:100% }.header-ads .widget .widget-content{width:728px;max-width:100%;max-height:90px;line-height:1 }#mobile-logo .widget > .widget-title > h3{display:none }.mobile-header{display:none;position:relative;float:left;width:100%;height:42px;z-index:9 }.mobile-header .logo-content{position:relative;float:left;display:block;width:100%;height:42px;text-align:center;z-index:2 }.mobile-header .logo-content > a{height:30px;display:inline-block;padding:6px 0 }.mobile-header .logo-content > a > img{height:30px }.mobile-header .logo-content > h3{font-size:20px;height:30px;line-height:30px;margin:6px 0 0 }.mobile-header .logo-content > h3 > a{color:#fff }.header-menu{position:relative;width:100%;height:42px;background-color:$(menu.bg);z-index:10;font-size:13px;margin:0 }.social-toggle{position:absolute;line-height:42px;height:42px;width:42px;top:0;left:0;font-family:FontAwesome;color:$(menu.color);font-size:15px;font-weight:400;text-align:center;cursor:pointer;z-index:20;padding:0 }.social-toggle:before{content:"\f1e0" }.social-active .social-toggle:before{content:"\f00d" }#social-menu{display:none;position:absolute;width:100%;height:42px;top:0;left:0;background-color:$(menu.bg);text-align:center;z-index:15;margin:0 }.social-menu .social li{display:inline-block;padding:0;margin:0 }.social-menu .social li a{display:block;height:42px;font-size:14px;color:$(menu.color);line-height:42px;padding:0 10px;margin:0 5px;transition:color .17s ease }#main-menu .widget,#main-menu .widget > .widget-title{display:none }#main-menu .show-menu{display:block }#main-menu{position:relative;height:42px;text-align:center;z-index:10 }#main-menu ul > li{display:inline-block;position:relative;margin:0;padding:0;transition:background .17s }#main-menu ul > li > a{position:relative;color:$(menu.color);font-size:14px;font-weight:600;line-height:42px;display:inline-block;padding:0 10px;margin:0 3px;transition:color .17s ease }#main-menu ul > li:hover > a{color:$(menu.color) }#main-menu ul > li > ul{position:absolute;float:left;left:0;top:42px;width:180px;background-color:$(main.dark.color);z-index:99999;margin-top:0;padding:0;box-shadow:0 3px 5px rgba(0,0,0,0.2);visibility:hidden;opacity:0 }#main-menu ul > li > ul > li > ul{position:absolute;float:left;top:0;left:100%;margin:0 }#main-menu ul > li > ul > li{display:block;float:none;position:relative;transition:all .17s ease }#main-menu ul > li > ul > li a{display:block;height:36px;font-size:13px;color:#fff;font-weight:600;line-height:36px;box-sizing:border-box;margin:0;padding:0 15px;border-bottom:1px solid rgba(255,255,255,0.05);transition:all .17s ease }#main-menu ul > li > ul > li:last-child a{border:0 }#main-menu ul > li > ul > li:hover{background-color:rgba(0,0,0,0.2) }#main-menu ul > li > ul > li:hover > a{color:$(main.color) }#main-menu ul > li.has-sub > a:after{content:'\f107';float:right;font-family:FontAwesome;font-size:14px;font-weight:400;margin:0 0 0 3px }#main-menu ul > li > ul > li.has-sub > a:after{content:'\f105';float:right;margin:0 }#main-menu ul > li:hover > ul,#main-menu ul > li > ul > li:hover > ul{visibility:visible;opacity:1 }#main-menu ul ul{transition:all .17s ease }.no-posts{float:left;width:100%;height:100px;line-height:100px;text-align:center }.show-search,.hide-search{position:absolute;right:0;top:0;display:block;width:42px;height:42px;line-height:42px;z-index:20;color:$(menu.color);font-size:15px;text-align:center;cursor:pointer;transition:color .17s ease }.show-search:before{content:"\f002";font-family:FontAwesome;font-weight:400 }.hide-search:before{content:"\f00d";font-family:FontAwesome;font-weight:400 }.show-search:hover,.hide-search:hover{color:$(menu.color) }#nav-search{display:none;position:absolute;left:0;top:0;width:100%;height:42px;z-index:99;background-color:$(menu.bg);box-sizing:border-box;padding:0 }#nav-search .search-form{width:100%;height:42px;background-color:rgba(0,0,0,0);line-height:42px;overflow:hidden;padding:0 }#nav-search .search-input{width:100%;height:42px;font-family:inherit;color:$(menu.color);margin:0;padding:0 60px 0 20px;background-color:rgba(0,0,0,0);font-size:13px;font-weight:400;box-sizing:border-box;border:0 }#nav-search .search-input:focus{color:$(menu.color);outline:none }.slide-menu-toggle{display:none;position:absolute;line-height:42px;height:42px;width:42px;top:0;left:0;font-family:FontAwesome;color:$(menu.color);font-size:17px;font-weight:400;text-align:center;cursor:pointer;z-index:99;padding:0 }.slide-menu-toggle:before{content:"\f0c9" }.nav-active .slide-menu-toggle:before{content:"\f00d" }.mobile-menu{display:none;position:absolute;top:42px;left:0;width:100%;background-color:$(main.dark.color);box-sizing:border-box;padding:20px;border-top:1px solid rgba(255,255,255,0.08);visibility:hidden;opacity:0;transform-origin:0 0;transform:scaleY(0);transition:all .17s ease }.nav-active .mobile-menu{visibility:visible;opacity:1;transform:scaleY(1) }.mobile-menu > ul{margin:0 }.mobile-menu .m-sub{display:none;padding:0 }.mobile-menu ul li{position:relative;display:block;overflow:hidden;float:left;width:100%;font-size:13px;font-weight:700;text-transform:uppercase;line-height:38px;margin:0;padding:0;border-top:1px solid rgba(255,255,255,0.05) }.mobile-menu > ul li ul{overflow:hidden }.mobile-menu > ul > li:first-child{border-top:0 }.mobile-menu ul li a{color:#fff;padding:0;display:block;transition:all .17s ease }.mobile-menu ul li.has-sub .submenu-toggle{position:absolute;top:0;right:0;color:#fff;cursor:pointer }.mobile-menu ul li.has-sub .submenu-toggle:after{content:'\f105';font-family:FontAwesome;font-weight:400;float:right;width:34px;font-size:16px;text-align:center;transition:all .17s ease }.mobile-menu ul li.has-sub.show > .submenu-toggle:after{transform:rotate(90deg) }.mobile-menu > ul > li > ul > li{border-color:rgba(255,255,255,0.05) }.mobile-menu > ul > li > ul > li a{font-size:13px;text-transform:initial;font-weight:400 }.mobile-menu > ul > li > ul > li > a{color:#fff;opacity:.7;padding:0 0 0 15px }.mobile-menu > ul > li > ul > li > ul > li{border-color:rgba(255,255,255,0.02) }.mobile-menu > ul > li > ul > li > ul > li > a{color:#fff;opacity:.7;padding:0 0 0 30px }.mobile-menu ul li a:hover,.mobile-menu ul > li > .submenu-toggle:hover{color:$(main.color) }#home-ad, .ad-after-post h3{display:none;}.ad-after-post {float: left;width: 100%;margin-top: 30px;}.post-meta{overflow:hidden;color:#aaa;font-size:13px;font-weight:400;padding:0 1px }.post-meta .post-author,.post-meta .post-date{float:left;display:inline-block;margin:0 }.post-meta .post-author:after{content:'-';margin:0 4px }.post-author{font-weight:700 }.post-meta a{color:$(title.color);transition:color .17s }.post-meta a:hover{color:$(main.color) }.queryMessage{overflow:hidden;background-color:#f2f2f2;color:$(title.color);font-size:13px;font-weight:400;padding:8px 10px;margin:0 0 25px }.queryMessage .query-info{margin:0 5px }.queryMessage .search-query,.queryMessage .search-label{font-weight:700;text-transform:uppercase }.queryMessage .search-query:before,.queryMessage .search-label:before{content:"\201c" }.queryMessage .search-query:after,.queryMessage .search-label:after{content:"\201d" }.queryMessage a.show-more{float:right;color:$(title.hover);text-decoration:underline;transition:opacity .17s }.queryMessage a.show-more:hover{opacity:.8 }.queryEmpty{font-size:13px;font-weight:400;padding:10px 0;margin:0 0 25px;text-align:center }.title-wrap{position:relative;float:left;width:100%;height:28px;background-color:$(headline.bg);display:block;margin:0 0 20px }.title-wrap > h3{display:block;font-size:12px;color:$(headline.color);font-weight:600;line-height:28px;text-transform:uppercase;text-align:center;padding:0 15px;margin:0 }.custom-widget li{overflow:hidden;margin:20px 0 0 }.custom-widget li:first-child{padding:0;margin:0;border:0 }.custom-widget .post-image-link{position:relative;width:80px;height:60px;float:left;overflow:hidden;display:block;vertical-align:middle;margin:0 12px 0 0 }.custom-widget .post-info{overflow:hidden }.custom-widget .post-title{overflow:hidden;font-size:13px;font-weight:600;line-height:1.5em;margin:0 0 3px }.custom-widget .post-title a{display:block;color:$(title.color);transition:color .17s }.custom-widget li:hover .post-title a{color:$(title.hover) }.custom-widget .post-meta{font-size:12px }.home-ad .widget > .widget-title{display:none }.home-ad .widget{width:728px;max-width:100%;margin:0 auto }.home-ad .widget .widget-content{position:relative;width:100%;max-height:90px;overflow:hidden;line-height:1;margin:0 0 30px }.index-post-wrap{position:relative;float:left;width:100% }.blog-post{display:block;overflow:hidden;word-wrap:break-word }.index-post{display:block;margin:0 0 30px }.index-post .post-image-wrap{float:left;width:250px;height:185px;overflow:hidden;margin:0 20px 0 0 }.index-post .post-image-wrap .post-image-link{width:100%;height:100%;position:relative;display:block;z-index:1;overflow:hidden }.index-post .post-info{overflow:hidden }.index-post .post-info > h2{font-size:20px;font-weight:700;line-height:1.5em;text-decoration:none;margin:0 }.index-post .post-info > h2 > a{display:block;color:$(title.color);transition:color .17s }.index-post .post-info > h2:hover > a{color:$(title.hover) }.widget iframe,.widget img{max-width:100% }.date-header{display:block;overflow:hidden;font-weight:400;margin:0!important;padding:0 }.index-post .post-meta{margin:10px 0 0 }.post-snippet{position:relative;display:block;overflow:hidden;font-size:13px;line-height:1.6em;font-weight:400;margin:7px 0 0 }a.read-more{display:inline-block;background-color:$(main.color);color:#fff;height:28px;font-size:13px;font-weight:600;line-height:28px;padding:0 15px;margin:12px 0 0;border-radius:2px;transition:background .17s ease }a.read-more:hover{background-color:$(main.dark.color) }#breadcrumb{font-size:12px;font-weight:400;color:#aaa;margin:0 0 10px }#breadcrumb a{color:#aaa;transition:color .17s }#breadcrumb a:hover{color:$(title.hover) }#breadcrumb a,#breadcrumb em{display:inline-block }#breadcrumb .delimiter:after{content:'\f054';font-family:FontAwesome;font-size:8px;font-weight:400;font-style:normal;vertical-align:middle;margin:0 3px }.item-post h1.post-title{color:$(title.color);font-size:27px;line-height:1.5em;font-weight:700;position:relative;display:block;margin:10px 0;padding:0 }.static_page .item-post h1.post-title{margin:0 }.item-post .post-body{width:100%;font-size:15px;line-height:1.5em;overflow:hidden;padding:20px 0 0;margin:10px 0 0;border-top:1px dashed #ebebeb }.static_page .item-post .post-body{padding:20px 0 }.item-post .post-outer{padding:0 }.item-post .post-body img{max-width:100% }.main .widget{margin:0 }.main .Blog{border-bottom-width:0 }.post-footer{position:relative;float:left;width:100%;margin:20px 0 0 }.inline-ad{position:relative;display:block;max-height:60px;margin:0 0 30px }.inline-ad > ins{display:block!important;margin:0 auto!important }.item .inline-ad{float:left;width:100%;margin:20px 0 0 }.item-post-wrap > .inline-ad{margin:0 0 20px }.post-labels{overflow:hidden;height:auto;position:relative;margin:0 0 20px;padding:0 }.post-labels span,.post-labels a{float:left;height:22px;background-color:#f2f2f2;color:$(title.color);font-size:12px;line-height:22px;font-weight:400;margin:0;padding:0 10px;border-radius:2px }.post-labels span{background-color:$(main.color);color:#fff }.post-labels a{margin:0 0 0 5px;transition:all .17s ease }.post-labels a:hover{background-color:$(main.color);color:#fff;border-color:$(main.color) }.post-reactions{height:28px;display:block;margin:0 0 15px }.post-reactions span{float:left;color:$(title.color);font-size:11px;line-height:25px;text-transform:uppercase;font-weight:700 }.reactions-inner{float:left;margin:0;height:28px }.post-share{position:relative;overflow:hidden;line-height:0;margin:0 0 30px }ul.share-links{position:relative }.share-links li{width:32px;float:left;box-sizing:border-box;margin:0 5px 0 0 }.share-links li.facebook,.share-links li.twitter{width:20% }.share-links li a{float:left;display:inline-block;cursor:pointer;width:100%;height:32px;line-height:32px;color:#fff;font-weight:400;font-size:13px;text-align:center;box-sizing:border-box;opacity:1;border-radius:2px;transition:all .17s ease }.share-links li.whatsapp-mobile{display:none }.is-mobile li.whatsapp-desktop{display:none }.is-mobile li.whatsapp-mobile{display:inline-block }.share-links li a:before{float:left;display:block;width:32px;background-color:rgba(0,0,0,0.05);text-align:center;line-height:32px }.share-links li a:hover{opacity:.8 }ul.post-nav{position:relative;overflow:hidden;display:block;margin:0 0 30px }.post-nav li{display:inline-block;width:50% }.post-nav .post-prev{float:left;text-align:left;box-sizing:border-box;padding:0 10px }.post-nav .post-next{float:right;text-align:right;box-sizing:border-box;padding:0 10px }.post-nav li a{color:$(title.color);line-height:1.4em;display:block;overflow:hidden;transition:color .17s }.post-nav li:hover a{color:$(title.hover) }.post-nav li span{display:block;font-size:11px;color:#aaa;font-weight:700;text-transform:uppercase;padding:0 0 2px }.post-nav .post-prev span:before{content:"\f053";float:left;font-family:FontAwesome;font-size:10px;font-weight:400;text-transform:none;margin:0 2px 0 0 }.post-nav .post-next span:after{content:"\f054";float:right;font-family:FontAwesome;font-size:10px;font-weight:400;text-transform:none;margin:0 0 0 2px }.post-nav p{font-size:12px;font-weight:400;line-height:1.4em;margin:0 }.post-nav .post-nav-active p{color:#aaa }.about-author{position:relative;display:block;overflow:hidden;padding:20px;margin:0 0 30px;border:1px solid #e6e6e6 }.about-author .avatar-container{position:relative;float:left;width:80px;height:80px;background-color:rgba(255,255,255,0.05);overflow:hidden;margin:0 15px 0 0 }.about-author .author-avatar{float:left;width:100%;height:100% }.author-name{overflow:hidden;display:inline-block;font-size:12px;font-weight:700;text-transform:uppercase;line-height:14px;margin:7px 0 3px }.author-name span{color:$(title.color) }.author-name a{color:$(main.color);transition:opacity .17s }.author-name a:hover{opacity:.8 }.author-description{display:block;overflow:hidden;font-size:12px;font-weight:400;line-height:1.6em }.author-description a:hover{text-decoration:underline }#related-wrap{overflow:hidden;margin:0 0 30px }#related-wrap .related-tag{display:none }.related-ready{float:left;width:100% }.related-ready .loader{height:178px }ul.related-posts{position:relative;overflow:hidden;margin:0 -10px;padding:0 }.related-posts .related-item{width:33.33333333%;position:relative;overflow:hidden;float:left;display:block;box-sizing:border-box;padding:0 10px;margin:0 }.related-posts .post-image-link{width:100%;height:130px;position:relative;overflow:hidden;display:block }.related-posts .post-title{font-size:13px;font-weight:600;line-height:1.5em;display:block;margin:7px 0 5px }.related-posts .post-title a{color:$(title.color);transition:color .17s }.related-posts .related-item:hover .post-title a{color:$(title.hover) }.related-posts .post-meta{font-size:12px }#blog-pager{float:left;width:100%;overflow:hidden;clear:both;margin:0 0 30px }.blog-pager a,.blog-pager span{float:left;display:block;min-width:30px;height:30px;background-color:#f2f2f2;color:$(title.color);font-size:13px;font-weight:700;line-height:30px;text-align:center;box-sizing:border-box;padding:0 10px;margin:0 5px 0 0;border-radius:2px;transition:all .17s ease }.blog-pager span.page-dots{min-width:20px;background-color:#fff;font-size:16px;color:$(body.text.color);font-weight:400;line-height:32px;padding:0 }.blog-pager .page-of{display:none;width:auto;float:right;border-color:rgba(0,0,0,0);margin:0 }.blog-pager .page-active,.blog-pager a:hover{background-color:$(main.color);color:#fff;border-color:$(main.color) }.blog-pager .page-prev:before,.blog-pager .page-next:before{font-family:FontAwesome;font-size:11px;font-weight:400 }.blog-pager .page-prev:before{content:'\f053' }.blog-pager .page-next:before{content:'\f054' }.blog-pager .blog-pager-newer-link,.blog-pager .blog-pager-older-link{float:left;display:inline-block;width:auto;padding:0 10px;margin:0 }.blog-pager .blog-pager-older-link{float:right }.archive #blog-pager,.home .blog-pager .blog-pager-newer-link,.home .blog-pager .blog-pager-older-link{display:none }.blog-post-comments{display:none }.blog-post-comments .comments-title{margin:0 0 20px }.comments-system-disqus .comments-title,.comments-system-facebook .comments-title{margin:0 }#comments{margin:0 }#gpluscomments{float:left!important;width:100%!important;margin:0 0 25px!important }#gpluscomments iframe{float:left!important;width:100% }.comments{display:block;clear:both;margin:0;color:$(title.color) }.comments .comment-thread > ol{padding:0 }.comments > h3{font-size:13px;font-weight:400;font-style:italic;padding-top:1px }.comments .comments-content .comment{list-style:none;margin:0;padding:0 0 8px }.comments .comments-content .comment:first-child{padding-top:0 }.facebook-tab,.fb_iframe_widget_fluid span,.fb_iframe_widget iframe{width:100%!important }.comments .item-control{position:static }.comments .avatar-image-container{float:left;overflow:hidden;position:absolute }.comments .avatar-image-container,.comments .avatar-image-container img{height:35px;max-height:35px;width:35px;max-width:35px;border-radius:100% }.comments .comment-block{overflow:hidden;padding:0 0 10px }.comments .comment-block,.comments .comments-content .comment-replies{margin:0 0 0 50px }.comments .comments-content .inline-thread{padding:0 }.comments .comment-actions{float:left;width:100%;position:relative;margin:0 }.comments .comments-content .comment-header{font-size:15px;display:block;overflow:hidden;clear:both;margin:0 0 3px;padding:0 0 5px;border-bottom:1px dashed #d6d6d6 }.comments .comments-content .comment-header a{color:$(title.color);transition:color .17s }.comments .comments-content .comment-header a:hover{color:$(title.hover) }.comments .comments-content .user{font-style:normal;font-weight:700;display:block }.comments .comments-content .icon.blog-author{display:none }.comments .comments-content .comment-content{float:left;font-size:13px;color:#5E5E5E;font-weight:400;text-align:left;line-height:1.4em;margin:5px 0 9px }.comments .comment .comment-actions a{margin-right:5px;padding:2px 5px;color:$(title.color);font-weight:400;background-color:#f2f2f2;font-size:10px;transition:all .17s ease }.comments .comment .comment-actions a:hover{color:#fff;background-color:$(main.color);border-color:$(main.color);text-decoration:none }.comments .comments-content .datetime{float:left;font-size:11px;font-weight:400;color:#aaa;position:relative;padding:0 1px;margin:4px 0 0;display:block }.comments .comments-content .datetime a,.comments .comments-content .datetime a:hover{color:#aaa }.comments .thread-toggle{margin-bottom:4px }.comments .thread-toggle .thread-arrow{height:7px;margin:0 3px 2px 0 }.comments .thread-count a,.comments .continue a{transition:opacity .17s }.comments .thread-count a:hover,.comments .continue a:hover{opacity:.8 }.comments .thread-expanded{padding:5px 0 0 }.comments .thread-chrome.thread-collapsed{display:none }.thread-arrow:before{content:'';font-family:FontAwesome;color:$(title.color);font-weight:400;margin:0 2px 0 0 }.comments .thread-expanded .thread-arrow:before{content:'\f0d7' }.comments .thread-collapsed .thread-arrow:before{content:'\f0da' }.comments .comments-content .comment-thread{margin:0 }.comments .continue a{padding:0 0 0 60px;font-weight:400 }.comments .comments-content .loadmore.loaded{margin:0;padding:0 }.comments .comment-replybox-thread{margin:0 }.comments .comments-content .loadmore,.comments .comments-content .loadmore.loaded{display:none }#comment-editor{margin:0 0 20px }.post-body h1,.post-body h2,.post-body h3,.post-body h4,.post-body h5,.post-body h6{color:$(title.color);font-weight:700;margin:0 0 15px }.post-body h1,.post-body h2{font-size:24px }.post-body h3{font-size:21px }.post-body h4{font-size:18px }.post-body h5{font-size:16px }.post-body h6{font-size:13px }blockquote{font-style:italic;padding:10px;margin:0;border-left:4px solid $(main.color) }blockquote:before,blockquote:after{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;color:#aaa;line-height:1 }blockquote:before{content:'\f10d';margin:0 10px 0 0 }blockquote:after{content:'\f10e';margin:0 0 0 10px }.widget .post-body ul,.widget .post-body ol{line-height:1.5;font-weight:400 }.widget .post-body li{margin:5px 0;padding:0;line-height:1.5 }.post-body ul{padding:0 0 0 20px }.post-body ul li:before{content:"\f105";font-family:FontAwesome;font-size:13px;font-weight:400;margin:0 5px 0 0 }.post-body u{text-decoration:underline }.post-body a{transition:color .17s ease }.post-body strike{text-decoration:line-through }.contact-form{overflow:hidden }.contact-form .widget-title{display:none }.contact-form .contact-form-name{width:calc(50% - 5px) }.contact-form .contact-form-email{width:calc(50% - 5px);float:right }.sidebar .widget{position:relative;overflow:hidden;background-color:#fff;box-sizing:border-box;padding:0;margin:0 0 30px }.sidebar .widget-title{position:relative;float:left;width:100%;height:28px;background-color:$(headline.bg);display:block;margin:0 0 20px }.sidebar .widget-title > h3{display:block;font-size:12px;color:$(headline.color);font-weight:600;line-height:28px;text-transform:uppercase;text-align:center;padding:0 15px;margin:0 }.sidebar .widget-content{float:left;width:100%;margin:0 }ul.social-counter{margin:0 -5px }.social-counter li{float:left;width:16.66%;box-sizing:border-box;padding:0 5px;margin:10px 0 0 }.social-counter li:nth-child(1),.social-counter li:nth-child(2),.social-counter li:nth-child(3),.social-counter li:nth-child(4),.social-counter li:nth-child(5),.social-counter li:nth-child(6){margin-top:0 }.social-counter li a{display:block;height:38px;font-size:16px;color:#fff;text-align:center;line-height:38px;border-radius:2px;transition:opacity .17s }.social-counter li a:hover{opacity:.8 }.list-label li{position:relative;display:block;padding:7px 0;border-top:1px dotted #ebebeb }.list-label li:first-child{padding-top:0;border-top:0 }.list-label li:last-child{padding-bottom:0;border-bottom:0 }.list-label li a{display:block;color:$(title.color);font-size:12px;font-weight:400;text-transform:capitalize;transition:color .17s }.list-label li a:before{content:"\f054";float:left;color:$(title.color);font-weight:400;font-family:FontAwesome;font-size:6px;margin:5px 3px 0 0;transition:color .17s }.list-label li a:hover{color:$(title.hover) }.list-label .label-count{position:relative;float:right;width:16px;height:16px;background-color:$(main.color);color:#fff;font-size:11px;font-weight:400;text-align:center;line-height:16px;border-radius:2px }.cloud-label li{position:relative;float:left;margin:0 5px 5px 0 }.cloud-label li a{display:block;height:26px;background-color:#f2f2f2;color:$(title.color);font-size:12px;line-height:26px;font-weight:400;padding:0 10px;border-radius:2px;transition:all .17s ease }.cloud-label li a:hover{color:#fff;background-color:$(main.color) }.cloud-label .label-count{display:none }.sidebar .FollowByEmail > .widget-title > h3{margin:0 }.FollowByEmail .widget-content{position:relative;overflow:hidden;background-color:$(main.dark.color);text-align:center;font-weight:400;box-sizing:border-box;padding:20px;border-radius:2px;}.FollowByEmail .widget-content > h3{font-size:18px;color:$(headline.color);font-weight:600;text-transform:uppercase;margin:0 0 13px }.FollowByEmail .before-text{font-size:13px;line-height:1.5em;margin:0 0 15px;display:block;padding:0 10px;overflow:hidden }.FollowByEmail .widget-content:after{content:'\f0e0';position:absolute;right:-15px;top:-15px;font-family:FontAwesome;font-size:50px;color:#f0f0f0;transform:rotate(21deg) }.FollowByEmail .follow-by-email-inner{position:relative }.FollowByEmail .follow-by-email-inner .follow-by-email-address{width:100%;height:32px;color:$(title.color);font-size:11px;font-family:inherit;padding:0 10px;margin:0 0 10px;box-sizing:border-box;border:1px solid #f0f0f0;border-radius:2px;transition:ease .17s }.FollowByEmail .follow-by-email-inner .follow-by-email-submit{width:100%;height:32px;font-family:inherit;font-size:11px;color:#fff;background-color:$(main.color);text-transform:uppercase;text-align:center;font-weight:600;cursor:pointer;margin:0;border:0;border-radius:2px;transition:opacity .17s ease }.FollowByEmail .follow-by-email-inner .follow-by-email-submit:hover{opacity:.85 }#ArchiveList ul.flat li{color:$(title.color);font-size:12px;font-weight:400;padding:7px 0;border-bottom:1px dotted #eaeaea }#ArchiveList ul.flat li:first-child{padding-top:0 }#ArchiveList ul.flat li:last-child{padding-bottom:0;border-bottom:0 }#ArchiveList .flat li > a{display:block;color:$(title.color);transition:color .17s }#ArchiveList .flat li > a:hover{color:$(title.hover) }#ArchiveList .flat li > a:before{content:"\f054";float:left;color:#161619;font-weight:400;font-family:FontAwesome;font-size:6px;margin:5px 4px 0 0;display:inline-block;transition:color .17s }#ArchiveList .flat li > a > span{position:relative;float:right;width:16px;height:16px;background-color:$(main.color);color:#fff;font-size:11px;font-weight:400;text-align:center;line-height:16px;border-radius:2px }.PopularPosts .post{overflow:hidden;margin:20px 0 0 }.PopularPosts .post:first-child{padding:0;margin:0;border:0 }.PopularPosts .post-image-link{position:relative;width:80px;height:60px;float:left;overflow:hidden;display:block;vertical-align:middle;margin:0 12px 0 0 }.PopularPosts .post-info{overflow:hidden }.PopularPosts .post-title{font-size:13px;font-weight:600;line-height:1.5em;margin:0 0 3px }.PopularPosts .post-title a{display:block;color:$(title.color);transition:color .17s }.PopularPosts .post:hover .post-title a{color:$(title.hover) }.PopularPosts .post-date:before{font-size:10px }.PopularPosts .post-meta{font-size:12px }.common-widget .FeaturedPost .post-image-link{display:block;position:relative;width:100%;height:180px;overflow:hidden;margin:0 0 10px }.common-widget .FeaturedPost .post-title{font-size:18px;overflow:hidden;font-weight:700;line-height:1.5em;margin:0 0 7px }.common-widget .FeaturedPost .post-title a{color:$(title.color);display:block;transition:color .17s ease }.common-widget .FeaturedPost .post-title a:hover{color:$(title.hover) }.Text{font-size:13px }.contact-form-widget form{font-weight:400 }.contact-form-name{float:left;width:100%;height:30px;font-family:inherit;font-size:13px;line-height:30px;box-sizing:border-box;padding:5px 10px;margin:0 0 10px;border:1px solid #ebebeb;border-radius:2px }.contact-form-email{float:left;width:100%;height:30px;font-family:inherit;font-size:13px;line-height:30px;box-sizing:border-box;padding:5px 10px;margin:0 0 10px;border:1px solid #ebebeb;border-radius:2px }.contact-form-email-message{float:left;width:100%;font-family:inherit;font-size:13px;box-sizing:border-box;padding:5px 10px;margin:0 0 10px;border:1px solid #ebebeb;border-radius:2px }.contact-form-button-submit{float:left;width:100%;height:30px;background-color:$(main.color);font-size:13px;color:#fff;line-height:30px;cursor:pointer;box-sizing:border-box;padding:0 10px;margin:0;border:0;border-radius:2px;transition:background .17s ease }.contact-form-button-submit:hover{background-color:$(main.dark.color) }.contact-form-error-message-with-border{float:left;width:100%;background-color:#fbe5e5;font-size:11px;text-align:center;line-height:11px;padding:3px 0;margin:10px 0;box-sizing:border-box;border:1px solid #fc6262 }.contact-form-success-message-with-border{float:left;width:100%;background-color:#eaf6ff;font-size:11px;text-align:center;line-height:11px;padding:3px 0;margin:10px 0;box-sizing:border-box;border:1px solid #5ab6f9 }.contact-form-cross{margin:0 0 0 3px }.contact-form-error-message,.contact-form-success-message{margin:0 }.BlogSearch .search-input{float:left;width:75%;height:30px;background-color:#fff;font-weight:400;font-size:13px;line-height:30px;box-sizing:border-box;padding:5px 10px;border:1px solid #ebebeb;border-right-width:0;border-radius:2px 0 0 2px }.BlogSearch .search-action{float:right;width:25%;height:30px;font-family:inherit;font-size:13px;line-height:30px;cursor:pointer;box-sizing:border-box;background-color:$(main.color);color:#fff;padding:0 5px;border:0;border-radius:0 2px 2px 0;transition:background .17s ease }.BlogSearch .search-action:hover{background-color:$(main.dark.color) }.Profile .profile-img{float:left;width:80px;height:80px;margin:0 15px 0 0;transition:all .17s ease }.Profile .profile-datablock{margin:0 }.Profile .profile-data .g-profile{display:block;font-size:18px;color:$(title.color);font-weight:700;margin:0 0 5px;transition:color .17s ease }.Profile .profile-data .g-profile:hover{color:$(title.hover) }.Profile .profile-info > .profile-link{color:$(title.color);font-size:11px;margin:5px 0 0;transition:color .17s ease }.Profile .profile-info > .profile-link:hover{color:$(title.hover) }.Profile .profile-datablock .profile-textblock{display:none }.common-widget .LinkList ul li,.common-widget .PageList ul li{width:calc(50% - 5px);padding:7px 0 0 }.common-widget .LinkList ul li:nth-child(odd),.common-widget .PageList ul li:nth-child(odd){float:left }.common-widget .LinkList ul li:nth-child(even),.common-widget .PageList ul li:nth-child(even){float:right }.common-widget .LinkList ul li a,.common-widget .PageList ul li a{display:block;color:$(title.color);font-size:13px;font-weight:400;transition:color .17s ease }.common-widget .LinkList ul li a:hover,.common-widget .PageList ul li a:hover{color:$(title.hover) }.common-widget .LinkList ul li:first-child,.common-widget .LinkList ul li:nth-child(2),.common-widget .PageList ul li:first-child,.common-widget .PageList ul li:nth-child(2){padding:0 }#footer-wrapper{background-color:$(main.dark.color) }#footer-wrapper .container{position:relative;overflow:hidden;margin:0 auto;padding:25px 0 }.footer-widgets-wrap{position:relative;display:flex;margin:0 -15px }#footer-wrapper .footer{display:inline-block;float:left;width:33.33333333%;box-sizing:border-box;padding:0 15px }#footer-wrapper .footer .widget{float:left;width:100%;padding:0;margin:25px 0 0 }#footer-wrapper .footer .Text{margin:10px 0 0 }#footer-wrapper .footer .widget:first-child{margin:0 }.footer .widget > .widget-title {position: relative;float: left;width: 100%;height: 28px;background-color: $(main.color);display: block;margin: 0 0 20px;}.footer .widget > .widget-title > h3{display: block;font-size: 12px;color: $(footer.color);font-weight: 600;line-height: 28px;text-transform: uppercase;text-align: center;padding: 0 15px;margin: 0;}.footer .widget-content {float: left;width: 100%;margin: 0;}.footer .post-image-link{background-color:rgba(255,255,255,0.05) }.footer .custom-widget .post-title a,.footer .PopularPosts .post-title a,.footer .FeaturedPost .post-title a,.footer .LinkList ul li a,.footer .PageList ul li a,.footer .Profile .profile-data .g-profile,.footer .Profile .profile-info > .profile-link{color:$(footer.color) }.footer .custom-widget .post-title a:hover,.footer .PopularPosts .post-title a:hover,.footer .FeaturedPost .post-title a:hover,.footer .LinkList ul li a:hover,.footer .PageList ul li a:hover,.footer .Profile .profile-data .g-profile:hover,.footer .Profile .profile-info > .profile-link:hover{color:$(title.hover) }.footer .no-posts{color:$(footer.color) }.footer .FollowByEmail .widget-content > h3{color:$(footer.color) }.footer .FollowByEmail .widget-content{background-color:rgba(255,255,255,0.05);border-color:rgba(255,255,255,0.05) }.footer .FollowByEmail .before-text,#footer-wrapper .footer .Text{color:#aaa }.footer .FollowByEmail .follow-by-email-inner .follow-by-email-submit:hover{background:$(main.dark.color) }.footer .FollowByEmail .follow-by-email-inner .follow-by-email-address{background-color:rgba(255,255,255,0.05);color:$(footer.color);border-color:rgba(255,255,255,0.05) }.footer #ArchiveList .flat li > a{color:$(footer.color) }.footer .list-label li,.footer .BlogArchive #ArchiveList ul.flat li{border-color:rgba(255,255,255,0.05) }.footer .list-label li:first-child{padding-top:0 }.footer .list-label li a,.footer .list-label li a:before,.footer #ArchiveList .flat li > a,.footer #ArchiveList .flat li > a:before{color:$(footer.color) }.footer .list-label li > a:hover,.footer #ArchiveList .flat li > a:hover{color:$(title.hover) }.footer .list-label .label-count,.footer #ArchiveList .flat li > a > span{background-color:rgba(255,255,255,0.05);color:$(footer.color) }.footer .cloud-label li a{background-color:rgba(255,255,255,0.05);color:$(footer.color) }.footer .cloud-label li a:hover{background-color:$(main.color);color:#fff }.footer .BlogSearch .search-input{background-color:rgba(255,255,255,0.05);color:$(footer.color);border-color:rgba(255,255,255,0.05) }.footer .contact-form-name,.footer .contact-form-email,.footer .contact-form-email-message{background-color:rgba(255,255,255,0.05);color:$(footer.color);border-color:rgba(255,255,255,0.05) }.footer .BlogSearch .search-action:hover,.footer .FollowByEmail .follow-by-email-inner .follow-by-email-submit:hover,.footer .contact-form-button-submit:hover{background-color:rgba(0,0,0,0.3) }#sub-footer-wrapper{background-color:rgba(0,0,0,0.3);color:$(footer.color);display:block;padding:0;width:100%;overflow:hidden }#sub-footer-wrapper .container{overflow:hidden;margin:0 auto;padding:10px 0 }#menu-footer{float:right;position:relative;display:block }#menu-footer .widget > .widget-title{display:none }#menu-footer ul li{float:left;display:inline-block;height:34px;padding:0;margin:0 }#menu-footer ul li a{font-size:12px;font-weight:400;display:block;color:$(footer.color);line-height:34px;padding:0 10px;margin:0 0 0 5px;transition:color .17s ease }#menu-footer ul li:last-child a{padding:0 0 0 5px }#menu-footer ul li a:hover{color:$(title.hover) }#sub-footer-wrapper .copyright-area{font-size:12px;float:left;height:34px;line-height:34px;font-weight:400 }#sub-footer-wrapper .copyright-area a{color:$(main.color);transition:color .17s }.hidden-widgets{display:none;visibility:hidden }.back-top{display:none;z-index:1010;width:32px;height:32px;position:fixed;bottom:25px;right:25px;cursor:pointer;overflow:hidden;font-size:13px;color:#fff;text-align:center;line-height:32px;border-radius:2px }.back-top:before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background-color:$(main.color);opacity:.5;transition:opacity .17s ease }.back-top:after{content:'\f077';position:relative;font-family:FontAwesome;font-weight:400;opacity:.8;transition:opacity .17s ease }.back-top:hover:before,.back-top:hover:after,.nav-active .back-top:after,.nav-active .back-top:before{opacity:1 }.error404 #main-wrapper{width:100%!important;margin:0!important }.error404 #sidebar-wrapper{display:none }.errorWrap{color:$(title.color);text-align:center;padding:80px 0 100px }.errorWrap h3{font-size:160px;line-height:1;margin:0 0 30px }.errorWrap h4{font-size:25px;margin:0 0 20px }.errorWrap p{margin:0 0 10px }.errorWrap a{display:block;color:$(main.color);padding:10px 0 0 }.errorWrap a i{font-size:20px }.errorWrap a:hover{text-decoration:underline }@media screen and (max-width: 1100px) {#outer-wrapper{max-width:100% }.row{width:100% }#header-wrap{padding:0 20px }#header-wrap{height:auto }.header-logo{max-width:30% }.header-ads{max-width:70% }#feat-wrapper{box-sizing:border-box;padding:0 20px }#content-wrapper{position:relative;box-sizing:border-box;padding:0 20px;margin:30px 0 0 }#footer-wrapper .container{box-sizing:border-box;padding:25px 20px }#sub-footer-wrapper .container{box-sizing:border-box;padding:10px 20px }}@media screen and (max-width: 980px) {#header-wrap{padding:0;border:0;}.header-header{height:auto;}#header-wrap .container.row .header-header{width:100%;box-sizing: border-box;padding: 0 20px;}.header-ads{width:100%;max-width:100%;box-sizing:border-box;padding:0 }.header-ads .widget .widget-content{position:relative;padding:20px 0;margin:0 auto }#header-inner a{display:inline-block!important }.mobile-header{display:block }#main-menu,.social-toggle,.header-logo{display:none }.slide-menu-toggle,.mobile-menu{display:block }#content-wrapper > .container{margin:0 }#main-wrapper,#sidebar-wrapper{width:100%;padding:0 }#blog-pager{margin:0 }#sidebar-wrapper{margin:30px 0 0 }}@media screen and (max-width: 880px) {.footer-widgets-wrap{display:block }#footer-wrapper .footer{width:100%;margin-right:0 }#footer-sec2,#footer-sec3{margin-top:25px }}@media screen and (max-width: 680px) {.big-feat .post-image-link{width:100%;margin:0 0 15px }.big-feat .post-info{float:left;width:100% }.index-post{width:100% }#menu-footer,#sub-footer-wrapper .copyright-area{width:100%;height:auto;line-height:inherit;text-align:center }#menu-footer{margin:10px 0 0 }#sub-footer-wrapper .copyright-area{margin:10px 0 }#menu-footer ul li{float:none;height:auto }#menu-footer ul li a{line-height:inherit;margin:0 3px 5px }}@media screen and (max-width: 560px) {.big-feat .post-image-link{height:185px }.big-feat .post-title{font-size:20px }.index-post .post-image-wrap{width:100%;margin:0 0 15px }.index-post .post-info{float:left;width:100% }.share-links li a span{display:none }.share-links li.facebook,.share-links li.twitter{width:32px }ul.related-posts{margin:0 }.related-posts .related-item{width:100%;padding:0;margin:20px 0 0 }.related-posts .item-0{margin:0 }.related-posts .post-image-link{width:80px;height:60px;float:left;margin:0 12px 0 0 }.related-posts .post-title{font-size:13px;overflow:hidden;margin:0 0 5px }.post-reactions{display:none }}@media screen and (max-width: 440px) {.queryMessage{text-align:center }.queryMessage a.show-more{width:100%;margin:10px 0 0 }.item-post h1.post-title{font-size:24px }.about-author{padding:15px }.about-author .avatar-container{width:60px;height:60px }.about-author .author-name{margin:0 0 3px }#comments ol{padding:0 }.errorWrap{padding:70px 0 100px }.errorWrap h3{font-size:120px }}@media screen and (max-width: 360px) {.about-author .avatar-container{width:60px;height:60px }}
]]></b:skin>
<style>
/*-------Typography and ShortCodes-------*/
.firstcharacter{float:left;color:#27ae60;font-size:75px;line-height:60px;padding-top:4px;padding-right:8px;padding-left:3px }.post-body h1,.post-body h2,.post-body h3,.post-body h4,.post-body h5,.post-body h6{margin-bottom:15px;color:#2c3e50 }blockquote{font-style:italic;color:#888;border-left:5px solid #27ae60;margin-left:0;padding:10px 15px }blockquote:before{content:'\f10d';display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-right:10px;color:#888 }blockquote:after{content:'\f10e';display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-left:10px;color:#888 }.button{background-color:#2c3e50;float:left;padding:5px 12px;margin:5px;color:#fff;text-align:center;border:0;cursor:pointer;border-radius:3px;display:block;text-decoration:none;font-weight:400;transition:all .3s ease-out !important;-webkit-transition:all .3s ease-out !important }a.button{color:#fff }.button:hover{background-color:#27ae60;color:#fff }.button.small{font-size:12px;padding:5px 12px }.button.medium{font-size:16px;padding:6px 15px }.button.large{font-size:18px;padding:8px 18px }.small-button{width:100%;overflow:hidden;clear:both }.medium-button{width:100%;overflow:hidden;clear:both }.large-button{width:100%;overflow:hidden;clear:both }.demo:before{content:"\f06e";margin-right:5px;display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;line-height:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale }.download:before{content:"\f019";margin-right:5px;display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;line-height:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale }.buy:before{content:"\f09d";margin-right:5px;display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;line-height:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale }.visit:before{content:"\f14c";margin-right:5px;display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;line-height:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale }.widget .post-body ul,.widget .post-body ol{line-height:1.5;font-weight:400 }.widget .post-body li{margin:5px 0;padding:0;line-height:1.5 }.post-body ul li:before{content:"\f105";margin-right:5px;font-family:fontawesome }pre{font-family:Monaco, "Andale Mono", "Courier New", Courier, monospace;background-color:#2c3e50;background-image:-webkit-linear-gradient(rgba(0, 0, 0, 0.05) 50%, transparent 50%, transparent);background-image:-moz-linear-gradient(rgba(0, 0, 0, 0.05) 50%, transparent 50%, transparent);background-image:-ms-linear-gradient(rgba(0, 0, 0, 0.05) 50%, transparent 50%, transparent);background-image:-o-linear-gradient(rgba(0, 0, 0, 0.05) 50%, transparent 50%, transparent);background-image:linear-gradient(rgba(0, 0, 0, 0.05) 50%, transparent 50%, transparent);-webkit-background-size:100% 50px;-moz-background-size:100% 50px;background-size:100% 50px;line-height:25px;color:#f1f1f1;position:relative;padding:0 7px;margin:15px 0 10px;overflow:hidden;word-wrap:normal;white-space:pre;position:relative }pre:before{content:'Code';display:block;background:#F7F7F7;margin-left:-7px;margin-right:-7px;color:#2c3e50;padding-left:7px;font-weight:400;font-size:14px }pre code,pre .line-number{display:block }pre .line-number a{color:#27ae60;opacity:0.6 }pre .line-number span{display:block;float:left;clear:both;width:20px;text-align:center;margin-left:-7px;margin-right:7px }pre .line-number span:nth-child(odd){background-color:rgba(0, 0, 0, 0.11) }pre .line-number span:nth-child(even){background-color:rgba(255, 255, 255, 0.05) }pre .cl{display:block;clear:both }#contact{background-color:#fff;margin:30px 0 !important }#contact .contact-form-widget{max-width:100% !important }#contact .contact-form-name,#contact .contact-form-email,#contact .contact-form-email-message{background-color:#FFF;border:1px solid #eee;border-radius:3px;padding:10px;margin-bottom:10px !important;max-width:100% !important }#contact .contact-form-name{width:47.7%;height:50px }#contact .contact-form-email{width:49.7%;height:50px }#contact .contact-form-email-message{height:150px }#contact .contact-form-button-submit{max-width:100%;width:100%;z-index:0;margin:4px 0 0;padding:10px !important;text-align:center;cursor:pointer;background:#27ae60;border:0;height:auto;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;text-transform:uppercase;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-o-transition:all .2s ease-out;-ms-transition:all .2s ease-out;transition:all .2s ease-out;color:#FFF }#contact .contact-form-button-submit:hover{background:#2c3e50 }#contact .contact-form-email:focus,#contact .contact-form-name:focus,#contact .contact-form-email-message:focus{box-shadow:none !important }.alert-message{position:relative;display:block;background-color:#FAFAFA;padding:20px;margin:20px 0;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;color:#2f3239;border:1px solid }.alert-message p{margin:0 !important;padding:0;line-height:22px;font-size:13px;color:#2f3239 }.alert-message span{font-size:14px !important }.alert-message i{font-size:16px;line-height:20px }.alert-message.success{background-color:#f1f9f7;border-color:#e0f1e9;color:#1d9d74 }.alert-message.success a,.alert-message.success span{color:#1d9d74 }.alert-message.alert{background-color:#DAEFFF;border-color:#8ED2FF;color:#378FFF }.alert-message.alert a,.alert-message.alert span{color:#378FFF }.alert-message.warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b }.alert-message.warning a,.alert-message.warning span{color:#8a6d3b }.alert-message.error{background-color:#FFD7D2;border-color:#FF9494;color:#F55D5D }.alert-message.error a,.alert-message.error span{color:#F55D5D }.fa-check-circle:before{content:"\f058"}.fa-info-circle:before{content:"\f05a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-exclamation-circle:before{content:"\f06a"}.post-table table{border-collapse:collapse;width:100% }.post-table th{background-color:#eee;font-weight:bold }.post-table th,.post-table td{border:0.125em solid #333;line-height:1.5;padding:0.75em;text-align:left }@media (max-width: 30em){.post-table thead tr{position:absolute;top:-9999em;left:-9999em }.post-table tr{border:0.125em solid #333;border-bottom:0 }.post-table tr + tr{margin-top:1.5em }.post-table tr,.post-table td{display:block }.post-table td{border:none;border-bottom:0.125em solid #333;padding-left:50% }.post-table td:before{content:attr(data-label);display:inline-block;font-weight:bold;line-height:1.5;margin-left:-100%;width:100% }}@media (max-width: 20em){.post-table td{padding-left:0.75em }.post-table td:before{display:block;margin-bottom:0.75em;margin-left:0 }}.FollowByEmail {clear: both;}.widget .post-body ol {padding: 0 0 0 15px;}.post-body ul li {list-style: none;}
</style>
<b:if cond='data:view.isLayoutMode'>
<b:template-skin>
<![CDATA[
/*------Layout (No Edit)----------*/
body#layout #outer-wrapper,body#layout .row{width:auto;padding:0 }body#layout{width:800px;position:relative;padding:95px 5px 0;margin:0 }body#layout div.section{margin:0 5px 10px!important;padding:16px 16px 18px!important }body#layout .section h4{font-size:14px;margin:0 }body#layout .layout-widget-description{display:none }body#layout .theme-options,body#layout #main-menu .widget{display:block!important }body#layout div.sora-panel{background-color:#d7d7d7!important;overflow:hidden!important;border-color:#bcbcbc }body#layout .big-feat.no-items {display: block;}body#layout .sora-panel .widget{float:left;width:49%;margin-right:2% }body#layout .sora-panel #LinkList71{margin-right:0 }body#layout #header-wrap{height:auto }body#layout .header-header{float:left;width:100%;height:auto;padding:0 }body#layout .header-header .container{display:flex }body#layout div.header-logo,body#layout div.header-ads{float:left;width:44.5%;height:auto;max-width:none;max-height:none }body#layout .header-ads .widget-content{width:auto }body#layout .header-ads .add_widget{padding:15px!important }body#layout .mobile-header{display:block;float:right;width:33.33%;height:auto }body#layout .mobile-menu{display:none }body#layout .header-menu{display:flex;float:left;width:100%;height:auto }body#layout #social-menu{position:relative;display:block;width:30%;height:auto }body#layout #main-menu{width:30%;height:auto }body#layout #hot-wrapper .widget{display:block }body#layout #content-wrapper{margin:0 }body#layout #content-wrapper > .container{display:flex;margin:0 }body#layout #main-wrapper{width:66.66%;padding:0 }body#layout .home-ad .widget .widget-content{width:auto;margin:0 }body#layout #sidebar-wrapper{width:33.33%;padding:0 }body#layout .sidebar .widget,body#layout .sidebar .widget-content, body#layout .footer .widget-content{float:none;width:auto;overflow:visible }body#layout .footer-widgets-wrap{display:flex;max-width:100%;margin:0 }body#layout .footer-widgets-wrap div.footer{width:100% }body#layout #home-ad{display:block;}
/*------Layout (end)----------*/
]]></b:template-skin>
</b:if>
<!-- Global Variables -->
<script type='text/javascript'>
//<![CDATA[
// Global variables with content. "Available for Edit"
var monthFormat = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
noThumbnail = "https://4.bp.blogspot.com/-O3EpVMWcoKw/WxY6-6I4--I/AAAAAAAAB2s/KzC0FqUQtkMdw7VzT6oOR_8vbZO6EJc-ACK4BGAYYCw/w680/nth.png",
postPerPage = 7,
fixedSidebar = true,
commentsSystem = "blogger",
disqusShortname = "soratemplates";
//]]>
</script>
<b:defaultmarkups>
<b:defaultmarkup type='Common'>
<b:includable id='widget-title'>
<b:if cond='data:defaultTitle or data:title'>
<div class='widget-title'>
<h3 class='title'>
<data:title/>
</h3>
</div>
</b:if>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='PopularPosts'>
<b:includable id='main' var='this'>
<b:include name='widget-title'/>
<div class='widget-content'>
<b:loop values='data:posts' var='post'>
<b:include data='post' name='postContent'/>
</b:loop>
</div>
</b:includable>
<b:includable id='postContent' var='post'>
<div class='post'>
<div class='post-content'>
<a class='post-image-link' expr:href='data:post.url'>
<b:if cond='data:post.featuredImage'>
<img class='post-thumb' expr:alt='data:post.title' expr:src='data:post.featuredImage resizeImage 680'/>
<b:else/>
<img class='post-thumb' expr:alt='data:post.title' src='https://4.bp.blogspot.com/-O3EpVMWcoKw/WxY6-6I4--I/AAAAAAAAB2s/KzC0FqUQtkMdw7VzT6oOR_8vbZO6EJc-ACK4BGAYYCw/w680/nth.png'/>
</b:if>
</a>
<div class='post-info'>
<h2 class='post-title'>
<a expr:href='data:post.url'><data:post.title/></a>
</h2>
<div class='post-meta'>
<span class='post-date published' expr:datetime='data:post.date.iso8601'><data:post.date/></span>
</div>
</div>
</div>
</div>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='Header'>
<b:includable id='main' var='this'>
<div class='header-widget'>
<b:include cond='data:imagePlacement in {"REPLACE", "BEFORE_DESCRIPTION"}' name='image'/>
<b:include cond='data:imagePlacement == "BEHIND"' name='title'/>
</div>
</b:includable>
<b:includable id='image'>
<a class='header-image-wrapper' expr:href='data:blog.homepageUrl'>
<img expr:alt='data:blog.title.escaped' expr:data-height='data:height' expr:data-width='data:width' expr:src='data:image'/>
</a>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='FeaturedPost'>
<b:includable id='main' var='this'>
<b:include name='widget-title'/>
<div class='widget-content'>
<b:loop values='data:posts' var='post'>
<b:include data='post' name='postContent'/>
</b:loop>
</div>
</b:includable>
<b:includable id='postContent' var='post'>
<div class='post'>
<div class='post-content'>
<b:if cond='data:widget.sectionId == "feat-section"'>
<a class='post-image-link' expr:href='data:post.url'>
<b:if cond='data:post.featuredImage'>
<img class='post-thumb' expr:alt='data:post.title' expr:src='data:post.featuredImage resizeImage 680'/>
<b:else/>
<img class='post-thumb' expr:alt='data:post.title' src='https://4.bp.blogspot.com/-O3EpVMWcoKw/WxY6-6I4--I/AAAAAAAAB2s/KzC0FqUQtkMdw7VzT6oOR_8vbZO6EJc-ACK4BGAYYCw/w680/nth.png'/>
</b:if>
</a>
<div class='post-info'>
<h2 class='post-title'>
<a expr:href='data:post.url'><data:post.title/></a>
</h2>
<div class='post-meta'>
<span class='post-author'><a expr:href='data:post.author.profileUrl' expr:title='data:post.author.name' target='_blank'><data:post.author.name/></a></span><span class='post-date published' expr:datetime='data:post.date.iso8601'><data:post.date/></span>
</div>
<p class='post-snippet'><b:eval expr='data:post.snippets.long snippet { length: 208 }'/></p>
<b:if cond='data:blog.jumpLinkMessage != "hide"'>
<a class='read-more' expr:href='data:post.url'><data:blog.jumpLinkMessage/></a>
</b:if>
</div>
<b:else/>
<a class='post-image-link' expr:href='data:post.url'>
<b:if cond='data:post.featuredImage'>
<img class='post-thumb' expr:alt='data:post.title' expr:src='data:post.featuredImage resizeImage 680'/>
<b:else/>
<img class='post-thumb' expr:alt='data:post.title' src='https://4.bp.blogspot.com/-O3EpVMWcoKw/WxY6-6I4--I/AAAAAAAAB2s/KzC0FqUQtkMdw7VzT6oOR_8vbZO6EJc-ACK4BGAYYCw/w680/nth.png'/>
</b:if>
</a>
<div class='post-info'>
<h2 class='post-title'>
<a expr:href='data:post.url'><data:post.title/></a>
</h2>
<div class='post-meta'>
<span class='post-author'><a expr:href='data:post.author.profileUrl' expr:title='data:post.author.name' target='_blank'><data:post.author.name/></a></span><span class='post-date published' expr:datetime='data:post.date.iso8601'><data:post.date/></span>
</div>
<p class='post-snippet'><b:eval expr='data:post.snippets.short snippet { length: 100 }'/></p>
<b:if cond='data:blog.jumpLinkMessage != "hide"'>
<a class='read-more' expr:href='data:post.url'><data:blog.jumpLinkMessage/></a>
</b:if>
</div>
</b:if>
</div>
</div>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='Label'>
<b:includable id='main' var='this'>
<b:include name='widget-title'/>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<b:class expr:name='data:this.display + "-label"'/>
<b:include cond='data:this.display == "list"' name='list'/>
<b:include cond='data:this.display == "cloud"' name='list'/>
</div>
</b:includable>
<b:includable id='list'>
<ul>
<b:loop values='data:labels' var='label'>
<li>
<a class='label-name' expr:href='data:label.url'>
<data:label.name/>
<b:if cond='data:this.showFreqNumbers'>
<span class='label-count'><data:label.count/></span>
</b:if>
</a>
</li>
</b:loop>
</ul>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='FollowByEmail'>
<b:includable id='main' var='this'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<b:if cond='data:defaultTitle or data:title'>
<h3 class='title'>
<data:title/>
</h3>
</b:if>
<span class='before-text'><data:skin.vars.followByEmail/></span>
<div class='follow-by-email-inner'>
<form action='https://feedburner.google.com/fb/a/mailverify' expr:onsubmit='"window.open(\"https://feedburner.google.com/fb/a/mailverify?uri=" + data:feedPath + "\", \"popupwindow\", \"scrollbars=yes,width=550,height=520\"); return true"' method='post' target='popupwindow'>
<input autocomplete='off' class='follow-by-email-address' expr:placeholder='data:messages.emailAddress' name='email' type='email'/>
<input class='follow-by-email-submit' expr:value='data:messages.subscribe' type='submit'/>
<input expr:value='data:feedPath' name='uri' type='hidden'/>
<input name='loc' type='hidden' value='en_US'/>
</form>
</div>
</div>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='BlogSearch'>
<b:includable id='main' var='this'>
<b:include name='widget-title'/>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content' role='search'>
<form class='search-form' expr:action='data:blog.searchUrl'>
<b:attr cond='not data:view.isPreview' name='target' value='_top'/>
<b:include name='urlParamsAsFormInput'/>
<input autocomplete='off' class='search-input' expr:aria-label='data:messages.searchThisBlog' expr:placeholder='data:messages.searchThisBlog' expr:value='data:view.isSearch ? data:view.search.query.escaped : ""' name='q'/>
<input class='search-action' expr:value='data:messages.search.escaped' type='submit'/>
</form>
</div>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='BlogArchive'>
<b:includable id='main' var='this'>
<b:include name='widget-title'/>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<div id='ArchiveList'>
<div expr:id='data:widget.instanceId + "_ArchiveList"'>
<b:include cond='data:this.style in {"FLAT", "MENU", "HIERARCHY"}' name='flat'/>
</div>
</div>
</div>
</b:includable>
<b:includable id='flat'>
<ul class='flat'>
<b:loop values='data:data' var='i'>
<li class='archivedate'>
<a expr:href='data:i.url'>
<data:i.name/><span class='post-count'><data:i.post-count/></span>
</a>
</li>
</b:loop>
</ul>
</b:includable>
</b:defaultmarkup>
</b:defaultmarkups>
<!-- Google Analytics -->
<b:include data='blog' name='google-analytics'/>
</head>
<body expr:class='data:blog.pageType'>
<b:class cond='data:view.isHomepage' name='home'/>
<b:class cond='data:view.isPage' name='item'/>
<b:class cond='data:view.isArchive' name='index'/>
<b:class cond='data:view.isError' name='error404'/>
<!-- Theme Options -->
<div class='theme-options' style='display:none'>
<b:section class='sora-panel' id='sora-panel' maxwidgets='1' name='Theme Options' showaddelement='no'>
<b:widget id='LinkList70' locked='true' title='Full-Width Version' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='text-1'>recentPostsHeadline</b:widget-setting>
<b:widget-setting name='link-1'>true</b:widget-setting>
<b:widget-setting name='text-0'>fullWidth</b:widget-setting>
<b:widget-setting name='link-0'>fasle</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<style type='text/css'>
<b:loop values='data:links' var='link'>
<b:if cond='data:link.name == "fullWidth"'>
<b:if cond='data:link.target == "true"'>
#outer-wrapper{max-width:none}
</b:if>
</b:if>
</b:loop>
</style>
</b:includable>
</b:widget>
<b:widget id='LinkList71' locked='true' title='Default Variables' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='link-3'>6</b:widget-setting>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='link-4'>5</b:widget-setting>
<b:widget-setting name='text-1'>commentsSystem</b:widget-setting>
<b:widget-setting name='link-1'>blogger</b:widget-setting>
<b:widget-setting name='text-0'>disqusShortname</b:widget-setting>
<b:widget-setting name='link-2'>true</b:widget-setting>
<b:widget-setting name='text-3'>postPerPage</b:widget-setting>
<b:widget-setting name='link-0'>soratemplates</b:widget-setting>
<b:widget-setting name='text-2'>fixedSidebar</b:widget-setting>
<b:widget-setting name='text-4'>postPerPage</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<script type='text/javascript'>
//<![CDATA[
<b:loop values='data:links' var='link'>
<b:if cond='data:link.name == "postPerPage"'>
var postPerPage = <data:link.target/>;
</b:if>
<b:if cond='data:link.name == "fixedSidebar"'>
var fixedSidebar = <data:link.target/>;
</b:if>
<b:if cond='data:link.name == "commentsSystem"'>
var commentsSystem = "<data:link.target/>";
</b:if>
<b:if cond='data:link.name == "disqusShortname"'>
var disqusShortname = "<data:link.target/>";
</b:if>
</b:loop>
//]]>
</script>
</b:includable>
</b:widget>
</b:section>
</div>
<!-- Outer Wrapper -->
<div id='outer-wrapper'>
<!-- Header Wrapper -->
<div id='header-wrap'>
<div class='container row'>
<div class='header-header'>
<b:section class='header-logo' id='header-logo' maxwidgets='1' name='Header Logo' showaddelement='yes'>
<b:widget id='Header1' locked='true' title='Abdul Muttaqin (Header)' type='Header' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://2.bp.blogspot.com/-KmVUBk9VDPs/XlePrJd0K7I/AAAAAAAAE8c/oe-1mxhVDgMKU5Uzy847Pq2v2Ypxk31qQCK4BGAYYCw/s1600/1582796608-picsay.png</b:widget-setting>
<b:widget-setting name='displayHeight'>481</b:widget-setting>
<b:widget-setting name='sectionWidth'>390</b:widget-setting>
<b:widget-setting name='useImage'>true</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='imagePlacement'>REPLACE</b:widget-setting>
<b:widget-setting name='displayWidth'>1600</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='this'>
<div class='header-widget'>
<b:include cond='data:imagePlacement in {"REPLACE", "BEFORE_DESCRIPTION"}' name='image'/>
<b:include cond='data:imagePlacement == "BEHIND"' name='title'/>
</div>
</b:includable>
<b:includable id='behindImageStyle'>
<b:if cond='data:sourceUrl'>
<b:include cond='data:this.image' data='{ image: data:this.image, selector: ".header-widget" }' name='responsiveImageStyle'/>
<style type='text/css'>
.header-widget {
background-position: <data:blog.locale.languageAlignment/>;
background-repeat: no-repeat;
}
</style>
</b:if>
</b:includable>
<b:includable id='description'>
<p>
<data:this.description/>
</p>
</b:includable>
<b:includable id='image'>
<a class='header-image-wrapper' expr:href='data:blog.homepageUrl'>
<img expr:alt='data:blog.title.escaped' expr:data-height='data:height' expr:data-width='data:width' expr:src='data:image'/>
</a>
</b:includable>
<b:includable id='title'>
<h1>
<b:tag cond='data:view.url != data:blog.homepageUrl' expr:href='data:blog.homepageUrl' name='a'>
<data:title/>
</b:tag>
</h1>
</b:includable>
</b:widget>
</b:section>
<b:section class='header-ads' id='header-ads' maxwidgets='1' name='Header Ads 728x90' showaddelement='yes'/>
</div>
<div class='header-menu'>
<div class='mobile-menu'/>
<span class='slide-menu-toggle'/>
<span class='social-toggle'/>
<b:section class='social-menu' id='social-menu' maxwidgets='1' name='Social Menu' showaddelement='yes'>
<b:widget id='LinkList73' locked='true' title='Link List' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='link-3'>#</b:widget-setting>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='link-4'>#</b:widget-setting>
<b:widget-setting name='text-1'>twitter</b:widget-setting>
<b:widget-setting name='link-1'>#</b:widget-setting>
<b:widget-setting name='text-0'>facebook</b:widget-setting>
<b:widget-setting name='link-2'>#</b:widget-setting>
<b:widget-setting name='text-3'>pinterest</b:widget-setting>
<b:widget-setting name='link-0'>#</b:widget-setting>
<b:widget-setting name='text-2'>gplus</b:widget-setting>
<b:widget-setting name='text-4'>instagram</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<ul class='social'>
<b:loop values='data:links' var='link'>
<li expr:class='data:link.name'><a expr:href='data:link.target' target='_blank'/></li>
</b:loop>
</ul>
</b:includable>
</b:widget>
</b:section>
<b:section class='main-menu' id='main-menu' maxwidgets='1' name='Main Menu' showaddelement='yes'>
<b:widget id='LinkList74' locked='true' title='Link List' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='link-5'>https://wa.me/6289614737919</b:widget-setting>
<b:widget-setting name='link-3'>/search/label/JavaScript</b:widget-setting>
<b:widget-setting name='link-4'>#</b:widget-setting>
<b:widget-setting name='text-1'>Source Code</b:widget-setting>
<b:widget-setting name='text-0'>Home</b:widget-setting>
<b:widget-setting name='text-3'>_JavaScript</b:widget-setting>
<b:widget-setting name='text-2'>_PHP</b:widget-setting>
<b:widget-setting name='text-5'>_WhatsApp</b:widget-setting>
<b:widget-setting name='text-4'>Contact Me</b:widget-setting>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='link-1'>#</b:widget-setting>
<b:widget-setting name='link-2'>/search/label/PHP</b:widget-setting>
<b:widget-setting name='link-0'>/</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<ul id='main-menu-nav' role='menubar'><b:loop values='data:links' var='link'><li><a expr:href='data:link.target' role='menuitem'><data:link.name/></a></li></b:loop></ul>
</b:includable>
</b:widget>
</b:section>
<div class='mobile-header'>
<b:section class='mobile-logo' id='mobile-logo' maxwidgets='1' name='Mobile Logo' showaddelement='yes'>
<b:widget id='Image70' locked='true' title='Mobile Logo' type='Image' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://2.bp.blogspot.com/-KMlFLeN499U/XlePjrjivfI/AAAAAAAAE8U/lWZY1Cs49s0BgNAxeGhN7z1TG7K_RFzIQCK4BGAYYCw/s1600/1582796608-picsay.png</b:widget-setting>
<b:widget-setting name='displayHeight'>481</b:widget-setting>
<b:widget-setting name='sectionWidth'>244</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='displayWidth'>1600</b:widget-setting>
<b:widget-setting name='link'>SuperFast</b:widget-setting>
<b:widget-setting name='caption'>text</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='logo-content'>
<b:if cond='data:caption == "image"'>
<a expr:href='data:blog.homepageUrl'><img expr:alt='data:blog.title' expr:src='data:sourceUrl'/></a>
<b:elseif cond='data:caption == "custom"'/>
<b:if cond='data:link'>
<h3><a expr:href='data:blog.homepageUrl'><data:link/></a></h3>
</b:if>
<b:else/>
<h3><a expr:href='data:blog.homepageUrl'><data:blog.title/></a></h3>
</b:if>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
<div id='nav-search'>
<form class='search-form' expr:action='data:blog.searchUrl' role='search'>
<input autocomplete='off' class='search-input' expr:placeholder='data:messages.searchThisBlog' name='q' type='search' value=''/>
<span class='hide-search'/>
</form>
</div>
<span class='show-search'/>
</div>
</div>
</div>
<div class='clearfix'/>
<b:if cond='data:view.isHomepage'>
<!-- Featured Wrapper -->
<div class='row' id='feat-wrapper'>
</div>
<div class='clearfix'/>
</b:if>
<!-- Content Wrapper -->
<div class='row' id='content-wrapper'>
<div class='container'>
<!-- Main Wrapper -->
<div id='main-wrapper'>
<b:if cond='data:view.isHomepage'>
<b:section class='home-ad' id='home-ad' maxwidgets='1' name='Ad Below First Post' showaddelement='yes'/>
</b:if>
<b:section class='main' id='main' maxwidgets='1' name='Main Posts' showaddelement='yes'>
<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='commentLabel'>Comments</b:widget-setting>
<b:widget-setting name='showShareButtons'>true</b:widget-setting>
<b:widget-setting name='authorLabel'>by</b:widget-setting>
<b:widget-setting name='disableGooglePlusShare'>true</b:widget-setting>
<b:widget-setting name='style.unittype'>TextAndImage</b:widget-setting>
<b:widget-setting name='timestampLabel'/>
<b:widget-setting name='reactionsLabel'>Reactions</b:widget-setting>
<b:widget-setting name='showAuthorProfile'>true</b:widget-setting>
<b:widget-setting name='style.layout'>1x1</b:widget-setting>
<b:widget-setting name='showLocation'>false</b:widget-setting>
<b:widget-setting name='showTimestamp'>true</b:widget-setting>
<b:widget-setting name='postsPerAd'>1</b:widget-setting>
<b:widget-setting name='style.bordercolor'>#000000</b:widget-setting>
<b:widget-setting name='backlinksLabel'>Related Posts</b:widget-setting>
<b:widget-setting name='showDateHeader'>false</b:widget-setting>
<b:widget-setting name='style.textcolor'>#000000</b:widget-setting>
<b:widget-setting name='showCommentLink'>true</b:widget-setting>
<b:widget-setting name='style.urlcolor'>#000000</b:widget-setting>
<b:widget-setting name='showAuthor'>true</b:widget-setting>
<b:widget-setting name='style.linkcolor'>#000000</b:widget-setting>
<b:widget-setting name='style.bgcolor'>#000000</b:widget-setting>
<b:widget-setting name='showLabels'>true</b:widget-setting>
<b:widget-setting name='postLabelsLabel'>Tags</b:widget-setting>
<b:widget-setting name='showBacklinks'>true</b:widget-setting>
<b:widget-setting name='showInlineAds'>false</b:widget-setting>
<b:widget-setting name='showReactions'>false</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='this'>
<b:include name='searchMessage'/>
<div class='blog-posts hfeed container'>
<b:class cond='data:view.isMultipleItems' name='index-post-wrap'/>
<b:class cond='data:view.isSingleItem' name='item-post-wrap'/>
<b:tag class='grid-posts' cond='data:view.isMultipleItems' name='div'>
<b:loop index='i' values='data:posts' var='post'>
<b:include data='post' name='postCommentsAndAd'/>
</b:loop>
</b:tag>
</div>
<b:include cond='data:view.isMultipleItems' name='indexBlogPager'/>
<b:include name='feedLinks'/>
</b:includable>
<b:includable id='aboutPostAuthor'>
<div class='about-author'>
<div class='avatar-container'>
<b:if cond='data:post.author.authorPhoto.image'>
<img class='author-avatar' expr:alt='data:post.author.name' expr:src='data:post.author.authorPhoto.image resizeImage 100'/>
<b:else/>
<img class='author-avatar' expr:alt='data:post.author.name' src='https://4.bp.blogspot.com/-uCjYgVFIh70/VuOLn-mL7PI/AAAAAAAADUs/Kcu9wJbv790hIo83rI_s7lLW3zkLY01EA/s100/avatar.png'/>
</b:if>
</div>
<h3 class='author-name'>
<span><data:messages.postedBy/></span><a expr:alt='data:post.author.name' expr:href='data:post.author.profileUrl' target='_blank'> <data:post.author.name/></a>
</h3>
<span class='author-description'><data:post.author.aboutMe/></span>
</div>
</b:includable>
<b:includable id='addComments'>
<a expr:href='data:post.commentsUrl' expr:onclick='data:post.commentsUrlOnclick'>
<b:message name='messages.postAComment'/>
</a>
</b:includable>
<b:includable id='backLinks' var='post'>
<b:comment>Disabled</b:comment>
</b:includable>
<b:includable id='blogThisShare'>
<b:with value='"window.open(this.href, \"_blank\", \"height=270,width=475\"); return false;"' var='onclick'>
<b:include name='platformShare'/>
</b:with>
</b:includable>
<b:includable id='bylineByName' var='byline'>
<b:switch var='data:byline.name'>
<b:case value='share'/>
<b:include cond='data:post.shareUrl' name='postShareButtons'/>
<b:case value='comments'/>
<b:include cond='data:post.allowComments' name='postCommentsLink'/>
<b:case value='location'/>
<b:include cond='data:post.location' name='postLocation'/>
<b:case value='timestamp'/>
<b:include cond='not data:view.isPage' name='postTimestamp'/>
<b:case value='author'/>
<b:include name='postAuthor'/>
<b:case value='labels'/>
<b:include cond='data:post.labels' name='postLabels'/>
<b:case value='icons'/>
<b:include cond='data:post.emailPostUrl' name='emailPostIcon'/>
<b:case value='reactions'/>
<b:include cond='data:post.reactionsUrl' name='postReactions'/>
</b:switch>
</b:includable>
<b:includable id='bylineRegion' var='regionItems'>
<b:loop values='data:regionItems' var='byline'>
<b:include data='byline' name='bylineByName'/>
</b:loop>
</b:includable>
<b:includable id='commentAuthorAvatar'>
<div class='avatar-image-container'>
<img class='author-avatar' expr:src='data:comment.authorAvatarSrc' height='45' width='45'/>
</div>
</b:includable>
<b:includable id='commentDeleteIcon' var='comment'>
<span expr:class='"item-control " + data:comment.adminClass'>
<b:if cond='data:showCmtPopup'>
<div class='goog-toggle-button'>
<div class='goog-inline-block comment-action-icon'/>
</div>
<b:else/>
<a class='comment-delete' expr:href='data:comment.deleteUrl' expr:title='data:messages.deleteComment'>
<img src='https://resources.blogblog.com/img/icon_delete13.gif'/>
</a>
</b:if>
</span>
</b:includable>
<b:includable id='commentForm' var='post'>
<div class='comment-form'>
<a name='comment-form'/>
<b:if cond='data:this.messages.blogComment != ""'>
<p><data:this.messages.blogComment/></p>
</b:if>
<b:include data='post' name='commentFormIframeSrc'/>
<iframe allowtransparency='allowtransparency' class='blogger-iframe-colorize blogger-comment-from-post' expr:height='data:cmtIframeInitialHeight ?: "90px"' frameborder='0' id='comment-editor' name='comment-editor' src='' width='100%'/>
<data:post.cmtfpIframe/>
<script type='text/javascript'>
BLOG_CMT_createIframe('<data:post.appRpcRelayPath/>');
</script>
</div>
</b:includable>
<b:includable id='commentFormIframeSrc' var='post'>
<a expr:href='data:post.commentFormIframeSrc + "&skin=contempo"' id='comment-editor-src'/>
</b:includable>
<b:includable id='commentItem' var='comment'>
<div class='comment' expr:id='"c" + data:comment.id'>
<b:include cond='data:blog.enabledCommentProfileImages' name='commentAuthorAvatar'/>
<div class='comment-block'>
<div class='comment-author'>
<b:if cond='data:comment.authorUrl'>
<b:message name='messages.authorSaidWithLink'>
<b:param expr:value='data:comment.author' name='authorName'/>
<b:param expr:value='data:comment.authorUrl' name='authorUrl'/>
</b:message>
<b:else/>
<b:message name='messages.authorSaid'>
<b:param expr:value='data:comment.author' name='authorName'/>
</b:message>
</b:if>
</div>
<div expr:class='"comment-body" + (data:comment.isDeleted ? " deleted" : "")'>
<data:comment.body/>
</div>
<div class='comment-footer'>
<span class='comment-timestamp'>
<a expr:href='data:comment.url' title='comment permalink'>
<data:comment.timestamp/>
</a>
<b:include data='comment' name='commentDeleteIcon'/>
</span>
</div>
</div>
</div>
</b:includable>
<b:includable id='commentList' var='comments'>
<div id='comments-block'>
<b:loop values='data:comments' var='comment'>
<b:include data='comment' name='commentItem'/>
</b:loop>
</div>
</b:includable>
<b:includable id='commentPicker' var='post'>
<b:if cond='data:post.allowComments'>
<div class='title-wrap comments-title'>
<h3><data:messages.postAComment/></h3>
</div>
</b:if>
<b:if cond='data:post.commentSource == 1'>
<b:include data='post' name='iframeComments'/>
<b:elseif cond='data:post.showThreadedComments'/>
<b:include data='post' name='threadedComments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:includable>
<b:includable id='comments' var='post'>
<section expr:class='"comments" + (data:post.embedCommentForm ? " embed" : "")' expr:data-num-comments='data:post.numberOfComments' id='comments'>
<a name='comments'/>
<b:if cond='data:post.allowComments'>
<b:include name='commentsTitle'/>
<div expr:id='data:widget.instanceId + "_comments-block-wrapper"'>
<b:include cond='data:post.comments' data='post.comments' name='commentList'/>
</div>
<b:if cond='data:post.commentPagingRequired'>
<div class='paging-control-container'>
<b:if cond='data:post.hasOlderLinks'>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.oldestLinkUrl'>
<data:messages.oldest/>
</a>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.olderLinkUrl'>
<data:messages.older/>
</a>
</b:if>
<span class='comment-range-text'>
<data:post.commentRangeText/>
</span>
<b:if cond='data:post.hasNewerLinks'>
<a expr:class='data:post.newLinkClass' expr:href='data:post.newerLinkUrl'>
<data:messages.newer/>
</a>
<a expr:class='data:post.newLinkClass' expr:href='data:post.newestLinkUrl'>
<data:messages.newest/>
</a>
</b:if>
</div>
</b:if>
<div class='footer'>
<b:if cond='data:post.embedCommentForm'>
<b:if cond='data:post.allowNewComments'>
<b:include data='post' name='commentForm'/>
<b:else/>
<data:post.noNewCommentsText/>
</b:if>
<b:else/>
<b:if cond='data:post.allowComments'>
<b:include data='post' name='addComments'/>
</b:if>
</b:if>
</div>
</b:if>
<b:if cond='data:showCmtPopup'>
<div id='comment-popup'>
<iframe allowtransparency='allowtransparency' frameborder='0' id='comment-actions' name='comment-actions' scrolling='no'>
</iframe>
</div>
</b:if>
</section>
</b:includable>
<b:includable id='commentsLink'>
<a class='comment-link' expr:href='data:post.commentsUrl' expr:onclick='data:post.commentsUrlOnclick'>
<b:if cond='data:post.numberOfComments > 0'>
<b:message name='messages.numberOfComments'>
<b:param expr:value='data:post.numberOfComments' name='numComments'/>
</b:message>
<b:else/>
<data:messages.postAComment/>
</b:if>
</a>
</b:includable>
<b:includable id='commentsLinkIframe'>
<span class='cmt_count_iframe_holder' expr:data-count='data:post.numberOfComments' expr:data-onclick='data:post.commentsUrlOnclick' expr:data-post-url='data:post.url' expr:data-url='data:post.url.canonical.http'>
</span>
</b:includable>
<b:includable id='commentsTitle'>
<!-- Post Commments Title -->
<h3 class='title'><data:post.numberOfComments/> <data:messages.comments/></h3>
</b:includable>
<b:includable id='defaultAdUnit'>
<ins class='adsbygoogle' data-ad-format='auto' expr:data-ad-client='data:adClientId ?: data:blog.adsenseClientId' expr:data-ad-host='data:blog.adsenseHostId' expr:data-analytics-uacct='data:blog.analyticsAccountNumber' expr:style='data:style ?: "display: block;"'/>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</b:includable>
<b:includable id='emailPostIcon'>
<span class='byline post-icons'>
<!-- email post links -->
<span class='item-action'>
<a expr:href='data:post.emailPostUrl' expr:title='data:messages.emailPost'>
<b:include data='{ iconClass: "touch-icon sharing-icon" }' name='emailIcon'/>
</a>
</span>
</span>
</b:includable>
<b:includable id='facebookShare'>
<b:with value='"window.open(this.href, \"_blank\", \"height=430,width=640\"); return false;"' var='onclick'>
<b:include name='platformShare'/>
</b:with>
</b:includable>
<b:includable id='feedLinks'>
<b:comment>Disabled</b:comment>
</b:includable>
<b:includable id='feedLinksBody' var='links'>
<b:comment>Disabled</b:comment>
</b:includable>
<b:includable id='footerBylines' var='post'>
<!-- Post Footer Extras -->
<b:include data='post' name='postLabels'/>
<b:include data='post' name='postReactions'/>
<b:include data='post' name='postShareButtons'/>
</b:includable>
<b:includable id='googlePlusShare'>
<div class='goog-inline-block google-plus-share-container'>
<g:plusone annotation='inline' expr:href='data:originalUrl.canonical.http' size='medium' source='blogger:blog:plusone'/>
</div>
</b:includable>
<b:includable id='headerByline' var='post'>
<!-- Post Header Meta -->
<div class='post-meta'>
<b:include data='post' name='postAuthor'/>
<b:include data='post' name='postTimestamp'/>
</div>
</b:includable>
<b:includable id='homePageLink'>
<b:comment>Disabled</b:comment>
</b:includable>
<b:includable id='iframeComments' var='post'>
<b:if cond='data:post.allowIframeComments'>
<script expr:src='data:post.iframeCommentSrc' type='text/javascript'/>
<div class='cmt_iframe_holder' expr:data-href='data:post.url.canonical' expr:data-viewtype='data:post.viewType'/>
<b:if cond='!data:post.embedCommentForm'>
<b:include data='post' name='commentsLink'/>
</b:if>
</b:if>
</b:includable>
<b:includable id='indexBlogPager'>
<!-- Post Pagination Index -->
<div class='blog-pager container' id='blog-pager'>
<b:include cond='data:newerPageUrl' name='previousPageLink'/>
<b:include cond='data:olderPageUrl' name='nextPageLink'/>
<b:include cond='data:view.url != data:blog.homepageUrl' name='homePageLink'/>
</div>
</b:includable>
<b:includable id='indexPost' var='post'>
<!-- Index Post Content -->
<b:include data='post' name='postFeaturedImage'/>
<div class='post-info'>
<b:include data='post' name='postHeader'/>
<b:include data='post' name='postSummary'/>
<b:include data='post' name='postJumpLink'/>
</div>
</b:includable>
<b:includable id='inlineAd' var='post'>
<b:comment>Disabled</b:comment>
</b:includable>
<b:includable id='itemPost' var='post'>
<!-- Item Post Content -->
<b:include data='post' name='postMeta'/>
<b:include data='post' name='postHeader'/>
<b:include data='post' name='postBody'/>
<b:include cond='data:view.isPost' data='post' name='postFooter'/>
</b:includable>
<b:includable id='linkShare'>
<b:with value='"window.prompt(\"Copy to clipboard: Ctrl+C, Enter\", \"" + data:originalUrl + "\"); return false;"' var='onclick'>
<b:include name='platformShare'/>
</b:with>
</b:includable>
<b:includable id='nextPageLink'>
<a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + "_blog-pager-older-link"' expr:title='data:messages.olderPosts'>
<data:messages.olderPosts/>
</a>
</b:includable>
<b:includable id='otherSharingButton'>
<span class='sharing-platform-button sharing-element-other' expr:aria-label='data:messages.shareToOtherApps.escaped' expr:data-url='data:originalUrl' expr:title='data:messages.shareToOtherApps.escaped' role='menuitem' tabindex='-1'>
<b:with value='{key: "sharingOther"}' var='platform'>
<b:include name='sharingPlatformIcon'/>
</b:with>
<span class='platform-sharing-text'><data:messages.shareOtherApps.escaped/></span>
</span>
</b:includable>
<b:includable id='platformShare'>
<a expr:class='"goog-inline-block sharing-" + data:platform.key' expr:data-url='data:originalUrl' expr:href='data:shareUrl + "&target=" + data:platform.target' expr:onclick='data:onclick ? data:onclick : ""' expr:title='data:platform.shareMessage' target='_blank'>
<span class='share-button-link-text'>
<data:platform.shareMessage/>
</span>
</a>
</b:includable>
<b:includable id='post' var='post'>
<!-- Post Index -->
<b:if cond='data:view.isMultipleItems'>
<b:include data='post' name='indexPost'/>
<b:if cond='data:post.isFirstPost'>
<div class='clear'/>
<div class='ad-after-post'>
<a name='ad-post'/>
</div>
<div class='clear'/>
</b:if>
</b:if>
<!-- Post Item -->
<b:if cond='data:view.isSingleItem'>
<b:include data='post' name='itemPost'/>
</b:if>
</b:includable>
<b:includable id='postAuthor' var='post'>
<!-- Post Author -->
<b:if cond='data:allBylineItems.author'>
<span class='post-author'><a expr:href='data:post.author.profileUrl' expr:title='data:post.author.name' target='_blank'><data:post.author.name/></a></span>
</b:if>
</b:includable>
<b:includable id='postBody' var='post'>
<!-- Post Body Entry Content-->
<div class='post-body post-content'>
<data:post.body/>
</div>
</b:includable>
<b:includable id='postBodySnippet' var='post'>
<b:include data='post' name='postBody'/>
</b:includable>
<b:includable id='postBreadcrumbs' var='post'>
<!-- Post Breadcrumbs -->
<nav id='breadcrumb'><a expr:href='data:blog.homepageUrl'><data:messages.home/></a><b:if cond='data:post.labels'><em class='delimiter'/><a class='b-label' expr:href='data:post.labels.last.url'><data:post.labels.last.name/></a></b:if><em class='delimiter'/><span class='current'><data:post.title/></span></nav>
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"@id": "#Breadcrumb",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"item": {
"name": "<data:messages.home/>",
"@id": "<data:blog.homepageUrl.jsonEscaped/>"
}
},{
"@type": "ListItem",
"position": 2,
"item": {
"name": "<b:if cond='data:post.labels'><data:post.labels.last.name/></b:if>",
"@id": "<data:post.labels.last.url.jsonEscaped/>"
}
},{
"@type": "ListItem",
"position": 3,
"item": {
"name": "<data:post.title/>",
"@id": "<data:post.url.jsonEscaped/>"
}
}]
}
</script>
</b:includable>
<b:includable id='postCategory' var='post'>
<b:comment>Disabled</b:comment>
</b:includable>
<b:includable id='postCommentsAndAd' var='post'>
<!-- Post, Comments and Ads -->
<!-- Post Content Index and Item -->
<div class='blog-post hentry'>
<b:class cond='data:view.isMultipleItems' name='index-post'/>
<b:class cond='data:view.isSingleItem' name='item-post'/>