forked from nguyenphu04723/ThemeBlogspot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Frameify - Templatexyz.xml
2668 lines (2623 loc) · 196 KB
/
Frameify - Templatexyz.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 name='themeHead'/>
<!-- Font Awesome Free 5.7.2 -->
<link crossorigin='anonymous' href='https://use.fontawesome.com/releases/v5.7.2/css/all.css' integrity='sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr' rel='stylesheet'/>
<!-- Template Style CSS -->
<b:skin version='1.0.0'><![CDATA[/*
-----------------------------------------------
Blogger Template Style
Name: Frameify
Version: 1.0 - Free
Author: Templateify
Author Url: https://www.templateify.com/
----------------------------------------------- */
/*
<!-- Variable definitions -->
<Variable name="keycolor" description="Main Color" type="color" default="$(main.color)" value="#0073e5"/>
<Group description="Adjust Widths" selector="body">
<Variable name="row.width" description="Container Width" type="length" default="970px" min="960px" max="1058px" value="970px"/>
<Variable name="sidebar.width" description="Sidebar Width" type="length" default="300px" min="250px" max="336px" value="300px"/>
</Group>
<Group description="Main Theme Colors" selector="body">
<Variable name="main.color" description="Theme Color" type="color" default="#0073e5" value="#0073e5"/>
<Variable name="link.color" description="Links Color" type="color" default="#333333" value="#333333"/>
<Variable name="link.hover.color" description="Links Hover Color" type="color" default="$(main.color)" value="#0073e5"/>
</Group>
<Group description="Body Background and Colors" selector="body">
<Variable name="body.background.color" description="Body background color" type="color" default="#f5f5f5" value="#f5f5f5"/>
<Variable name="body.background" description="Background" type="background" color="$(body.background.color)" default="$(color) url() repeat scroll top left" value="$(color) url() repeat scroll top left"/>
<Variable name="outer.bg" description="Outer Wrapper Background" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="body.text.color" description="Body Text Color" type="color" default="#333333" value="#333333"/>
<Variable name="body.link.color" description="Body Colored Links" type="color" default="$(main.color)" value="#0073e5"/>
</Group>
<Group description="Main Header" selector="div.site-header">
<Variable name="header.bg" description="Header Background" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="header.color" description="Header Color" type="color" default="$(link.color)" value="#333333"/>
</Group>
<Group description="Main Menu" selector="nav.primary-nav">
<Variable name="menu.bg" description="Menu Background" type="color" default="#333333" value="#333333"/>
<Variable name="menu.color" description="Menu Color" type="color" default="#f2f2f2" value="#f2f2f2"/>
<Variable name="active.item.bg" description="Active Item Background" type="color" default="$(main.color)" value="#0073e5"/>
<Variable name="active.item.color" description="Active Item Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="item.hover.bg" description="Item Hover Background" type="color" default="$(main.color)" value="#0073e5"/>
<Variable name="item.hover.color" description="Item Hover Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="sub.menu.bg" description="SubMenu Background" type="color" default="#444444" value="#444444"/>
<Variable name="sub.menu.color" description="SubMenu Color" type="color" default="#f2f2f2" value="#f2f2f2"/>
<Variable name="sub.item.hover.bg" description="SubMenu Hover Background" type="color" default="$(main.color)" value="#0073e5"/>
<Variable name="sub.item.hover.color" description="SubMenu Hover Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="mega.menu.bg" description="Mega-Menu Background" type="color" default="#444444" value="#444444"/>
<Variable name="sub.menu.post.title.color" description="SubMenu Post Title Color" type="color" default="#f2f2f2" value="#f2f2f2"/>
<Variable name="sub.menu.post.title.hover.color" description="SubMenu Post Title Hover Color" type="color" default="$(main.color)" value="#0073e5"/>
</Group>
<Group description="Mobile Menu">
<Variable name="mobile.menu.bg" description="Mobile Menu Background" type="color" default="#333333" value="#333333"/>
<Variable name="mobile.menu.color" description="Mobile Menu Color" type="color" default="#f2f2f2" value="#f2f2f2"/>
<Variable name="mobile.menu.hover.color" description="Mobile Menu Hover Color" type="color" default="$(main.color)" value="#0073e5"/>
</Group>
<Group description="Font Size">
<Variable name="menufont.size" description="Menu Font Size" type="length" default="15px" min="12px" max="20px" value="15px"/>
<Variable name="indexpost.title.size" description="IndexPosts Title Font Size" type="length" default="27px" min="20px" max="37px" value="27px"/>
<Variable name="itempost.title.size" description="ItemPost Title Font Size" type="length" default="27px" min="20px" max="37px" value="27px"/>
<Variable name="itempost.content.size" description="ItemPost Text Font Size" type="length" default="16px" min="14px" max="20px" value="16px"/>
</Group>
<Group description="Blog Posts" select="#main-wrapper">
<Variable name="post.title.color" description="Post Title Color" type="color" default="$(link.color)" value="#333333"/>
<Variable name="post.title.hover.color" description="Post Title Hover Color" type="color" default="$(main.color)" value="#0073e5"/>
<Variable name="post.text.color" description="Post Text Color" type="color" default="$(body.text.color)" value="#333333"/>
<Variable name="meta.color" description="Post Meta Color" type="color" default="#aaa" value="#aaaaaa"/>
<Variable name="post.snip.color" description="Post Snippet Color" type="color" default="$(body.text.color)" value="#333333"/>
</Group>
<Group description="Theme Sidebar" selector="#sidebar-wrapper">
<Variable name="sidebar.title.color" description="Widget Title Color" type="color" default="$(link.color)" value="#333333"/>
</Group>
<Group description="Theme Buttons">
<Variable name="button.bg" description="Colored Button" type="color" default="$(main.color)" value="#0073e5"/>
<Variable name="button.color" description="Colored Button Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="button.hover.bg" description="Post Buttons Hover Background" type="color" default="#333333" value="#333333"/>
<Variable name="button.hover.color" description="Post Buttons Hover Color" type="color" default="#ffffff" value="#ffffff"/>
</Group>
<Group description="Theme Footer" selector="div.footer-widgets-wrap">
<Variable name="footer.bg" description="Footer Background" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="footer.widget.title.color" description="Widget Title Color" type="color" default="$(link.color)" value="#333333"/>
<Variable name="footer.color" description="Footer Color" type="color" default="$(link.color)" value="#333333"/>
<Variable name="footer.hover.color" description="Footer Links Hover Color" type="color" default="$(link.hover.color)" value="#0073e5"/>
<Variable name="footer.post.title.hover.color" description="Footer Post Title Hover Color" type="color" default="$(post.title.hover.color)" value="#0073e5"/>
<Variable name="footer.text.color" description="Footer Text Color" type="color" default="$(body.text.color)" value="#333333"/>
</Group>
<Group description="Footer Bar" selector="#sub-footer-wrapper">
<Variable name="footer.bar.bg" description="Footer Bar Background" type="color" default="#333333" value="#333333"/>
<Variable name="footer.bar.color" description="Footer Bar Color" type="color" default="#f2f2f2" value="#f2f2f2"/>
<Variable name="footer.bar.hover.color" description="Footer Bar Links Hover Color" type="color" default="$(link.hover.color)" value="#0073e5"/>
</Group>
<!-- Extra Variables -->
<Variable name="body.text.font" description="Font" hideEditor="true" type="font" default="14px Source Sans Pro, sans-serif" value="14px Source Sans Pro, sans-serif"/>
<Variable name="tabs.font" description="Font 2" hideEditor="true" type="font" default="14px Source Sans Pro, sans-serif" value="14px Source Sans Pro, sans-serif"/>
<Variable name="posts.background.color" description="Post Background" hideEditor="true" type="color" default="$(outer.bg)" value="#ffffff"/>
<Variable name="posts.title.color" description="Post title color" hideEditor="true" type="color" default="$(post.title.color)" value="#333333"/>
<Variable name="posts.text.color" description="Post text color" hideEditor="true" type="color" default="$(post.text.color)" value="#333333"/>
<Variable name="posts.icons.color" description="Post icons color" hideEditor="true" type="color" default="$(main.color)" value="#0073e5"/>
<Variable name="labels.background.color" description="Label background color" hideEditor="true" type="color" default="$(main.color)" value="#0073e5"/>
*/
/*-- Google Fonts --*/
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:400;src:local('Source Sans Pro Italic'),local(SourceSansPro-Italic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:400;src:local('Source Sans Pro Italic'),local(SourceSansPro-Italic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2) format("woff2");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:400;src:local('Source Sans Pro Italic'),local(SourceSansPro-Italic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2) format("woff2");unicode-range:U+1F00-1FFF}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:400;src:local('Source Sans Pro Italic'),local(SourceSansPro-Italic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format("woff2");unicode-range:U+0370-03FF}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:400;src:local('Source Sans Pro Italic'),local(SourceSansPro-Italic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:400;src:local('Source Sans Pro Italic'),local(SourceSansPro-Italic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:400;src:local('Source Sans Pro Italic'),local(SourceSansPro-Italic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:600;src:local('Source Sans Pro SemiBold Italic'),local(SourceSansPro-SemiBoldItalic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdh18Smxg.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:600;src:local('Source Sans Pro SemiBold Italic'),local(SourceSansPro-SemiBoldItalic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdo18Smxg.woff2) format("woff2");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:600;src:local('Source Sans Pro SemiBold Italic'),local(SourceSansPro-SemiBoldItalic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdg18Smxg.woff2) format("woff2");unicode-range:U+1F00-1FFF}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:600;src:local('Source Sans Pro SemiBold Italic'),local(SourceSansPro-SemiBoldItalic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdv18Smxg.woff2) format("woff2");unicode-range:U+0370-03FF}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:600;src:local('Source Sans Pro SemiBold Italic'),local(SourceSansPro-SemiBoldItalic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdj18Smxg.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:600;src:local('Source Sans Pro SemiBold Italic'),local(SourceSansPro-SemiBoldItalic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdi18Smxg.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:600;src:local('Source Sans Pro SemiBold Italic'),local(SourceSansPro-SemiBoldItalic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18Q.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:700;src:local('Source Sans Pro Bold Italic'),local(SourceSansPro-BoldItalic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdh18Smxg.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:700;src:local('Source Sans Pro Bold Italic'),local(SourceSansPro-BoldItalic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdo18Smxg.woff2) format("woff2");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:700;src:local('Source Sans Pro Bold Italic'),local(SourceSansPro-BoldItalic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdg18Smxg.woff2) format("woff2");unicode-range:U+1F00-1FFF}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:700;src:local('Source Sans Pro Bold Italic'),local(SourceSansPro-BoldItalic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdv18Smxg.woff2) format("woff2");unicode-range:U+0370-03FF}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:700;src:local('Source Sans Pro Bold Italic'),local(SourceSansPro-BoldItalic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdj18Smxg.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:700;src:local('Source Sans Pro Bold Italic'),local(SourceSansPro-BoldItalic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18Smxg.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:700;src:local('Source Sans Pro Bold Italic'),local(SourceSansPro-BoldItalic),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18Q.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:400;src:local('Source Sans Pro Regular'),local(SourceSansPro-Regular),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:400;src:local('Source Sans Pro Regular'),local(SourceSansPro-Regular),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format("woff2");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:400;src:local('Source Sans Pro Regular'),local(SourceSansPro-Regular),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format("woff2");unicode-range:U+1F00-1FFF}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:400;src:local('Source Sans Pro Regular'),local(SourceSansPro-Regular),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format("woff2");unicode-range:U+0370-03FF}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:400;src:local('Source Sans Pro Regular'),local(SourceSansPro-Regular),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:400;src:local('Source Sans Pro Regular'),local(SourceSansPro-Regular),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:400;src:local('Source Sans Pro Regular'),local(SourceSansPro-Regular),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:600;src:local('Source Sans Pro SemiBold'),local(SourceSansPro-SemiBold),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmhduz8A.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:600;src:local('Source Sans Pro SemiBold'),local(SourceSansPro-SemiBold),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwkxduz8A.woff2) format("woff2");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:600;src:local('Source Sans Pro SemiBold'),local(SourceSansPro-SemiBold),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmxduz8A.woff2) format("woff2");unicode-range:U+1F00-1FFF}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:600;src:local('Source Sans Pro SemiBold'),local(SourceSansPro-SemiBold),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlBduz8A.woff2) format("woff2");unicode-range:U+0370-03FF}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:600;src:local('Source Sans Pro SemiBold'),local(SourceSansPro-SemiBold),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmBduz8A.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:600;src:local('Source Sans Pro SemiBold'),local(SourceSansPro-SemiBold),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmRduz8A.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:600;src:local('Source Sans Pro SemiBold'),local(SourceSansPro-SemiBold),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:700;src:local('Source Sans Pro Bold'),local(SourceSansPro-Bold),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:700;src:local('Source Sans Pro Bold'),local(SourceSansPro-Bold),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format("woff2");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:700;src:local('Source Sans Pro Bold'),local(SourceSansPro-Bold),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format("woff2");unicode-range:U+1F00-1FFF}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:700;src:local('Source Sans Pro Bold'),local(SourceSansPro-Bold),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format("woff2");unicode-range:U+0370-03FF}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:700;src:local('Source Sans Pro Bold'),local(SourceSansPro-Bold),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:700;src:local('Source Sans Pro Bold'),local(SourceSansPro-Bold),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:700;src:local('Source Sans Pro Bold'),local(SourceSansPro-Bold),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
/*-- Reset CSS --*/
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}.widget iframe,.widget img{max-width:100%}::selection{background:$(main.color);color:#fff}
/*-- Body Content CSS --*/
:root{--body-font:'Source Sans Pro',Segoe UI,Helvetica Neue,Arial,sans-serif}
body{background:$(body.background);background-color:$(body.background.color);font-family:var(--body-font);font-size:14px;color:$(body.text.color);font-weight:400;line-height:1.4em;word-wrap:break-word;margin:0;padding:0}
h1,h2,h3,h4,h5,h6{font-weight:600}
#mobile-options{display:none}
#outer-wrapper{overflow:hidden;width:100%;max-width:calc($(row.width) + 60px);margin:0 auto;background-color:$(outer.bg);box-shadow:0 2px 8px 0 rgba(0, 0, 0, 0.15)}
.row-x1{width:$(row.width)}
#content-wrapper{margin:40px auto;overflow:hidden}
#main-wrapper{float:left;overflow:hidden;width:calc(100% - ($(sidebar.width) + 40px));box-sizing:border-box;padding:0}
#sidebar-wrapper{float:right;overflow:hidden;width:$(sidebar.width);box-sizing:border-box;padding:0}
.entry-image-link,.cmm-avatar,.comments .avatar-image-container{background-color:rgba(155,155,155,0.08);color:transparent!important}
.post-thumb{display:block;position:relative;width:100%;height:100%;background-size:cover;background-position:center center;background-repeat:no-repeat;z-index:1;opacity:0;transition:opacity .25s ease,filter 0s ease}
.post-thumb.lazy-ify{opacity:1}
.entry-image-link:hover .post-thumb{filter:brightness(1.07)}
.entry-title{color:$(post.title.color)}
.entry-title a{color:$(post.title.color);display:block}
.entry-title a:hover{color:$(post.title.hover.color);text-decoration:underline}
.social a:before{display:inline-block;font-family:'Font Awesome 5 Brands';font-style:normal;font-weight:400}
.social .blogger a:before{content:"\f37d"}
.social .facebook a:before{content:"\f09a"}
.social .facebook-f a:before{content:"\f39e"}
.social .twitter a:before{content:"\f099"}
.social .rss a:before{content:"\f09e";font-family:'Font Awesome 5 Free';font-weight:900}
.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 .pinterest-p a:before{content:"\f231"}
.social .twitch a:before{content:"\f1e8"}
.social .delicious a:before{content:"\f1a5"}
.social .codepen a:before{content:"\f1cb"}
.social .flipboard a:before{content:"\f44d"}
.social .reddit a:before{content:"\f281"}
.social .whatsapp a:before{content:"\f232"}
.social .messenger a:before{content:"\f39f"}
.social .snapchat a:before{content:"\f2ac"}
.social .email a:before{content:"\f0e0";font-family:'Font Awesome 5 Free';font-weight:400}
.social .external-link a:before{content:"\f35d";font-family:'Font Awesome 5 Free';font-weight:900}
.social-color .blogger a,.social-hover-color .blogger a:hover{background-color:#ff5722}
.social-color .facebook a,.social-color .facebook-f a,.social-hover-color .facebook a:hover,.social-hover-color .facebook-f a:hover{background-color:#3b5999}
.social-color .twitter a,.social-hover-color .twitter a:hover{background-color:#00acee}
.social-color .youtube a,.social-hover-color .youtube a:hover{background-color:#f50000}
.social-color .instagram a,.social-hover-color .instagram a:hover{background:linear-gradient(15deg,#ffb13d,#dd277b,#4d5ed4)}
.social-color .pinterest a,.social-color .pinterest-p a,.social-hover-color .pinterest a:hover,.social-hover-color .pinterest-p a:hover{background-color:#ca2127}
.social-color .dribbble a,.social-hover-color .dribbble a:hover{background-color:#ea4c89}
.social-color .linkedin a,.social-hover-color .linkedin a:hover{background-color:#0077b5}
.social-color .tumblr a,.social-hover-color .tumblr a:hover{background-color:#365069}
.social-color .twitch a,.social-hover-color .twitch a:hover{background-color:#6441a5}
.social-color .rss a,.social-hover-color .rss a:hover{background-color:#ffc200}
.social-color .skype a,.social-hover-color .skype a:hover{background-color:#00aff0}
.social-color .stumbleupon a,.social-hover-color .stumbleupon a:hover{background-color:#eb4823}
.social-color .vk a,.social-hover-color .vk a:hover{background-color:#4a76a8}
.social-color .stack-overflow a,.social-hover-color .stack-overflow a:hover{background-color:#f48024}
.social-color .github a,.social-hover-color .github a:hover{background-color:#24292e}
.social-color .soundcloud a,.social-hover-color .soundcloud a:hover{background:linear-gradient(#ff7400,#ff3400)}
.social-color .behance a,.social-hover-color .behance a:hover{background-color:#191919}
.social-color .digg a,.social-hover-color .digg a:hover{background-color:#1b1a19}
.social-color .delicious a,.social-hover-color .delicious a:hover{background-color:#0076e8}
.social-color .codepen a,.social-hover-color .codepen a:hover{background-color:#000}
.social-color .flipboard a,.social-hover-color .flipboard a:hover{background-color:#f52828}
.social-color .reddit a,.social-hover-color .reddit a:hover{background-color:#ff4500}
.social-color .whatsapp a,.social-hover-color .whatsapp a:hover{background-color:#3fbb50}
.social-color .messenger a,.social-hover-color .messenger a:hover{background-color:#0084ff}
.social-color .snapchat a,.social-hover-color .snapchat a:hover{background-color:#ffe700}
.social-color .email a,.social-hover-color .email a:hover{background-color:#888}
.social-color .external-link a,.social-hover-color .external-link a:hover{background-color:$(button.hover.bg)}
#header-wrapper{position:relative;float:left;width:100%;margin:0}
.site-header{position:relative;float:left;width:100%;height:90px;background-color:$(header.bg);padding:20px 0;margin:0}
#header-wrapper .container{position:relative;margin:0 auto}
.main-logo{position:relative;float:left;max-width:calc(100% - 728px);margin:0}
.header-logo{position:relative;float:left;width:100%;height:60px;padding:15px 0}
.header-logo .header-logo-image{float:left;height:60px;overflow:hidden}
.header-logo img{max-width:100%;height:60px;margin:0}
.header-logo h1{font-size:27px;color:$(header.color);line-height:60px;margin:0}
.header-logo h1 a{color:$(header.color)}
.header-logo #h1-tag{position:absolute;top:-9000px;left:-9000px;display:none;visibility:hidden}
.header-ads{float:right;width:728px;margin:0}
.header-ads .widget > .widget-title{display:none!important}
.header-ads .widget .widget-content{float:left;width:728px;max-width:100%;height:90px;line-height:1;margin:0}
.primary-nav-wrap{position:relative;float:left;width:100%;height:46px}
.primary-nav{position:relative;float:left;width:100%;height:46px;background-color:$(menu.bg);margin:0}
#frameify-free-main-menu .widget,#frameify-free-main-menu .widget > .widget-title{display:none}
#frameify-free-main-menu .show-menu{display:block}
#frameify-free-main-menu{position:static;width:100%;height:46px;z-index:10}
#frameify-free-main-menu ul > li{position:relative;float:left;display:inline-block;padding:0;margin:0}
#frameify-free-main-menu ul > li > a{position:relative;display:block;height:46px;color:$(menu.color);font-weight:400;line-height:46px;padding:0 15px;margin:0}
#frameify-free-main-menu ul#frameify-free-main-menu-nav > li > a{font-size:$(menufont.size);font-weight:600;text-transform:uppercase}
#frameify-free-main-menu-nav > li:hover > a{background-color:$(item.hover.bg);color:$(item.hover.color)}
#frameify-free-main-menu-nav > li.li-home > a{background-color:$(active.item.bg);color:$(active.item.color)}
#frameify-free-main-menu ul > li > ul{position:absolute;float:left;left:0;top:46px;width:180px;background-color:$(sub.menu.bg);z-index:99999;visibility:hidden;opacity:0;padding:0;box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}
#frameify-free-main-menu ul > li > ul > li > ul{position:absolute;float:left;top:0;left:100%;margin:0}
#frameify-free-main-menu ul > li > ul > li{display:block;float:none;position:relative}
#frameify-free-main-menu ul > li > ul > li a{display:block;height:34px;font-size:14px;color:$(sub.menu.color);line-height:34px;box-sizing:border-box;padding:0 15px;margin:0}
#frameify-free-main-menu ul > li > ul > li:hover > a{background-color:$(sub.item.hover.bg);color:$(sub.item.hover.color)}
#frameify-free-main-menu ul > li.has-sub > a:after{content:'\f078';float:right;font-family:'Font Awesome 5 Free';font-size:9px;font-weight:900;margin:0 0 0 5px}
#frameify-free-main-menu ul > li > ul > li.has-sub > a:after{content:'\f054';float:right;margin:0}
#frameify-free-main-menu ul > li:hover > ul,#frameify-free-main-menu ul > li > ul > li:hover > ul{visibility:visible;opacity:1}
#frameify-free-main-menu ul ul{transition:all .17s ease}
#frameify-free-main-menu .getMega{display:none}
#frameify-free-main-menu .mega-menu{position:static!important}
#frameify-free-main-menu .mega-menu > ul{width:100%;box-sizing:border-box;padding:20px 10px}
#frameify-free-main-menu .mega-menu > ul.mega-widget{background-color:$(mega.menu.bg);overflow:hidden}
.mega-widget .mega-item{float:left;width:20%;box-sizing:border-box;padding:0 10px}
.mega-widget .mega-content{position:relative;width:100%;overflow:hidden;padding:0}
.mega-content .entry-image-link{width:100%;height:120px;background-color:rgba(255,255,255,0.01);z-index:1;display:block;position:relative;overflow:hidden;padding:0}
.mega-content .entry-title{position:relative;font-size:14px;font-weight:600;line-height:1.4em;margin:7px 0 5px;padding:0}
.mega-content .entry-title a{color:$(sub.menu.post.title.color)}
.mega-content .entry-title a:hover{color:$(sub.menu.post.title.hover.color)}
.mega-content .entry-meta{font-size:13px}
.mega-menu .no-posts{display:block;height:80px;color:$(meta.color);text-align:center;line-height:80px}
.show-search,.hide-search{position:absolute;top:0;right:0;display:block;width:46px;height:46px;background-color:$(active.item.bg);color:$(active.item.color);font-size:15px;line-height:46px;text-align:center;cursor:pointer;z-index:20}
.show-search:before{content:"\f002";font-family:'Font Awesome 5 Free';font-weight:900}
.hide-search:before{content:"\f00d";font-family:'Font Awesome 5 Free';font-weight:900}
#nav-search{display:none;position:absolute;left:0;top:0;width:100%;height:46px;z-index:25;background-color:$(menu.bg);box-sizing:border-box;padding:0}
#nav-search .search-form{width:100%;height:46px;background-color:rgba(0,0,0,0);line-height:46px;overflow:hidden;padding:0}
#nav-search .search-input{width:100%;height:46px;color:$(menu.color);margin:0;padding:0 46px 0 0;background-color:rgba(0,0,0,0);font-family:inherit;font-size:14px;font-weight:400;box-sizing:border-box;border:0}
#nav-search .search-input:focus{color:$(menu.color);outline:none}
#nav-search .search-input::placeholder{color:$(menu.color);opacity:.5}
.overlay{visibility:hidden;opacity:0;position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.7);z-index:1000;margin:0;transition:all .17s ease}
.show-mobile-menu{display:none;position:absolute;top:0;left:0;height:46px;color:$(menu.color);font-size:16px;font-weight:600;line-height:46px;text-align:center;cursor:pointer;z-index:20;padding:0 20px}
.show-mobile-menu:before{content:"\f0c9";font-family:'Font Awesome 5 Free';font-weight:900}
.show-mobile-menu:after{content:attr(data-title);font-weight:400;text-transform:uppercase;margin-left:7px}
.show-mobile-menu:hover{background-color:$(item.hover.bg);color:$(item.hover.color)}
.slide-menu{display:none;position:fixed;width:300px;max-height:100%;overflow:auto;top:0;left:0;bottom:0;background-color:$(mobile.menu.bg);z-index:1010;left:0;-webkit-transform:translateX(-100%);transform:translateX(-100%);visibility:hidden;box-shadow:3px 0 7px rgba(0,0,0,0.1);transition:all .17s ease}
.nav-active .slide-menu{-webkit-transform:translateX(0px);transform:translateX(0px);visibility:visible}
.slide-menu-header{float:left;width:100%;height:44px;overflow:hidden;border-bottom:1px solid rgba(155,155,155,0.17)}
.hide-mobile-menu{position:absolute;top:0;right:0;display:block;width:44px;height:44px;color:$(mobile.menu.color);font-size:16px;line-height:44px;text-align:center;cursor:pointer;z-index:20}
.hide-mobile-menu:before{content:"\f00d";font-family:'Font Awesome 5 Free';font-weight:900}
.hide-mobile-menu:hover{color:$(mobile.menu.hover.color)}
.mobile-menu{position:relative;float:left;width:100%;box-sizing:border-box;padding:20px}
.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:14px;font-weight:400;line-height:40px;margin:0;padding:0;border-top:1px solid rgba(155,155,155,0.05)}
.mobile-menu > ul li ul{overflow:hidden}
.mobile-menu > ul > li:first-child{border-top:0}
.mobile-menu > ul > li:last-child{border-bottom:1px solid rgba(0,0,0,0.02)}
.mobile-menu ul li a{color:$(mobile.menu.color);padding:0;display:block}
.mobile-menu > ul > li > a{text-transform:uppercase}
.mobile-menu ul li.has-sub .submenu-toggle{position:absolute;top:0;right:0;color:$(mobile.menu.color);cursor:pointer}
.mobile-menu ul li.has-sub .submenu-toggle:after{content:'\f054';font-family:'Font Awesome 5 Free';font-weight:900;float:right;width:40px;font-size:12px;text-align:center;transition:all .17s ease}
.mobile-menu ul li.has-sub.show > .submenu-toggle:after{transform:rotate(90deg)}
.mobile-menu ul li a:hover,.mobile-menu ul li.has-sub.show > a,.mobile-menu ul li.has-sub.show > .submenu-toggle{color:$(mobile.menu.hover.color)}
.mobile-menu > ul > li > ul > li a{font-size:14px;font-weight:400;opacity:.8;padding:0 0 0 15px}
.mobile-menu > ul > li > ul > li > ul > li > a{padding:0 0 0 30px}
.mobile-menu ul > li > .submenu-toggle:hover{color:$(mobile.menu.hover.color)}
.fixed-menu{position:fixed;top:-46px;left:0;width:100%;z-index:990;transition:top .17s ease}
.show-fixed-menu{top:0}
.nav-active .fixed-menu{top:0}
.loader{position:relative;overflow:hidden;display:block}
.loader:after{content:'';position:absolute;top:50%;left:50%;width:26px;height:26px;margin:-16px 0 0 -16px;border:3px solid rgba(155,155,155,0.17);border-right-color:$(main.color);border-radius:100%;animation:spinner .8s infinite linear;transform-origin:center}
@-webkit-keyframes spinner {
0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}
}
@keyframes spinner {
0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}
}
#custom-ads{display:none}
#custom-ads,#before-ad,#after-ad{float:left;width:100%;margin:0}
#before-ad .widget > .widget-title > h3,#after-ad .widget > .widget-title > h3{height:auto;font-size:10px;color:$(meta.color);font-weight:400;line-height:1;text-transform:inherit;margin:0 0 5px}
#before-ad .widget,#after-ad .widget{width:100%;margin:25px 0 0}
#before-ad .widget-content,#after-ad .widget-content{position:relative;width:100%;height:initial;overflow:hidden;line-height:1}
.index #new-before-ad,.index #new-after-ad{display:none}
#new-before-ad #before-ad,#new-after-ad #after-ad{float:none;display:block;margin:0}
#new-before-ad #before-ad .widget,#new-after-ad #after-ad .widget{margin:0}
.item-post .FollowByEmail{box-sizing:border-box;border:1px solid rgba(155,155,155,0.17)}
#main-wrapper #main{float:left;width:100%;box-sizing:border-box}
.queryMessage{overflow:hidden;color:$(link.color);font-size:14px;padding:0 0 20px;margin:0 0 30px;border-bottom:1px solid rgba(155,155,155,0.13)}
.queryMessage .query-info{margin:0}
.queryMessage .search-query,.queryMessage .search-label{font-weight:600;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:$(body.link.color);text-decoration:underline}
.queryMessage a.show-more:hover{color:$(link.color);text-decoration:none}
.queryEmpty{font-size:13px;font-weight:400;padding:0;margin:40px 0;text-align:center}
.blog-post{display:block;overflow:hidden;word-wrap:break-word}
.index-post{padding:30px 0 0;margin:40px 0 0;border-top:1px solid rgba(155,155,155,0.17)}
.index-post.post-0{padding:0;margin:0;border:0}
.index-post .entry-header{float:left;width:100%;margin:0 0 18px}
.index-post .entry-header .entry-title{font-size:$(indexpost.title.size);font-weight:600;line-height:1.4em;margin:0 0 13px}
.entry-meta{font-size:16px;color:$(meta.color);font-weight:400;padding:0}
.entry-meta span,.entry-meta em{float:left;font-style:normal;margin:0 4px 0 0}
.entry-meta .entry-comments-link em:before{content:'\2011'}
.entry-meta a{color:$(body.link.color);text-decoration:underline}
.entry-meta a:hover{color:$(link.color);text-decoration:none}
.index-post .entry-content{float:left;width:100%;margin:0}
.index-post .entry-image-link{position:relative;float:left;width:170px;height:170px;z-index:1;overflow:hidden;margin:0 20px 0 0}
.post-snippet{overflow:hidden;font-size:16px;color:$(post.snip.color);line-height:1.6em;font-weight:400;margin:0}
a.read-more{display:inline-block;font-size:16px;color:$(body.link.color);text-decoration:underline;padding:0;margin:15px 0 0}
a.read-more:hover{color:$(link.color);text-decoration:none}
.inline-ad-wrap{display:block;overflow:hidden;text-align:center;padding:40px 0 0;margin:40px 0 0;border-top:1px solid rgba(155,155,155,0.17)}
.inline-ad{position:relative;float:left;width:100%;line-height:1;margin:0}
.item-post-inner{position:relative;float:left;width:100%;overflow:hidden;box-sizing:border-box;padding:0}
.item-post .blog-entry-header{position:relative;float:left;width:100%;overflow:hidden;padding:0}
.item-post h1.entry-title{font-size:$(itempost.title.size);line-height:1.4em;font-weight:600;position:relative;display:block;margin:0 0 13px}
.static_page .item-post h1.entry-title{margin:0}
.item-post .post-body{position:relative;float:left;width:100%;overflow:hidden;font-size:$(itempost.content.size);color:$(post.text.color);line-height:1.6em;padding:25px 0 0;margin:0}
.item-post .post-body img{max-width:100%}
.post-body h1,.post-body h2,.post-body h3,.post-body h4{font-size:18px;color:$(post.title.color);margin:0 0 15px}
.post-body h1,.post-body h2{font-size:23px}
.post-body h3{font-size:21px}
blockquote{background-color:rgba(155,155,155,0.05);color:$(post.title.color);font-style:italic;padding:15px 25px;margin:0;border-left:1px solid $(main.color)}
blockquote:before,blockquote:after{display:inline-block;font-family:'Font Awesome 5 Free';font-style:normal;font-weight:900;color:$(post.title.color);line-height:1}
blockquote:before{content:'\f10d';margin:0 10px 0 0}
blockquote:after{content:'\f10e';margin:0 0 0 10px}
.post-body ul,.widget .post-body ol{line-height:1.5;font-weight:400;padding:0 0 0 30px;margin:10px 0}
.post-body li{margin:5px 0;padding:0;line-height:1.5}
.post-body ul li{list-style:disc inside}
.post-body ol li{list-style:decimal inside}
.post-body u{text-decoration:underline}
.post-body strike{text-decoration:line-through}
.post-body a{color:$(body.link.color)}
.post-body a:hover{text-decoration:underline}
.post-body a.button{display:inline-block;height:32px;background-color:$(button.bg);font-size:15px;color:$(button.color);font-weight:600;line-height:32px;text-align:center;text-decoration:none;cursor:pointer;padding:0 15px;margin:0 5px 5px 0;border-radius:3px}
.post-body a.colored-button{color:#fff}
.post-body a.button:hover{background-color:$(button.hover.bg);color:$(button.hover.color)}
.post-body a.colored-button:hover{background-color:$(button.hover.bg)!important;color:$(button.hover.color)!important}
.button:before{font-family:'Font Awesome 5 Free';font-weight:900;display:inline-block;margin:0 5px 0 0}
.button.preview:before{content:"\f06e"}
.button.download:before{content:"\f019"}
.button.link:before{content:"\f0c1"}
.button.cart:before{content:"\f07a"}
.button.info:before{content:"\f06a"}
.button.share:before{content:"\f1e0"}
.alert-message{position:relative;display:block;padding:15px;border:1px solid rgba(155,155,155,0.17);border-radius:3px}
.alert-message.alert-success{background-color:rgba(34,245,121,0.03);border:1px solid rgba(34,245,121,0.5)}
.alert-message.alert-info{background-color:rgba(55,153,220,0.03);border:1px solid rgba(55,153,220,0.5)}
.alert-message.alert-warning{background-color:rgba(185,139,61,0.03);border:1px solid rgba(185,139,61,0.5)}
.alert-message.alert-error{background-color:rgba(231,76,60,0.03);border:1px solid rgba(231,76,60,0.5)}
.alert-message:before{font-family:'Font Awesome 5 Free';font-size:16px;font-weight:900;display:inline-block;margin:0 5px 0 0}
.alert-message.alert-success:before{content:"\f058"}
.alert-message.alert-info:before{content:"\f05a"}
.alert-message.alert-warning:before{content:"\f06a"}
.alert-message.alert-error:before{content:"\f057"}
.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}
.code-box{position:relative;display:block;background-color:rgba(155,155,155,0.1);font-family:Monospace;font-size:13px;white-space:pre-wrap;line-height:1.4em;padding:10px;margin:0;border:1px solid rgba(155,155,155,0.3);border-radius:3px}
.entry-tags{overflow:hidden;float:left;width:100%;height:auto;position:relative;margin:25px 0 0}
.entry-tags a,.entry-tags span{float:left;font-size:16px;color:$(link.color);font-weight:400;padding:0;margin:0 10px 0 0}
.entry-tags a{color:$(body.link.color);text-decoration:underline;margin:0}
.entry-tags .Label:before{content:'\002C';color:$(link.color)}
.entry-tags .Label:last-child:before{display:none}
.entry-tags a:hover{color:$(link.color);text-decoration:none}
.post-share{position:relative;float:left;width:100%;overflow:hidden;padding:0;margin:25px 0 0}
ul.share-links{position:relative}
.share-links li{float:left;overflow:hidden;margin:0 7px 0 0}
.share-links li a{display:block;cursor:pointer;width:34px;height:30px;line-height:30px;color:#fff;font-size:14px;font-weight:400;text-align:center;border-radius:3px}
.share-links li a.facebook,.share-links li a.twitter{width:auto}
.share-links li a.facebook:before,.share-links li a.twitter:before{width:30px;background-color:rgba(0,0,0,0.1)}
.share-links li a span{font-size:13px;padding:0 13px}
.share-links li a:hover{opacity:.8}
.share-links .show-hid a{background-color:rgba(155,155,155,0.1);font-size:14px;color:#888}
.share-links .show-hid a:before{content:'\f067';font-family:'Font Awesome 5 Free';font-weight:900}
.show-hidden .show-hid a:before{content:'\f068'}
.share-links li.linkedin,.share-links li.whatsapp{display:none}
.show-hidden li.linkedin,.show-hidden li.whatsapp{display:inline-block}
.post-footer{position:relative;float:left;width:100%;box-sizing:border-box;padding:0}
#related-wrap{overflow:hidden;float:left;width:100%;box-sizing:border-box;padding:0;margin:30px 0 0}
.related-title h3{color:$(post.title.color);font-size:18px;font-weight:600;margin:0 0 20px}
#related-wrap .related-tag{display:none}
.frameify-free-related-content{float:left;width:100%}
.frameify-free-related-content .loader{height:200px}
.related-posts{position:relative;display:flex;flex-wrap:wrap;overflow:hidden;margin:0 -10px;padding:0}
.related-posts .related-item{position:relative;float:left;width:calc(100% / 3);overflow:hidden;box-sizing:border-box;padding:0 10px;margin:25px 0 0}
.related-posts .related-item.item-0,.related-posts .related-item.item-1,.related-posts .related-item.item-2{margin:0}
.related-posts .related-item-inner{position:relative;width:100%;display:block}
.related-posts .entry-image-link{position:relative;float:left;width:100%;height:130px;margin:0}
.related-posts .entry-header{float:left;overflow:hidden;margin:0}
.related-posts .entry-title{font-size:15px;font-weight:600;line-height:1.4em;display:block;margin:7px 0 5px}
.related-posts .entry-meta{font-size:14px}
.about-author{position:relative;float:left;width:100%;overflow:hidden;background-color:rgba(155,155,155,0.1);box-sizing:border-box;padding:20px;margin:30px 0 0}
.about-author .avatar-container{position:relative;float:left;width:60px;height:60px;background-color:rgba(155,155,155,0.1);overflow:hidden;margin:0 17px 0 0;border-radius:100%}
.about-author .author-avatar{float:left;width:100%;height:100%;background-size:100% 100%;background-position:0 0;background-repeat:no-repeat;opacity:0;overflow:hidden;border-radius:100%;transition:opacity .25s ease}
.about-author .author-avatar.lazy-ify{opacity:1}
.author-name{display:block;font-size:18px;font-weight:600;line-height:1;margin:0 0 10px}
.author-name span{color:$(post.title.color)}
.author-name a{color:$(body.link.color);text-decoration:underline}
.author-name a:hover{color:$(post.title.color);text-decoration:none}
.author-description{overflow:hidden}
.author-description span{display:block;overflow:hidden;font-size:16px;color:$(post.text.color);font-weight:400;line-height:1.6em}
.author-description span br{display:none}
.author-description a{display:none;float:left;font-size:14px;color:$(post.title.color);text-align:center;padding:0;margin:10px 11px 0 0}
.author-description a:hover{color:$(post.title.hover.color)}
.author-description.show-icons li,.author-description.show-icons a{display:inline-block}
.post-nav{position:relative;float:left;width:100%;overflow:hidden;font-size:16px;box-sizing:border-box;margin:30px 0 0}
.post-nav a{color:$(body.link.color);text-decoration:underline}
.post-nav a:hover{color:$(link.color);text-decoration:none}
.post-nav span{color:$(meta.color);opacity:.7;text-decoration:underline}
.post-nav .blog-pager-newer-link:before,.post-nav .blog-pager-older-link:after{margin-top:1px}
#blog-pager{float:left;width:100%;font-size:15px;font-weight:600;text-align:center;clear:both;box-sizing:border-box;padding:40px 0 0;margin:40px 0 0;border-top:1px solid rgba(155,155,155,0.17)}
.blog-pager .blog-pager-newer-link,.blog-pager .blog-pager-older-link{color:$(body.link.color);font-size:16px;font-weight:400;text-decoration:underline;box-sizing:border-box;padding:0;margin:0;border:0}
.blog-pager .page-num{float:left;vertical-align:middle;background-color:rgba(155,155,155,0.1);min-width:34px;height:34px;color:$(link.color);text-align:center;line-height:34px;box-sizing:border-box;padding:0 10px;margin:0 5px 0 0;border:0;border-radius:3px}
.blog-pager .page-prev,.blog-pager .page-next{font-size:10px}
.blog-pager .page-prev:before,.blog-pager .page-next:before{font-family:'Font Awesome 5 Free';font-weight:900}
.blog-pager .page-prev:before{content:'\f053'}
.blog-pager .page-next:before{content:'\f054'}
.blog-pager a.page-num:hover,.blog-pager .page-active{background-color:$(button.bg);color:$(button.color)}
.blog-pager a.blog-pager-newer-link:hover,.blog-pager a.blog-pager-older-link:hover{color:$(link.color);text-decoration:none}
.blog-pager .page-dots{min-width:auto;background-color:rgba(0,0,0,0);color:$(meta.color);padding:0 2px;border:0}
.archive .blog-pager{display:none}
.home .blog-pager .blog-pager-newer-link,.home .blog-pager .blog-pager-older-link{display:none}
.blog-pager-newer-link{float:left}
.blog-pager-older-link{float:right}
.blog-pager-newer-link:before{content:'\f053';float:left;font-family:'Font Awesome 5 Free';font-size:9px;font-weight:900;margin:0 4px 0 0}
.blog-pager-older-link:after{content:'\f054';float:right;font-family:'Font Awesome 5 Free';font-size:9px;font-weight:900;margin:0 0 0 4px}
.frameify-free-blog-post-comments{display:none;float:left;width:100%;box-sizing:border-box;padding:0;margin:0}
#comments,#disqus_thread,.fb-comments{float:left;width:100%}
#disqus_thread,.fb-comments{padding:20px 0 0;margin:30px 0 0;border-top:1px solid rgba(155,155,155,0.17)}
.comments{display:block;clear:both;padding:25px 0 0;margin:30px 0 0;border-top:1px solid rgba(155,155,155,0.17)}
.comments > h3{position:relative;color:$(post.title.color);font-size:18px;font-weight:600;padding:0;margin:0 0 25px}
.comments > h3.has-message{margin:0 0 13px}
.comments .comments-content{float:left;width:100%;margin:0}
#comments h4#comment-post-message{display:none}
.comments .comment-block{padding:0 0 0 50px}
.comments .comment-content{font-size:16px;color:$(post.text.color);line-height:1.6em;margin:8px 0}
.comments .comment-content > a:hover{text-decoration:underline}
.comment-thread .comment{position:relative;padding:0;margin:25px 0 0;list-style:none;border-radius:0}
.comment-thread ol{padding:0;margin:0}
.toplevel-thread ol > li:first-child{margin:0}
.comment-thread.toplevel-thread > ol > .comment > .comment-replybox-single iframe{box-sizing:border-box;padding:0 0 0 50px;margin:15px 0 0}
.comment-thread ol ol .comment:before{content:'\f3bf';position:absolute;left:-20px;top:-5px;font-family:'Font Awesome 5 Free';font-size:15px;color:rgba(155,155,155,0.17);font-weight:700;transform:rotate(90deg);margin:0}
.comment-thread .avatar-image-container{position:absolute;top:0;left:0;width:35px;height:35px;border-radius:100%;overflow:hidden}
.avatar-image-container img{width:100%;height:100%;border-radius:100%}
.comments .comment-header .user{font-size:16px;color:$(post.title.color);display:inline-block;font-style:normal;font-weight:600;margin:0 0 3px}
.comments .comment-header .user a{color:$(post.title.color)}
.comments .comment-header .user a:hover{color:$(post.title.hover.color);text-decoration:underline}
.comments .comment-header .icon.user{display:none}
.comments .comment-header .icon.blog-author{display:inline-block;font-size:12px;color:$(main.color);font-weight:400;vertical-align:top;margin:0 0 0 5px}
.comments .comment-header .icon.blog-author:before{content:'\f058';font-family:'Font Awesome 5 Free';font-weight:400}
.comments .comment-header .datetime{display:block}
.comment-header .datetime a{font-size:13px;color:$(meta.color);padding:0 1px}
.comments .comment-actions{display:block;margin:0}
.comments .comment-actions a{color:$(body.link.color);font-size:13px;font-style:italic;text-decoration:underline;margin:0 15px 0 0}
.comments .comment-actions a:hover{color:$(link.color);text-decoration:none}
.item-control{display:none}
.loadmore.loaded a{display:inline-block;border-bottom:1px solid rgba(155,155,155,.51);text-decoration:none;margin-top:15px}
.comments .continue{display:none}
.comments .toplevel-thread > #top-continue a{display:block;color:$(body.link.color);text-decoration:underline;margin:15px 0 0}
.comments .toplevel-thread > #top-continue a:hover{color:$(link.color)}
.comments .comment-replies{padding:0 0 0 50px}
.thread-expanded .thread-count a,.loadmore{display:none}
.comments .footer,.comments .comment-footer{float:left;width:100%;font-size:13px;margin:0}
.comments .comment-thread > .comment-replybox-thread{margin:25px 0 0}
.comment-form{float:left;width:100%;margin:0}
p.comments-message{font-size:15px;color:$(meta.color);font-style:italic;padding:0 0 25px;margin:0}
p.comments-message > a{color:$(body.link.color)}
p.comments-message > a:hover{text-decoration:underline}
p.comments-message > em{color:#d63031;font-style:normal}
.comment-form > p{display:none}
p.comment-footer span{color:$(meta.color)}
p.comment-footer span:after{content:'\002A';color:#d63031}
iframe#comment-editor{min-height:93px}
#sidebar-wrapper .sidebar{float:left;width:100%}
.sidebar > .widget{position:relative;float:left;width:100%;box-sizing:border-box;padding:0;margin:0 0 40px}
#sidebar2 > .widget:last-child{margin:0}
.sidebar .widget-content{float:left;width:100%;box-sizing:border-box;padding:0}
.sidebar .widget > .widget-title{position:relative;float:left;width:100%;margin:0}
.sidebar .widget > .widget-title > h3{position:relative;font-size:18px;color:$(sidebar.title.color);padding:0;margin:0 0 20px}
.sidebar .loader{height:180px}
ul.social-icons{display:flex;flex-wrap:wrap;margin:0 -5px}
.social-icons li{float:left;width:calc(100% / 6);box-sizing:border-box;padding:0 5px;margin:10px 0 0}
.social-icons li.link-0,.social-icons li.link-1,.social-icons li.link-2,.social-icons li.link-3,.social-icons li.link-4,.social-icons li.link-5{margin:0}
.social-icons li a{float:left;width:100%;height:40px;background-color:rgba(155,155,155,0.1);font-size:17px;color:$(link.color);text-align:center;line-height:40px;padding:0;border-radius:3px}
.social-icons li a:hover{background-color:$(button.bg);color:$(button.color)}
.custom-widget .custom-item{display:block;overflow:hidden;padding:20px 0 0;margin:20px 0 0;border-top:1px solid rgba(155,155,155,0.17)}
.custom-widget .custom-item.item-0{padding:0;margin:0;border:0}
.custom-widget .entry-image-link{position:relative;float:left;width:70px;height:70px;overflow:hidden;margin:0 12px 0 0}
.custom-widget .cmm-avatar{width:55px;height:55px;margin:0 12px 0 0;border-radius:50%}
.custom-widget .cmm-avatar .post-thumb{border-radius:50%}
.custom-widget .cmm-snippet{display:block;font-size:13px;line-height:1.4em;margin:2px 0 0}
.custom-widget .entry-header{overflow:hidden}
.custom-widget .entry-title{font-size:15px;font-weight:600;line-height:1.4em;margin:0 0 5px}
.custom-widget .entry-meta{font-size:14px}
.PopularPosts .popular-post{display:block;overflow:hidden;padding:20px 0 0;margin:20px 0 0;border-top:1px solid rgba(155,155,155,0.17)}
.PopularPosts .popular-post.item-0{padding:0;margin:0;border:0}
.PopularPosts .entry-image-link{position:relative;float:left;width:70px;height:70px;overflow:hidden;z-index:1;margin:0 12px 0 0}
.PopularPosts .entry-header{overflow:hidden}
.PopularPosts .entry-title{font-size:15px;font-weight:600;line-height:1.4em;margin:0 0 5px}
.PopularPosts .entry-meta{font-size:14px}
.FeaturedPost .entry-image-link{position:relative;float:left;width:100%;height:180px;z-index:1;overflow:hidden;margin:0 0 10px}
.FeaturedPost .entry-header{float:left;margin:0}
.FeaturedPost .entry-title{font-size:17px;font-weight:600;line-height:1.4em;text-decoration:none;margin:0 0 5px}
.FeaturedPost .entry-title a:hover{color:$(link.hover.color)}
.FeaturedPost .entry-meta{font-size:14px}
.FollowByEmail .widget-content{position:relative;box-sizing:border-box;padding:0}
.FollowByEmail .widget-content-inner{background-color:rgba(155,155,155,0.1);padding:20px}
.follow-by-email-content{position:relative;z-index:5}
.follow-by-email-title{font-size:18px;color:$(sidebar.title.color);margin:0 0 13px}
.follow-by-email-text{font-size:14px;line-height:1.5em;margin:0 0 15px}
.follow-by-email-address{width:100%;height:34px;background-color:#fff;font-family:inherit;font-size:12px;color:#333;box-sizing:border-box;padding:0 10px;margin:0 0 10px;border:1px solid rgba(155,155,155,0.17);border-radius:3px}
.follow-by-email-address:focus{background-color:#fff;border-color:rgba(155,155,155,0.4)}
.follow-by-email-submit{width:100%;height:34px;background-color:$(button.bg);font-family:inherit;font-size:15px;color:$(button.color);font-weight:600;line-height:34px;cursor:pointer;padding:0 20px;border:0;border-radius:3px}
.follow-by-email-submit:hover{background-color:$(button.hover.bg);color:$(button.hover.color)}
.list-label li,.archive-list li{position:relative;display:block}
.list-label li a,.archive-list li a{display:block;color:$(link.color);font-size:14px;font-weight:400;text-transform:capitalize;padding:5px 0}
.list-label li:first-child a,.archive-list li:first-child a{padding:0 0 5px}
.list-label li:last-child a,.archive-list li:last-child a{padding-bottom:0}
.list-label li a:hover,.archive-list li a:hover{color:$(link.hover.color);text-decoration:underline}
.list-label .label-count,.archive-list .archive-count{float:right;color:$(meta.color);text-decoration:none;margin:1px 0 0 5px}
.cloud-label li{position:relative;float:left;margin:0 5px 5px 0}
.cloud-label li a{display:block;height:26px;background-color:rgba(155,155,155,0.1);color:$(link.color);font-size:12px;line-height:26px;font-weight:400;padding:0 10px;border-radius:3px}
.cloud-label li a:hover{background-color:$(button.bg);color:$(button.color)}
.cloud-label .label-count{display:none}
.BlogSearch .search-form{display:flex}
.BlogSearch .search-input{float:left;width:100%;height:34px;background-color:rgba(255,255,255,0.05);font-family:inherit;font-weight:400;font-size:12px;color:$(body.text.color);line-height:34px;box-sizing:border-box;padding:0 10px;margin:0 5px 0 0;border:1px solid rgba(155,155,155,0.17);border-radius:3px}
.BlogSearch .search-input:focus{background-color:rgba(155,155,155,0.05);border-color:rgba(155,155,155,0.4)}
.BlogSearch .search-action{float:right;width:auto;height:34px;font-family:inherit;font-size:15px;font-weight:600;line-height:34px;cursor:pointer;box-sizing:border-box;background-color:$(button.bg);color:$(button.color);padding:0 15px;border:0;border-radius:3px}
.BlogSearch .search-action:hover{background-color:$(button.hover.bg);color:$(button.hover.color)}
.Profile ul li{float:left;width:100%;margin:20px 0 0}
.Profile ul li:first-child{margin:0}
.Profile .profile-img{float:left;width:55px;height:55px;background-color:rgba(155,155,155,0.08);overflow:hidden;color:transparent!important;margin:0 12px 0 0;border-radius:50%}
.Profile .profile-datablock{margin:0}
.Profile .profile-info > .profile-link{font-size:12px;color:$(body.link.color);font-weight:400;text-decoration:underline;margin:0}
.Profile .profile-info > .profile-link:hover{color:$(link.color);text-decoration:none}
.Profile .g-profile,.Profile .profile-data .g-profile{font-size:15px;color:$(link.color);font-weight:600;line-height:1.4em;margin:0 0 5px}
.Profile .g-profile:hover,.Profile .profile-data .g-profile:hover{color:$(link.hover.color);text-decoration:underline}
.Profile .profile-textblock{display:none}
.profile-data.location{font-size:12px;color:$(meta.color);line-height:1.4em;margin:2px 0 0}
.frameify-free-widget-ready .PageList ul,.frameify-free-widget-ready .LinkList ul{display:flex;flex-wrap:wrap}
.frameify-free-widget-ready .PageList ul li,.frameify-free-widget-ready .LinkList ul li{display:flex;flex-direction:column;width:50%;box-sizing:border-box;padding:0 5px 0 0}
.frameify-free-widget-ready .PageList ul li:nth-child(2n),.frameify-free-widget-ready .LinkList ul li:nth-child(2n){padding:0 0 0 5px}
.frameify-free-widget-ready .PageList ul li a,.frameify-free-widget-ready .LinkList ul li a{display:block;color:$(link.color);font-size:12px;font-weight:400;padding:8px 0 0;margin:8px 0 0;border-top:1px dashed rgba(155,155,155,0.17)}
.frameify-free-widget-ready .PageList ul li:nth-child(1) a,.frameify-free-widget-ready .PageList ul li:nth-child(2) a,.frameify-free-widget-ready .LinkList ul li:nth-child(1) a,.frameify-free-widget-ready .LinkList ul li:nth-child(2) a{padding:0;margin:0;border:0}
.frameify-free-widget-ready .PageList ul li a:hover,.frameify-free-widget-ready .LinkList ul li a:hover{color:$(link.hover.color)}
.Text .widget-content{font-size:13px;line-height:1.6em}
.Image .image-caption{font-size:13px;line-height:1.6em;margin:10px 0 0;display:block}
.contact-form-widget form{font-family:inherit;font-weight:400}
.contact-form-name{float:left;width:100%;height:34px;background-color:rgba(255,255,255,0.05);font-family:inherit;font-size:13px;color:$(body.text.color);line-height:34px;box-sizing:border-box;padding:5px 10px;margin:0 0 10px;border:1px solid rgba(155,155,155,0.17);border-radius:3px}
.contact-form-email{float:left;width:100%;height:34px;background-color:rgba(255,255,255,0.05);font-family:inherit;font-size:13px;color:$(body.text.color);line-height:34px;box-sizing:border-box;padding:5px 10px;margin:0 0 10px;border:1px solid rgba(155,155,155,0.17);border-radius:3px}
.contact-form-email-message{float:left;width:100%;background-color:rgba(255,255,255,0.05);font-family:inherit;font-size:13px;color:$(body.text.color);box-sizing:border-box;padding:5px 10px;margin:0 0 10px;border:1px solid rgba(155,155,155,0.17);border-radius:3px}
.contact-form-button-submit{float:left;width:100%;height:34px;background-color:$(button.bg);font-family:inherit;font-size:15px;color:$(button.color);font-weight:600;line-height:34px;cursor:pointer;box-sizing:border-box;padding:0 10px;margin:0;border:0;border-radius:3px}
.contact-form-button-submit:hover{background-color:$(button.hover.bg);color:$(button.hover.color)}
.contact-form-error-message-with-border{float:left;width:100%;background-color:rgba(0,0,0,0);font-size:12px;color:#e74c3c;text-align:left;line-height:12px;padding:3px 0;margin:10px 0;box-sizing:border-box;border:0}
.contact-form-success-message-with-border{float:left;width:100%;background-color:rgba(0,0,0,0);font-size:12px;color:#27ae60;text-align:left;line-height:12px;padding:3px 0;margin:10px 0;box-sizing:border-box;border:0}
.contact-form-cross{cursor:pointer;margin:0 0 0 3px}
.contact-form-error-message,.contact-form-success-message{margin:0}
.contact-form-name:focus,.contact-form-email:focus,.contact-form-email-message:focus{background-color:rgba(155,155,155,0.05);border-color:rgba(155,155,155,0.4)}
#footer-wrapper{background-color:$(footer.bg);color:$(footer.text.color);border-top:1px solid rgba(155,155,155,0.17)}
#footer-wrapper > .container{position:relative;overflow:hidden;margin:0 auto}
.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:40px 15px}
#footer-wrapper .footer.no-items{padding:0 15px}
#footer-wrapper .footer .widget{float:left;width:100%;padding:0;margin:30px 0 0}
#footer-wrapper .footer .widget:first-child{margin:0}
#footer-wrapper .footer .about-text{margin:10px 0 0}
.footer .widget > .widget-title > h3,.footer .follow-by-email-title{position:relative;color:$(footer.widget.title.color);font-size:18px;margin:0 0 20px}
.footer .follow-by-email-title{margin:0 0 13px}
.footer .about-text > .widget-title{display:none}
.footer .loader{height:145px}
.footer .no-posts{color:$(footer.text.color)}
.footer .PopularPosts .widget-content .post:first-child,.footer .custom-widget li:first-child,.footer .cmm-widget li:first-child{padding:0}
.footer .entry-title a,.footer .LinkList ul li a,.footer .PageList ul li a,.footer .Profile .g-profile,.footer .Profile .profile-data .g-profile{color:$(footer.color)}
.footer .entry-title a:hover{color:$(footer.post.title.hover.color)}
.footer .Profile .profile-info > .profile-link{color:$(footer.hover.color)}
.footer .Profile .profile-info > .profile-link:hover{color:$(footer.color)}
.footer .LinkList ul li a:hover,.footer .PageList ul li a:hover,.footer .Profile .g-profile:hover,.footer .Profile .profile-data .g-profile:hover{color:$(footer.hover.color)}
.footer .custom-widget .cmm-snippet,.footer .profile-data.location,.footer .Text .widget-content,.footer .Image .image-caption{color:$(footer.text.color)}
.footer .list-label li a,.footer .archive-list li a,.footer .PageList ul li a,.footer .LinkList ul li a{border-color:rgba(155,155,155,0.06)}
.footer .list-label li a,.footer .list-label li a:before,.footer .archive-list li a,.footer .archive-list li a:before{color:$(footer.color)}
.footer .list-label li > a:hover,.footer .archive-list li > a:hover,.footer .Text .widget-content a{color:$(footer.hover.color)}
.footer .cloud-label li a{color:$(footer.color)}
.footer .cloud-label li a:hover{background-color:$(button.bg);color:$(button.color)}
.footer .contact-form-name,.footer .contact-form-email,.footer .contact-form-email-message,.footer .BlogSearch .search-input{color:$(footer.color)}
#sub-footer-wrapper{display:block;width:100%;background-color:$(footer.bar.bg);color:$(footer.bar.color);overflow:hidden}
#sub-footer-wrapper .container{padding:15px 0;margin:0 auto;overflow:hidden}
#footer-menu{float:right;position:relative;display:block}
#footer-menu .widget > .widget-title{display:none}
#footer-menu ul li{float:left;display:inline-block;height:30px;padding:0;margin:0}
#footer-menu ul li a{font-size:14px;font-weight:400;display:block;color:$(footer.bar.color);line-height:30px;padding:0 10px;margin:0 0 0 7px}
#footer-menu ul li:last-child a{padding-right:0}
#footer-menu ul li a:hover{color:$(footer.bar.hover.color);text-decoration:underline}
#sub-footer-wrapper .copyright-area{font-size:14px;float:left;height:30px;line-height:30px;font-weight:400}
#sub-footer-wrapper .copyright-area a{color:$(footer.bar.color)}
#sub-footer-wrapper .copyright-area a:hover{color:$(footer.bar.hover.color);text-decoration:underline}
.hidden-widgets{display:none;visibility:hidden}
.back-top{display:none;position:fixed;bottom:15px;right:15px;width:32px;height:32px;background-color:$(button.bg);cursor:pointer;overflow:hidden;font-size:13px;color:$(button.color);text-align:center;line-height:32px;z-index:2;border-radius:3px}
.back-top:after{content:'\f077';position:relative;font-family:'Font Awesome 5 Free';font-weight:900}
.back-top:hover{opacity:.9;box-shadow:0 0 5px rgba(0,0,0,0.15)}
.error404 #main-wrapper{width:100%}
.error404 #sidebar-wrapper{display:none}
.errorWrap{color:$(link.color);text-align:center;padding:40px 0 100px}
.errorWrap h3{font-size:160px;line-height:1em;margin:0 0 20px}
.errorWrap h4{font-size:25px;margin:0 0 20px}
.errorWrap p{margin:0 0 10px}
.errorWrap a{display:inline-block;height:32px;background-color:$(button.bg);font-size:15px;color:$(button.color);font-weight:600;line-height:32px;padding:0 20px;margin:15px 0 0;border-radius:3px}
.errorWrap a:hover{background-color:$(button.hover.bg);color:$(button.hover.color)}
@media screen and (max-width: 1120px) {
#outer-wrapper{max-width:100%}
.row-x1{width:100%}
#header-wrapper .container,#content-wrapper,#footer-wrapper > .container,#sub-footer-wrapper{box-sizing:border-box;padding:0 20px}
}
@media screen and (max-width: 980px) {
.site-header{height:auto;padding:20px 0}
.header-logo{padding:0}
.main-logo{width:100%;max-width:100%;text-align:center;z-index:15;margin:0}
.header-ads{width:100%}
.header-ads .widget .widget-content{float:none;height:auto;max-height:90px;margin:20px auto 0}
.nav-active #outer-wrapper{filter:blur(2px)}
.nav-active .back-top{opacity:0!important}
#outer-wrapper{transition:filter .17s ease}
.overlay,.show-mobile-menu,.slide-menu{display:block}
.nav-active .overlay{visibility:visible;opacity:1}
.show-search,.hide-search{width:50px;text-align:center}
#nav-search .search-input{padding:0 50px 0 20px}
.main-menu,.frameify-free-main-menu{display:none}
.header-logo{width:100%;max-width:none}
.header-logo .header-widget,.header-logo .header-logo-image{float:none;display:inline-block}
#main-wrapper,#sidebar-wrapper{width:100%}
#sidebar-wrapper{margin:25px 0 0}
#blog-pager{padding:35px 0 10px}
}
@media screen and (max-width: 880px) {
.footer-widgets-wrap{display:block;overflow:hidden;padding:30px 0 0}
#footer-wrapper .footer{width:100%;padding:0 15px 30px}
#footer-wrapper .footer.no-items{padding:0 15px}
}
@media screen and (max-width: 680px) {
#sub-footer-wrapper .container{padding:20px 0}
#footer-menu,#sub-footer-wrapper .copyright-area{width:100%;height:auto;line-height:inherit;text-align:center}
#footer-menu ul li{float:none;height:auto}
#footer-menu ul li a{line-height:inherit;margin:0 5px}
#sub-footer-wrapper .copyright-area{padding:20px 0 0}
}
@media screen and (max-width: 580px) {
.index-post .entry-image-link{width:100%;height:180px;margin:0 0 15px}
.index-post .entry-header,.index-post .entry-content{float:left;width:100%;padding:0}
.post-snippet{float:left;width:100%}
.related-posts{margin:0}
.related-posts .related-item{width:100%;padding:0}
.related-posts .related-item.item-1,.related-posts .related-item.item-2{margin:25px 0 0}
.related-posts .entry-image-link{height:160px}
}
@media screen and (max-width: 540px) {
.queryMessage{padding:0 0 25px;margin:0 0 30px}
.queryMessage a.show-more{float:none;display:inline-block;margin:0 0 0 10px}
}
@media screen and (max-width: 440px) {
#header-wrapper .container,#content-wrapper,#footer-wrapper > .container,#sub-footer-wrapper{padding:0 15px}
.show-mobile-menu{padding:0 15px}
.queryMessage .query-info{display:inline-block;margin:0}
#nav-search .search-input{padding:0 50px 0 15px}
.index-post .entry-header .entry-title,.item-post h1.entry-title{font-size:25px}
.post-share{margin:20px 0 0}
.share-links li{margin:5px 5px 0 0}
.share-links li a.twitter{width:34px}
.share-links li a.twitter span{display:none}
.share-links li a.twitter:before{width:34px;background-color:rgba(0,0,0,0)}
.about-author .avatar-container{width:55px;height:55px;margin:0 15px 0 0}
.author-name span{display:none}
}
@media screen and (max-width: 360px) {
.index-post .entry-header .entry-title,.item-post h1.entry-title{font-size:23px}
.slide-menu{width:270px}
.share-links li a,.share-links li a.facebook,.share-links li a.twitter{width:32px}
.share-links li a.facebook:before,.share-links li a.twitter:before{width:32px;background-color:rgba(0,0,0,0)}
.share-links li a.facebook span{display:none}
.errorWrap h3{font-size:130px}
}
]]></b:skin>
<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:850px;position:relative;background-color:#f9f9f9;padding:95px 5px 0;margin:0}
body#layout:before{content:'Theme Options - v3.0';position:absolute;top:0;left:5px;right:5px;height:95px;font-family:Roboto,sans-serif;font-size:23px;color:#1f2024;line-height:95px;text-align:center}
body#layout div.section{background-color:#f1f1f1!important;margin:0 5px 10px!important;padding:16px 16px 18px!important;border-color:#e5e5e5}
body#layout .section h4{font-size:14px;color:#1f2024;text-transform:uppercase;margin:0}
body#layout .section h4:after{text-transform:initial;color:#656565;font-weight:400}
body#layout .add_widget a{color:#0084b4!important}
body#layout .widget-wrap3{overflow:hidden}
body#layout .widget-content{width:auto;max-width:none;max-height:none;margin:0;border:1px solid #e5e5e5;border-left:0}
body#layout .locked-widget .widget-content{border-left:1px solid #0084b4}
body#layout .locked-widget .widget-content:hover{border-left-color:#79b530}
body#layout .widget .widget-content a.editlink{border-radius:3px}
body#layout .visibility .editlink{background:#0084b4 url(https://1.bp.blogspot.com/-iQoCOwqjB-w/Wy1bDznOM4I/AAAAAAAACGA/8BUOPStr0sk5oud9hWpHBQTrmkeJDoAvACK4BGAYYCw/s18-c/mode_edit_w600_24dp.png) no-repeat center!important}
body#layout .visibility .editlink:hover{background-color:#79b530!important}
body#layout .draggable-widget .widget-wrap2{background:#0084b4 url(https://1.bp.blogspot.com/-yTAuT5aZ1EY/Wy1eEeo4SbI/AAAAAAAACGM/FxOTPwL-Ch0_lyZxLRzhv2EWHINOmCjWACK4BGAYYCw/s22/draggable.png) no-repeat 4px 50%!important}
body#layout .draggable-widget .widget-wrap1:hover .widget-wrap2{background-color:#79b530!important}
body#layout .visibility .layout-widget-state.visible{background-image:url(https://4.bp.blogspot.com/-cgTj6sYN20w/XG1MixYFa3I/AAAAAAAAD94/1Q79bEtkdMc6se8dvKvseNL-cedMPz3JQCK4BGAYYCw/s1600/visibility_c3_600_24dp.png)!important}
body#layout .visibility .layout-widget-state.not-visible{background-image:url(https://4.bp.blogspot.com/-xCIqf_dm-jE/XG1MsEOgHYI/AAAAAAAAD-A/hpgoQ1p4kGwjvbi37Z1a5eGItNKRxkh1QCK4BGAYYCw/s1600/visibility_off_c3_600_24dp.png)!important;opacity:1}
body#layout .layout-widget-description{display:none}
body#layout .theme-options,body#layout #frameify-free-main-menu .widget{display:block!important}
body#layout div.ify-panel,body#layout #mobile-options .section{background-color:#edf4ff!important;overflow:hidden!important;border-color:#cdd4ef}
body#layout .ify-panel .widget{float:left;width:32%;margin-right:2%}
body#layout .ify-panel .widget-content,body#layout #mobile-options .widget-content{border-color:#cdd4ef!important}
body#layout .ify-panel #LinkList151{margin-right:0}
body#layout #mobile-options{display:block!important}
body#layout .site-header > .container{display:flex;padding:0}
body#layout .main-logo,body#layout .header-ads{width:50%}
body#layout #frameify-free-main-menu,body#layout .header-logo{height:auto}
body#layout .header-logo{max-width:none;max-height:none}
body#layout #content-wrapper{margin:0}
body#layout #content-wrapper > .container{display:flex;margin:0}
body#layout #main-wrapper{width:67%;padding:0}
body#layout #sidebar-wrapper{width:33%;padding:0}
body#layout #custom-ads{display:block!important;display:flex!important}
body#layout #custom-ads .section{width:50%}
body#layout #ify-panel > h4:after{content:' - By Templateify'}
body#layout #mm-section > h4:after{content:' - For Mobile Devices'}
body#layout #header-logo > h4:after{content:' - Site Logo (Standard height = 60px)'}
body#layout #header-ads > h4:after{content:' - In The Header'}
body#layout #frameify-free-main-menu > h4:after{content:' - DropDown and MegaMenu'}
body#layout #main > h4:after{content:' - Default Blog Posts Section'}
body#layout #main-before-ad > h4:after{content:' - Before Post Content'}
body#layout #main-after-ad > h4:after{content:' - After Post Content'}
body#layout #sidebar > h4:after{content:' - Default Gadgets'}
body#layout #footer-sec1 > h4:after{content:' - Left Section'}
body#layout #footer-sec2 > h4:after{content:' - Center Section'}
body#layout #footer-sec3 > h4:after{content:' - Right Section'}
body#layout #footer-menu > h4:after{content:' - Footer Links'}
body#layout .footer-widgets-wrap{display:flex}
body#layout .footer-widgets-wrap div.footer{width:100%}
body#layout:after{content:'Design by Templateify.com';display:block;font-family:Roboto,sans-serif;font-size:14px;color:#555;line-height:1;text-align:center;visibility:visible;padding:20px 0}
/*------Layout (end)----------*/
]]></b:template-skin>
</b:if>
<!-- Global Variables -->
<script defer='defer' 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"],
postPerPage = 7,
fixedMenu = true,
fixedSidebar = true,
relatedPostsNum = 3, // 3 or 6
commentsSystem = "blogger",
disqusShortname = "templateify-theme",
followByEmailText;
//]]>
</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:includable id='themeHead'>
<meta expr:content='"text/html; charset=" + data:blog.encoding' http-equiv='Content-Type'/>
<meta content='blogger' name='generator'/>
<link expr:href='data:blog.blogspotFaviconUrl' rel='icon' type='image/x-icon'/>
<meta expr:content='data:skin.vars.keycolor' name='theme-color'/>
<meta expr:content='data:skin.vars.keycolor' name='msapplication-navbutton-color'/>
<b:if cond='data:blog.adultContent'>
<meta content='adult' name='rating'/>
</b:if>
<link expr:href='data:view.url.canonical' rel='canonical'/>
<data:blog.feedLinks/><data:blog.openIdOpTag/><data:blog.meTag/>
<meta expr:content='data:view.description.escaped' name='description'/>
<b:tag cond='data:view.isMultipleItems and data:widgets.Blog.first.posts[0].featuredImage' expr:href='data:widgets.Blog.first.posts[0].featuredImage' name='link' rel='image_src'/>
<b:tag cond='data:view.isSingleItem and data:view.featuredImage' expr:href='data:view.featuredImage' name='link' rel='image_src'/>
<b:include name='customOpenGraphMetaData'/>
</b:includable>
<b:includable id='customOpenGraphMetaData'>
<!-- Metadata for Open Graph protocol. See http://ogp.me/. -->
<b:if cond='data:view.isHomepage'>
<meta content='website' property='og:type'/>
</b:if>
<b:if cond='data:view.isSingleItem'>
<meta content='article' property='og:type'/>
</b:if>
<b:if cond='data:view.isMultipleItems and not data:view.isHomepage'>
<meta content='object' property='og:type'/>
</b:if>
<meta expr:content='data:view.title.escaped' property='og:title'/>
<meta expr:content='data:blog.url.canonical' property='og:url'/>
<meta expr:content='data:view.description.escaped' property='og:description'/>
<meta expr:content='data:blog.title.escaped' property='og:site_name'/>
<b:tag cond='data:view.isMultipleItems and data:widgets.Blog.first.posts[0].featuredImage' expr:href='data:widgets.Blog.first.posts[0].featuredImage' name='meta' property='og:image'/>
<b:if cond='data:view.featuredImage'>
<meta expr:content='data:view.featuredImage' property='og:image'/>
<meta expr:content='data:view.featuredImage' name='twitter:image'/>
</b:if>
<meta content='summary' name='twitter:card'/>
<meta expr:content='data:view.title.escaped' name='twitter:title'/>
<meta expr:content='data:blog.url.canonical' name='twitter:domain'/>
<meta expr:content='data:view.description.escaped' name='twitter:description'/>
<b:if cond='data:view.isHomepage'>
<script type='application/ld+json'>{"@context":"http://schema.org","@type":"WebSite","name":"<data:view.title.escaped/>","url":"<data:view.url.canonical/>","potentialAction":{"@type":"SearchAction","target":"<data:view.url.canonical/>search?q={search_term_string}","query-input":"required name=search_term_string"}}</script>
</b:if>
</b:includable>
<b:includable id='translate'>
<b:switch var='data:blog.locale.language'>
<b:case value='en'/><b:include name='customLang'/>
<b:default/><b:include name='customLang'/>
</b:switch>
</b:includable>
<b:includable id='customLang'>
<b:switch var='data:message'>
<b:case value='prevPost'/><b:if cond='data:blog.locale.language == "en"'>Previous Post<b:elseif cond='data:blog.locale.language == "es"'/>Artículo Anterior<b:elseif cond='data:blog.locale.language == "pt"'/>Postagem Anterior<b:else/><data:messages.newer/></b:if>
<b:case value='nextPost'/><b:if cond='data:blog.locale.language == "en"'>Next Post<b:elseif cond='data:blog.locale.language == "es"'/>Artículo Siguiente<b:elseif cond='data:blog.locale.language == "pt"'/>Próxima Postagem<b:else/><data:messages.older/></b:if>
<b:case value='followByEmailText'/><b:if cond='data:blog.locale.language == "en"'>Get all latest content delivered straight to your inbox.<b:elseif cond='data:blog.locale.language == "es"'/>Obtener todo el contenido más reciente directamente en su correo electrónico.<b:elseif cond='data:blog.locale.language == "pt"'/>Obtenha todo o conteúdo mais recente diretamente na sua caixa de entrada.<b:else/><data:messages.getEmailNotifications/></b:if>
</b:switch>
</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-logo-image' 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'/>
<b:if cond='data:view.isHomepage'><b:if cond='data:widget.sectionId == "header-logo"'><h1 id='h1-tag'><data:title/></h1></b:if></b:if>
</a>
</b:includable>
<b:includable id='title'>
<h1 class='blog-title'>
<b:tag expr:href='data:blog.homepageUrl' name='a'>
<data:title/>
</b:tag>
</h1>
</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 index='i' values='data:posts' var='post'>
<b:include data='post' name='content'/>
</b:loop>
</div>
</b:includable>
<b:includable id='content' var='post'>
<b:include data='post' name='defaultPost'/>
</b:includable>
<b:includable id='defaultPost' var='post'>
<article class='popular-post post'>
<b:class expr:name='"item-"+data:i'/>
<b:if cond='data:post.featuredImage.isYouTube'>
<a class='entry-image-link' expr:href='data:post.url'>
<span class='post-thumb' expr:data-image='data:post.featuredImage'/>
</a>
<b:else/>
<a class='entry-image-link' expr:href='data:post.url'>
<span class='post-thumb' expr:data-image='resizeImage(data:post.featuredImage, 72, "1:1")'/>
</a>
</b:if>
<div class='entry-header'>
<h2 class='entry-title'>
<a expr:href='data:post.url'><data:post.title/></a>
</h2>
<div class='entry-meta'>
<span class='entry-time'><time class='published' expr:datetime='data:post.date.iso8601'><data:post.date/></time></span>
</div>
</div>
</article>
</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='content'/>
</b:loop>
</div>
</b:includable>
<b:includable id='content' var='post'>
<article class='post'>
<b:if cond='data:post.featuredImage.isYouTube'>
<a class='entry-image-link' expr:href='data:post.url'>
<span class='post-thumb' expr:data-image='data:post.featuredImage'/>
</a>
<b:else/>
<a class='entry-image-link' expr:href='data:post.url'>
<span class='post-thumb' expr:data-image='resizeImage(data:post.featuredImage, 72, "1:1")'/>
</a>
</b:if>
<div class='entry-header'>
<h2 class='entry-title'>
<a expr:href='data:post.url'><data:post.title/></a>
</h2>
<div class='entry-meta'>
<span class='entry-time'><time class='published' expr:datetime='data:post.date.iso8601'><data:post.date/></time></span>
</div>
</div>
</article>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='ContactForm'>
<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 contact-form-widget'>
<div class='form'>
<form name='contact-form'>
<input class='contact-form-name' expr:id='data:widget.instanceId + "_contact-form-name"' expr:placeholder='data:contactFormNameMsg' name='name' size='30' type='text' value=''/>
<input class='contact-form-email' expr:id='data:widget.instanceId + "_contact-form-email"' expr:placeholder='data:contactFormEmailMsg + "*"' name='email' size='30' type='text' value=''/>
<textarea class='contact-form-email-message' cols='25' expr:id='data:widget.instanceId + "_contact-form-email-message"' expr:placeholder='data:contactFormMessageMsg + "*"' name='email-message' rows='5'/>
<input class='contact-form-button contact-form-button-submit' expr:id='data:widget.instanceId + "_contact-form-submit"' expr:value='data:contactFormSendMsg' type='button'/>
<p class='contact-form-error-message' expr:id='data:widget.instanceId + "_contact-form-error-message"'/>
<p class='contact-form-success-message' expr:id='data:widget.instanceId + "_contact-form-success-message"'/>
</form>
</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"'/>